9900 lines
699 KiB
SQL
9900 lines
699 KiB
SQL
/*
|
||
Navicat Premium Data Transfer
|
||
|
||
Source Server : 192.168.4.95
|
||
Source Server Type : MySQL
|
||
Source Server Version : 100621 (10.6.21-MariaDB-0ubuntu0.22.04.2)
|
||
Source Host : 192.168.4.95:3306
|
||
Source Schema : PPS_DB
|
||
|
||
Target Server Type : MySQL
|
||
Target Server Version : 100621 (10.6.21-MariaDB-0ubuntu0.22.04.2)
|
||
File Encoding : 65001
|
||
|
||
Date: 17/06/2025 16:58:10
|
||
*/
|
||
|
||
SET NAMES utf8mb4;
|
||
SET FOREIGN_KEY_CHECKS = 0;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for bill_discount
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `bill_discount`;
|
||
CREATE TABLE `bill_discount` (
|
||
`discount_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`hours` tinyint NOT NULL DEFAULT 0,
|
||
`mon` tinyint NOT NULL DEFAULT 100,
|
||
`tue` tinyint NOT NULL DEFAULT 100,
|
||
`wed` tinyint NOT NULL DEFAULT 100,
|
||
`thu` tinyint NOT NULL DEFAULT 100,
|
||
`fri` tinyint NOT NULL DEFAULT 100,
|
||
`sat` tinyint NOT NULL DEFAULT 100,
|
||
`sun` tinyint NOT NULL DEFAULT 100,
|
||
`holiday` tinyint NOT NULL DEFAULT 100,
|
||
PRIMARY KEY (`hours`, `discount_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Fixed;
|
||
|
||
-- ----------------------------
|
||
-- Records of bill_discount
|
||
-- ----------------------------
|
||
INSERT INTO `bill_discount` VALUES (00, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 1, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 2, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 3, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 4, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 5, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 6, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 7, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 8, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 9, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 10, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 11, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 12, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 13, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 14, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 15, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 16, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 17, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 18, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 19, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 20, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 21, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 22, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `bill_discount` VALUES (00, 23, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for bill_holiday
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `bill_holiday`;
|
||
CREATE TABLE `bill_holiday` (
|
||
`month` tinyint UNSIGNED NOT NULL DEFAULT 1,
|
||
`day` tinyint UNSIGNED NOT NULL DEFAULT 1,
|
||
`name` char(20) CHARACTER SET latin1 COLLATE latin1_bin NULL DEFAULT NULL,
|
||
PRIMARY KEY (`month`, `day`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Fixed;
|
||
|
||
-- ----------------------------
|
||
-- Records of bill_holiday
|
||
-- ----------------------------
|
||
INSERT INTO `bill_holiday` VALUES (1, 1, 'test');
|
||
INSERT INTO `bill_holiday` VALUES (5, 6, '--test\r');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for bill_sms
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `bill_sms`;
|
||
CREATE TABLE `bill_sms` (
|
||
`id` tinyint NOT NULL DEFAULT 0,
|
||
`prefix` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`call_type` tinyint UNSIGNED NOT NULL DEFAULT 0,
|
||
`area` varchar(32) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`tariff_id` tinyint NOT NULL DEFAULT 0,
|
||
`discount_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`charge_amount` float NOT NULL DEFAULT 10,
|
||
`cap_flag` tinyint UNSIGNED NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`id`, `tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of bill_sms
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for card_info
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `card_info`;
|
||
CREATE TABLE `card_info` (
|
||
`card_no` char(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`card_hrn` char(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`face_value` int UNSIGNED NULL DEFAULT NULL,
|
||
`card_status` tinyint NULL DEFAULT NULL,
|
||
`expiry_date` bigint NULL DEFAULT NULL,
|
||
`valid_time` int UNSIGNED NOT NULL DEFAULT 0,
|
||
`msisdn_used` char(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT '--',
|
||
`updated_date` char(14) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0000000000000',
|
||
PRIMARY KEY (`card_no`) USING BTREE,
|
||
UNIQUE INDEX `card_no`(`card_no`) USING BTREE,
|
||
UNIQUE INDEX `card_hrn`(`card_hrn`) USING BTREE,
|
||
INDEX `card_status`(`card_status`) USING BTREE,
|
||
INDEX `updated_date`(`updated_date`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Fixed;
|
||
|
||
-- ----------------------------
|
||
-- Records of card_info
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for comm_tariff
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `comm_tariff`;
|
||
CREATE TABLE `comm_tariff` (
|
||
`tariff_id` tinyint NOT NULL DEFAULT 0,
|
||
`cf_charge_unit` smallint UNSIGNED NOT NULL DEFAULT 60,
|
||
`cf_charge_amount` float UNSIGNED NOT NULL DEFAULT 1,
|
||
`roaming_charge_unit` smallint UNSIGNED NOT NULL DEFAULT 60,
|
||
`roaming_charge_amount` float UNSIGNED NOT NULL DEFAULT 1,
|
||
`cc_charge_unit` smallint UNSIGNED NOT NULL DEFAULT 60,
|
||
`cc_charge_amount` float UNSIGNED NOT NULL DEFAULT 1,
|
||
`cug_charge_unit` smallint UNSIGNED NOT NULL DEFAULT 60,
|
||
`cug_charge_amount` float NOT NULL DEFAULT 1,
|
||
`fav_change_charge` float NOT NULL DEFAULT 0,
|
||
`fav_charge_unit` smallint NOT NULL DEFAULT 0,
|
||
`fav_charge_amount` float NOT NULL DEFAULT 0,
|
||
`cf_cug_charge_unit` smallint NOT NULL DEFAULT 60,
|
||
`cf_cug_charge_amount` float NOT NULL DEFAULT 0,
|
||
`cf_fav_charge_unit` smallint NOT NULL DEFAULT 60,
|
||
`cf_fav_charge_amount` float NOT NULL DEFAULT 0,
|
||
`cug_fav_charge_unit` smallint NOT NULL DEFAULT 60,
|
||
`cug_fav_charge_amount` float NOT NULL DEFAULT 0,
|
||
`cf_cug_fav_charge_unit` smallint NOT NULL DEFAULT 60,
|
||
`cf_cug_fav_charge_amount` float NOT NULL DEFAULT 0,
|
||
`pool_account_change_charge` float NOT NULL DEFAULT 0,
|
||
`pool_call_unit` smallint NOT NULL DEFAULT 1,
|
||
`pool_call_amount` float NOT NULL DEFAULT 0,
|
||
`act_free_sms_charge` float NOT NULL DEFAULT 0,
|
||
`deact_free_sms_charge` float NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`tariff_id`) USING BTREE,
|
||
INDEX `tariff_id`(`tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Fixed;
|
||
|
||
-- ----------------------------
|
||
-- Records of comm_tariff
|
||
-- ----------------------------
|
||
INSERT INTO `comm_tariff` VALUES (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `comm_tariff` VALUES (63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for daily_report
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `daily_report`;
|
||
CREATE TABLE `daily_report` (
|
||
`date` date NOT NULL DEFAULT '0000-00-00',
|
||
`yesterday_balance` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`today_recharge` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`today_charge` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`today_balance` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`fresh_user_num` int NOT NULL DEFAULT 0,
|
||
`normal_user_num` int NOT NULL DEFAULT 0,
|
||
`suspend_user_num` int NOT NULL DEFAULT 0,
|
||
`blacklist_user_num` int NOT NULL DEFAULT 0,
|
||
`released_user_num` int NOT NULL DEFAULT 0,
|
||
`opr_trial_user_num` int NOT NULL DEFAULT 0,
|
||
`total_user_num` int NOT NULL DEFAULT 0,
|
||
`precard_facevalue1` int NOT NULL DEFAULT 0,
|
||
`precard_used_today1` int NOT NULL DEFAULT 0,
|
||
`precard_unused1` int NOT NULL DEFAULT 0,
|
||
`precard_facevalue2` int NOT NULL DEFAULT 0,
|
||
`precard_used_today2` int NOT NULL DEFAULT 0,
|
||
`precard_unused2` int NOT NULL DEFAULT 0,
|
||
`precard_facevalue3` int NOT NULL DEFAULT 0,
|
||
`precard_used_today3` int NOT NULL DEFAULT 0,
|
||
`precard_unused3` int NOT NULL DEFAULT 0,
|
||
`precard_facevalue4` int NOT NULL DEFAULT 0,
|
||
`precard_used_today4` int NOT NULL DEFAULT 0,
|
||
`precard_unused4` int NOT NULL DEFAULT 0,
|
||
`precard_facevalue5` int NOT NULL DEFAULT 0,
|
||
`precard_used_today5` int NOT NULL DEFAULT 0,
|
||
`precard_unused5` int NOT NULL DEFAULT 0,
|
||
`precard_facevalue6` int NOT NULL DEFAULT 0,
|
||
`precard_used_today6` int NOT NULL DEFAULT 0,
|
||
`precard_unused6` int NOT NULL DEFAULT 0,
|
||
`incoming_call_num` int NOT NULL DEFAULT 0,
|
||
`incoming_call_duration` int NOT NULL DEFAULT 0,
|
||
`incoming_call_charge` int NOT NULL DEFAULT 0,
|
||
`local_callout_num` int NOT NULL DEFAULT 0,
|
||
`local_callout_duration` int NOT NULL DEFAULT 0,
|
||
`local_callout_charge` int NOT NULL DEFAULT 0,
|
||
`IDD_call_num` int NOT NULL DEFAULT 0,
|
||
`IDD_call_duration` int NOT NULL DEFAULT 0,
|
||
`IDD_call_charge` int NOT NULL DEFAULT 0,
|
||
`NDD_call_num` int NOT NULL DEFAULT 0,
|
||
`NDD_call_duration` int NOT NULL DEFAULT 0,
|
||
`NDD_call_charge` int NOT NULL DEFAULT 0,
|
||
`rent_charging_num` int NOT NULL DEFAULT 0,
|
||
`rent_charging_duration` int NOT NULL DEFAULT 0,
|
||
`rent_charge` int NOT NULL DEFAULT 0,
|
||
`ast_recharge_num` int NOT NULL DEFAULT 0,
|
||
`ast_recharge_duration` int NOT NULL DEFAULT 0,
|
||
`ast_recharge` int NOT NULL DEFAULT 0,
|
||
`ast_charge_num` int NOT NULL DEFAULT 0,
|
||
`ast_charge_duration` int NOT NULL DEFAULT 0,
|
||
`ast_charge` int NOT NULL DEFAULT 0,
|
||
`recharge_suc_num` int NOT NULL DEFAULT 0,
|
||
`recharge_suc_duration` int NOT NULL DEFAULT 0,
|
||
`recharge_suc` int NOT NULL DEFAULT 0,
|
||
`recharge_fail_num` int NOT NULL DEFAULT 0,
|
||
`recharge_fail_duration` int NOT NULL DEFAULT 0,
|
||
`recharge_fail` int NOT NULL DEFAULT 0,
|
||
`short_message_num` int NOT NULL DEFAULT 0,
|
||
`short_message_duration` int NOT NULL DEFAULT 0,
|
||
`short_message_charge` int NOT NULL DEFAULT 0,
|
||
`short_message_via_web_num` int NOT NULL DEFAULT 0,
|
||
`short_message_via_web_duration` int NOT NULL DEFAULT 0,
|
||
`short_message_via_web_charge` int NOT NULL DEFAULT 0,
|
||
`conference_call_num` int NOT NULL DEFAULT 0,
|
||
`conference_call_duration` int NOT NULL DEFAULT 0,
|
||
`conference_call_charge` int NOT NULL DEFAULT 0,
|
||
`total_call_num` int NOT NULL DEFAULT 0,
|
||
`total_call_duration` int NOT NULL DEFAULT 0,
|
||
`total_call_charge` int NOT NULL DEFAULT 0,
|
||
`gprs_volume` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`gprs_duration` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`gprs_charged` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`sms_number` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`sms_charged` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`mms_send_number` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`mms_send_charged` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`mms_retrieve_number` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`mms_retrieve_charged` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`mms_email_number` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`mms_email_charged` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`ussd_code_1` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`session_num_1` int NOT NULL DEFAULT 0,
|
||
`session_duration_1` int NOT NULL DEFAULT 0,
|
||
`error_timeout_1` int NOT NULL DEFAULT 0,
|
||
`error_system_1` int NOT NULL DEFAULT 0,
|
||
`error_message_1` int NOT NULL DEFAULT 0,
|
||
`error_reserve_1_1` int NOT NULL DEFAULT 0,
|
||
`error_reserve_2_1` int NOT NULL DEFAULT 0,
|
||
`ussd_code_2` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`session_num_2` int NOT NULL DEFAULT 0,
|
||
`session_duration_2` int NOT NULL DEFAULT 0,
|
||
`error_timeout_2` int NOT NULL DEFAULT 0,
|
||
`error_system_2` int NOT NULL DEFAULT 0,
|
||
`error_message_2` int NOT NULL DEFAULT 0,
|
||
`error_reserve_1_2` int NOT NULL DEFAULT 0,
|
||
`error_reserve_2_2` int NOT NULL DEFAULT 0,
|
||
`ussd_code_3` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`session_num_3` int NOT NULL DEFAULT 0,
|
||
`session_duration_3` int NOT NULL DEFAULT 0,
|
||
`error_timeout_3` int NOT NULL DEFAULT 0,
|
||
`error_system_3` int NOT NULL DEFAULT 0,
|
||
`error_message_3` int NOT NULL DEFAULT 0,
|
||
`error_reserve_1_3` int NOT NULL DEFAULT 0,
|
||
`error_reserve_2_3` int NOT NULL DEFAULT 0,
|
||
`ussd_code_4` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`session_num_4` int NOT NULL DEFAULT 0,
|
||
`session_duration_4` int NOT NULL DEFAULT 0,
|
||
`error_timeout_4` int NOT NULL DEFAULT 0,
|
||
`error_system_4` int NOT NULL DEFAULT 0,
|
||
`error_message_4` int NOT NULL DEFAULT 0,
|
||
`error_reserve_1_4` int NOT NULL DEFAULT 0,
|
||
`error_reserve_2_4` int NOT NULL DEFAULT 0,
|
||
`ussd_code_5` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`session_num_5` int NOT NULL DEFAULT 0,
|
||
`session_duration_5` int NOT NULL DEFAULT 0,
|
||
`error_timeout_5` int NOT NULL DEFAULT 0,
|
||
`error_system_5` int NOT NULL DEFAULT 0,
|
||
`error_message_5` int NOT NULL DEFAULT 0,
|
||
`error_reserve_1_5` int NOT NULL DEFAULT 0,
|
||
`error_reserve_2_5` int NOT NULL DEFAULT 0,
|
||
`ussd_code_6` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`session_num_6` int NOT NULL DEFAULT 0,
|
||
`session_duration_6` int NOT NULL DEFAULT 0,
|
||
`error_timeout_6` int NOT NULL DEFAULT 0,
|
||
`error_system_6` int NOT NULL DEFAULT 0,
|
||
`error_message_6` int NOT NULL DEFAULT 0,
|
||
`error_reserve_1_6` int NOT NULL DEFAULT 0,
|
||
`error_reserve_2_6` int NOT NULL DEFAULT 0,
|
||
`ussd_code_7` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`session_num_7` int NOT NULL DEFAULT 0,
|
||
`session_duration_7` int NOT NULL DEFAULT 0,
|
||
`error_timeout_7` int NOT NULL DEFAULT 0,
|
||
`error_system_7` int NOT NULL DEFAULT 0,
|
||
`error_message_7` int NOT NULL DEFAULT 0,
|
||
`error_reserve_1_7` int NOT NULL DEFAULT 0,
|
||
`error_reserve_2_7` int NOT NULL DEFAULT 0,
|
||
`ussd_code_8` varchar(24) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`session_num_8` int NOT NULL DEFAULT 0,
|
||
`session_duration_8` int NOT NULL DEFAULT 0,
|
||
`error_timeout_8` int NOT NULL DEFAULT 0,
|
||
`error_system_8` int NOT NULL DEFAULT 0,
|
||
`error_message_8` int NOT NULL DEFAULT 0,
|
||
`error_reserve_1_8` int NOT NULL DEFAULT 0,
|
||
`error_reserve_2_8` int NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`date`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of daily_report
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for gprs_tariff
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `gprs_tariff`;
|
||
CREATE TABLE `gprs_tariff` (
|
||
`tariff_id` tinyint NOT NULL DEFAULT 0,
|
||
`record_id` tinyint NOT NULL DEFAULT 0,
|
||
`dest_ip` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0.0.0.0',
|
||
`charge_unit` int NOT NULL DEFAULT 0,
|
||
`basic_fee` int NOT NULL DEFAULT 0,
|
||
`min_charge_unit` int NOT NULL DEFAULT 0,
|
||
`initial_adjustment` int NOT NULL DEFAULT 0,
|
||
`cap_flag` tinyint NOT NULL DEFAULT 0,
|
||
`discount_id` int NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`record_id`, `tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of gprs_tariff
|
||
-- ----------------------------
|
||
INSERT INTO `gprs_tariff` VALUES (0, 0, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for mo_tariff
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `mo_tariff`;
|
||
CREATE TABLE `mo_tariff` (
|
||
`bill_id` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`area` varchar(32) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`tariff_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`call_type` tinyint NOT NULL DEFAULT 0,
|
||
`discount_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`free_time` smallint NOT NULL DEFAULT 0,
|
||
`unit_time` smallint UNSIGNED NOT NULL DEFAULT 60,
|
||
`mini_time` smallint UNSIGNED NOT NULL DEFAULT 1,
|
||
`adjustment` float NOT NULL DEFAULT 0,
|
||
`cap_flag` tinyint UNSIGNED NOT NULL DEFAULT 0,
|
||
`tier_level` smallint NOT NULL DEFAULT 0,
|
||
`tier_unit_0` smallint NOT NULL DEFAULT 0,
|
||
`base_fee_0` float NOT NULL DEFAULT 0,
|
||
`long_distance_fee_0` float NOT NULL DEFAULT 0,
|
||
`tier_unit_1` smallint NOT NULL DEFAULT 0,
|
||
`base_fee_1` float NOT NULL DEFAULT 0,
|
||
`long_distance_fee_1` float NOT NULL DEFAULT 0,
|
||
`tier_unit_2` smallint NOT NULL DEFAULT 0,
|
||
`base_fee_2` float NOT NULL DEFAULT 0,
|
||
`long_distance_fee_2` float NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`bill_id`, `tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of mo_tariff
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for mt_tariff
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `mt_tariff`;
|
||
CREATE TABLE `mt_tariff` (
|
||
`bill_id` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`area` varchar(32) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`tariff_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`call_type` tinyint UNSIGNED NOT NULL DEFAULT 0,
|
||
`discount_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`free_time` smallint NOT NULL DEFAULT 0,
|
||
`unit_time` smallint UNSIGNED NOT NULL DEFAULT 60,
|
||
`mini_time` smallint UNSIGNED NOT NULL DEFAULT 1,
|
||
`adjustment` float NOT NULL DEFAULT 0,
|
||
`tier_level` smallint NOT NULL DEFAULT 0,
|
||
`tier_unit_0` smallint NOT NULL DEFAULT 0,
|
||
`base_fee_0` float NOT NULL DEFAULT 0,
|
||
`long_distance_fee_0` float NOT NULL DEFAULT 0,
|
||
`tier_unit_1` smallint NOT NULL DEFAULT 0,
|
||
`base_fee_1` float NOT NULL DEFAULT 0,
|
||
`long_distance_fee_1` float NOT NULL DEFAULT 0,
|
||
`tier_unit_2` smallint NOT NULL DEFAULT 0,
|
||
`base_fee_2` float NOT NULL DEFAULT 0,
|
||
`long_distance_fee_2` float NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`bill_id`, `tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of mt_tariff
|
||
-- ----------------------------
|
||
INSERT INTO `mt_tariff` VALUES ('', '', 00, 0, 00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for pre_bill_discount
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `pre_bill_discount`;
|
||
CREATE TABLE `pre_bill_discount` (
|
||
`discount_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`hours` tinyint NOT NULL DEFAULT 0,
|
||
`mon` tinyint NOT NULL DEFAULT 100,
|
||
`tue` tinyint NOT NULL DEFAULT 100,
|
||
`wed` tinyint NOT NULL DEFAULT 100,
|
||
`thu` tinyint NOT NULL DEFAULT 100,
|
||
`fri` tinyint NOT NULL DEFAULT 100,
|
||
`sat` tinyint NOT NULL DEFAULT 100,
|
||
`sun` tinyint NOT NULL DEFAULT 100,
|
||
`holiday` tinyint NOT NULL DEFAULT 100,
|
||
PRIMARY KEY (`hours`, `discount_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Fixed;
|
||
|
||
-- ----------------------------
|
||
-- Records of pre_bill_discount
|
||
-- ----------------------------
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 0, 0, 0, 0, 0, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (00, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (01, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (02, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (03, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (04, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (05, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (06, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (07, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (08, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (09, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (10, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (11, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (12, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (13, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (14, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (15, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (16, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (17, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (18, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (19, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (20, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (21, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (22, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (23, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (24, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (25, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (26, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (27, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (28, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (29, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (30, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 0, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 1, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 2, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 3, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 4, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 5, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 6, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 7, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 8, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 9, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 10, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 11, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 12, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 13, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 14, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 15, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 16, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 17, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 18, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 19, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 20, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 21, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 22, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
INSERT INTO `pre_bill_discount` VALUES (31, 23, 100, 100, 100, 100, 100, 100, 100, 100);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for pre_bill_holiday
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `pre_bill_holiday`;
|
||
CREATE TABLE `pre_bill_holiday` (
|
||
`month` tinyint UNSIGNED NOT NULL DEFAULT 1,
|
||
`day` tinyint UNSIGNED NOT NULL DEFAULT 1,
|
||
`name` char(20) CHARACTER SET latin1 COLLATE latin1_bin NULL DEFAULT NULL,
|
||
PRIMARY KEY (`month`, `day`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Fixed;
|
||
|
||
-- ----------------------------
|
||
-- Records of pre_bill_holiday
|
||
-- ----------------------------
|
||
INSERT INTO `pre_bill_holiday` VALUES (1, 1, 'test');
|
||
INSERT INTO `pre_bill_holiday` VALUES (5, 6, '--test\r');
|
||
INSERT INTO `pre_bill_holiday` VALUES (10, 1, 'natioanl day');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for pre_bill_sms
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `pre_bill_sms`;
|
||
CREATE TABLE `pre_bill_sms` (
|
||
`id` tinyint NOT NULL DEFAULT 0,
|
||
`prefix` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`call_type` tinyint UNSIGNED NOT NULL DEFAULT 0,
|
||
`area` varchar(32) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`tariff_id` tinyint NOT NULL DEFAULT 0,
|
||
`discount_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`charge_amount` float NOT NULL DEFAULT 10,
|
||
`cap_flag` tinyint UNSIGNED NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`id`, `tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of pre_bill_sms
|
||
-- ----------------------------
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 0, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 0, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 0, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 0, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 1, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 1, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 1, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 1, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 2, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 2, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 2, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 2, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 3, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 3, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 3, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 3, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 4, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 4, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 4, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 4, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 5, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 5, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 5, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 5, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 6, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 6, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 6, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 6, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 7, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 7, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 7, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 7, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 8, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 8, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 8, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 8, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 9, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 9, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 9, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 9, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 10, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 10, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 10, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 10, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 11, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 11, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 11, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 11, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 12, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 12, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 12, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 12, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 13, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 13, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 13, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 13, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 14, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 14, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 14, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 14, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 15, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 15, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 15, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 15, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 16, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 16, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 16, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 16, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 17, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 17, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 17, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 17, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 18, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 18, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 18, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 18, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 19, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 19, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 19, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 19, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 20, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 20, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 20, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 20, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 21, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 21, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 21, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 21, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 22, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 22, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 22, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 22, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 23, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 23, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 23, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 23, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 24, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 24, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 24, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 24, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 25, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 25, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 25, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 25, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 26, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 26, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 26, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 26, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 27, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 27, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 27, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 27, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 28, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 28, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 28, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 28, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 29, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 29, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 29, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 29, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 30, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 30, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 30, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 30, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 31, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 31, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 31, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 31, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 32, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 32, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 32, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 32, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 33, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 33, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 33, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 33, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 34, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 34, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 34, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 34, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 35, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 35, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 35, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 35, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 36, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 36, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 36, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 36, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 37, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 37, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 37, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 37, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 38, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 38, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 38, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 38, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 39, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 39, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 39, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 39, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 40, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 40, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 40, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 40, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 41, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 41, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 41, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 41, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 42, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 42, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 42, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 42, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 43, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 43, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 43, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 43, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 44, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 44, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 44, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 44, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 45, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 45, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 45, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 45, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 46, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 46, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 46, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 46, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 47, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 47, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 47, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 47, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 48, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 48, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 48, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 48, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 49, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 49, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 49, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 49, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 50, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 50, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 50, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 50, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 51, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 51, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 51, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 51, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 52, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 52, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 52, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 52, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 53, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 53, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 53, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 53, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 54, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 54, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 54, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 54, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 55, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 55, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 55, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 55, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 56, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 56, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 56, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 56, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 57, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 57, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 57, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 57, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 58, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 58, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 58, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 58, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 59, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 59, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 59, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 59, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 60, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 60, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 60, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 60, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 61, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 61, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 61, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 61, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 62, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 62, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 62, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 62, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (1, '', 0, 'Default', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (2, '696', 0, 'local', 63, 00, 300, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (3, '690', 0, 'outside plmn', 63, 00, 200, 2);
|
||
INSERT INTO `pre_bill_sms` VALUES (4, '696', 0, 'Local SMS Simulator', 63, 00, 20, 1);
|
||
INSERT INTO `pre_bill_sms` VALUES (5, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (6, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (7, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (8, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (9, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (10, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (11, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (12, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (13, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (14, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (15, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (16, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (17, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (18, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (19, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (20, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (21, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (22, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (23, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (24, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (25, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (26, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (27, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (28, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (29, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (30, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (31, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (32, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (33, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (34, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (35, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (36, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (37, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (38, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (39, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (40, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (41, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (42, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (43, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (44, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (45, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (46, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (47, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (48, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (49, '0', 0, '', 63, 00, 0, 0);
|
||
INSERT INTO `pre_bill_sms` VALUES (50, '0', 0, '', 63, 00, 0, 0);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for pre_comm_tariff
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `pre_comm_tariff`;
|
||
CREATE TABLE `pre_comm_tariff` (
|
||
`tariff_id` tinyint NOT NULL DEFAULT 2,
|
||
`cf_charge_unit` smallint UNSIGNED NOT NULL DEFAULT 60,
|
||
`cf_charge_amount` float UNSIGNED NOT NULL DEFAULT 1,
|
||
`roaming_charge_unit` smallint UNSIGNED NOT NULL DEFAULT 60,
|
||
`roaming_charge_amount` float UNSIGNED NOT NULL DEFAULT 1,
|
||
`cc_charge_unit` smallint UNSIGNED NOT NULL DEFAULT 60,
|
||
`cc_charge_amount` float UNSIGNED NOT NULL DEFAULT 1,
|
||
`cug_charge_unit` smallint UNSIGNED NOT NULL DEFAULT 60,
|
||
`cug_charge_amount` float NOT NULL DEFAULT 1,
|
||
`fav_change_charge` float NOT NULL DEFAULT 0,
|
||
`fav_charge_unit` smallint NOT NULL DEFAULT 60,
|
||
`fav_charge_amount` float NOT NULL DEFAULT 0,
|
||
`cf_cug_charge_unit` smallint NOT NULL DEFAULT 60,
|
||
`cf_cug_charge_amount` float NOT NULL DEFAULT 0,
|
||
`cf_fav_charge_unit` smallint NOT NULL DEFAULT 60,
|
||
`cf_fav_charge_amount` float NOT NULL DEFAULT 0,
|
||
`cug_fav_charge_unit` smallint NOT NULL DEFAULT 60,
|
||
`cug_fav_charge_amount` float NOT NULL DEFAULT 0,
|
||
`cf_cug_fav_charge_unit` smallint NOT NULL DEFAULT 60,
|
||
`cf_cug_fav_charge_amount` float NOT NULL DEFAULT 0,
|
||
`pool_account_change_charge` float NOT NULL DEFAULT 0,
|
||
`pool_call_unit` smallint NOT NULL DEFAULT 1,
|
||
`pool_call_amount` float NOT NULL DEFAULT 0,
|
||
`act_free_sms_charge` float NOT NULL DEFAULT 0,
|
||
`deact_free_sms_charge` float NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Fixed;
|
||
|
||
-- ----------------------------
|
||
-- Records of pre_comm_tariff
|
||
-- ----------------------------
|
||
INSERT INTO `pre_comm_tariff` VALUES (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_comm_tariff` VALUES (63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for pre_gprs_tariff
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `pre_gprs_tariff`;
|
||
CREATE TABLE `pre_gprs_tariff` (
|
||
`tariff_id` tinyint NOT NULL DEFAULT 0,
|
||
`record_id` tinyint NOT NULL DEFAULT 0,
|
||
`dest_ip` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0.0.0.0',
|
||
`charge_unit` int NOT NULL DEFAULT 0,
|
||
`basic_fee` int NOT NULL DEFAULT 0,
|
||
`min_charge_unit` int NOT NULL DEFAULT 0,
|
||
`initial_adjustment` int NOT NULL DEFAULT 0,
|
||
`cap_flag` tinyint NOT NULL DEFAULT 0,
|
||
`discount_id` int NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`record_id`, `tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of pre_gprs_tariff
|
||
-- ----------------------------
|
||
INSERT INTO `pre_gprs_tariff` VALUES (0, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (1, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (2, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (3, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (4, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (5, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (6, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (7, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (8, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (9, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (10, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (11, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (12, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (13, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (14, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (15, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (16, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (17, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (18, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (19, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (20, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (21, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (22, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (23, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (24, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (25, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (26, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (27, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (28, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (29, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (30, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (31, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (32, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (33, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (34, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (35, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (36, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (37, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (38, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (39, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (40, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (41, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (42, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (43, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (44, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (45, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (46, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (47, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (48, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (49, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (50, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (51, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (52, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (53, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (54, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (55, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (56, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (57, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (58, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (59, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (60, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (61, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (62, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
INSERT INTO `pre_gprs_tariff` VALUES (63, 1, '0.0.0.0', 0, 0, 0, 0, 0, 0);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for pre_mo_tariff
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `pre_mo_tariff`;
|
||
CREATE TABLE `pre_mo_tariff` (
|
||
`bill_id` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`area` varchar(32) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`tariff_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`call_type` tinyint NOT NULL DEFAULT 0,
|
||
`discount_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`free_time` smallint NULL DEFAULT 0,
|
||
`unit_time` smallint UNSIGNED NULL DEFAULT 60,
|
||
`mini_time` smallint UNSIGNED NULL DEFAULT 1,
|
||
`adjustment` float NULL DEFAULT 0,
|
||
`cap_flag` tinyint UNSIGNED NULL DEFAULT 0,
|
||
`tier_level` smallint NULL DEFAULT 0,
|
||
`tier_unit_0` smallint NULL DEFAULT 0,
|
||
`base_fee_0` float NULL DEFAULT 0,
|
||
`long_distance_fee_0` float NULL DEFAULT 0,
|
||
`tier_unit_1` smallint NULL DEFAULT 0,
|
||
`base_fee_1` float NULL DEFAULT 0,
|
||
`long_distance_fee_1` float NULL DEFAULT 0,
|
||
`tier_unit_2` smallint NULL DEFAULT 0,
|
||
`base_fee_2` float NULL DEFAULT 0,
|
||
`long_distance_fee_2` float NULL DEFAULT 0,
|
||
PRIMARY KEY (`bill_id`, `tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of pre_mo_tariff
|
||
-- ----------------------------
|
||
INSERT INTO `pre_mo_tariff` VALUES ('755', 'ÉîÛÚ', 00, 0, 00, 0, 60, 1, 0, 0, 1, 1, 10, 0, 1, 5, 0, 0, 0, 0);
|
||
INSERT INTO `pre_mo_tariff` VALUES ('001', 'usa', 00, 2, 01, 0, 6, 1, 0, 0, 0, 1, 100, 200, 0, 0, 0, 0, 0, 0);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for pre_mt_tariff
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `pre_mt_tariff`;
|
||
CREATE TABLE `pre_mt_tariff` (
|
||
`bill_id` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`area` varchar(32) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`tariff_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`call_type` tinyint UNSIGNED NOT NULL DEFAULT 0,
|
||
`discount_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`free_time` smallint NOT NULL DEFAULT 0,
|
||
`unit_time` smallint UNSIGNED NOT NULL DEFAULT 60,
|
||
`mini_time` smallint UNSIGNED NOT NULL DEFAULT 1,
|
||
`adjustment` float NOT NULL DEFAULT 0,
|
||
`tier_level` smallint NOT NULL DEFAULT 0,
|
||
`tier_unit_0` smallint NOT NULL DEFAULT 0,
|
||
`base_fee_0` float NOT NULL DEFAULT 0,
|
||
`long_distance_fee_0` float NOT NULL DEFAULT 0,
|
||
`tier_unit_1` smallint NOT NULL DEFAULT 0,
|
||
`base_fee_1` float NOT NULL DEFAULT 0,
|
||
`long_distance_fee_1` float NOT NULL DEFAULT 0,
|
||
`tier_unit_2` smallint NOT NULL DEFAULT 0,
|
||
`base_fee_2` float NOT NULL DEFAULT 0,
|
||
`long_distance_fee_2` float NOT NULL DEFAULT 0,
|
||
`cap_flag` tinyint NULL DEFAULT NULL,
|
||
PRIMARY KEY (`bill_id`, `tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of pre_mt_tariff
|
||
-- ----------------------------
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 00, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 01, 4, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 02, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 03, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 04, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 05, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 06, 4, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 07, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 08, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 09, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 10, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 11, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 12, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 13, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 14, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 15, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 16, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 17, 4, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 18, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 19, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 20, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 21, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 22, 4, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 23, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 24, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 25, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 26, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 27, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 28, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 29, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 30, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 31, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 32, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 33, 4, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 34, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 35, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 36, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 37, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 38, 4, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 39, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 40, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 41, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 42, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 43, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 44, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 45, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 46, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 47, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 48, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 49, 4, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 50, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 51, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 52, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 53, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 54, 4, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 55, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 56, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 57, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 58, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 59, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 60, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 61, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 62, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
INSERT INTO `pre_mt_tariff` VALUES ('', 'Default', 63, 0, 00, 0, 60, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for pre_rent
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `pre_rent`;
|
||
CREATE TABLE `pre_rent` (
|
||
`tariff_id` tinyint NOT NULL DEFAULT 0,
|
||
`id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`description` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`rent_type` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`charge_date` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 01,
|
||
`rent_amount` float UNSIGNED NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`id`, `tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of pre_rent
|
||
-- ----------------------------
|
||
INSERT INTO `pre_rent` VALUES (0, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (0, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (0, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (0, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (0, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (0, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (0, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (0, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (1, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (1, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (1, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (1, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (1, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (1, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (1, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (1, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (2, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (2, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (2, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (2, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (2, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (2, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (2, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (2, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (3, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (3, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (3, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (3, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (3, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (3, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (3, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (3, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (4, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (4, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (4, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (4, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (4, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (4, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (4, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (4, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (5, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (5, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (5, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (5, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (5, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (5, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (5, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (5, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (6, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (6, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (6, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (6, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (6, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (6, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (6, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (6, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (7, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (7, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (7, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (7, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (7, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (7, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (7, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (7, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (8, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (8, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (8, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (8, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (8, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (8, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (8, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (8, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (9, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (9, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (9, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (9, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (9, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (9, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (9, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (9, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (10, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (10, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (10, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (10, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (10, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (10, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (10, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (10, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (11, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (11, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (11, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (11, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (11, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (11, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (11, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (11, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (12, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (12, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (12, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (12, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (12, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (12, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (12, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (12, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (13, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (13, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (13, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (13, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (13, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (13, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (13, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (13, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (14, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (14, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (14, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (14, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (14, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (14, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (14, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (14, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (15, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (15, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (15, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (15, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (15, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (15, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (15, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (15, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (16, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (16, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (16, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (16, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (16, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (16, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (16, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (16, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (17, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (17, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (17, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (17, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (17, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (17, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (17, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (17, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (18, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (18, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (18, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (18, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (18, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (18, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (18, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (18, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (19, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (19, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (19, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (19, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (19, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (19, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (19, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (19, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (20, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (20, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (20, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (20, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (20, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (20, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (20, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (20, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (21, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (21, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (21, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (21, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (21, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (21, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (21, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (21, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (22, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (22, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (22, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (22, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (22, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (22, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (22, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (22, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (23, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (23, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (23, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (23, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (23, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (23, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (23, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (23, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (24, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (24, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (24, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (24, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (24, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (24, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (24, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (24, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (25, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (25, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (25, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (25, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (25, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (25, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (25, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (25, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (26, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (26, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (26, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (26, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (26, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (26, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (26, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (26, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (27, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (27, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (27, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (27, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (27, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (27, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (27, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (27, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (28, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (28, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (28, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (28, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (28, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (28, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (28, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (28, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (29, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (29, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (29, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (29, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (29, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (29, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (29, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (29, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (30, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (30, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (30, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (30, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (30, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (30, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (30, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (30, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (31, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (31, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (31, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (31, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (31, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (31, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (31, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (31, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (32, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (32, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (32, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (32, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (32, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (32, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (32, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (32, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (33, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (33, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (33, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (33, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (33, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (33, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (33, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (33, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (34, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (34, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (34, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (34, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (34, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (34, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (34, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (34, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (35, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (35, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (35, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (35, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (35, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (35, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (35, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (35, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (36, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (36, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (36, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (36, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (36, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (36, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (36, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (36, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (37, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (37, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (37, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (37, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (37, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (37, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (37, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (37, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (38, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (38, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (38, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (38, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (38, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (38, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (38, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (38, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (39, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (39, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (39, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (39, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (39, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (39, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (39, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (39, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (40, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (40, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (40, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (40, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (40, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (40, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (40, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (40, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (41, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (41, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (41, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (41, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (41, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (41, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (41, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (41, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (42, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (42, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (42, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (42, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (42, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (42, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (42, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (42, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (43, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (43, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (43, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (43, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (43, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (43, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (43, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (43, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (44, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (44, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (44, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (44, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (44, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (44, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (44, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (44, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (45, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (45, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (45, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (45, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (45, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (45, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (45, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (45, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (46, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (46, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (46, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (46, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (46, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (46, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (46, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (46, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (47, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (47, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (47, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (47, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (47, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (47, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (47, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (47, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (48, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (48, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (48, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (48, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (48, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (48, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (48, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (48, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (49, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (49, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (49, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (49, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (49, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (49, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (49, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (49, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (50, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (50, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (50, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (50, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (50, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (50, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (50, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (50, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (51, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (51, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (51, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (51, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (51, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (51, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (51, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (51, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (52, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (52, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (52, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (52, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (52, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (52, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (52, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (52, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (53, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (53, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (53, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (53, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (53, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (53, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (53, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (53, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (54, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (54, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (54, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (54, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (54, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (54, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (54, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (54, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (55, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (55, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (55, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (55, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (55, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (55, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (55, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (55, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (56, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (56, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (56, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (56, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (56, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (56, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (56, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (56, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (57, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (57, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (57, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (57, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (57, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (57, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (57, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (57, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (58, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (58, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (58, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (58, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (58, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (58, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (58, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (58, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (59, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (59, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (59, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (59, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (59, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (59, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (59, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (59, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (60, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (60, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (60, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (60, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (60, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (60, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (60, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (60, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (61, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (61, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (61, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (61, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (61, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (61, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (61, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (61, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (62, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (62, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (62, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (62, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (62, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (62, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (62, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (62, 08, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (63, 01, 'VMS', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (63, 02, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (63, 03, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (63, 04, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (63, 05, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (63, 06, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (63, 07, '', 00, 00, 0);
|
||
INSERT INTO `pre_rent` VALUES (63, 08, '', 00, 00, 0);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for pre_vas_mms_email_tariff
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `pre_vas_mms_email_tariff`;
|
||
CREATE TABLE `pre_vas_mms_email_tariff` (
|
||
`tariff_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`email_id` smallint NOT NULL DEFAULT 0,
|
||
`prefix` varchar(128) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`call_type` smallint NOT NULL DEFAULT 0,
|
||
`dest_name` varchar(128) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`discount_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`charge_fee` float NOT NULL DEFAULT 0,
|
||
`cap_flag` tinyint UNSIGNED NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`email_id`, `tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of pre_vas_mms_email_tariff
|
||
-- ----------------------------
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (00, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (01, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (02, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (03, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (04, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (05, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (06, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (07, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (08, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (09, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (10, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (11, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (12, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (13, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (14, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (15, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (16, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (17, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (18, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (19, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (20, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (21, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (22, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (23, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (24, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (25, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (26, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (27, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (28, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (29, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (30, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (31, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (32, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (33, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (34, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (35, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (36, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (37, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (38, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (39, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (40, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (41, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (42, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (43, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (44, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (45, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (46, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (47, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (48, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (49, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (50, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (51, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (52, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (53, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (54, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (55, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (56, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (57, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (58, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (59, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (60, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (61, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (62, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_email_tariff` VALUES (63, 1, '', 4, '', 00, 0, 0);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for pre_vas_mms_retrieve_tariff
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `pre_vas_mms_retrieve_tariff`;
|
||
CREATE TABLE `pre_vas_mms_retrieve_tariff` (
|
||
`tariff_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`mms_retrieve_id` smallint NOT NULL DEFAULT 0,
|
||
`prefix` varchar(128) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`call_type` smallint NOT NULL DEFAULT 0,
|
||
`dest_name` varchar(128) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`discount_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`charge_fee` float NOT NULL DEFAULT 0,
|
||
`cap_flag` tinyint UNSIGNED NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`mms_retrieve_id`, `tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of pre_vas_mms_retrieve_tariff
|
||
-- ----------------------------
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (00, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (01, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (02, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (03, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (04, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (05, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (06, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (07, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (08, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (09, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (10, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (11, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (12, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (13, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (14, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (15, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (16, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (17, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (18, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (19, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (20, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (21, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (22, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (23, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (24, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (25, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (26, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (27, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (28, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (29, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (30, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (31, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (32, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (33, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (34, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (35, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (36, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (37, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (38, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (39, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (40, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (41, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (42, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (43, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (44, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (45, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (46, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (47, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (48, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (49, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (50, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (51, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (52, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (53, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (54, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (55, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (56, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (57, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (58, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (59, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (60, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (61, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (62, 1, '', 4, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_retrieve_tariff` VALUES (63, 1, '', 4, '', 00, 0, 0);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for pre_vas_mms_send_tariff
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `pre_vas_mms_send_tariff`;
|
||
CREATE TABLE `pre_vas_mms_send_tariff` (
|
||
`tariff_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`mms_send_id` smallint NOT NULL DEFAULT 0,
|
||
`mms_type` smallint NOT NULL DEFAULT 0,
|
||
`prefix` varchar(128) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`call_type` smallint NOT NULL DEFAULT 0,
|
||
`dest_name` varchar(128) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`discount_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`charge_fee` float NOT NULL DEFAULT 0,
|
||
`cap_flag` tinyint UNSIGNED NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`mms_send_id`, `tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of pre_vas_mms_send_tariff
|
||
-- ----------------------------
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (00, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (01, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (02, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (03, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (04, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (05, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (06, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (07, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (08, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (09, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (10, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (11, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (12, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (13, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (14, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (15, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (16, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (17, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (18, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (19, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (20, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (21, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (22, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (23, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (24, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (25, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (26, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (27, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (28, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (29, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (30, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (31, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (32, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (33, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (34, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (35, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (36, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (37, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (38, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (39, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (40, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (41, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (42, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (43, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (44, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (45, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (46, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (47, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (48, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (49, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (50, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (51, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (52, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (53, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (54, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (55, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (56, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (57, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (58, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (59, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (60, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (61, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (62, 64, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 1, 1, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 2, 2, '--', 0, 'default', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 3, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 4, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 5, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 6, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 7, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 8, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 9, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 10, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 11, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 12, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 13, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 14, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 15, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 16, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 17, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 18, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 19, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 20, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 21, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 22, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 23, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 24, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 25, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 26, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 27, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 28, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 29, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 30, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 31, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 32, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 33, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 34, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 35, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 36, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 37, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 38, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 39, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 40, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 41, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 42, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 43, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 44, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 45, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 46, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 47, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 48, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 49, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 50, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 51, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 52, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 53, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 54, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 55, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 56, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 57, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 58, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 59, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 60, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 61, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 62, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 63, 1, '', 0, '', 00, 0, 0);
|
||
INSERT INTO `pre_vas_mms_send_tariff` VALUES (63, 64, 1, '', 0, '', 00, 0, 0);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for recover
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `recover`;
|
||
CREATE TABLE `recover` (
|
||
`start_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`end_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`digital_6` varchar(6) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '252500',
|
||
`digital_8` varchar(8) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL,
|
||
`cc` varchar(4) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '252',
|
||
`ndc` varchar(4) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL,
|
||
`ip_address` varchar(19) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '172.18.98.1'
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of recover
|
||
-- ----------------------------
|
||
INSERT INTO `recover` VALUES ('2003-12-31 19:00:00', '2004-01-01 12:25:30', '229000', '22900001', '86', '755', '172.18.98.1');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for register_opr
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `register_opr`;
|
||
CREATE TABLE `register_opr` (
|
||
`imei` char(15) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`ppCardPasswd` char(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`result` char(7) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`msisdn` char(18) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`pin` char(6) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`balance` char(32) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`expire_date` char(32) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`failCause` char(32) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
PRIMARY KEY (`imei`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Fixed;
|
||
|
||
-- ----------------------------
|
||
-- Records of register_opr
|
||
-- ----------------------------
|
||
INSERT INTO `register_opr` VALUES ('123451234512345', '123456781233123', '', '', '', '', '', '');
|
||
INSERT INTO `register_opr` VALUES ('449318740543793', '000017528517', 'Success', '66755900053', '305277', ' 5000', '20110101082832', '');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for rent
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `rent`;
|
||
CREATE TABLE `rent` (
|
||
`tariff_id` tinyint NOT NULL DEFAULT 0,
|
||
`id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`description` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`rent_type` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`charge_date` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 01,
|
||
`rent_amount` float UNSIGNED NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`id`, `tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of rent
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for tariffPlanComm
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `tariffPlanComm`;
|
||
CREATE TABLE `tariffPlanComm` (
|
||
`key_comm_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL AUTO_INCREMENT,
|
||
`comm_status` tinyint UNSIGNED NOT NULL DEFAULT 0,
|
||
`take_affect_time` bigint UNSIGNED NOT NULL DEFAULT 0,
|
||
`operator` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
|
||
`host_ip` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '0',
|
||
`request_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
`finish_time` datetime NULL DEFAULT '0000-00-00 00:00:00',
|
||
`remark` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
|
||
`mflag` tinyint NOT NULL DEFAULT 0,
|
||
INDEX `key_comm_id`(`key_comm_id`) USING BTREE,
|
||
INDEX `mflag`(`mflag`) USING BTREE
|
||
) ENGINE = MyISAM AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of tariffPlanComm
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for third_party
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `third_party`;
|
||
CREATE TABLE `third_party` (
|
||
`service_id` varchar(8) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT 'ESME',
|
||
`service_pwd` varchar(8) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '123456',
|
||
`service_type` smallint NOT NULL DEFAULT 0,
|
||
`service_number` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`card_pwd` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`charge_amount` float NOT NULL DEFAULT 1,
|
||
PRIMARY KEY (`service_number`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of third_party
|
||
-- ----------------------------
|
||
INSERT INTO `third_party` VALUES ('8888', '123456', 0, '86755900005', '0000022016581300', 10);
|
||
INSERT INTO `third_party` VALUES ('8888', '123456', 1, '86755900004', '', 10);
|
||
INSERT INTO `third_party` VALUES ('', 'error se', 0, '', '', 1);
|
||
INSERT INTO `third_party` VALUES ('8888', '123456', 0, '594694460015', '0101065274891117', 1);
|
||
INSERT INTO `third_party` VALUES ('8888', '123456', 0, '594694460004', '729470295460', 1);
|
||
INSERT INTO `third_party` VALUES ('8888', '123456', 1, '594694460005', '', 10);
|
||
|
||
-- ----------------------------
|
||
-- Table structure for used_card_info
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `used_card_info`;
|
||
CREATE TABLE `used_card_info` (
|
||
`card_no` char(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`card_hrn` char(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`face_value` int UNSIGNED NULL DEFAULT NULL,
|
||
`card_status` tinyint NULL DEFAULT NULL,
|
||
`expiry_date` datetime NULL DEFAULT NULL,
|
||
`valid_time` int UNSIGNED NOT NULL DEFAULT 0,
|
||
`msisdn_used` char(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL,
|
||
`updated_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
PRIMARY KEY (`card_no`) USING BTREE,
|
||
UNIQUE INDEX `card_hrn`(`card_hrn`) USING BTREE,
|
||
INDEX `card_status`(`card_status`) USING BTREE,
|
||
INDEX `updated_date`(`updated_date`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Fixed;
|
||
|
||
-- ----------------------------
|
||
-- Records of used_card_info
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for user_info
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `user_info`;
|
||
CREATE TABLE `user_info` (
|
||
`msisdn` char(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`PIN` char(6) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '123456',
|
||
`status` tinyint UNSIGNED NOT NULL DEFAULT 0,
|
||
`balance` int NOT NULL DEFAULT 0,
|
||
`promo_balance` int NOT NULL DEFAULT 0,
|
||
`overdraft` int NOT NULL DEFAULT 0,
|
||
`access_date` char(14) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '00000000000000',
|
||
`mo_expiration_date` char(14) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '00000000000000',
|
||
`mt_expiration_date` char(14) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '00000000000000',
|
||
`promo_exp_date` char(14) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`cos_id` char(2) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '00',
|
||
`rent_type` char(2) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '00',
|
||
`home_location0` char(2) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`home_location1` char(2) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '1',
|
||
`home_location2` char(2) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '2',
|
||
`home_location3` char(2) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '3',
|
||
`cug_id` smallint NOT NULL DEFAULT 0,
|
||
`language_type` char(2) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`recharge_fail_counter` char(3) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`sm_inquiry_counter` char(3) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`latch_flag` char(3) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`fav_numbers` char(2) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`fav_change_counter` char(3) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '0',
|
||
`favorite_number0` char(18) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`favorite_number1` char(18) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`favorite_number2` char(18) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`favorite_number3` char(18) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`favorite_number4` char(18) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`last_call_type` tinyint NOT NULL DEFAULT 0,
|
||
`last_call_time` char(14) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`last_call_number` char(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`cap_sm_balance0` int NOT NULL DEFAULT 0,
|
||
`cap_sm_counter0` int NOT NULL DEFAULT 0,
|
||
`cap_sm_balance1` int NOT NULL DEFAULT 0,
|
||
`cap_sm_counter1` int NOT NULL DEFAULT 0,
|
||
`cap_call_balance0` int NOT NULL DEFAULT 0,
|
||
`cap_call_duration0` int NOT NULL DEFAULT 0,
|
||
`cap_call_balance1` int NOT NULL DEFAULT 0,
|
||
`cap_call_duration1` int NOT NULL DEFAULT 0,
|
||
`free_sms_remaining_days` int NOT NULL DEFAULT 0,
|
||
`pool_account_type` int NOT NULL DEFAULT 0,
|
||
`child_account_number` char(18) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`child_number_edit_count` int NOT NULL DEFAULT 0,
|
||
`child_number1` char(18) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`child_number2` char(18) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`child_number3` char(18) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`child_number4` char(18) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`child_number5` char(18) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`parent_number` char(18) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`intraday_calls` int NOT NULL DEFAULT 0,
|
||
`intraday_sms` int NOT NULL DEFAULT 0,
|
||
`intraday_charged_balance` int NOT NULL DEFAULT 0,
|
||
`cap_gprs_volume` int NOT NULL DEFAULT 0,
|
||
`cap_gprs_balance` int NOT NULL DEFAULT 0,
|
||
`gprs_volume_this_month` int NOT NULL DEFAULT 0,
|
||
`gprs_notification_times_today` int NOT NULL DEFAULT 0,
|
||
`callme_back_request_times` int NOT NULL DEFAULT 0,
|
||
`favorite_plan_id` tinyint(1) UNSIGNED ZEROFILL NOT NULL DEFAULT 0,
|
||
`favorite_free_call_duration` int UNSIGNED NULL DEFAULT NULL,
|
||
`favorite_free_sms` int UNSIGNED NULL DEFAULT NULL,
|
||
`favorite_plan_state` tinyint(1) NOT NULL DEFAULT 0,
|
||
`bundle_data` int NOT NULL DEFAULT 0,
|
||
`bundle_mov` int NOT NULL DEFAULT 0,
|
||
`bundle_mtv` int NOT NULL DEFAULT 0,
|
||
`bundle_sms` int NOT NULL DEFAULT 0,
|
||
`bundle_validity` char(14) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
||
`bundle_warning_flag` tinyint(1) NOT NULL,
|
||
PRIMARY KEY (`msisdn`) USING BTREE,
|
||
INDEX `account_status`(`status`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Fixed;
|
||
|
||
-- ----------------------------
|
||
-- Records of user_info
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for vas_mms_email_tariff
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `vas_mms_email_tariff`;
|
||
CREATE TABLE `vas_mms_email_tariff` (
|
||
`tariff_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`email_id` smallint NOT NULL DEFAULT 0,
|
||
`prefix` varchar(128) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`call_type` smallint NOT NULL DEFAULT 0,
|
||
`dest_name` varchar(128) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`discount_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`charge_fee` float NOT NULL DEFAULT 0,
|
||
`cap_flag` tinyint UNSIGNED NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`email_id`, `tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of vas_mms_email_tariff
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for vas_mms_retrieve_tariff
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `vas_mms_retrieve_tariff`;
|
||
CREATE TABLE `vas_mms_retrieve_tariff` (
|
||
`tariff_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`mms_retrieve_id` smallint NOT NULL DEFAULT 0,
|
||
`prefix` varchar(128) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`call_type` smallint NOT NULL DEFAULT 0,
|
||
`dest_name` varchar(128) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`discount_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`charge_fee` float NOT NULL DEFAULT 0,
|
||
`cap_flag` tinyint UNSIGNED NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`mms_retrieve_id`, `tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of vas_mms_retrieve_tariff
|
||
-- ----------------------------
|
||
|
||
-- ----------------------------
|
||
-- Table structure for vas_mms_send_tariff
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `vas_mms_send_tariff`;
|
||
CREATE TABLE `vas_mms_send_tariff` (
|
||
`tariff_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`mms_send_id` smallint NOT NULL DEFAULT 0,
|
||
`mms_type` smallint NOT NULL DEFAULT 0,
|
||
`prefix` varchar(128) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`call_type` smallint NOT NULL DEFAULT 0,
|
||
`dest_name` varchar(128) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
||
`discount_id` tinyint(2) UNSIGNED ZEROFILL NOT NULL DEFAULT 00,
|
||
`charge_fee` float NOT NULL DEFAULT 0,
|
||
`cap_flag` tinyint UNSIGNED NOT NULL DEFAULT 0,
|
||
PRIMARY KEY (`mms_send_id`, `tariff_id`) USING BTREE
|
||
) ENGINE = MyISAM CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of vas_mms_send_tariff
|
||
-- ----------------------------
|
||
|
||
SET FOREIGN_KEY_CHECKS = 1;
|