mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 17:37:25 +00:00
3098 lines
1.2 MiB
3098 lines
1.2 MiB
/*
|
|
SQLyog Community v10.2
|
|
MySQL - 5.5.27 : Database - yaamp-empty
|
|
*********************************************************************
|
|
*/
|
|
|
|
/*!40101 SET NAMES utf8 */;
|
|
|
|
/*!40101 SET SQL_MODE=''*/;
|
|
|
|
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
|
/*Table structure for table `accounts` */
|
|
|
|
DROP TABLE IF EXISTS `accounts`;
|
|
|
|
CREATE TABLE `accounts` (
|
|
`id` int(255) NOT NULL AUTO_INCREMENT,
|
|
`coinid` int(11) DEFAULT NULL,
|
|
`last_login` int(10) DEFAULT NULL,
|
|
`is_locked` tinyint(1) DEFAULT '0',
|
|
`no_fees` tinyint(1) DEFAULT NULL,
|
|
`logtraffic` tinyint(1) DEFAULT NULL,
|
|
`balance` double DEFAULT '0',
|
|
`username` varchar(40) NOT NULL,
|
|
`coinsymbol` varchar(16) DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `username` (`username`),
|
|
KEY `coin` (`coinid`),
|
|
KEY `balance` (`balance`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
|
|
/*Data for the table `accounts` */
|
|
|
|
/*Table structure for table `algos` */
|
|
|
|
DROP TABLE IF EXISTS `algos`;
|
|
|
|
CREATE TABLE `algos` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(16) DEFAULT NULL,
|
|
`profit` double DEFAULT NULL,
|
|
`rent` double DEFAULT NULL,
|
|
`factor` double DEFAULT NULL,
|
|
`overflow` tinyint(1) DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `name` (`name`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=latin1;
|
|
|
|
/*Data for the table `algos` */
|
|
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (1,'scrypt',0.30651440657997,0.31570983877737,1,1);
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (2,'scryptn',0.4174586139494,0.49174020658207,0.5,1);
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (3,'neoscrypt',12.25677207747,12.925281732107,0.3,1);
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (4,'quark',0.45919183061199,0.50106964772043,5,1);
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (5,'lyra2',1.5574893039437,1.604213983062,1.3,1);
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (6,'x11',0.30653646974771,0.31573256384015,5.5,1);
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (7,'x13',0.50540559853334,0.54911799971036,3.9,1);
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (8,'x14',0.11377155649139,0.11718470318613,3.7,0);
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (9,'x15',0.44359137917151,0.78621330434334,3.5,1);
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (10,'fresh',0.0026231955438411,0.0027018914101563,5,0);
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (11,'sha256',0.0085812670518097,0.008838705063364,0,0);
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (12,'qubit',0.23941515081641,0.2465976053409,5,1);
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (13,'skein',0.010367830496707,0.010678865411608,90,0);
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (14,'groestl',0.069247961028435,0.071325399859288,5,0);
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (15,'blake',0.00031848765805978,0.00032804228780157,300,0);
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (16,'keccak',0.0016597457290427,0.001709538100914,160,0);
|
|
insert into `algos`(`id`,`name`,`profit`,`rent`,`factor`,`overflow`) values (17,'nist5',0.18308742021568,0.2268296498337,16,1);
|
|
|
|
/*Table structure for table `balances` */
|
|
|
|
DROP TABLE IF EXISTS `balances`;
|
|
|
|
CREATE TABLE `balances` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(16) DEFAULT NULL,
|
|
`balance` double DEFAULT NULL,
|
|
`onsell` double DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `name` (`name`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
|
|
|
|
/*Data for the table `balances` */
|
|
|
|
insert into `balances`(`id`,`name`,`balance`,`onsell`) values (1,'bittrex',0,NULL);
|
|
insert into `balances`(`id`,`name`,`balance`,`onsell`) values (2,'poloniex',0,NULL);
|
|
insert into `balances`(`id`,`name`,`balance`,`onsell`) values (3,'cryptsy',0,NULL);
|
|
insert into `balances`(`id`,`name`,`balance`,`onsell`) values (4,'bleutrade',0,NULL);
|
|
insert into `balances`(`id`,`name`,`balance`,`onsell`) values (5,'yobit',0,NULL);
|
|
insert into `balances`(`id`,`name`,`balance`,`onsell`) values (6,'c-cex',0,NULL);
|
|
|
|
/*Table structure for table `balanceuser` */
|
|
|
|
DROP TABLE IF EXISTS `balanceuser`;
|
|
|
|
CREATE TABLE `balanceuser` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`userid` int(11) DEFAULT NULL,
|
|
`time` int(11) DEFAULT NULL,
|
|
`balance` double DEFAULT NULL,
|
|
`pending` double DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `userid` (`userid`),
|
|
KEY `time` (`time`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
|
|
/*Data for the table `balanceuser` */
|
|
|
|
/*Table structure for table `blocks` */
|
|
|
|
DROP TABLE IF EXISTS `blocks`;
|
|
|
|
CREATE TABLE `blocks` (
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|
`coin_id` int(11) DEFAULT NULL,
|
|
`height` int(11) unsigned DEFAULT NULL,
|
|
`confirmations` int(11) DEFAULT NULL,
|
|
`time` int(11) DEFAULT NULL,
|
|
`userid` int(11) DEFAULT NULL,
|
|
`difficulty_user` double DEFAULT NULL,
|
|
`price` double DEFAULT NULL,
|
|
`amount` double DEFAULT NULL,
|
|
`difficulty` double DEFAULT NULL,
|
|
`category` varchar(16) DEFAULT NULL,
|
|
`algo` varchar(16) DEFAULT 'scrypt',
|
|
`blockhash` varchar(128) DEFAULT NULL,
|
|
`txhash` varchar(128) DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `time` (`time`),
|
|
KEY `algo1` (`algo`),
|
|
KEY `coin` (`coin_id`),
|
|
KEY `category` (`category`),
|
|
KEY `user1` (`userid`),
|
|
KEY `height1` (`height`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Discovered blocks persisted from Litecoin Service';
|
|
|
|
/*Data for the table `blocks` */
|
|
|
|
/*Table structure for table `coins` */
|
|
|
|
DROP TABLE IF EXISTS `coins`;
|
|
|
|
CREATE TABLE `coins` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(64) CHARACTER SET latin1 DEFAULT NULL,
|
|
`symbol` varchar(16) CHARACTER SET latin1 DEFAULT NULL,
|
|
`symbol2` varchar(16) COLLATE latin1_general_ci DEFAULT NULL,
|
|
`algo` varchar(16) CHARACTER SET latin1 DEFAULT NULL,
|
|
`version` varchar(32) CHARACTER SET latin1 DEFAULT NULL,
|
|
`image` varchar(1024) CHARACTER SET latin1 DEFAULT NULL,
|
|
`market` varchar(64) CHARACTER SET latin1 DEFAULT NULL,
|
|
`marketid` int(11) DEFAULT NULL,
|
|
`master_wallet` varchar(1024) CHARACTER SET latin1 DEFAULT NULL,
|
|
`charity_address` varchar(1024) CHARACTER SET latin1 DEFAULT NULL,
|
|
`charity_amount` double DEFAULT NULL,
|
|
`charity_percent` double DEFAULT NULL,
|
|
`deposit_address` varchar(1024) CHARACTER SET latin1 DEFAULT NULL,
|
|
`deposit_minimum` double DEFAULT '1',
|
|
`sellonbid` tinyint(1) DEFAULT NULL,
|
|
`dontsell` tinyint(1) DEFAULT '0',
|
|
`block_explorer` varchar(1024) CHARACTER SET latin1 DEFAULT NULL,
|
|
`index_avg` double DEFAULT NULL,
|
|
`connections` int(11) DEFAULT NULL,
|
|
`errors` varchar(1024) CHARACTER SET latin1 DEFAULT NULL,
|
|
`balance` double DEFAULT NULL,
|
|
`mint` double DEFAULT NULL,
|
|
`txfee` double DEFAULT NULL,
|
|
`difficulty` double DEFAULT '1',
|
|
`difficulty_pos` double DEFAULT NULL,
|
|
`block_height` int(11) DEFAULT NULL,
|
|
`target_height` int(11) DEFAULT NULL,
|
|
`network_hash` double DEFAULT NULL,
|
|
`price` double DEFAULT NULL,
|
|
`price2` double DEFAULT NULL,
|
|
`reward` double DEFAULT '1',
|
|
`reward_mul` double DEFAULT '1',
|
|
`enable` tinyint(1) DEFAULT '0',
|
|
`auto_ready` tinyint(1) DEFAULT '0',
|
|
`visible` tinyint(1) DEFAULT NULL,
|
|
`created` int(11) DEFAULT NULL,
|
|
`action` int(11) DEFAULT NULL,
|
|
`conf_folder` varchar(128) CHARACTER SET latin1 DEFAULT NULL,
|
|
`program` varchar(128) CHARACTER SET latin1 DEFAULT NULL,
|
|
`rpcuser` varchar(128) CHARACTER SET latin1 DEFAULT NULL,
|
|
`rpcpasswd` varchar(128) CHARACTER SET latin1 DEFAULT NULL,
|
|
`rpchost` varchar(128) CHARACTER SET latin1 DEFAULT NULL,
|
|
`rpcport` int(11) DEFAULT NULL,
|
|
`rpcencoding` varchar(16) CHARACTER SET latin1 DEFAULT NULL,
|
|
`hassubmitblock` tinyint(1) DEFAULT NULL,
|
|
`usememorypool` tinyint(1) DEFAULT NULL,
|
|
`txmessage` tinyint(1) DEFAULT NULL,
|
|
`auxpow` tinyint(1) DEFAULT NULL,
|
|
`lastblock` varchar(128) CHARACTER SET latin1 DEFAULT NULL,
|
|
`network_ttf` int(11) DEFAULT NULL,
|
|
`actual_ttf` int(11) DEFAULT NULL,
|
|
`pool_ttf` int(11) DEFAULT NULL,
|
|
`last_network_found` int(11) DEFAULT NULL,
|
|
`installed` tinyint(1) DEFAULT NULL,
|
|
`link_exchange` varchar(1024) COLLATE latin1_general_ci DEFAULT NULL,
|
|
`link_bitcointalk` varchar(1024) COLLATE latin1_general_ci DEFAULT NULL,
|
|
`link_github` varchar(1024) COLLATE latin1_general_ci DEFAULT NULL,
|
|
`link_explorer` varchar(1024) COLLATE latin1_general_ci DEFAULT NULL,
|
|
`specifications` blob,
|
|
PRIMARY KEY (`id`),
|
|
KEY `auto_ready` (`auto_ready`),
|
|
KEY `enable` (`enable`),
|
|
KEY `algo` (`algo`),
|
|
KEY `symbol` (`symbol`),
|
|
KEY `index_avg` (`index_avg`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=1090 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
/*Data for the table `coins` */
|
|
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (6,'Bitcoin','BTC','','sha256','80600','/images/coin-6.png','',0,'12PHLqzzj5jry7wbLsbPiixZ2duZudXkj7',NULL,NULL,NULL,'',0,0,1,'',0.0000050609104867509,0,'',0,NULL,0,49692386354.894,NULL,361769,349481,80.81,1,1,25.03235536,1,0,0,1,NULL,NULL,'','','yaamprpc','d5ea06945a0e4fad184f4e071ec3aa62','yaamp1',10548,'POW',1,NULL,1,0,'0000000000000000035841666b1a584e3dba5de0641f1d6fe4fb5b45e10578f5',2147483647,514,58379915,1434808491,1,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (77,'UroCoin','URO','','x11','1000204','/images/coin-77.png','bittrex',NULL,'UiXUHNghQSDfq8U42UzJaV1SZP5xBrkChf',NULL,NULL,NULL,'URMtnBZZgHnhXJyg6543nhWPuyUg7vkJyj',1,0,0,'',0.0871703549627,14,'',0.0040517,NULL,0,35.974731641628,NULL,188903,NULL,2027335785,0.0005226550211481,0.00055199258490675,0.6,1,1,0,1,NULL,NULL,'.Uro','Urod','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',7700,'POW',1,NULL,1,0,'0000000000ac387402220f9ad5854150b9df2a45e0639c6d53fa5a39107495bc',76,216,22,1434809263,1,'','https://bitcointalk.org/index.php?topic=600639.0','https://github.com/urocoin/uro','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (104,'CannabisCoin','CANN','','x11','80603','/images/coin-104.png','cryptsy',300,'CZKrXFPBCx5C41phpyFMpZjKZCrRNe8Zen',NULL,NULL,NULL,'',1,0,1,'',0.049772594392464,9,'',0,NULL,0,10.058901402506,NULL,768149,NULL,9603692753,0.000015258136976479,0.00001619910937208,3.28125,1,1,0,1,NULL,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',1040,'POW',1,NULL,1,0,'0000000013d1d83820efe250d85e9981f071544be6c77f13046e14d8930b19b2',4,42,5,1434809263,1,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (142,'Potcoin','POT','','scrypt','80604','/images/coin-142.png','cryptsy',173,'PAP4u9EJ4HCYfQR4DvsWWTcTzPUPuUSkAS',NULL,NULL,NULL,'',1,0,0,'',0.15901476683261,8,'',0.08027577,NULL,0,19.64510621755,NULL,852263,NULL,7268462171,0.0000059502133039725,0.0000064330915941565,52.5,1,1,0,1,NULL,NULL,'.potcoin','potcoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',1420,'POW',1,NULL,1,0,'afcac989737f234d3750de45e09d6a9dae2dce32e8df309cb1f37ee7ded9fbf2',11,68,77,1434809095,1,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (145,'Tagcoin','TAG','','scrypt','v1.1.0','/images/coin-145.png','cryptsy',117,'TQikYy11k94mchUkbqYsXNj1oYrBLGqf6z',NULL,NULL,NULL,'',1,0,0,'',0.12220784834201,11,'',0,NULL,0.001,630.82394688914,NULL,212977,NULL,NULL,0.00027478756361188,0.00029592490600227,28.054995,100,1,0,1,NULL,NULL,'.TagCoin','tagcoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',1450,'POS',1,NULL,1,0,'00000000006cdf26ffe113390f4df25ebf7dfb3cf8e5981647b45602df734b9a',NULL,213,1614,1434809095,1,'','https://bitcointalk.org/index.php?topic=317408.0','https://github.com/tagcoin/tagcoin.git','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (146,'Dogecoin','DOGE','','scrypt','1080200','/images/coin-146.png','cryptsy',132,'DLB34fvJZ2CeciM7UguqYKAM9kw6rydkFZ',NULL,NULL,NULL,'',1,0,1,'',0.0047783768459481,10,'',2.5843906,NULL,0,16287.075312856,NULL,757676,278106,1393789598124,0.00000077747996692474,0.00000082419997788157,10010.005,1,1,0,1,NULL,NULL,'.dogecoin','dogecoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',1460,'POW',1,NULL,1,1,'db758562008edaab7f6a9bcdb8b1289ea77e6013c156e491ae79a8efd5374ced',50,64,36094,1434809263,1,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (153,'Rubycoin','RBY',NULL,'scrypt','80602','http://whatmine.com/images/smalllogo_coin_237.png','bittrex',NULL,NULL,NULL,NULL,NULL,'RdaYmZYkky3JMUrLRsgiFSty85ZrH8eL6X',1,NULL,0,'',0.11496466133736,0,'',0,NULL,0,11.09036451,NULL,136036,NULL,852814807,0.0000051,NULL,25,1,0,0,1,NULL,NULL,'.rubycoin','rubycoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10546,'POW',1,NULL,1,NULL,'746633ca8ad79093d38049bd431de6371707c3a571b2a9aecd53813c22e5d347',55,437,32,1414658859,0,'','https://bitcointalk.org/index.php?topic=459622.0','https://github.com/rubycoinorg/rubycoin.git','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (154,'Dnotes','NOTE',NULL,'scrypt','1010000','http://whatmine.com/images/logo_coin_256.png','c-cex',NULL,NULL,NULL,NULL,NULL,'DVZErWVn3pAEQS65gsgxJLxgdCZN3UdUaZ',1,NULL,0,'',0.12399596331488,0,'',0,NULL,0,24.85030091,NULL,387865,257053,1772944014,0.000012325348,NULL,25,1,0,0,1,NULL,NULL,'.DNotes','DNotesd','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10548,'POW',0,NULL,1,NULL,'2cfbe8a5ac612884ea725fb8b55ec979dd0d7ab23c83fae3a66327252b5f7048',60,62,72,1415970638,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (155,'Litecoin','LTC','','scrypt','100202','/images/coin-155.png','cryptsy',3,'LfM6rBjSAjdN1cNmRv3wX88UJHsnJMuJwo',NULL,NULL,NULL,'',1,0,1,'',0.15171290682319,22,'',0.00343819,NULL,0,37795.256432821,NULL,801487,623311,1601025169698,0.011467139063977,0.012220737260922,50.004,1,1,0,1,NULL,NULL,'.litecoin','litecoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',1550,'POW',1,NULL,1,0,'3cc70477beb50adcebc1970295bc9ded2aaae9f4506df3f59f13b1919b0653b0',101,128,95328,1434809263,1,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (161,'NimbusCoin','NMB',NULL,'x15','v1.0.0.0','https://pbs.twimg.com/profile_images/491974901025079298/3ED7Pxf-.png','bittrex',NULL,NULL,NULL,NULL,NULL,'NhbmS5wbvVFydkQPvyNQNWpKKtiDZ87NyD',1,NULL,0,'',0.12228398604242,0,'',10.9999899,NULL,0.00001,8.18099763,NULL,140984,NULL,NULL,0.000001000405,NULL,100,1,0,0,1,NULL,NULL,'.Nimbus','Nimbusd','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10562,'POS',1,NULL,1,NULL,'00000000124f0f667f230f5ca973335db2cdedc06781d0c48c2c31692f409cd1',NULL,63,4076,1415804077,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (187,'Novacoin','NVC',NULL,'scrypt','v0.4.4.6-nvc-update2-90-g45802ef','http://www.coinwarz.com/content/images/Novacoin-64x64.png','cryptsy',13,NULL,NULL,NULL,NULL,'',1,NULL,0,'',0,0,'',0.005804,NULL,0.001,1768.8680180112,0.89812112,155248,121559,NULL,0.0023334279,NULL,7.19,100,0,0,1,NULL,NULL,'.novacoin','novacoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10614,'POS',1,NULL,1,0,'0000000000084bec3b22dfba21eb1e064e44dfd8b3ec375e091af8199487a06c',NULL,394,6863,1423315998,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (190,'StartCoin','START','','x11','2000000','/images/coin-190.png','bittrex',NULL,'sW4Hu74DwCSJDcJTRNor4gBtUGJM7Cmg6f',NULL,NULL,NULL,'sSi7TJjeEodHQ1Jy6eJKa83m14PWtgyH2o',1,0,0,'',0.16734717277652,11,'',0.00468152,NULL,0,635.841363204,NULL,359375,NULL,13951126171,0.0002660156361664,0.00028567959107346,40,1,1,0,1,NULL,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',1900,'POW',1,NULL,1,0,'000000000061eb9a0d7dc022b7378b53c8dea296ce17674070dcfb5808009915',195,61,683,1434809263,1,'https://bittrex.com/Market/?MarketName=BTC-START','https://bitcointalk.org/index.php?topic=651307.0','https://github.com/startcoin-project','http://explorer.startcoin.org/',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (191,'42','42',NULL,'scrypt','70000','http://www.coinwarz.com/content/images/42-64x64.png','cryptsy',141,NULL,NULL,NULL,NULL,'',1,NULL,0,'',0.21523602575888,0,'',0,NULL,0.00000001,19.04135833,NULL,348299,349193,1734089855,4.5354999421,NULL,0.000042,1,0,0,1,NULL,NULL,'.42','42','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp1',10622,'POW',0,NULL,1,NULL,NULL,47,991,55,1410569352,0,'','https://cryptocointalk.com/forum/604-42/','http://www.github.com/fourtytwo42/42','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (192,'CoinmarketsCoin','JBS',NULL,'scrypt',NULL,'http://whatmine.com/images/smalllogo_coin_940.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.27260367097213,NULL,'',NULL,NULL,NULL,367.75,NULL,NULL,NULL,NULL,0.0000401,NULL,250,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,1071,NULL,NULL,'','https://bitcointalk.org/index.php?topic=765082.0;all','https://github.com/jyap808/coinmarketscoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (193,'Lightspeed','LSD',NULL,'nist5','v1.0.0.0','http://icdn8.digitaltrends.com/image/quarkcoin-350x210.png','bittrex',NULL,NULL,NULL,NULL,NULL,'LKwU9FazqpreszQ1DTMU6aUWaeysv3VB8k',0.1,NULL,0,'',0.00036006866644837,0,'',0.0000158,NULL,0.00001,0.61633594,NULL,90116,NULL,NULL,0.00000909,NULL,0.0024414,1,0,0,1,NULL,NULL,'.lightspeed','lightspeedd','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp1',10626,'POS',1,NULL,1,NULL,NULL,NULL,151,201,1415542445,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (196,'Joincoin','J',NULL,'x13','1030000','https://ip.bitcointalk.org/?u=http%3A%2F%2Fi.imgur.com%2FF4kbBIc.png&t=544&c=IYD8vIoHJLm0wQ','bittrex',NULL,NULL,NULL,NULL,NULL,'Ja4fG45YcbdGVqdE8W4EA1U1UANu7q5XPM',1,NULL,0,'',0.0059811926066731,0,'',0,NULL,0,4.11289213,NULL,22084,NULL,NULL,0.00000082,NULL,3,1,0,0,1,NULL,NULL,'.joincoin','joincoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10632,'POW',1,NULL,1,NULL,NULL,NULL,701,36,1412132077,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-J','https://bitcointalk.org/index.php?topic=737405.0','https://github.com/joincoin/joincoin','http://joincoin.kicks-ass.net/block_crawler.php',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (200,'SterlingCoin','SLG',NULL,'x13','v1.0.0.0: Release','https://ip.bitcointalk.org/?u=http%3A%2F%2Fi.imgur.com%2FYWE9Jvl.png&t=546&c=4mUGG9xeVtn9kw','bittrex',NULL,NULL,NULL,NULL,NULL,'',1,NULL,0,'',0.18285482859104,0,'No more PoW blocks',0,NULL,0.0001,105.84899589,0.09018264,131469,NULL,NULL,0.00003871,NULL,50,1,0,0,1,NULL,NULL,'.sterlingcoin','sterlingcoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp1',10640,'POS',1,NULL,1,0,NULL,NULL,138,2323,1420314388,0,'https://bittrex.com/Market/Index?MarketName=BTC-SLG','https://bitcointalk.org/index.php?topic=721936.0','https://bitbucket.org/Sterlingcoin/sterlingcoin-linux-source','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (235,'InkwayCoin','LKNX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (240,'EtherCoin','ETC',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'pos only',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,11,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (241,'VikingCoin','VIK',NULL,'sha256',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://github.com/larvikdelta/VikingCoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (243,'Ronpaulcoin','RPC',NULL,'scrypt','80602','http://whatmine.com/images/logo_coin_48.png','',NULL,NULL,NULL,NULL,NULL,'',1,NULL,0,'',0.094029160232482,0,'',0.409523,NULL,0,27.72157734,NULL,197432,188785,947459622,0.0002606376,NULL,1.0001,1,0,0,1,NULL,NULL,'.ronpaulcoin','ronpaulcoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10726,'POW',1,NULL,1,0,NULL,125,38,80,1416960816,0,'','https://bitcointalk.org/index.php?topic=389070.0','https://github.com/ronpaulcoin/ronpaulcoin.git','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (244,'XG','XG',NULL,'xg',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=770837.0','https://github.com/XGCoin/XG','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (245,'DigitalPrice','DP','','x11','90202','/images/coin-245.png','',NULL,NULL,NULL,NULL,NULL,'',1,0,0,'',0.45645867476244,0,'',8.76480505,NULL,0,0.66500588545683,NULL,59151,NULL,1368804019,0.0000002037,0.000000225,149,1,0,0,1,NULL,NULL,'.DigitalPrice','DigitalPriced','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp1',10730,'POW',1,NULL,1,0,'0000000027a442d09954879ee76fecfd780df458d011aee77f00ca3719c2af40',2,315,0,1431688364,0,'https://c-cex.com/?p=dgr-btc','https://bitcointalk.org/index.php?topic=789847.0','https://github.com/7vpo/DigitalPrice','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (247,'MaryJane','MARYJ',NULL,'x15',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=maryj-btc','https://bitcointalk.org/index.php?topic=793704.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (251,'Magicoin','XMG',NULL,'m7',NULL,'https://c-cex.com/i/l/xmg.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=xmg-btc','https://bitcointalk.org/index.php?topic=735170.0','https://github.com/magi-project/magi/','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1072,'Transformers','TRANSF','','qubit','v1.0.0.0','/images/coin-1072.png',NULL,NULL,'TYSPBZHfehHkL1UwoBJN4YXQeUTK7emEMN',NULL,NULL,NULL,NULL,1,0,0,NULL,0.11901391700505,5,'',0,NULL,0.0001,0.39911449991169,0.00024414,1337,NULL,NULL,0.0000000095000359936,0.000000130000035328,500,1,1,1,1,1433783186,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10720,'POS',1,NULL,1,0,'0000000117d2764ed8a8becb32f0ca5d0d061c96be3fb40af9ba037f7f248dc9',NULL,3451,4108,1434809263,1,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1070,'Illuminati','ILM','','x11','v0.9.1.1-beta','/images/coin-1070.png',NULL,NULL,'HdVceHjouvRXD9Gio7sShev4cLhehFsr4z',NULL,NULL,NULL,NULL,1,0,0,NULL,0.3644403090456,12,'',0,NULL,0.00001,0.49137000269922,0,12309,NULL,NULL,0.0000001234999990272,0.00000024500002458419,145.00003,1,1,0,1,1433780678,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',10700,'POS',1,NULL,1,0,'0000000048682100124847c587b613a4762d07a6b4106cd5153972444b855cfe',NULL,113,1,1434809263,1,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1069,'DarkTron','DRKT',NULL,'sha256',NULL,'https://i.imgur.com/k6Ial35.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'No more PoW blocks',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1433719487,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1077,'Sentaro','SEN','','scrypt','v1.0.0.0-g32a928e','/images/coin-1077.png',NULL,NULL,'Si7JxDu44Hsv6h2RVknfJbGWCS5BkvjYSP',NULL,NULL,NULL,NULL,1,0,0,NULL,0.020268301384412,18,'',0.00083654,NULL,0.00001,9.3742582489423,0.00001526,9080,NULL,NULL,0.0000001900002344448,0.000000475000279552,100.00003,1,1,1,1,1434213382,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10770,'POS',1,NULL,1,0,'78d3e648ca76492bd2ffc67088756cf98672dbc186aa4384fea8d09522de4a19',NULL,72,41,1434809263,1,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1071,'Genstake','GEN','','scrypt','v1.0.2.0','/images/coin-1071.png',NULL,NULL,'GNNGr31KE43SZw9igiriWsqaxiuDCBedJ2',NULL,NULL,NULL,NULL,1,0,0,NULL,0.15383225867361,23,'',0,NULL,0.0001,26.205974420334,0.0042326,28246,NULL,NULL,0.000080626484716456,0.000090260459140424,5,1,1,0,1,1433782292,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10710,'POS',1,NULL,1,0,'df70bc1eb79e665c4b72383081f4d671695fb78ce7ab43ee6935c92157f3182c',NULL,76,70,1434809263,1,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (253,'Ruble','RUBLE',NULL,'x15',NULL,'https://pbs.twimg.com/profile_images/516776168742076416/PtyBWGv2_400x400.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'No more PoW blocks',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,498,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-RUBLE','https://bitcointalk.org/index.php?topic=765513.0','https://github.com/rublecodeworld/ruble','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (255,'XCloudCoin','XCLD',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-XCLD','https://bitcointalk.org/index.php?topic=722328','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (257,'BitSwift','SWIFT',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-SWIFT','https://bitcointalk.org/index.php?topic=807557.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (260,'ArchCoin','ARCH',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,2,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-ARCH','https://bitcointalk.org/index.php?topic=754055.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (265,'GAIACoin','GAIA',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-GAIA','https://bitcointalk.org/index.php?topic=807698','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (266,'WorldWideCoin','WWC',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=wwc-btc','','','http://www.worldwidecoin.tk',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1083,'unknown','CIRC',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1434388176,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1058,'unknown','OPTION',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1433329273,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (268,'Ripple','XRP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (270,'LemurCoin','LMR',NULL,'x11','90300','https://ip.bitcointalk.org/?u=http%3A%2F%2Flemurcoin.org%2Fwp-content%2Fuploads%2F2014%2F08%2Flemurcoin.png&t=545&c=cgXJTXlGqUEuHg','',NULL,NULL,NULL,NULL,NULL,'',1,NULL,0,'',0.077467421795399,0,'',0,NULL,0,15.24382731,NULL,35429,NULL,129773043,0.000059045,NULL,2,1,0,0,1,NULL,NULL,'.lemurcoin','lemurcoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10780,'POW',1,NULL,1,0,NULL,504,384,8,1419521830,0,'','https://bitcointalk.org/index.php?topic=739681.0','https://github.com/lemurcoin/lemurcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (273,'Munne','MNE',NULL,'x13',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,8,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-MNE','https://bitcointalk.org/index.php?topic=797828.0','','http://munnecoin.com',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (274,'unknown','CRW',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=crw-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (283,'PeleStock','PLCS',NULL,'',NULL,'https://c-cex.com/i/l/plcs.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=plcs-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (285,'unknown','MCL',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=mcl-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (288,'unknown','DOGEB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=dogeb-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (290,'VidioShare','VDO',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,2,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-VDO','https://bitcointalk.org/index.php?topic=779552','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1079,'HedgeCoin','HEDG','','x13','90102','/images/coin-1079.png',NULL,NULL,'HKdvYPxdWme6Lv9HbyCusPx8Aqcij3fX23',NULL,NULL,NULL,NULL,1,0,0,NULL,0.22431568988038,13,'',0.46036975,NULL,0,25.422332671647,NULL,4722,NULL,NULL,0.0000039877960389429,0.0000050866405744606,143.002,1,1,0,1,1434322230,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',10790,'POW',1,NULL,1,0,'0000000008bcba6f6b4e86901a2bdb7677a503d1578b61fab763c4a7d52829b4',NULL,195,760,1434809095,1,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (292,'unknown','NOPE',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'https://c-cex.com/?p=nope-btc','https://bitcointalk.org/index.php?topic=827192.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (295,'WorldTradeFunds','XWT',NULL,'x15','v1.1.2.0','https://c-cex.com/i/l/xwt.png','',NULL,NULL,NULL,NULL,NULL,'',1,NULL,0,'',2.3299631901267,0,'',0,NULL,0,0.32487458,NULL,73362,73289,NULL,0.0000587804,NULL,1,1,0,0,1,NULL,NULL,'.wtfcoin','wtfcoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp1',10830,'POS',1,NULL,1,0,NULL,NULL,294,161,1418121418,0,'https://c-cex.com/?p=wtf-btc','https://bitcointalk.org/index.php?topic=828967.0','https://github.com/wtfteam/wtfcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (299,'MonetaryUnit','MUE','','quark','1000002','/images/coin-299.png','',NULL,'7RJhaH2L3mmcvcpdE7X8JJAAHuBJtsCeyY',NULL,NULL,NULL,'',1,0,1,'',0.12227788807749,12,'',0.88454,NULL,0,0.9969423147134,NULL,767104,NULL,NULL,0.0000003047600019456,0.00000033540489789523,40,1000,1,0,1,NULL,NULL,'.monetaryunit','monetaryunitd','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',2990,'POW',1,NULL,0,0,'000000003ad549b5fc03697243184079b60a9d32c8a07fb7fde8f725437a6e85',NULL,44,3,1434809263,1,'https://bleutrade.com/exchange/MUE/BTC','https://bitcointalk.org/index.php?topic=778322.0','https://github.com/MonetaryUnit/MUE-Src','http://www.MonetaryUnit.org',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1067,'PharmaCoin','XPH','','scrypt','v1.0.1.0-g32a928e','/images/coin-1067.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.12196538955664,52,'no more pow blocks',0,0,0.00001,2501.83885576,547111.17010684,11064,NULL,NULL,0.0000030513775004043,0.0000034178738840484,10000.00002,1,0,0,1,1433674392,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10670,'POS',1,NULL,1,0,'6bcf7610c6414e37d6073bf363ee667d71266d8d689e73d40c4c5c9452499ea8',NULL,33,7896,1433975557,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1063,'unknown','VAPOR',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'No more PoW blocks',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1433535246,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1065,'unknown','FIST',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1433551292,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1076,'Sharkcoin','SAK','','quark','1040001','/images/coin-1076.png',NULL,NULL,'SNYfCCLKuGxuTEe1KBRdsATztgyDu2JhSB',NULL,NULL,NULL,NULL,1,0,1,NULL,0.30332531552926,6,'',0.04645,NULL,0.01,441.46409493987,NULL,1796239,1773426,NULL,0.0016717507602057,0.0018935169210583,8.01,1000,1,0,1,1434065468,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',4009,'POW',1,NULL,0,0,'000000000068ca33f2d9b7a4ed83706d31ff5ec1a6636b4c6b763b4620eeb0e1',NULL,7263,2830,1434809263,1,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1073,'EDGE','EDGE','','sha256','v1.0.0.0-g','/images/coin-1073.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.0000092376579297547,0,'no more pow blocks',0,0,0.00001,565619.55852145,46242.89931845,12193,NULL,NULL,0.000005225,0.000007245,100,1,0,0,1,1433803001,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10730,'POS',1,NULL,1,0,'a21fe64c1fe65501a2c867b6ebc032937c356e9e47b456c290c338a033f68027',NULL,65,807,1434229036,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (301,'DayTraderCoin','DTC',NULL,'scryptjane',NULL,'https://c-cex.com/i/l/dtc.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'No more PoW blocks',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=dtc-btc','https://bitcointalk.org/index.php?topic=476295.0','','http://destinycoin.org',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (304,'Securecoin','SRC','','quark','80300','/images/coin-304.png','',NULL,'sZhdMYTFDo882AbFvZV9ZKNFzRXffiteNg',NULL,NULL,NULL,'',1,0,0,'',0.15986882836794,21,'',0,NULL,0,61.746059203044,NULL,923464,596493,NULL,0.00019742145439348,0.00020804808009334,5.0001,1000,1,0,1,NULL,NULL,'.securecoin','securecoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',3040,'POW',1,NULL,0,0,'0000000003097ed51352c15af918145663e0199861f8016310dd9ad9a939b326',NULL,161,258,1434809263,1,'','https://bitcointalk.org/index.php?topic=270852.0','https://github.com/baritus/securecoin','http://securecoin.org/',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (305,'Quarkcoin','QRK','','quark','90203','/images/coin-305.png','',NULL,'QiikWfLq2mtoeuB7WLrhC3L43zqgk58FjW',NULL,NULL,NULL,'',1,0,0,'',0.12447786086155,19,'',0.06451,NULL,0,1.4877412031782,NULL,2109432,1385238,NULL,0.000018519084248721,0.000019590352721746,1,1000,1,0,1,NULL,0,'.quarkcoin','quarkcoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',3050,'POW',1,NULL,0,0,'0000000020796035fe77ffb5780677fff6ad263e90e443b4cbfb9d1dd5192d22',NULL,24,8,1434809263,1,'','http://forum.qrk.cc/','http://github.com/MaxGuevara/quark','http://altexplorer.info/chains/QRK/block_crawler.php',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (306,'Sembro Token','SMBR',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,2,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-SMBR','https://bitcointalk.org/index.php?topic=819427','http://www73.zippyshare.com/v/81360104/file.html','sembrodevelopment.com',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1074,'unknown','EOC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1434041550,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (307,'Phoenixcoin','PXC','','neoscrypt','60600','/images/coin-307.png','',NULL,'PqoBM8y62z28PCvMGiT9ab3QP29zoH9VSM',NULL,NULL,NULL,'',1,0,0,'',3.9440451359152,7,'',2.99122307,NULL,0,0.20596378858973,NULL,701537,470107,13090044,0.0000016214181208822,0.0000017608419589939,50.1,1,1,0,1,NULL,NULL,'.phoenixcoin','phoenixcoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',3070,'POW',0,NULL,1,0,'ad4c33a25d2546f47b2c392395e8a54d636668c5602d7c75e87c83d43b717fa9',67,135,18,1434809264,1,'','https://bitcointalk.org/index.php?topic=330956.0','https://github.com/ghostlander/Phoenixcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (308,'Feathercoin','FTC','','neoscrypt','80701','/images/coin-308.png','',NULL,'6ufsVUQMbxccXQ7yzPEw46LiMdjtUSYwKL',NULL,NULL,NULL,'',1,1,0,'',5.3332651952788,25,'',0,NULL,0,7.1392321679411,NULL,758688,429802,2162377512,0.000047570487808964,0.000050527726255237,80.04,1,1,0,1,NULL,NULL,'.feathercoin','feathercoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',3080,'POW',1,NULL,1,0,'65d1a794b656e63dca53b71c83b2562bac9aa663cbba2a41abc51a191a5aaf7c',14,62,686,1434809264,1,'','https://bitcointalk.org/index.php?topic=178286.0','https://github.com/FeatherCoin/Feathercoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (309,'CleverHash','CHASH',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'ICO',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-CHASH','https://bitcointalk.org/index.php?topic=826541.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (312,'HyperStake','HYP',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (313,'WoodCoin','LOG',NULL,'skein','1010000','/images/coin-313.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.076283367675262,0,'',0,NULL,0,2.458651485724,NULL,122197,NULL,NULL,0.0000025393505617992,0.0000029499743996723,8.18343999,1,0,0,1,NULL,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',3130,'POW',1,NULL,0,0,'',NULL,37571,65,1429309098,0,'https://c-cex.com/?p=log-btc','https://bitcointalk.org/index.php?topic=831003.msg9285652','https://github.com/funkshelper/woodcoin','woodcoin.org',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (314,'unknown','QBK',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=qbk-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (319,'Pennies','CENT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (320,'BlockNet','BLOCK',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'ICO',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BLOCK','https://bitcointalk.org/index.php?topic=829576.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (321,'CataloniaCoin','CATC',NULL,'x11','v1.1.2.0','https://c-cex.com/i/l/catc.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,1.5063245794249,0,'',0,NULL,0,0.04131466,0.00025256,35688,NULL,NULL,0.00000221382,NULL,2.38059999,1,0,0,1,NULL,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',3210,'POS',1,NULL,1,0,NULL,NULL,133,0,1421289029,0,'https://c-cex.com/?p=catc-btc','https://bitcointalk.org/index.php?topic=840542.0','https://github.com/cataloniacurrency','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (322,'unknown','VOCAL',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=vocal-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (323,'SecurityCoin','SCSY',NULL,'hefty1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=scsy-btc','https://bitcointalk.org/index.php?topic=802430.0','','http://www.i-m.mx/francis85/securitysyscoin/',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (326,'Guncoin','GUN','','neoscrypt','1010000','/images/coin-326.png','',NULL,NULL,NULL,NULL,NULL,'',1,1,0,'',3.1985086940733,0,'',0,0,0,0.049023091383351,NULL,245688,121000,9561661,0.00000011639937522688,0.000000144999919616,200.001,1,0,0,1,NULL,NULL,'.guncoin','guncoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp1',10892,'POW',1,NULL,1,0,'d3ea97de57d3815679a13a5d1c2ca5413487180d4e0678456925920db45d9956',22,172,42,1431865504,0,'https://bleutrade.com/exchange/GUN/BTC','https://bitcointalk.org/index.php?topic=498671.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (327,'AppleBytes','ABY',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'no source code',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-ABY','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (328,'Snowballs','BALLS',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=balls-btc','https://bitcointalk.org/index.php?topic=843495','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (330,'Quicksilver','QSLV',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-QSLV','https://bitcointalk.org/index.php?topic=842240.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (333,'UCoin','U',NULL,'x15','v2.0.0.0','https://c-cex.com/i/l/u.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,5.1949122847333,0,'',0,NULL,0.00001,0.070580594994362,0.00093608,149452,74003,NULL,0.000000842445,NULL,12,1,0,0,1,NULL,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',3330,'POS',1,NULL,1,0,NULL,NULL,52,1,1422975370,0,'https://c-cex.com/?p=u-btc','https://bitcointalk.org/index.php?topic=845110','https://github.com/UCoinTeam/X15CPU','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (335,'ByteCent','BYC',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'CF',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BYC','http://coinblab.com/forums/topic/24/-/view/post_id/84','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (336,'BunnyCoin','BUN',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'NO BID',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,2,NULL,NULL,'https://bleutrade.com/exchange/BUN/BTC','','https://github.com/bunnycoin/bunnycoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (338,'UFOCoin','UFO','','neoscrypt','80801','/images/coin-338.png','',NULL,'C4tUkRbWabTg8duW8oShDRXjgk2vm1FX12',NULL,NULL,NULL,'',1,1,0,'',4.0037314030671,15,'',0,NULL,0,0.17795899081896,NULL,469951,274651,71813276,0.0000000285,0.000000035,2500,1,1,0,1,NULL,NULL,'.ufo','ufod','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',3380,'POW',1,NULL,1,0,'77f42f0569e2c968f8fab1b3ba867b29131e0fe24878182724618dfba462cdd5',10,101,16,1434809264,1,'https://bittrex.com/Market/Index?MarketName=BTC-UFO','https://bitcointalk.org/index.php?topic=658117.0','https://github.com/Bushstar/UFO-Project','www.ufocoin.co',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (339,'ZeroVert','ZER',NULL,'scryptn',NULL,'https://c-cex.com/i/l/zer.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,140,NULL,NULL,'https://c-cex.com/?p=zer-btc','https://bitcointalk.org/index.php?topic=846471.0','https://github.com/Zerovert/Zerovert/releases','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (343,'OcupyCoin','OCUPY',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POW over',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=ocupy-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (344,'unknown','ZNY',NULL,'yescrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,1,NULL,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=zny-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (346,'VertCoin','VTC','','lyra2','90002','/images/coin-346.png',NULL,NULL,'Vm73sxQubL2jh39gV42gSt4YFkHiRSFmtn',NULL,NULL,NULL,NULL,1,0,0,NULL,0.77423213244324,12,'',0.01410852,NULL,0,491.33017044456,NULL,318005,189012,7949694266,0.00076070071309415,0.00080733032896787,50.007,1,1,1,1,NULL,NULL,'.vertcoin','vertcoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',3460,'POW',1,NULL,1,0,'072cf92dcedb930e4dd4a18e7362908efd1761e3869fc347197242516fa3dc23',265,121,132969,1434808626,1,'','','https://github.com/vertcoin/vertcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (347,'MurrayCoin','MRY','','scryptn','90200','/images/coin-347.png',NULL,NULL,'M9UpnDbJNw6z2uFaquDG7gcgQvyzuNGkpZ',NULL,NULL,NULL,NULL,1,0,0,NULL,0.43664113527124,6,'',0.6080208,NULL,0,1.1487694572991,NULL,359426,222056,30690275,0.000000836,0.000000905,60,1,1,0,1,NULL,NULL,'.murraycoin','murraycoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',3470,'POW',1,NULL,1,0,'458c75c83e7bba6a38fecaadf21294279222d9fa6957c7ac00899985881ca70c',160,241,95488,1434802017,1,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (348,'HellasCoin','HLC',NULL,'scrypt','80702','https://c-cex.com/i/l/hlc.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.033636575354042,0,'',0,NULL,0,268.45713188,NULL,22371,19539,723448542,0.000001259325,NULL,500,1,0,0,1,1415661982,NULL,'.hellascoin','hellascoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp1',10936,'POW',1,NULL,1,0,NULL,1593,1880,871,1420238724,0,'https://c-cex.com/?p=hlc-btc','','https://github.com/hellascrypto/hellascoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (349,'CryptCoin','CRYPT',NULL,'x11',NULL,'https://i.imgur.com/PF5BK52.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1415672067,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,'','https://bitcointalk.org/index.php?topic=618377.0','https://github.com/ccryptcoin/cryptcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (351,'unknown','ACHK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1415744001,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=achk-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (353,'unknown','BRXv2',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'ICO',NULL,NULL,NULL,1,NULL,1430967779,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1415751273,NULL,'','brxv2',NULL,'e7ec005fhdsj3k6po6afbb84545eb24','',NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=board-btc','https://bitcointalk.org/index.php?topic=855040','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (354,'GlowShares','GSX',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1415850483,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-GSX','https://bitcointalk.org/index.php?topic=854038.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (355,'ProfitCoin','PFC',NULL,'x13',NULL,'https://c-cex.com/i/l/pfc.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1415883130,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,8,NULL,NULL,'https://c-cex.com/?p=pfc-btc','https://bitcointalk.org/index.php?topic=854975.0','https://github.com/profitcoinproject/profitcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (356,'Execoin','EXE','','scryptn','80603','/images/coin-356.png',NULL,NULL,'EZ7jSyggYhZNnhYXvi49F4FpJfjFEtV7KS',NULL,NULL,NULL,NULL,1,0,0,NULL,681.91239374396,0,'execoin is not connected!',0,NULL,0,0.00024414,NULL,0,550000,NULL,0.000001501,0.000001585,8.89565011,1,0,0,1,1415906446,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',3560,'POW',1,NULL,1,0,'de2b9d541b4a7c7be2c244c09c1063e462e8533cff8bb5c209b10444fa3f5a20',NULL,183,1,1434085723,1,'','https://bitcointalk.org/index.php?topic=491058.0','https://github.com/execoin/execoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (359,'Consolidated Mining','MN',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1416058622,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (360,'GreenCoin','GRE',NULL,'scrypt','90100','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,4.0677480134349,0,'Greencoin is not connected!',0,NULL,0,0.00024414,NULL,0,220083,0,0.00000009931,NULL,1,1,0,0,1,1416083935,NULL,'.greencoin','greencoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10960,'POW',1,NULL,1,NULL,NULL,NULL,NULL,0,NULL,0,'https://bittrex.com/Market/Index?MarketName=BTC-GRE','https://bitcointalk.org/index.php?topic=636548.0','https://github.com/greencoindev/greencoin','http://explorer.cryptoblox.com/chain/GreenCoin',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (361,'VPNCoin','VPN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1416163843,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-VPN',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (362,'Bollywoodcoin','BDC','','neoscrypt','80700','/images/coin-362.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,27.17029868742,0,'',0,1190,0,0.0012075686166524,NULL,210226,NULL,NULL,0.0000003281,0.000000350040000512,10,1,0,0,1,1416211320,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',3620,'POW',1,NULL,1,0,'d6bc5b349ecbb223b41a85610190ae577095fb5b7a2d60d8e288b32a54ca3b89',NULL,70,0,1431018298,0,'https://bittrex.com/Market/Index?MarketName=BTC-BDC','https://bitcointalk.org/index.php?topic=877592.0','https://github.com/Bushstar/bollywoodcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (363,'ViorCoin','VIOR','','scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,0,1416273195,NULL,'.coin','xxxx','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp-db',3630,NULL,0,NULL,1,0,NULL,NULL,NULL,1,NULL,0,'https://bittrex.com/Market/Index?MarketName=BTC-VIOR','http://viorcoin.com/forum/index.php/4-viorcoin-specifications','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (364,'BitBay','BAY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1416335068,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BAY',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (365,'HawaiiCoin','HIC',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1416353312,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,2,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-HIC','https://bitcointalk.org/index.php?topic=508506.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (369,'DeafDollars','DEAF',NULL,'scrypt',NULL,'https://avatars3.githubusercontent.com/u/9754121?v=3&s=460',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1416603271,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,2,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-DEAF','https://bitcointalk.org/index.php?topic=624682.msg6931799#msg6931799','https://github.com/DeafDollars/DeafDollars','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (371,'BitSharesX','BTS',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'??',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1416817228,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BTS','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (373,'CheckCoin','CKC',NULL,'x11','1000000','/images/coin-373.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.069013660116841,0,'',0.02004011,0,0,0.97990400574171,NULL,287230,NULL,1188072631,0.00000053900000000013,0.00000057000000000007,10.001,1,0,0,1,1416953252,NULL,'.checkcoin','checkcoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10986,'POW',1,NULL,1,0,'00000000bd0290be0f156c2cfda5df4885e07ae768c9f53f92b9cf79237032b3',3,74,6,1431865519,0,'','https://bitcointalk.org/index.php?topic=715563.0','https://github.com/Checkcoin/checkcoin','http://cryptobe.com/chain/CheckCoin',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (374,'Viacoin','VIA','','scrypt','100701','/images/coin-374.png',NULL,NULL,'VjjTaoasABtBYknaewQunmnyd1ymS7Tq97',NULL,NULL,NULL,NULL,1,0,1,NULL,0.00061905409687668,14,'',0.06211092,NULL,0.001,3840.4875876536,NULL,1188658,568444,8100769788,0.00004754939150282,0.000052086163448756,5,1,1,0,1,1416960292,NULL,'.viacoin','viacoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',3740,'POW',1,NULL,1,1,'45d212b4d8ab972802fa242de300a1f9759a156bf8abe2dbcebcdb98ebb70f23',2036,19,9897,1434809264,1,'','https://bitcointalk.org/index.php?topic=699278.0','https://github.com/viacoin/viacoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (378,'unknown','ERM',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1417476797,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=erm-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (380,'unknown','FUD',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1417715902,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=fud-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (382,'AeroME','AM',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'crowdfund campaign',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1417760040,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-AM','','','https://bittrex.zendesk.com/hc/en-us/articles/203710160-AeroME-Crowdfunding-Campaign',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (383,'unknown','FIND',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1417771078,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=find-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (384,'unknown','CBR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1417774692,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=cbr-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (385,'SpreadCoin','SPR',NULL,'spread',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1417987570,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=spr-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (386,'PesetaCoin','PTC',NULL,'scrypt','80604','https://fbcdn-profile-a.akamaihd.net/hprofile-ak-xpf1/v/t1.0-1/p160x160/1625670_767378699958720_154064606_n.png?oh=0fd1b41c9511afcf0cc3d1504e93b6d0&oe=54FC36F8&__gda__=1426374974_4e25c0b05aa925044b14548e27f3e0ba',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.0010020377110636,0,'',1497.474,NULL,0,1391.3131997,NULL,555891,478312,411978503648,0.0000010036,NULL,83.193,1,0,0,1,1418045272,NULL,'.pesetacoin','pesetacoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',11012,'POW',1,NULL,1,1,NULL,14,82,6162,1422388320,0,'','https://bitcointalk.org/index.php?topic=403378.0','https://github.com/mp2apps/pesetacoin-master','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (387,'MetalCoin','METAL',NULL,'x11','v1.0.0.0','https://c-cex.com/i/l/metal.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.035662155175436,0,'No more PoW blocks',0,NULL,0.00001,12.61513775,0.27603215,50372,NULL,NULL,0.00000006755,NULL,666,1,0,0,1,1418067622,NULL,'.MetalCoin','MetalCoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp1',11014,'POS',1,NULL,1,0,NULL,NULL,138,6,1420852545,0,'https://c-cex.com/?p=metal-btc','https://bitcointalk.org/index.php?topic=874659.0','https://github.com/MetalCoinTeam/MetalCoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (388,'CheckOutCoin','CXC',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1418096786,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-CXC','https://bitcointalk.org/index.php?topic=840437','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (389,'Umbrella-LTC','ULTC',NULL,'scrypt','5030205','/images/coin-389.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.00011963756610815,0,'',0.10049995,NULL,0,10159.100017977,NULL,64607,NULL,NULL,0.0000159225,NULL,5,1,0,0,1,1418138310,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',3890,'POW',1,NULL,1,1,'fced56ec248b5b809fda9e0bb705330d7a4de1dfe5296feaba367a2f6207e65e',NULL,334,38005,1424471458,0,'','https://bitcointalk.org/index.php?topic=687265.0','https://github.com/UmbrellaHoldings/ULTC','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (390,'Syscoin','SYS',NULL,'scrypt','80604','/images/coin-390.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.00018881013869761,0,'',0.10410119,NULL,0,5032.4884261836,NULL,266644,162957,413890931409,0.00000105185,NULL,96.03647036,1,0,0,1,1418146127,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',3900,'POW',1,NULL,1,1,'0276e3eea6bb0764a712b0096ebb376ea637a42c51dc8b8eb0a8aa13bf34b314',52,68,20379,1424471458,0,'','https://bitcointalk.org/index.php?topic=587080.0','https://github.com/syscoin/syscoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (391,'BitcoinFast','BCF',NULL,'scrypt','v1.0.0.0','/images/coin-391.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,1.3407316990921,0,'',0,NULL,0.01,0.82196162046908,NULL,53598,NULL,NULL,0.0000110203,NULL,10,100,0,0,1,1418151527,NULL,'.BitcoinFast','bitcoinfastd','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',11022,'POS',1,NULL,1,0,'000000002e8fe999a77cd92148dfce80221dfd57142316079a8104b966d1e670',NULL,104,3,1428326048,0,'https://bittrex.com/Market/Index?MarketName=BTC-BCF','https://bitcointalk.org/index.php?topic=881774.0','https://github.com/BitCoinFastTeam','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (392,'DigitalCoin','DGC',NULL,'sha256','2000000','/images/coin-392.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.11560625579365,0,'digitalcoin is downloading blocks...',0,NULL,0,7.89654499,NULL,741779,1290228,NULL,0.00001787255656,0.000019333716782215,5,1,0,0,1,1418168434,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',3920,'POW',1,NULL,1,0,'',NULL,0,0,1429438083,0,'','https://bitcointalk.org/index.php?topic=785601','https://github.com/DGCFoundation/DGCV3.0','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (393,'Monacoin','MONA','','scrypt','80701','/images/coin-393.png',NULL,NULL,'MDwvbzw6LwjfWSyzA1K8bX4j1YxDNpbwSz',NULL,NULL,NULL,NULL,1,0,0,NULL,0.15236913796459,12,'',0.00516591,NULL,0,1994.9869916441,NULL,411249,297467,23215209025,0.00060793673760003,0.00064409862982438,50.001,1,1,1,1,1418175220,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',3930,'POW',1,NULL,1,0,'4d152f8d48f9b50e7cbcbb97868f2cf33f0c5e79e2c77bc9009e8ecdb4cf2d9b',369,135,6135,1434808940,1,'','https://bitcointalk.org/index.php?topic=392436.0','https://github.com/monacoinproject/monacoin','http://whatmine.com/coin/441/MonaCoin-MONA-Scrypt-Profitability',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (394,'Megacoin','MEC','','scrypt','179600','https://www.cryptsy.com/img/coinlogos/curr_32.jpg',NULL,NULL,'',NULL,NULL,NULL,NULL,1,0,0,NULL,0.086821711762006,0,'',0,0,0,124.51080946691,NULL,368458,NULL,3929750681,0.0001816877802712,0.00019215184620399,25,1,0,0,1,1418222520,1,'.megacoind','megacoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',3940,'POW',1,NULL,1,0,'b42760dbcc645dab266645ff33730d2e49667756918665c4456e53b0926bdf0c',136,167,308,1424871144,1,'','https://bitcointalk.org/index.php?topic=240861.0','https://github.com/megacoin/megacoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (396,'Anoncoin','ANC','','scrypt','v0.8.5.1-132-g73a4219-beta','/images/coin-396.png',NULL,NULL,'ARcav6uE8jvvDEEaynGLD41kCXdhJQRFWs',NULL,NULL,NULL,NULL,1,0,0,NULL,0.17037700630867,49,'This is a pre-release test build - use at your own risk - do not use for mining or merchant applications',0.02323752,NULL,0,144.22364733594,NULL,373928,NULL,8306820858,0.00093644791432985,0.0010359314306204,2.624,1,1,0,1,1418226209,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',3960,'POW',1,NULL,1,0,'a36738a68b66ef45f679e8c68ba69a7420a2164412f156f7e67be3d1ad468d9e',74,400,416,1434809265,1,'','https://bitcointalk.org/index.php?topic=227287.0','https://github.com/Anoncoin/anoncoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (397,'unknown','RMS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1418228535,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=rms-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (398,'Bitmark','BTM',NULL,'scrypt','90300','https://ip.bitcointalk.org/?u=https%3A%2F%2Fraw.githubusercontent.com%2Fproject-bitmark%2Fart-of-bitmark%2Fmaster%2Fbranding%2F128%2Fbitmark-purple.png&t=547&c=jDVdtoRDL7t-Tw',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.05975538713427,0,'',0,NULL,0,1953.30771918,NULL,46390,NULL,395433206,0.00050124995,NULL,20.01,1,0,0,1,1418239123,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',3980,'POW',1,NULL,1,0,NULL,21215,27105,3301,1420027203,0,'','https://bitcointalk.org/index.php?topic=660544.0','https://github.com/project-bitmark/bitmark','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (399,'Worldcoin','WDC','','scrypt','80602','/images/coin-399.png',NULL,NULL,'WWsJ32rfxJjYeUZ4ueqfkDq7rss36MufZy',NULL,NULL,NULL,NULL,1,0,0,NULL,0.1752768057151,10,'',0.01584306,NULL,0,110.21376673543,NULL,1978609,1599668,5382272788,0.000060388173084887,0.000065029825727604,31.98957013,1,1,0,1,1418248771,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',3990,'POW',1,NULL,1,0,'a07697450cf51fd95c8f09d0182b84262e0887175b2984e7e8b9a2377273b31d',87,70,331,1434809265,1,'','https://bitcointalk.org/index.php?topic=204894.0','https://github.com/worldcoinproject/worldcoin-v0.8','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (400,'Catcoin','CAT',NULL,'scrypt','90101','https://pbs.twimg.com/profile_images/446815962407251968/DcjxVK4I.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.022866013189558,0,'',0,NULL,0,249.36399174,NULL,33993,NULL,51233585,0.0000082418,NULL,50,1,0,0,1,1418250586,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',4000,'POW',1,NULL,1,0,NULL,20904,9114,681,1419437337,0,'','https://bitcointalk.org/index.php?topic=441402','https://github.com/CatcoinOfficial/CatcoinRelease','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (401,'Huntercoin','HUC',NULL,'scrypt','1010000','https://ip.bitcointalk.org/?u=http%3A%2F%2Fi43.tinypic.com%2F2vl4qs4.png&t=547&c=RTOWq70e2o-UAQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.00000086950627699785,8,'Huntercoin is downloading blocks...',0,NULL,0,115234.41174103,NULL,24334,481907,NULL,0.000010019704433498,NULL,1,1,0,0,0,1418253973,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',4010,'POW',0,NULL,1,1,NULL,NULL,0,436203,1418423254,0,'','https://bitcointalk.org/index.php?topic=435170.0','https://github.com/chronokings/huntercoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (402,'EventToken','EVENT',NULL,'scrypt','v1.1.2.0-g','https://c-cex.com/i/l/event.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.12195848341889,0,'No more PoW blocks',0,NULL,0.0001,27.76272634,0.00145949,50310,NULL,NULL,0.0000067718,NULL,50,1,0,0,1,1418306504,NULL,'.EventToken','EventTokend','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp1',11044,'POS',1,NULL,1,0,NULL,NULL,232,92,1420250926,0,'https://c-cex.com/?p=event-btc','https://bitcointalk.org/index.php?topic=836232.0','https://github.com/eventtoken/eventtoken-project','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (404,'FairCoin','FAIR',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1418415803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-FAIR',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (405,'DarkSwift','DS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1418508414,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-DS',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (406,'Digibyte','DGB','','qubit','3000301','/images/coin-406.png',NULL,NULL,'DAKp51NsmbgBAwtWHYLNxXPTkMQTNVpq8o',NULL,NULL,NULL,NULL,1,0,0,NULL,0.10492933631989,9,'',0,NULL,0,89.241047681866,NULL,950663,NULL,NULL,0.00000040856080000748,0.00000043506405120787,2291.94869052,1,1,0,1,1418567676,NULL,'.digibyte','digibyted','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',4060,'POW',1,NULL,1,0,'6e7d638fc3a45a5fac975d4da7af2a266bce56988af735f3827dc10a0942c7ab',NULL,35,14542,1434809265,1,'','https://bitcointalk.org/index.php?topic=408268.0','https://github.com/digibyte/digibyte','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (407,'unknown','BCENT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1418592834,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=bcent-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (408,'SmileyCoin','SMLY',NULL,'scrypt',NULL,'https://c-cex.com/i/l/smly.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'no order',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1418662374,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=smly-btc','https://bitcointalk.org/index.php?topic=845761.0','https://github.com/tutor-web/smileyCoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (409,'PayCoin','XPY',NULL,'sha256','v0.1.2.25-ge3c013c','https://c-cex.com/i/l/xpy.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.018529379266303,0,'Paycoin is currently on pure PoS state',0,NULL,0.001,20097.90293824,NULL,17739,NULL,NULL,0.00216739965,NULL,1,1,0,0,1,1418673212,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',4090,'POS',1,NULL,1,0,NULL,NULL,77,NULL,1420030011,0,'https://c-cex.com/?p=xpy-btc','https://bitcointalk.org/index.php?topic=895061.0','https://github.com/GAWMiners/paycoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (410,'NooCoin','NOO',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1418694043,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-NOO','https://bitcointalk.org/index.php?topic=895226.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (411,'SuperCoin','SUPER',NULL,'x11',NULL,'https://ip.bitcointalk.org/?u=http%3A%2F%2Fi57.tinypic.com%2F2rr181x.png&t=547&c=r7-LBM1axpPZMw',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1418793788,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=875651.0','https://github.com/Greg-Griffith/SuperCoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (412,'vTorrent','VTR',NULL,'scrypt','v0.7.1.0-g','https://c-cex.com/i/l/vtr.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.10491374123549,0,'',0,NULL,0,99.8182954,0.00028163,9639,NULL,NULL,0,NULL,200,1,0,0,NULL,1418825245,NULL,'.vTorrent','vTorrentd','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',11064,'POS',1,NULL,1,0,NULL,NULL,31,229,1418954371,0,'https://c-cex.com/?p=vtr-btc','https://bitcointalk.org/index.php?topic=889481.0','https://github.com/vtorrent/vTorrent-Client','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1045,'unknown','CREVA',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432649909,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (413,'Clams','CLAM',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POC POP',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1418953561,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (414,'TittieCoin','TTC',NULL,'scrypt','1040000','https://ip.bitcointalk.org/?u=http%3A%2F%2Ftittiecoin.com%2Fmarketing%2FTittie_Thread2.png&t=547&c=CxDydNGI1IAOMg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.089857030765952,0,'',0,NULL,0,47.75760474,NULL,133357,NULL,NULL,0.00000003852,NULL,8008,1,0,0,1,1418953563,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',4140,'POW',0,NULL,1,0,NULL,NULL,977,211,1422253922,0,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=437695.0','https://github.com/tittiecoin/tittiecoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (415,'Sapience','XAI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419023221,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-XAI',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (416,'NakomotoDark','NKT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419023223,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-NKT',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (417,'Florincoin','FLO',NULL,'scrypt','80703','https://i.imgur.com/Ykgy5P8.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.0056164994963704,3,'Florincoin is downloading blocks...',0,NULL,0,6.78498185,NULL,781361,NULL,NULL,NULL,NULL,100,1,0,0,0,1419047316,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',4170,'POW',1,NULL,1,0,NULL,NULL,198,13,1419051797,0,'','https://bitcointalk.org/index.php?topic=236742.0','https://github.com/florincoin/florincoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (418,'ReddCoin','RDD',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-RDD',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (419,'NXT','NXT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-NXT',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (420,'BlackCoin','BC',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (421,'MyriadCoin','MYR','','qubit','90215','/images/coin-421.png',NULL,NULL,'MJfXedcJ9kM1ThxaJ1CCt4wWXxfjpS8Svc',NULL,NULL,NULL,NULL,1,0,0,NULL,0.097000870640314,10,'',0,NULL,0,12.242283519324,NULL,1234433,NULL,NULL,0.000000237502432,0.00000025500256,500,1,1,0,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',4210,'POW',1,NULL,1,0,'2e3bf470571223bc59fcdc6a88cf60a7ece7d3da567b0977d0c0f46b6ea7d4d7',NULL,57,2027,1434809265,1,'https://bittrex.com/Market/Index?MarketName=BTC-MYR','','https://github.com/myriadcoin/myriadcoin.git','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (422,'UltraCoin','UTC',NULL,'scryptjane',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt Jane',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-UTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (423,'OctoCoin','888',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt PoW',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-888',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (424,'ElectronicGulden','EFL',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-EFL',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (425,'DimeCoin','DIME','','quark','80313','/images/coin-425.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,NULL,0.32805429223453,0,'dimecoin is not connected!',0,0,0,2.1091572239063,NULL,846132,NULL,NULL,0.000000000365682073984,0.00000000041469101173443,158208,1000,0,0,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',4250,'POW',1,NULL,0,0,'000000002a962e16e3e63e76c117b506adfc1a4c42fe28816a4e65d3eb45f2bb',NULL,106,4,1432642365,0,'https://bittrex.com/Market/Index?MarketName=BTC-DIME','https://bitcointalk.org/index.php?topic=382164.0','https://github.com/dimecoinproject/dimecoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (426,'SolarCoin','SLR',NULL,'scrypt','1050000','https://ip.bitcointalk.org/?u=http%3A%2F%2Fsolarcoinorg.fatcow.com%2Fwp-content%2Fuploads%2F2013%2F10%2F1MWhD15aR02cP01ZL-Tyler2c-150x150.png&t=547&c=JO2UPMNCvmBXsw',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.074880207413422,0,'',0,NULL,0,2.03223776,NULL,446912,NULL,NULL,0.0000151116,NULL,1,1,0,0,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',4260,'POW',1,NULL,1,0,NULL,NULL,75,94,1419859784,0,'https://bittrex.com/Market/Index?MarketName=BTC-SLR','https://bitcointalk.org/index.php?topic=785257.0','https://github.com/solarcoin/solarcoin/tree/reward-reduction','http://blockexplorer.solarcoin.org/block/c572407ff1848b81f86c42343faff2d6a9d1a4919a9f2b6f51806c700eff9832',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (427,'CleanWaterCoin ','WATER',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-WATER',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (428,'GuldenCoin','NLG','','scrypt','1040000','/images/coin-428.png',NULL,NULL,'GUxPJfpkkcEJbFbphTshqhPXCp4baNm49S',NULL,NULL,NULL,NULL,1,0,0,NULL,0.13562750671414,13,'',0,NULL,0,211.73138811414,NULL,225848,NULL,NULL,0.0000028716600263045,0.0000031134566630932,1000,1,1,0,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',4280,'POW',1,NULL,1,0,'dbbc313f87a94756cf1e8d609b8972ece04c47049d9220ebf77863e2455ddae0',NULL,312,1026,1434808940,1,'https://bittrex.com/Market/Index?MarketName=BTC-NLG','https://bitcointalk.org/index.php?topic=554412.0','https://github.com/nlgcoin/Guldencoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (429,'GiveCoin','GIVE',NULL,'x11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X11',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-GIVE',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (430,'WhiteCoin','WC',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-WC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (431,'NobleCoin','NOBL',NULL,'scrypt','1010003','/images/coin-431.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.48483991093813,0,'',0,NULL,0,11.036602373497,NULL,538414,NULL,NULL,0.0000000772,NULL,5000,1,0,0,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',4310,'POW',1,NULL,0,0,'8ed626d654f0aca9ebe8980cef76790fb7244823a07da6f36bb1778a22963ac9',NULL,59,44,1425732969,0,'https://bittrex.com/Market/Index?MarketName=BTC-NOBL','https://bitcointalk.org/index.php?topic=402667.0','https://github.com/jlcurby/NobleCoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (432,'BitStarCoin','BITS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BITS',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (433,'BlueCoin','BLU',NULL,'x11','v1.2.1.0','/images/coin-433.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.081804199282824,0,'',0,NULL,0.0001,1.6515044604607,NULL,645837,482241,NULL,0.0000002895,NULL,50,100,0,0,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',4330,'POS',1,NULL,1,0,'000000007c74f7d41dbf76f7a705d4f2fcfa513d901fc8d0b68a95c3959a4b65',NULL,27,0,1426864197,0,'https://bittrex.com/Market/Index?MarketName=BTC-BLU','https://bitcointalk.org/index.php?topic=580639.0','https://github.com/bluecoiner/bluecoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (434,'OrangeCoin','OC',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-OC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (435,'HempCoin','THC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-THC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (436,'EnergyCoin','ENRG',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-ENRG',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (437,'ShibeCoin','SHIBE',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-SHIBE',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (438,'SaffronCoin','SFR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Other',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-SFR',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (439,'NautilusCoin','NAUT',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-NAUT',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (440,'VeriCoin','VRC',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-VRC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (441,'CureCoin','CURE',NULL,'sha256',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'SHA-256',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-CURE',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (442,'SyncCoin','SYNC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-SYNC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (443,'BlakeCoin','BLC','','blake','80904','/images/coin-443.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.00015832107355864,0,'',0,NULL,0,14710.482049034,NULL,257384,NULL,NULL,0.00000931225,0.0000098,25.00984521,1,0,0,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',4430,'POW',1,NULL,1,0,'',NULL,276,299041,1431226011,0,'https://bittrex.com/Market/Index?MarketName=BTC-BLC','https://bitcointalk.org/index.php?topic=306894.0','https://github.com/BlueDragon747/Blakecoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (444,'StabilitySharesXSI','XSI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-XSI',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (445,'XCurrency','XC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-XC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (446,'Dirac','XDQ',NULL,'blake','80901','https://ip.bitcointalk.org/?u=http%3A%2F%2Fi58.tinypic.com%2F29osrnk.jpg&t=547&c=71zM9OaAePyC1A',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.00013858160724549,0,'',0,NULL,0,10914.2008818,NULL,97493,NULL,NULL,0.0001210006,NULL,1.25,1,0,0,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',4460,'POW',1,NULL,1,1,NULL,NULL,208,147903237,1419516549,0,'https://bittrex.com/Market/Index?MarketName=BTC-XDQ','https://bitcointalk.org/index.php?topic=616288.0','https://github.com/bryceweiner/Dirac','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (447,'JackpotCoin ','JPC',NULL,'jha','v1.5.0.0','https://ip.bitcointalk.org/?u=http%3A%2F%2Fjackpotcoin.info%2Fimgs%2Flogo256.png&t=547&c=imB6uAGxdwUFXQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.00057557716065956,0,'JackpotCoin is downloading blocks...',0,NULL,0.01,12.99182946,NULL,1358008,1478733,NULL,0.0000000196,NULL,38.15204241,1,0,0,0,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',4470,'POS',1,NULL,1,0,NULL,NULL,0,NULL,1419521636,0,'https://bittrex.com/Market/Index?MarketName=BTC-JPC','https://bitcointalk.org/index.php?topic=584481.0','https://github.com/rtc29462/JackpotCoin','http://explorer.jpcpal.com/jackpot.php',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (448,'Maieuticoin','MMXIV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-MMXIV',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (449,'CAIx','CAIX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-CAIX',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (450,'Boolberry','BBR',NULL,'CryptoNight',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BBR','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (451,'Hyper','HYPER',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-HYPER',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (452,'CannaCoin','CCN',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-CCN',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (453,'KryptKoin','KTK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Pure PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-KTK',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (454,'Mugatu','MUGA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-MUGA',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (455,'VootCoin','VOOT',NULL,'x11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X11 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-VOOT',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (456,'BankNote','BN',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BN',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (457,'Monero','XMR',NULL,'CryptoNight',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-XMR','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (458,'CloakCoin','CLOAK',NULL,'x13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X13 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-CLOAK',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (459,'CHCCoin','CHCC',NULL,'scryptjane',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt Jane',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-CHCC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (460,'BurnerCoin','BURN',NULL,'x13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X13 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BURN',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (461,'KoreCoin','KORE',NULL,'x13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X13 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-KORE',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (462,'Razor','RZR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-RZR',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (463,'DarkNote','XDN',NULL,'cryptonight',NULL,'https://pbs.twimg.com/profile_images/517393193411674112/-_0zfX6I.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-XDN','https://bitcointalk.org/index.php?topic=788916.0','https://github.com/ducknote/darknote','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (464,'Minerals','MIN',NULL,'x11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X11 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-MIN',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (465,'TechCoin','TECH',NULL,'x13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X13 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-TECH',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (466,'GameLeagueCoin','GML',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-GML',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (467,'TruckCoin','TRK',NULL,'x11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X11 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-TRK',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (468,'WankCoin','WKC','','sha256','80701','/images/coin-468.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.0000081197602840733,0,'',0,2000.0014,0,417059.83786367,NULL,82211,NULL,NULL,0.000006755,0.000007145,50.0002,1,0,0,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',4680,'POW',1,NULL,1,0,'0000000000001cf2c0af8ba1a38460969153062808450d45efb18edaa330fee9',NULL,1667,264,1430791481,0,'https://bittrex.com/Market/Index?MarketName=BTC-WKC','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (469,'Quatloo','QTL',NULL,'scrypt','10102','/images/coin-469.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.028691590987062,0,'',0,0,0,94.603360775911,NULL,192407,178136,NULL,0.000014266781608806,0.0000151630624256,17.011,1,0,0,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',4690,'POW',1,NULL,1,0,'2a9a4e49491123ad90cf32352a4720ba161965b535770f9adcd13a02d339119d',NULL,201,329,1431861954,0,'https://bittrex.com/Market/Index?MarketName=BTC-QTL',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (470,'XXXCoin','XXX',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-XXX',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (471,'AeroCoin','AERO',NULL,'x13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X13 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-AERO',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (472,'TrustPlus','TRUST',NULL,'x11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X11 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-TRUST',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (473,'BritCoin','BRIT',NULL,'x13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X13 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BRIT',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (474,'JudgeCoin','JUDGE',NULL,'x13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X13 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-JUDGE',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (475,'NavajoCoin','NAV',NULL,'x13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X13 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-NAV',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (476,'StealthCoin','XST',NULL,'x13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X13 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-XST',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (477,'ApexCoin','APEX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-APEX',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (478,'ZetaCoin','ZET','','sha256','90206','/images/coin-478.png',NULL,NULL,'ZZSCBNGCNAzuzSfBnQqJqMunmvX9JZZfF9',NULL,NULL,NULL,NULL,1,0,0,NULL,0.0000034251734042815,8,'',0.09010464,NULL,0,61788.257229176,NULL,3110924,NULL,NULL,0.000021019699775323,0.000022553959881795,1,1,1,0,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',4780,'POW',1,NULL,1,0,'0000000000011ba84578a1391b21e536fe3707e489f2070beb47e6e2817c0e36',NULL,23,86,1434809265,1,'https://bittrex.com/Market/Index?MarketName=BTC-ZET','https://bitcointalk.org/index.php?topic=267545.0','http://github.com/zetacoin/zetacoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (479,'BitcoinDark','BTCD',NULL,'sha256','v1.0.0.0-g32a928e','https://i.imgur.com/S75FAEs.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,150307.20897845,0,'BitcoinDark is not connected!',0,NULL,0.0001,0.00024414,0.00024414,0,NULL,NULL,0.00361343285,NULL,1,1,0,0,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',4790,'POS',1,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,'https://bittrex.com/Market/Index?MarketName=BTC-BTCD','https://bitcointalk.org/index.php?topic=684090.0','https://github.com/laowais/bitcoindark','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (480,'KeyCoin','KEY',NULL,'x13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X13 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-KEY',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (481,'NewUniversalDollar','NUD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-NUD',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (482,'Triangles','TRI',NULL,'x13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X13 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-TRI',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (483,'Pesa','PES',NULL,'x13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X13 PoW/PoStr',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-PES',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (484,'IncognitoCoin','ICG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-ICG',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (485,'Unobtanium','UNO','','sha256','100000','/images/coin-485.png',NULL,NULL,'uVBwPVH6sp49tACDjRwmQGxYujaCXFme4d',NULL,NULL,NULL,NULL,1,0,1,NULL,0.000000023281083972171,9,'',0.00833704,NULL,0,63121255.609936,NULL,620808,NULL,NULL,0.0094050000146162,0.010069990403404,0.015625,1,1,1,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',4850,'POW',1,NULL,1,1,'324611d672129ea00daa2835c4a9df742644c2781f35c07476652aae10106e27',NULL,129,85290,1434809023,1,'https://bittrex.com/Market/Index?MarketName=BTC-UNO','','https://github.com/unobtanium-official/Unobtanium.git','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (486,'EsportsCoin','ESC',NULL,'x11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X11 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-ESC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (487,'PinkCoin','PINK',NULL,'x11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X11 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-PINK',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (488,'IOCoin','IOC',NULL,'x11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X11 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-IOC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (489,'ShadowCash','SDC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-SDC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (490,'RawCoin','RAW',NULL,'x15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X15 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-RAW',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (491,'MaxCoin','MAX','','keccak','90301','/images/coin-491.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.00081462655359285,0,'',0,NULL,0,3402.15030323,NULL,956223,935270,NULL,0.000017321762352032,0.000018415006400016,16,1,0,0,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',4910,'POW',1,NULL,1,0,'',NULL,68,1883327,1430798845,0,'https://bittrex.com/Market/Index?MarketName=BTC-MAX','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (492,'LibrexCoin','LXC',NULL,'x11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X11 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-LXC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (493,'BoomCoin','BOOM',NULL,'x13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X13 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BOOM',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (494,'DobbsCoin','BOB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BOB',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (495,'Unattainium','UNAT','','qubit','90401','/images/coin-495.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,285.48456262874,0,'',5.52931864,4.7501,0,0.00024413713253701,NULL,683649,NULL,NULL,0.00002787885,0.000033188307987195,0.25,1,0,0,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',4950,'POW',1,NULL,1,0,'8f2e4ddb79c4ea7c057ec17d1e9642e2edde1f9fe5345fda414979b938631a79',NULL,77,0,1430741159,0,'https://bittrex.com/Market/Index?MarketName=BTC-UNAT',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (496,'MultiWalletCoin','MWC',NULL,'x11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X11 PoW+PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-MWC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (497,'VaultCoin','VAULT',NULL,'nist5',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'NIST5',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-VAULT',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (498,'Fuel2Coin','FC2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-FC2',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (499,'SonicCoin','SSD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-SSD',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (500,'Halcyon','HAL','','neoscrypt','v1.1.0.2-hal-1-gdf6edad','/images/coin-500.png',NULL,NULL,'HApKDA5vax1tTXZ9kh1JVbm7G2iCGvvKbC',NULL,NULL,NULL,NULL,1,0,0,NULL,2.5762014135665,18,'',0,NULL,0.00001,0.15156035355988,0.15801428,284826,NULL,NULL,0.000007808999941632,0.00000997999981056,5,1,1,0,1,1419057802,NULL,'.halcyon','halcyond','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',5000,'POS',1,NULL,1,0,'da492a2ce34cd47e05feb686db50c319bad4cb4cb06d588fee3aaae594e3ba87',NULL,141,11,1434808716,1,'https://bittrex.com/Market/Index?MarketName=BTC-HAL','https://bitcointalk.org/index.php?topic=895829.0','https://github.com/ghostlander/Halcyon','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (501,'BigBullion','BIG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BIG',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (502,'NeosCoin','NEOS','','sha256','1020001','/images/coin-502.png',NULL,NULL,'Nb4UMLD31dUgUX3nrRCyAc4as5dJCMFz85',NULL,NULL,NULL,NULL,1,0,0,NULL,0.0000032279200724922,13,'',0,NULL,0,3777008.9197601,NULL,94196,NULL,NULL,0.000024207900083661,0.00002588200173568,50.00000001,1,1,1,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',5020,'POW',1,NULL,1,0,'00000000000001566bd7dcefe7c701ec33baf7864803928fdd38c5f44549d5b1',NULL,311,5366,1434809098,1,'https://bittrex.com/Market/Index?MarketName=BTC-NEOS','https://bitcointalk.org/index.php?topic=835131.0','https://github.com/bellacoin/neoscoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (503,'GreenBacks','GB',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-GB','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (504,'RootCoin','ROOT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-ROOT',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (505,'Axron','AXR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-AXR',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (506,'RipoffCoin','RIPO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-RIPO',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (507,'Fibre','FIBRE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-FIBRE',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (508,'ShadeCoin','SHADE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-SHADE',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (509,'FlexibleCoin','FLEX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-FLEX',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (510,'SocialXBot','XBOT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-XBOT',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (511,'XCash','XCASH',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-XCASH','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (512,'BURST','BURST',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BURST',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (513,'LitecoinDark','LTCD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-LTCD',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (514,'CraigsCoin','CRAIG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-CRAIG',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (515,'TitCoin','TIT','','sha256','1000000','/images/coin-515.png',NULL,NULL,'1E9akQuRN9zoqSUMXRxSGeW52qaGVbTFYz',NULL,NULL,NULL,NULL,1,0,0,NULL,0.000003920338318239,10,'',0,NULL,0,245914.01726752,NULL,401053,NULL,NULL,0.0000013889,0.000001481,69,1,1,0,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',5150,'POW',1,NULL,1,0,'000000000000122c9bf4f701e482fbaadff1a4ae125af04aee5f208db923bdbf',NULL,81,304,1434809265,1,'https://bittrex.com/Market/Index?MarketName=BTC-TIT',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (516,'GlobalBoost-Y','BSTY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BSTY',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (517,'Gnosis','GNS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-GNS',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (518,'DeepCoin','DCN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-DCN',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (519,'Prime-XI','PXI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-PXI',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (520,'MozzShare','MLS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-MLS',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (521,'RosCoin','ROS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-ROS',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (522,'SativaCoin','STV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-STV',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (523,'OpalCoin','OPAL',NULL,'x13',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-OPAL','https://bitcointalk.org/index.php?topic=778720.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (524,'ExclusiveCoin','EXCL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-EXCL',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (525,'UtilityCoin','UTIL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-UTIL',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (526,'PyramidsCoin','PYRA',NULL,'x11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X11',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-PYRA',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (527,'GhostCoin','GHOST',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-GHOST',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (528,'NetCoin','NET',NULL,'scrypt','v2.3.1.0','/images/coin-528.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.029859299688766,14,'',0,NULL,0,113.30348278866,8.12638774,532599,573454,NULL,0.00000155365,NULL,200.91,1,0,0,1,1419057802,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',5280,'POW',1,NULL,0,0,'8d894e407520bcc542327d2ea063ca33869ce0c319f512ba186f447be3b8ca5a',NULL,99,485,1425661663,0,'https://bittrex.com/Market/Index?MarketName=BTC-NET','https://bitcointalk.org/index.php?topic=295616.0','https://github.com/netcoinfoundation/netcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (529,'SeedCoin','SEED',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-SEED',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (530,'PandaCoin','PND',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-PND',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (531,'WhistleCoin','WSTL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-WSTL',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (532,'GamerholicCoin','GHC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-GHC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (533,'DopeCoin','DOPE',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt PoW',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-DOPE',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (534,'SparkCoin','SPARK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-SPARK',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (535,'GlowCoin','GLOW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-GLOW',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (536,'ScatterCoin','XSTC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-XSTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (537,'CannabisDarkcoin','CND',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-CND',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (538,'DarkShibe','DSB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-DSB',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (539,'DarkKush','DANK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-DANK',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (540,'GanjaCoin','GANJA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-GANJA',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (541,'X-Children','CHILD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-CHILD',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (542,'1Coin','ONE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-ONE',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (543,'RektCoin','REKT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-REKT',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (544,'CamorraCoin','CAM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-CAM',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (545,'EthereumDark','ETD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-ETD',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (546,'UroDark','UROD',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-UROD','https://bitcointalk.org/index.php?topic=838281.0','https://github.com/urodarkcoin/urodark/tree/master','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (547,'Quotient','XQN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-XQN',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (548,'OptimumCoin','OPTI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-OPTI',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (549,'Diode','DIO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-DIO',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (550,'MalibuCoin','MAL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-MAL',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (551,'MewnCoin','MEWN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-MEWN',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (552,'Bladecoin','BLA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/BLA/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (553,'Bleutrade Share','BLEU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/BLEU/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (554,'BeaverCoin','BVC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/BVC/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (555,'Cagecoin','CAGE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/CAGE/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (556,'Canada eCoin','CDN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/CDN/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (557,'CryptoEscudo','CESC',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/CESC/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (558,'CoffeeCoin2.0','CFC2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/CFC2/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (559,'CopperLark','CLR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'SHA-3',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/CLR/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (560,'CzechCrownCoin','CZC',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057802,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://crown-ex.com','https://cryptocointalk.com/topic/14708-czechcrowncoin-czc-information/','https://github.com/CzechCrownCoin','http://czc-explorer.bitcoinnews.cz',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (561,'DogecoinDark','DOGED','','scrypt','v1.2.0.0-beta','/images/coin-561.png',NULL,NULL,'DR2mm3qwdPFKDPQxMnmBaW4dSxCdJyqngT',NULL,NULL,NULL,NULL,1,1,0,NULL,0.029638970340127,16,'',0,NULL,0.1,400.66295703675,NULL,186904,NULL,NULL,0.0000000475,0.000000055,25000.5,100,1,0,1,1419057803,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',5610,'POS',1,NULL,1,0,'0000000003322491352efb9417814fc345be32b64bba1c006f9aa50ab49fa9fd',NULL,312,551,1434808355,1,'https://bleutrade.com/exchange/DOGED/BTC','https://bitcointalk.org/index.php?topic=817937.0','https://github.com/doged/dogedsource','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (562,'Donationcoin','DON',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt PoW',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/DON/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (563,'FujiCoin','FJC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/FJC/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (564,'Freicoin','FRC',NULL,'sha256','80600','/images/coin-564.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.000005913752246547,0,'',0,NULL,0,1280834.0552712,NULL,108972,NULL,NULL,0.0000050566,NULL,146.98987545,1,0,0,1,1419057803,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',5640,'POW',1,NULL,0,0,'',NULL,9673,643,1429184401,0,'https://bleutrade.com/exchange/FRC/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (565,'GCoin','GCN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/GCN/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (566,'Granitecoin','GRN',NULL,'x11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X11',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/GRN/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (567,'Guarany','GUA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/GUA/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (568,'HamRadioCoin','HAM',NULL,'sha256','1010000','/images/coin-568.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.0000036034939734409,0,'',0,0,0,135639.0455457,NULL,121815,NULL,NULL,0.000011436299975168,0.0000126350015872,12.5,1,0,0,1,1419057803,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',5680,'POW',1,NULL,1,0,'0000000000004df4378729c87d68fcc6f43840bc5f26b5c7bfb0d17843935fa2',NULL,158,217,1431865423,0,'https://bleutrade.com/exchange/HAM/BTC','https://bitcointalk.org/index.php?topic=856464','https://github.com/hamradiocoin','http://blockexperts.com/ham',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (569,'HeisenbergHex','HEX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/HEX/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (570,'HTML5','HTML5','','x15','v1.0.0.0','/images/coin-570.png',NULL,NULL,'HBM3avbydJ5wPbHHsujpyFxSqMy8iyd5C2',NULL,NULL,NULL,NULL,1,1,0,NULL,2.0362856008569,26,'',0,NULL,0.00001,0.18199869475263,0.00024414,487559,151547,NULL,0.0000000074120264299906,0.0000000078595047402503,5000,1,1,0,1,1419057803,NULL,'.HTML5','Htmld','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',5700,'POS',1,NULL,1,0,'0000000302768fe417777a419bbf66db92dae046bc60672b5d77828b1ae1e2cc',NULL,14,30,1434809266,1,'https://bleutrade.com/exchange/HTML5/BTC','https://bitcointalk.org/index.php?topic=801489.0','https://github.com/HTMLCOIN/HTML5','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (571,'Infinitecoin','IFC','','scrypt','1080800','/images/coin-571.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.0012025642495673,7,'infinitecoin is downloading blocks...',0,NULL,10,0.98116569,NULL,531502,NULL,NULL,0.0000001179914781696,0.00000012539973376,1,1,0,0,1,1419057803,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',5710,'POW',0,NULL,1,0,'',NULL,12,NULL,1432606663,0,'https://bleutrade.com/exchange/IFC/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (572,'IrishCoin','IRL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/IRL/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (573,'Karma','KARM',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/KARM/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (574,'Mintcoin','MINT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Pure PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/MINT/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (575,'Mooncoin','MOON',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/MOON/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (576,'MetalMusicCoin','MTLMC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/MTLMC/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (577,'Namecoin','NMC','','sha256','38000','/images/coin-577.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.00000002150150758075,0,'',0,0,0.005,14809292723.487,NULL,229332,NULL,NULL,0.0013789216380103,0.0014295284120817,25.18,1,0,0,1,1419057803,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',5770,'POW',0,1,1,1,'',NULL,1157,10323457,1430807824,0,'https://bleutrade.com/exchange/NMC/BTC','http://namecoin.info/?p=download','https://github.com/namecoin/namecoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (578,'NewYorkCoin','NYC',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/NYC/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (579,'OrbitCoin','ORB','','neoscrypt','v1.5.0.0-orb-1-gd20dc7f','/images/coin-579.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,3.2607735072876,0,'',0,0,0.001,0.10669247625529,0.14859904,1241221,NULL,NULL,0.00003724980050176,0.00003884500025856,1,100,0,0,1,1419057803,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',5790,'POS',1,NULL,1,0,'',NULL,60,50,1431862090,0,'https://bleutrade.com/exchange/ORB/BTC','https://cryptocointalk.com/topic/929-orbitcoin-orb-information/','https://github.com/ghostlander/Orbitcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (580,'Paccoin','PAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/PAC/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (581,'PolishCoin','PCC',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/PCC/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (582,'PHCoin','PHC',NULL,'x11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'X11',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/PHC/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (583,'PimpCash','PIMP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/PIMP/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (584,'POWcoin','POW',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/POW/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (585,'Peercoin','PPC','','sha256','v0.4.0ppc-16-gd50b306-beta','/images/coin-585.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.0000050720496699098,0,'',0,0,0.01,167263399.69501,NULL,170219,170187,NULL,0.0013401686809116,0.0013851327647486,87.92,100,0,0,1,1419057803,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',5850,'POS',1,NULL,1,0,'',NULL,287,84770,1429645992,0,'https://bleutrade.com/exchange/PPC/BTC','','https://github.com/super3/Peercoin.net','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (586,'RussiaCoin','RC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/RC/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (587,'Sexcoin','SXC',NULL,'scrypt',NULL,'https://ip.bitcointalk.org/?u=http%3A%2F%2Fs18.postimg.org%2Fgtazg2bw9%2Fsxcoin_final_gasm.png&t=547&c=lDmohR7rMvjINQ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'no source',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/SXC/BTC','https://bitcointalk.org/index.php?topic=252896.msg2689850','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (588,'TrollCoin','TRL',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/TRL/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (589,'US Dollar','USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/USD/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (590,'VirtaCoin','VTA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/VTA/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (591,'Primecoin','XPM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Prime PoW',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057803,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bleutrade.com/exchange/XPM/BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (592,'unknown','ABC2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=abc2-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (593,'unknown','AID',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=aid-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (594,'BitQuark','BTQ',NULL,'quark','80318','/images/coin-594.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.02665398471046,0,'',30960.06146,NULL,0,2.346065726355,NULL,1015877,829764,NULL,0.00000229284,NULL,2.5,1000,0,0,1,1419057851,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',5940,'POW',1,NULL,0,0,'00000000d70f9f3cd7559846a2e639da17e36d6897e2d11ac2356193999b10da',NULL,70,1,1426868636,0,'https://c-cex.com/?p=btq-btc','https://bitcointalk.org/index.php?topic=468018.0','https://github.com/bitquarkcoin/BitQuark-0.8.3r18','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (595,'unknown','CCI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=cci-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (596,'Einsteinium','EMC2',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=emc2-btc','https://bitcointalk.org/index.php?topic=494708.0','https://github.com/einsteinium/einsteinium','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (597,'unknown','EUPH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=euph-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (598,'unknown','FICE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=fice-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (599,'unknown','FOOD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=food-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (600,'Gimpcoin','GIMP',NULL,'x13',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=gimp-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (601,'GridCoin','GRC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=grc-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (602,'unknown','ICNX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=icnx-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (603,'unknown','IMAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=imac-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (604,'Kryptonite','KRYP',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=kryp-btc','https://bitcointalk.org/index.php?topic=606682.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (605,'unknown','MIC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=mic-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (606,'unknown','MOTO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=moto-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (607,'unknown','MSC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=msc-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (608,'unknown','NIC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=nic-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (609,'unknown','NWO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=nwo-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (610,'unknown','PLCN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=plcn-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (611,'unknown','PROZ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=proz-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (612,'SongCoin','SONG',NULL,'scrypt','80701','https://c-cex.com/i/l/song.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.084383703478683,0,'',0,NULL,0,146.75565741478,NULL,66480,NULL,NULL,0.000009291024,NULL,100,1,0,0,1,1419057851,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',6120,'POW',1,NULL,1,0,NULL,NULL,2111,515,1422793222,0,'https://c-cex.com/?p=song-btc','https://bitcointalk.org/index.php?topic=804527.0','https://github.com/Songcoin/Songcoin/','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (613,'unknown','SPUDS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=spuds-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (614,'unknown','SQC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=sqc-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (615,'unknown','VOXP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=voxp-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (616,'Vortex','VTX',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=vtx-btc','https://bitcointalk.org/index.php?topic=777508.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (617,'unknown','XRC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=xrc-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (618,'ServX','XSX',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419057851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=xsx-btc','https://bitcointalk.org/index.php?topic=750752.0','https://github.com/ServX/servx','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (619,'AsiaCoin','AC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (620,'Acoin','ACOIN','','sha256','90202','/images/coin-620.png',NULL,NULL,'AShnqiTV3q84QgWYycqePT3ru7bWY5FS6N',NULL,NULL,NULL,NULL,1,0,0,NULL,0.0000010249858982867,8,'',0.00261746,NULL,0,87772.863565765,NULL,960835,NULL,NULL,0.000035169,0.000038255,0.25,1,1,0,1,1419059858,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',6200,'POW',1,NULL,1,0,'000000000003055f89e4b6deef77b10505831c2021d8102d2a1ad38ad45891ad',NULL,51,41,1434809266,1,'https://www.cryptsy.com/markets/view/','https://cryptocointalk.com/topic/14814-acoin-acoin-information/','https://github.com/acoin-project/acoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (621,'Aegis','AGS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (622,'AlphaCoin','ALF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (623,'AlienCoin','ALN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (624,'AmericanCoin','AMC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (625,'Argentum','ARG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (626,'AuroraCoin','AUR','','scrypt','1030000','/images/coin-626.png',NULL,NULL,'AGfprJkH7GxJctyZL7Htc5Rmmd3KgExLnD',NULL,NULL,NULL,NULL,1,0,0,NULL,0.14289227312407,9,'',0.00158743,NULL,0,128.79199164773,NULL,133879,NULL,NULL,0.00014722704357376,0.00015546606968268,12.5,1,1,0,1,1419059858,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',6260,'POW',0,NULL,1,0,'634f8f5881a76318f0e8e1fd7f5e6ea38bd1092128101a1190aae1bc63c18be1',NULL,156,343,1434809266,1,'https://www.cryptsy.com/markets/view/','','https://github.com/baldurodinsson/auroracoin-project.git','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (627,'BattleCoin','BCX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (628,'Benjamins','BEN',NULL,'sha256',NULL,'https://www.cryptsy.com/img/coinlogos/curr_116.jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,0,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,1,1,0,0,1,1419059858,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','',6280,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'https://www.cryptsy.com/markets/view/','','https://github.com/benjaminsSource/Benjamins.git','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (629,'Betacoin','BET',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (630,'BancorCoin','BNCR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (631,'BoostCoin','BOST',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (632,'BBQCoin','BQC','','scrypt','60300','/images/coin-632.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.066775024827764,0,'',0,NULL,0,8.6791400610754,NULL,994204,987698,NULL,0.0000013413500000317,0.0000014485866671276,42,1,0,0,1,1419059858,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',6320,'POW',1,1,1,0,'',NULL,57,10,1430421308,0,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (633,'BitBar','BTB',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=193519.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (634,'ByteCoin','BTE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (635,'BitGem','BTG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (636,'CryptoBuck','BUK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (637,'CACHeCoin','CACH',NULL,'scryptjane',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (638,'BottleCaps','CAP',NULL,'scrypt','v2.2.0.0-ge1d17f0-Caps2.0','http://www.coinwarz.com/content/images/Bottlecaps-64x64.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.00076217105727139,0,'',0,NULL,0.001,13.484177734055,NULL,885183,NULL,NULL,0.00001012113,NULL,0.1,1,0,0,1,1419059858,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',6380,'POS',1,NULL,1,0,NULL,NULL,50,43,1423399106,0,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=241445.0','https://github.com/bottlecaps-foundation/bottlecaps','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (639,'CashCoin','CASH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (640,'CryptogenicBullion','CGB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (641,'CinniCoin','CINNI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (642,'Cosmoscoin','CMC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (643,'China Coin','CNC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (644,'ConcealCoin','CNL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (645,'CommunityCoin','COMM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (646,'CoolCoin','COOL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (647,'CrackCoin','CRACK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (648,'CraftCoin','CRC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (649,'CasinoCoin','CSC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (650,'eMark','DEM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (651,'Diamond','DMD',NULL,'groestl','v2.0.5.5','/images/coin-651.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.012835237914639,0,'',0,NULL,0.001,79.111974573953,NULL,905517,884343,NULL,0.00048353381693027,0.00050481089953549,0.21,100,0,0,1,1419059858,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',6510,'POS',1,NULL,1,0,'',NULL,72,152826,1430316339,0,'https://www.cryptsy.com/markets/view/','','https://github.com/DMDcoin/Diamond','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (652,'DarkCash','DRKC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (653,'DarkToken','DT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (654,'DevCoin','DVC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (655,'EarthCoin','EAC','','scrypt','1040000','/images/coin-655.png',NULL,NULL,'eWyRcSFhym6pmfFHzCzajhH2JZa66u9nn7',NULL,NULL,NULL,NULL,1,1,0,NULL,0,10,'This is a pre-release test build - use at your own risk - do not use for mining or merchant applications',5977,NULL,0,60.996480614293,NULL,696991,NULL,NULL,0,0,5887.5,1,1,0,1,1419059858,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',6550,'POW',1,NULL,0,0,'abf3a132a30c8e5b588f99498e42e27e5661fad80ce481e6a23af8cfdb0dd5d4',NULL,65,121,1434809266,1,'https://www.cryptsy.com/markets/view/','','https://github.com/earthcoinproject/earthcoin.git','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (656,'ElaCoin','ELC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (657,'Emerald','EMD','','scrypt','80501','/images/coin-657.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.0095057642950698,0,'',55.1665602,NULL,0,12.112672598957,NULL,2487336,2484624,NULL,0.0000029014850151301,0.0000032019622727937,5.1,1,0,0,1,1419059858,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',6570,'POW',0,NULL,1,0,'e63b8775d2b05cd13436b37536c7a19d4ee45b007db6e2a48d5aefbd6ef437fe',NULL,20,34,1429566710,0,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (658,'EZCoin','EZC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (659,'FireflyCoin','FFC',NULL,'sha256',NULL,'http://www.coinwarz.com/content/images/Fireflycoin-64x64.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,0,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,NULL,1,1,0,0,1,1419059858,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','',6590,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=318589.0','https://github.com/FireFlyCoin/FireFlyCoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (660,'FlutterCoin','FLT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (661,'FractalCoin','FRAC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (662,'Franko','FRK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (663,'FastCoin','FST',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (664,'GrandCoin','GDC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (665,'Globalcoin','GLC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (666,'GoldCoin','GLD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (667,'Galaxycoin','GLX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (668,'GlyphCoin','GLYPH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (669,'GuerillaCoin','GUE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (670,'HoboNickels','HBN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (671,'HeavyCoin','HVC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (672,'IcebergCoin','ICB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (673,'IXCoin','IXC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (674,'JunkCoin','JKC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (675,'KlondikeCoin','KDC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (676,'KrugerCoin','KGC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (677,'CoinworksCoin','LAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (678,'LegendaryCoin','LGD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (679,'Lucky7Coin','LK7',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (680,'LuckyCoin','LKY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (681,'LiteBar','LTB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (682,'LiteCoinX','LTCX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (683,'LycanCoin','LYC',NULL,'scrypt','1010107','/images/coin-683.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.061294742400457,0,'',0,NULL,0,29.782766535715,NULL,213517,NULL,NULL,0.0000000579,NULL,2970,1,0,0,1,1419059858,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',6830,'POW',0,NULL,1,0,'1cb94abd19a55fbabe2ca83e8fe7b34fb58fe17e4ca91aca811ae9f01c8ac504',NULL,1121,56,1425417973,0,'https://www.cryptsy.com/markets/view/','','https://github.com/lycancoin/lycancoin-release.git','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (684,'Mediterraneancoin','MED',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (685,'MinCoin','MNC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (686,'MazaCoin','MZC','','sha256','90001','/images/coin-686.png',NULL,NULL,'MLYRLGpmBVaDK1ZWGnf235n7pUF6HCzB6B',NULL,NULL,NULL,NULL,1,0,0,NULL,0.0000036027488949602,10,'',0,NULL,0,1804737.5617955,NULL,338074,NULL,NULL,0.0000006460000009728,0.0000006999997435904,1000,1,1,0,1,1419059858,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',6860,'POW',1,NULL,1,0,'00000000000001aec593598b44733edf3757efd39926686bb7c8578e2dd975d3',NULL,135,1943,1434809266,1,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=508849.0','https://github.com/mazacoin/mazacoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (687,'NanoToken','NAN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (688,'Nibble','NBL',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (689,'NeoCoin','NEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (690,'NoirBits','NRB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (691,'NoirShares','NRS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (692,'NyanCoin','NYAN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (693,'OpenSourceCoin','OSC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (694,'PhilosopherStone','PHS',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=263744.0','https://github.com/philosopherstonecoin/philosopherstone','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (695,'CryptsyPoints','Points',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (696,'PseudoCoin','PSEUD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (697,'Bitshares PTS','PTS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (698,'PYC','PYC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (699,'RotoCoin','RT2',NULL,'scryptn',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=516138.0','https://github.com/rotocoin/rotocoin/','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (700,'RoyalCoin','RYC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (701,'SaturnCoinV2','SAT2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (702,'StableCoin','SBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (703,'ShieldCoin','SHLD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (704,'SilkCoin','SILK',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=599438.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (705,'SmartCoin','SMC','','x11','90100','/images/coin-705.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.1017648252389,6,'',0,0,0,3.5992003950827,NULL,444702,418249,NULL,0.0000022891999950336,0.00000242999999744,16,1,0,0,1,1419059858,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',7050,'POW',1,NULL,1,0,'a248b059ce4b5416c48b8264096019af1b59ed0e6a79f2fc4ce3078b51eb17cb',NULL,160,5,1433593740,0,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=555426','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (706,'SoleCoin','SOLE',NULL,'x14e ??',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Pow has Ended',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=730077.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (707,'SpainCoin','SPA',NULL,'scryptn','90001','/images/coin-707.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.1641550153501,0,'',0,NULL,0,3.9057350677505,NULL,205356,166916,NULL,0.00000109045,NULL,44,1,0,0,1,1419059858,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',7070,'POW',1,NULL,1,0,'e13e59173e0404e97eb4a8c1d985f6c8427f046af28a162cff4664e20745cea8',NULL,163,2221,1424871148,0,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=500511.0','https://github.com/SpainCoinProject/spaincoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (708,'Spots','SPT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059858,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (709,'SSVCoin','SSV',NULL,'x13','v1.2.2.0','/images/coin-709.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.004724037160296,0,'',0,NULL,0.0001,0.50455784303158,NULL,436509,NULL,NULL,0.00000078165,0.00000082999999994266,0.26,1,0,0,1,1419059858,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',7090,'POS',1,NULL,1,0,'',NULL,70,0,1429526014,0,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=661043.0','https://github.com/SSVCoin/SSVCoin-master','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (710,'StarCoin','STR',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=259012.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (711,'TakCoin','TAK','','sha256','90103','/images/coin-711.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,1605.6361104284,0,'takeicoin is not connected!',0,0,0,0.00024414,NULL,0,NULL,NULL,0.0000000392,0.000000045,1000,1,0,0,1,1419059859,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',7110,'POW',1,NULL,1,0,'0000000000006062498b7f78f4808e06cc34ea0ad612d99c2ea0fa4bb0ccdc8d',NULL,107,130,1432556978,0,'https://www.cryptsy.com/markets/view/','','https://github.com/takeicoin/takeicoin.git','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (712,'TekCoin','TEK',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (713,'TeslaCoin','TES',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (714,'TigerCoin','TGC',NULL,'sha256','1010000','/images/coin-714.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.0000012376313936673,0,'',0,0,0,192574.90236521,NULL,367891,NULL,NULL,0.00000097,0.0000010148003200059,32.0001,1,0,0,1,1419059859,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',7140,'POW',1,NULL,1,0,'00000000000024a539fc67c7a0c9f69b3feeeaa020ca7ddece479a7acabe96ff',NULL,5618,156,1431860596,0,'https://www.cryptsy.com/markets/view/','','https://bitcointalk.org/index.php?topic=289312.0','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (715,'TorCoin','TOR',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=677434.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (716,'TerraCoin','TRC','','sha256','80005','/images/coin-716.png',NULL,NULL,'1LjRZx7khYCcJZLx5bxuYoSBaXYHpGjsS1',NULL,NULL,NULL,NULL,1,0,1,NULL,0.0000042657709890941,10,'This is a pre-release test build - use at your own risk - do not use for mining or merchant applications',0,NULL,0,1655018.289671,NULL,567287,NULL,NULL,0.00003510611428075,0.00003725615906875,20.0005,1,1,1,1,1419059859,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',7160,'POW',1,NULL,1,0,'00000000000005cc68297c5592ecdc114ca9ef989663be314e07562a7e50b634',NULL,1228,2430,1434808143,1,'https://www.cryptsy.com/markets/view/','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (717,'UnbreakableCoin','UNB','','sha256','80600','/images/coin-717.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.0000011710733973203,0,'',0,NULL,0,24965256.25122,NULL,44739,NULL,NULL,0.000058472177961818,0.000062540717803783,50.0001,1,0,0,1,1419059859,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',7170,'POW',1,NULL,1,0,'00000000000000262e5b2611db89c91295d44d5e2dbd309f4e4639c9950c5458',NULL,17083,24491,1430482767,0,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=539945.0','https://github.com/jimblasko/UnbreakableCoin-master','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (718,'USDe','USDe','','scrypt','1000400','/images/coin-718.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.10158677523446,0,'',0,0,0,2.5138217823918,NULL,736883,NULL,NULL,0.0000002134,0.000000225,125,1,0,0,1,1419059859,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',7180,'POW',0,NULL,1,0,'5b34091aaa47547d9e187e1b0250ef61646688793a37009b77121b254de74071',NULL,67,5,1432823491,0,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=410254.0','https://github.com/usde-project/usde','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (719,'Crypti','XCR',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (720,'JouleCoin','XJO','','sha256','90204','/images/coin-720.png',NULL,NULL,'JXS6EGMRC5UuB78ufhdWjKzvhkLk4KxK9V',NULL,NULL,NULL,NULL,1,0,0,NULL,0.0000042991896542743,16,'',0.00304864,NULL,0,67128.817755549,NULL,1264180,1126337,NULL,0.00000179397929472,0.0000019137996288,16,1,1,0,1,1419059859,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',7200,'POW',1,NULL,0,0,'000000000000691074b434404dcf938c8ef2a99f67f2d307462363ab2da6345e',NULL,163,62,1434809192,1,'https://www.cryptsy.com/markets/view/','','https://github.com/joulecoin/joulecoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (721,'LibertyCoin','XLB',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=600322.0','https://github.com/liberty-project/LibertyCoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (722,'YaCoin','YAC',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','https://github.com/pocopoco/yacoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (723,'YBCoin','YBC',NULL,'scrypt',NULL,'https://www.cryptsy.com/img/coinlogos/curr_57.jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','https://github.com/ybcoin/ybcoin.git','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (724,'ZcCoin','ZCC',NULL,'scrypt-chacha',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=268575.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (725,'ZedCoin','ZED',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=432261.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (726,'AndroidsTokensV2','ADT',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','https://github.com/CryptoRepairCrew/Android-Token-V2','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (727,'AsicCoin','ASC',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=292501.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (728,'BatCoin','BAT',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=400753.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (729,'ColossusCoin','COL',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=279601.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (730,'CopperBars','CPR',NULL,'scrypt-jane',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=272170.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (731,'Continuumcoin','CTM',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (732,'Doubloons','DBL',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=206361.0','https://github.com/razorlove/doubloons.git','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (733,'DamaCoin','DMC',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'soon POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=497079.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (734,'ElephantCoin','ELP',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','https://bitcointalk.org/index.php?topic=256501.0','https://github.com/elephantcoin/elephantcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (735,'FlappyCoin','FLAP',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','https://github.com/flappycoin-project/flappycoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (736,'GameCoin','GME',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','https://github.com/gamecoin/gamecoin.git','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (737,'LeafCoin','LEAF',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','http://leafco.in/github-source','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (738,'LottoCoin','LOT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (739,'MemeCoin','MEM',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','https://github.com/muddafudda/Memecoin-v2.0.0.0-Beta-Release','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (740,'KittehCoin','MEOW',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','https://github.com/kittehcoin/kittehcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (741,'MasterCoin (Hydro)','MST',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','https://github.com/mastercoin/MasterCoin-Source','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (742,'RabbitCoin','RBBT',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','https://bitbucket.org/rabbitcoin/rabbitcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (743,'RedCoin','RED',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','https://github.com/redcoinproject/redcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (744,'FedoraCoin','TIPS',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','https://github.com/fedoracoin/fedoracoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (745,'Tickets','TIX',NULL,'scrypt-jane',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','https://github.com/LotteryTickets/LotteryTickets','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (746,'XenCoin','XNC',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','https://github.com/xencoin/Xencoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (747,'ZeitCoin','ZEIT',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419059859,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (748,'EquinoxCoin ','EQX',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419090753,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-EQX','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (749,'BitMiles','BTMI',NULL,'scrypt','1000000','/images/coin-749.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.084190457439857,0,'',0,NULL,0,14.286957595473,NULL,75890,NULL,NULL,0.0000000193,NULL,2400,1,0,0,1,1419248736,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',7490,'POW',0,NULL,0,0,'aa6585104cf4ee30e14767574a6b3dc3c3ca7743958116af13cd1a14426159d6',NULL,81,35,1424871148,0,'https://c-cex.com/?p=btmi-btc','https://bitcointalk.org/index.php?topic=892298.0','https://github.com/rspublishing/bitmiles-source','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (750,'Unicoin','UCI',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419345300,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=uci-btc','https://bitcointalk.org/index.php?topic=842862.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (751,'zyrmaedj','ggggg',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419399414,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (752,'VirtualMiningCoin','VMC',NULL,'scryptn','80602','/images/coin-752.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,NULL,1.7439410426509,0,'',0,NULL,0,0.037893024121785,NULL,446665,NULL,NULL,0.00000004825,NULL,171.19999999,1,0,0,1,1419407496,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',7520,'POW',1,NULL,0,0,'2524d9b52503edd6fd31f22fd022421621d4bcadf2e26082fa2b39ff9107ad58',NULL,44,79,1426548004,0,'https://bittrex.com/Market/Index?MarketName=BTC-VMC','https://bitcointalk.org/index.php?topic=582873.0','https://github.com/VMCoin/VMC','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (753,'GameCredits','GMC',NULL,'scrypt','80905','/images/coin-753.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.072981004217116,0,'',0,0,0,5.0355569335645,NULL,1095826,1070717,NULL,0.0000020384000000011,0.0000021049999557274,25,1,0,0,1,1419407501,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',7530,'POW',1,NULL,1,0,'054a5baf26f3ac58f6d1655290b46b6c6bd9f5882c310bf6dce7584c78b23e8d',NULL,121,131,1431865527,0,'https://bittrex.com/Market/Index?MarketName=BTC-GMC','https://bitcointalk.org/index.php?topic=263600.0','https://github.com/Petr1fied/gamecoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (756,'Twenty15','2015',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419719366,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=2015-btc','https://bitcointalk.org/index.php?topic=901192.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (757,'unknown','HGC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1419872340,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=hgc-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (758,'Unitus','UIS',NULL,'x11','90300','/images/coin-758.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.00010291010527754,0,'',2.99954093,0,0,2129.0389511505,NULL,157829,NULL,NULL,0.0000003921542912,0.0000004051970903145,86.02583546,1,0,0,1,1419872341,NULL,'.unitus','unitusd','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',11756,'POW',1,NULL,0,1,'492e88a794520ca9d9c03f612190c777f638639c1b6424b44ece7b92b02d1c5b',NULL,96,6549,1431865527,0,'https://c-cex.com/?p=uis-btc','https://bitcointalk.org/index.php?topic=901069.0','https://github.com/unitusdev/unitus','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (759,'SquareBit','SBIT',NULL,'x11','v1.0.0.0','https://pbs.twimg.com/profile_images/548950807731634177/zv7yuWka.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.11918895371794,0,'No more PoW blocks',0,NULL,0.00001,226.2143358,0.00053292,10276,NULL,NULL,0.0000431396,NULL,62.5,1,0,0,1,1419919532,NULL,'.SquareBit','SquareBitd','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',11758,'POS',1,NULL,1,0,NULL,NULL,69,94,1420073537,0,'https://bittrex.com/Market/Index?MarketName=BTC-SBIT','https://bitcointalk.org/index.php?topic=906354.0','https://github.com/Squarebitdata/Sbit','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (760,'BlackCoin','BLK',NULL,'scrypt',NULL,'https://www.cryptsy.com/img/coinlogos/curr_133.jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'PoS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1420274152,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BLK','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (761,'BitCredits','BCR',NULL,'momentum',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1420407381,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BCR','https://bitcointalk.org/index.php?topic=896133.0','https://github.com/bitcreditscc/bicreditsnew','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (762,'PoolStamp','XSP',NULL,'x13',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1420411294,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-XSP','https://bitcointalk.org/index.php?topic=890984.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (763,'IncaKoin','INCA',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1420665720,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=inca-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (764,'unknown','NKA',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1420732183,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=nka-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (765,'Paycon','CON',NULL,'x13','v1.2.0.0','https://c-cex.com/i/l/con.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,1.1144247649826,0,'',0,NULL,0.0001,2.3340808475668,0,51235,51455,NULL,0.0000026055,NULL,50,1,0,0,1,1420743424,NULL,'.PayCon','PayCond','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp1',11770,'POS',1,NULL,1,0,NULL,NULL,696,36,1423388061,0,'https://c-cex.com/?p=con-btc','https://bitcointalk.org/index.php?topic=912034.0','https://github.com/muddafudda/PayCon','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (766,'EagsCurrency','EAGS',NULL,'sha256','v1.0.0.0: Initial','https://c-cex.com/i/l/eags.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.000000060784363986755,0,'No more PoW blocks',0,NULL,0.00002,1065265.7320575,0.01450252,62042,NULL,NULL,0.00000723213,NULL,1,1,0,0,1,1420743424,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',7660,'POS',1,NULL,1,0,NULL,NULL,8808,NULL,1423419134,0,'https://c-cex.com/?p=eags-btc','https://bitcointalk.org/index.php?topic=914583.0','https://github.com/EAGSDev/EagsCurrency','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (767,'GoldPieces','GP',NULL,'x11','v1.0.0.0','https://c-cex.com/i/l/gp.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.12025647925601,0,'No more PoW blocks',1.14994986,NULL,0.00001,366.79769999,0.00080044,25866,NULL,NULL,0.0000520674,NULL,100,1,0,0,0,1420847374,NULL,'.GoldPieces','GoldPiecesd','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp1',11774,'POS',1,NULL,1,0,NULL,NULL,76,273,1422389400,0,'https://c-cex.com/?p=gp-btc','https://bitcointalk.org/index.php?topic=915899.0','https://github.com/GoldPieces/GoldPieces','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (768,'Tether','USDT',NULL,'',NULL,'https://c-cex.com/i/l/usdt.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1420847374,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=usdt-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (769,'BitStake','XBS',NULL,'x11','v1.0.0.0','https://pbs.twimg.com/profile_images/553698795033075713/jpF-wuDr_400x400.jpeg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.073829849823835,0,'No more PoW blocks',0,NULL,0.0001,294.21907334,0.00049011,14900,NULL,NULL,0.0000868886,NULL,25,1,0,0,1,1421196312,NULL,'.Bitstake','Bitstaked','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',11778,'POS',1,NULL,1,0,NULL,NULL,101,111,1421445060,0,'https://bittrex.com/Market/Index?MarketName=BTC-XBS','https://bitcointalk.org/index.php?topic=920272.0','https://github.com/Bitstake','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (770,'AriCoin','ARI',NULL,'scrypt','1020000','/images/coin-770.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.048472635526674,0,'',0,NULL,0,66.521387448256,NULL,174941,158685,NULL,0.0000004632,NULL,300,1,0,0,1,1421345261,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','96.22.137.23',7700,'POW',1,NULL,1,0,'ef46bef28b6f3ed6c723362c3eff694339273e1df0d4d3bad4b11b4fe80342e8',NULL,167,290,1424870258,0,'https://bittrex.com/Market/Index?MarketName=BTC-ARI','https://bitcointalk.org/index.php?topic=759423.0','https://github.com/aricoin/aricoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (771,'DarkGold','DGD',NULL,'x13',NULL,'http://dgd.madzebra.co/DGD-big.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POW over damit',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1421378326,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-DGD','https://bitcointalk.org/index.php?topic=868354.0','https://github.com/darkgoldcoin/darkgoldcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (772,'PorkCoin','XPC',NULL,'x11','v0.9.1.33-porkcoin-1.0.1','/images/coin-772.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0,0,'',132,NULL,0.00001,0.015150713009408,NULL,51547,NULL,NULL,0,NULL,1,100,0,0,1,1421451431,NULL,'.PorkCoin','porkcoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',11784,'POS',1,NULL,1,0,'00000001e07eb35d11ecaef9fef5da2bd014acbaaec33c2ccca152040844cf52',NULL,766,0,1425415071,0,'https://bittrex.com/Market/Index?MarketName=BTC-XPC','https://bitcointalk.org/index.php?topic=909934.0','https://github.com/porkcoin/porkcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (773,'unknown','XDE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1421608783,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=xde-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (774,'CoinShield','CSD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1421896189,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-CSD',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (775,'RibbitCoin','RBR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1421955183,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-RBR',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (776,'FriendshipCoin2','FSC2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1421955187,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-FSC2',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (777,'WhiteCoin','XWC',NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Scrypt',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1421958851,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-XWC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (778,'unknown','1CR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_1CR',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (779,'unknown','ACH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_ACH',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (780,'unknown','ADN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_ADN',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (781,'Bytecoin','BCN',NULL,'CryptoNight',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_BCN','https://bitcointalk.org/index.php?topic=512747.0','https://github.com/amjuarez/bytecoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (782,'unknown','BELA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_BELA',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (783,'unknown','C2',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_C2',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (784,'unknown','CGA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_CGA',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (785,'unknown','CHA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_CHA',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (786,'unknown','CNMT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_CNMT',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (788,'unknown','CYC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_CYC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (789,'unknown','DIEM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_DIEM',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (790,'Dashcoin','DSH',NULL,'CryptoNight',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_DSH','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (791,'FoldingCoin','FLDC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_FLDC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (792,'unknown','GAP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_GAP',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (793,'unknown','GDN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_GDN',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (794,'Gemz','GEMZ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_GEMZ',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (795,'unknown','GOLD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_GOLD',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (796,'Groestlcoin','GRS',NULL,'groestl','2010006','/images/coin-796.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.03227986729816,0,'',0,NULL,0,5.9851727755863,NULL,570690,552938,NULL,0.000001166877994071,0.000001279599995392,16.55705086,1,0,0,1,1422144149,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',7960,'POW',1,NULL,1,0,'',NULL,6126,23343,1430316349,0,'https://poloniex.com/exchange/btc_GRS','https://bitcointalk.org/index.php?topic=525926.0','https://github.com/GroestlCoin/GroestlCoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (797,'unknown','HIRO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_HIRO',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (798,'Horizon','HZ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_HZ',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (799,'unknown','JLH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_JLH',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (800,'unknown','LTBC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_LTBC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (801,'MaidSafe','MAID',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_MAID','https://bitcointalk.org/index.php?topic=579797.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (802,'MonetaVerde','MCN',NULL,'CryptoNight',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_MCN','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (803,'Millionaire Coin','MIL',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_MIL','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (804,'MemoryCoin','MMC',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_MMC','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (805,'unknown','MMNXT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_MMNXT',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (806,'Moneta','MNTA',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_MNTA','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (807,'unknown','MRS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_MRS',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (808,'Nubits','NBT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_NBT',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (809,'NobleNXT','NOXT',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_NOXT','https://bitcointalk.org/index.php?topic=841741.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (810,'unknown','NXTI',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_NXTI','https://bitcointalk.org/index.php?topic=587007.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (811,'Piggycoin','PIGGY',NULL,'X11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_PIGGY','https://bitcointalk.org/index.php?topic=487017.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (812,'Prosper Coin','PRC',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_PRC','https://bitcointalk.org/index.php?topic=438433.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (813,'riecoin','RIC',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_RIC','https://bitcointalk.org/index.php?topic=446703.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (814,'Storjcoin','SJCX',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_SJCX','https://bitcointalk.org/index.php?topic=702602.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (815,'Squall','SQL',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_SQL','https://bitcointalk.org/index.php?topic=763406.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (816,'SourceCoin','SRCC',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_SRCC','https://bitcointalk.org/index.php?topic=688494.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (817,'unknown','SWARM',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_SWARM',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (818,'unknown','UNITY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_UNITY',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (819,'unknown','WOLF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144149,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_WOLF',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (820,'XAP','XAP',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144150,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_XAP','https://bitcointalk.org/index.php?topic=650221.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (821,'BitcoinPlus','XBC',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144150,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_XBC','https://bitcointalk.org/index.php?topic=549485.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (822,'ClearingHouse','XCH',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144150,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_XCH','https://bitcointalk.org/index.php?topic=734674.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (823,'cryptonite','XCN',NULL,'m7',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144150,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_XCN','https://bitcointalk.org/index.php?topic=713538.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (824,'CounterParty','XCP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144150,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_XCP',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (825,'Dogeparty','XDP',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144150,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_XDP','https://bitcointalk.org/index.php?topic=706739.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (826,'CoinoUSD','XUSD',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144150,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_XUSD','https://bitcointalk.org/index.php?topic=775733.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (827,'YACCoin','YACC',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422144150,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_YACC','https://bitcointalk.org/index.php?topic=514739.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (828,'GigaCoin','GIG',NULL,'fresh','1040000','/images/coin-828.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.00082981664039027,0,'',0.01004907,NULL,0,74.229409552463,NULL,108971,NULL,NULL,0.000000060795,NULL,101.31885723,1,0,0,1,1422190236,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',8280,'POW',1,NULL,1,0,'00000000017ac94a07a1480cbb5ad259b422830a1828c47a988e61bf8c1cef68',NULL,11325,173975,1424321033,0,'https://c-cex.com/?p=gig-btc','','https://github.com/gigame/gigacoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (830,'SoonCoin','SOON',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422248337,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-SOON','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (831,'Obscurebay','OBS',NULL,'x11','v0.9.1.1-beta','https://c-cex.com/i/l/obs.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.10812924588434,0,'No more PoW blocks',0,NULL,0.00001,4.0368357,0.00360015,9759,NULL,NULL,0.00000029682,NULL,100,1,0,0,1,1422274657,NULL,'.obscurebay','obscurebayd','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',11902,'POS',1,NULL,1,0,NULL,NULL,122,1,1422883664,0,'https://c-cex.com/?p=obs-btc','https://bitcointalk.org/index.php?topic=930885.0','https://github.com/donotforgetnever/obscurebay','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (832,'FBcoin V2','XFB',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422282163,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=xfb-btc','https://bitcointalk.org/index.php?topic=641386.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (833,'Chococoin','CCC',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422366722,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=ccc-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (834,'QuitDough','QUIT','','x13','v1.0.2.1','/images/coin-834.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.06199378168584,0,'',21210.00007,5300,0.00001,13.386826507847,0.00024414,103562,NULL,NULL,0.00000082989999999368,0.0000010499999999967,100,1,0,0,1,1422370503,NULL,'.QuitDough','QuitDoughd','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',8340,'POS',1,NULL,1,0,'0000000017b9f29f06ebcf461d271b82f7703fa828e37f7539e5565e40ad15e4',NULL,207,13,1430791692,0,'https://c-cex.com/?p=quit-btc','https://bitcointalk.org/index.php?topic=919267.0','https://github.com/ocminer/QuitDough-Release','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (835,'OmegaCoin','OMA',NULL,'x15','v1.0.0.0','https://c-cex.com/i/l/oma.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.11202866713801,0,'No more PoW blocks',160.00008,NULL,0.00001,1.67386085,0.00024414,10112,NULL,NULL,0.00000347454,NULL,4,1,0,0,1,1422374120,NULL,'.Omega','Omegad','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',11910,'POS',1,NULL,1,0,NULL,NULL,1048,275,1423087922,0,'https://c-cex.com/?p=oma-btc','https://bitcointalk.org/index.php?topic=936629.0','https://github.com/omegadevteam/omegacoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (836,'Cetuscoin','CETI',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422515151,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-CETI','https://bitcointalk.org/index.php?topic=790782.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (837,'Pebblecoin','XPB',NULL,'cryptonight',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422590575,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_XPB','https://bitcointalk.org/index.php?topic=909624.0','https://github.com/xpbcreator/pebblecoin/','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (838,'BitcoinScrypt','BTCS',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422620908,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=btcs-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (839,'MysteryCoin','MYST',NULL,'x11','v1.0.0.0','https://c-cex.com/i/l/myst.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.044383247328178,0,'No more PoW blocks',1692.96409501,NULL,0.00001,311.41107028,0.00091477,6407,NULL,NULL,0.0000079055,NULL,89.00001,1,0,0,1,1422729705,NULL,'.mysterycoin','mysterycoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',11918,'POS',1,NULL,1,0,NULL,NULL,111,88,1422969518,0,'https://c-cex.com/?p=myst-btc','https://bitcointalk.org/index.php?topic=939935.0','https://bitbucket.org/mysterycoin/mysterycoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (842,'Experiment 10K','10K',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422902620,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=10k-btc','https://bitcointalk.org/index.php?topic=942977.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (843,'ExtractCoin','XTR',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1422928340,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-XTR','https://bitcointalk.org/index.php?topic=941697.0;all','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (844,'AmberCoin','AMBER','','x13','v2.1.0.1: Experimental','/images/coin-844.png',NULL,NULL,'ASZcpfVxLRhhUgGoDnMuC9pGz2UJU8YNBD',NULL,NULL,NULL,NULL,1,0,0,NULL,0.10454322880062,19,'',0.68418075,NULL,0.0001,8.8154427462505,0.18449546,202394,108802,NULL,0.0000921594848,0.0001004077919232,1,1,1,0,1,1423078275,NULL,'','ambercoin','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',8440,'POS',1,NULL,1,0,'da1ebd191764c9ff0a261291d5f6ebc13c4d22e3562653a3492e808e965c38bb',NULL,32,502,1434809266,1,'https://c-cex.com/?p=amber-btc','https://bitcointalk.org/index.php?topic=944408','https://github.com/AmberCoinDev/Amber','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (845,'Liquid','LQD',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1423326113,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_LQD','http://liquidtech.info/','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (846,'GeoCoin','GEO','','qubit','80700','/images/coin-846.png',NULL,NULL,'GNd51vUp6XWWkzjsj4dkwCjHA7gHWvSSi4',NULL,NULL,NULL,NULL,1,0,0,NULL,0.11977398083263,14,'',0,NULL,0,39.520113446576,NULL,218931,NULL,NULL,0.000094669626209075,0.0001025941183376,5,1,1,0,1,1423495434,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',8460,'POW',1,NULL,1,0,'0000000005c709c3f7d778f0a09f1c8977c5b1d07ed8f492feba4ebe883dce6c',NULL,88,6379,1434809266,1,'https://c-cex.com/?p=geo-btc','https://bitcointalk.org/index.php?topic=923995.0','https://github.com/onetimer/onetimer','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (847,'KoboCoin','KOBO',NULL,'x15','v2.0.0.0','/images/coin-847.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,2.1275688607976,0,'No more PoW blocks',57000.03,NULL,0,8.20960502,0.00621395,44272,NULL,NULL,0.00000193,NULL,1000,1,0,0,1,1423498999,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',8470,'POS',1,NULL,1,0,'000000001549d9b16137eadb39c3b6f86949fffd385e1884ed5d6b6c3825497f',NULL,67,127,1424902380,0,'https://c-cex.com/?p=kobo-btc','https://bitcointalk.org/index.php?topic=920290.0','https://github.com/kobocoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (848,'SolarFarm Asset','CELL',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS?',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1423585596,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=cell-btc','https://bitcointalk.org/index.php?topic=917737.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (849,'Crypto Bullion','CBX',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1423606920,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/CBX_BTC','https://bitcointalk.org/index.php?topic=951753.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (850,'PetroDollar','XPD','','sha256','91000','/images/coin-850.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.0000023735898135425,0,'',2239.18217211,0,0,99400.614700981,NULL,85096,NULL,NULL,0,0,30.16333293,1,0,0,1,1423728996,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',8500,'POW',1,NULL,1,0,'0000000000021b4581324606cce08d248b00b1d035993e5a76adcf0dd4073fc6',NULL,6913,80,1431568172,0,'https://bittrex.com/Market/Index?MarketName=BTC-XPD','https://bitcointalk.org/index.php?topic=472238.0','http://github.com/bryceweiner/petrodollar','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (851,'NovaCoinDark','NVCD',NULL,'Multiple Algorit',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'SHA256D, BLAKE256, X11, SCRYPT, GROESTL',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424010707,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=nvcd-btc','https://bitcointalk.org/index.php?topic=837815.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (852,'PenCoin','PEN',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'short POW',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424041003,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-PEN','https://bitcointalk.org/index.php?topic=934029.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (853,'BitBean','BEAN',NULL,'SHA256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424042291,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BEAN','https://bitcointalk.org/index.php?topic=915650.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (854,'BitBean','BITB',NULL,'sha256',NULL,'https://i.imgur.com/0OZlN7x.png?1',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424049194,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-BITB','https://bitcointalk.org/index.php?topic=915650.140','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (855,'DogeGoreCoin','DGORE',NULL,'x11','v0.9.1.1-beta','/images/coin-855.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.049568499030813,0,'',0,NULL,0.00001,17.521208367841,0,23576,NULL,NULL,0.000000008685,NULL,10000,1,0,0,1,1424090098,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',8550,'POS',1,NULL,1,0,'0000000000af5c16120f97ae6d8c80d95650128d7aaf4299df265dc994bf722d',NULL,189,6,1425732494,0,'https://c-cex.com/?p=dgore-btc','https://bitcointalk.org/index.php?topic=938330.0','https://github.com/dogegorecoin/dgore','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (856,'TileCoin','XTC',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'coins are sold',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424111126,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-XTC','https://bitcointalk.org/index.php?topic=761852.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (857,'LiteStarCoin','LTS',NULL,'x11','v1.2.0.0','/images/coin-857.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.00057772180335698,0,'',0,NULL,0.0001,150.33522406516,0.00024414,999,NULL,NULL,0.000000008685,NULL,1000.0223,1,0,0,1,1424263007,NULL,'.litestarcoin','litestarcoind','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',11954,'POS',1,NULL,1,0,'0000000000e2260ace59ee1a38876f4c2a0b84b3ec9662b1386fbf9b46a54380',NULL,117,50,1424333701,0,'https://c-cex.com/?p=lts-btc','https://bitcointalk.org/index.php?topic=959292.0','https://github.com/rbsup2/ts3','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (858,'SlimCoin','SLM',NULL,'Dcrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424269232,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=slm-btc','https://bitcointalk.org/index.php?topic=613213.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (859,'GridPay','GRID',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424278702,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-GRID','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (860,'SMACCoin','SMAC',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424308273,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-SMAC','https://bitcointalk.org/index.php?topic=952083.msg10423825#msg10423825','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (861,'Dogecoindark','DD',NULL,'x13',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424308281,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/DD_BTC','https://bitcointalk.org/index.php?topic=770742.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (862,'Cindercoin','CIN',NULL,'x15',NULL,'https://www.cryptsy.com/img/coinlogos/curr_220.jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424326815,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/CIN_BTC','','https://github.com/Flexiblecoin/Flex.git','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (863,'GridcoinClassic','GRCX',NULL,'',NULL,'https://c-cex.com/i/l/grcx.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424441720,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=grcx-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (864,'SupCoin','SUP',NULL,'PLUCK',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424463023,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-SUP','https://bitcointalk.org/index.php?topic=950084.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (865,'LyraBar','LYB',NULL,'lyra2','90001','/images/coin-865.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,7.5370147450984,0,'',0.06036045,0,0,0.11695744665662,NULL,61538,NULL,NULL,0.00000098,0.000005,5,1,0,0,1,1424489993,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',8650,'POW',1,NULL,1,0,'9162418985219fbf60e987324f5e2e17c56adb10dc99c555564970a3f6340ee2',NULL,252,299,1431865528,0,'https://bittrex.com/Market/Index?MarketName=BTC-LYB','https://bitcointalk.org/index.php?topic=939208.0','https://github.com/lyrabar/Lyrabar/','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (866,'ebolashare','EBS',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'pos',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424526126,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=ebs-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (867,'PrototypeCoin','PTY',NULL,'x11',NULL,'https://c-cex.com/i/l/pty.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424641854,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=pty-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (868,'GSMCoin','GSM',NULL,'x11','v1.0.0.0-beta','/images/coin-868.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.079968910086592,0,'No more PoW blocks',304.08286319,NULL,0.001,240.74043249,0.00082049,10525,NULL,NULL,0.0000086271,NULL,300,1,0,0,1,1424645362,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',8680,'POS',1,NULL,1,0,'2f65613cba3d653893a3fefc28f38bfc5d7094a51be41fe5557f5e89f1700060',NULL,59,808,1425126720,0,'https://c-cex.com/?p=gsm-btc','https://bitcointalk.org/index.php?topic=964014.0','https://github.com/gsmcoin/GSMcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (869,'unknown','NSR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424646755,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_NSR',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (870,'RiskCoin','RISK',NULL,'',NULL,'https://c-cex.com/i/l/risk.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424716719,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=risk-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (871,'MasterTraderCoin','MTR',NULL,'x11','v1.0.0.0','/images/coin-871.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.1996625511713,0,'No more PoW blocks',20.00006,NULL,0.00001,17.84130063,0.00024414,10185,NULL,NULL,0.00035622396,NULL,1,1,0,0,1,1424808315,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',8710,'POS',1,NULL,1,0,'9bf29dbf40dd1f22885f8e6ca00519a483f122ebad171a52f9b2446d62086cd3',NULL,494,5,1425417337,0,'https://c-cex.com/?p=mtr-btc','https://bitcointalk.org/index.php?topic=954240','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (872,'E-Money','ECASH',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424822218,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-ECASH','https://bitcointalk.org/index.php?topic=966590.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (873,'WildBeastBitcoin','WBB',NULL,'scryptn',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1424909787,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-WBB','https://bitcointalk.org/index.php?topic=952619.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (874,'Vanillacoin','VNL',NULL,'whirlpoolx',NULL,'https://c-cex.com/i/l/vnl.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,0,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0.000029915,NULL,1,1,0,0,1,1424994652,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp4',9195,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,0,'https://c-cex.com/?p=vnl-btc','https://bitcointalk.org/index.php?topic=890388.0','https://github.com/john-connor/vanillacoin.git','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (875,'voyacoin','VOYA',NULL,'PLUCK',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1425055103,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=voya-btc','https://bitcointalk.org/index.php?topic=963475.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (876,'Xcoin','XCO',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1425153709,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=xco-btc','https://bitcointalk.org/index.php?topic=969896.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (877,'ZiftrCoin','ZRC',NULL,'zr5',NULL,'https://ip.bitcointalk.org/?u=https%3A%2F%2Fgallery.mailchimp.com%2F4eda443be85c5752c98f2fcbf%2Fimages%2Fa13b69e9-f334-4bcc-b2e3-ddb885594b1a.png&t=550&c=MCy8nXy0Ec_4sg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1425197843,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/ZRC_BTC','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (878,'Union Coin','UNC',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1425259123,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=unc-btc','https://bitcointalk.org/index.php?topic=365399.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (879,'Intellect','ILT',NULL,'x11','v1.0.1.0','/images/coin-879.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.1565193020807,0,'No more PoW blocks',0.03852409,NULL,0.0001,366.92605472,0.00001526,7506,NULL,NULL,0.00001324945,NULL,140,1,0,0,1,1425396759,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',8790,'POS',1,NULL,1,0,'610a8152675128c9268020a1822b97ae9eb6dcf55cb8b68211266a7bfde27e8e',NULL,88,95,1425739655,0,'https://c-cex.com/?p=ilt-btc','https://bitcointalk.org/index.php?topic=974053.0','https://github.com/intellect-project/intellect','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (880,'Finercoin','XFC',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1425912762,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=xfc-btc','https://bitcointalk.org/index.php?topic=661788.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (881,'Xaurum','XAU',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1426091481,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=xau-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (882,'InstaMineNugget','MINE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1426309868,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-MINE',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (883,'Ascension','ASN',NULL,'qubit','v1.0.0.6: NextGen','/images/coin-883.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.22131497325269,0,'no more pow blocks',0,NULL,0.0001,963.51325383,0.37253576,10315,NULL,NULL,0.000002509,NULL,8499,1,0,0,1,1426309878,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp1',8830,'POS',1,NULL,1,0,'9228aa452f3253415721a7d66154d109830c8e7ad0e66a894a4c63905463363f',NULL,136,1724,1426864519,0,'https://bittrex.com/Market/Index?MarketName=BTC-ASN','https://bitcointalk.org/index.php?topic=984878.0','https://bitbucket.org/ascension_dev/ascension-master/src','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (884,'Rimbit','RBT',NULL,'',NULL,'https://c-cex.com/i/l/rbt.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1426505172,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=rbt-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (885,'LiteDoge','LDOGE',NULL,'scrypt','v1.0.0.1-g32a928e','/images/coin-885.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,0.78810150946661,0,'no more pow blocks',0,NULL,0.99,153.05769441,63089888.975638,8671,NULL,NULL,0.00000004825,NULL,250000,1,0,0,1,1426606835,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',8850,'POS',1,NULL,1,0,NULL,NULL,734597,607,1426869292,0,'https://c-cex.com/?p=ldoge-btc','https://bitcointalk.org/index.php?topic=985182.0','https://bitbucket.org/litedogedev/litedoge/src','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (886,'unknown','PAY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1426629994,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=pay-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (887,'Omnicoin','OMC','','scrypt','90000','/images/coin-887.png',NULL,NULL,'oLEpJBTkUryo3ZV7nMRmcAPJT7zxxwXQCN',NULL,NULL,NULL,NULL,1,0,0,NULL,0.12761511796761,9,'',0,NULL,0,12.276944287113,NULL,201118,NULL,NULL,0.0000093745621206832,0.0000099851803081996,16.71249999,1,1,0,1,1426642180,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',8870,'POW',1,NULL,1,0,'5751a04797d999d8eaae0bb5c6ed5798ab911c291aad811dbccc65f10ef9c00e',NULL,250,58,1434809266,1,'https://bittrex.com/Market/Index?MarketName=BTC-OMC','https://bitcointalk.org/index.php?topic=962832.0','https://github.com/Omnicoin-Project/Omnicoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (888,'unknown','WOC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1426982583,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=woc-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (889,'Bitz','BITZ',NULL,'x11','v1.0.1.0','/images/coin-889.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.057229187367086,0,'no more pow blocks',0.72104123,NULL,0.00001,12.48211416,0.00209567,103908,NULL,NULL,0.000002040975,NULL,35,1,0,0,1,1426983582,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',8890,'POS',1,NULL,1,0,'bbbe3538be32f2b30f1867dc90f02b171b6603eb2198a8de7654eab35ceb3d8f',NULL,69,2,1428325787,0,'https://c-cex.com/?p=bitz-btc','https://bitcointalk.org/index.php?topic=954125.0','https://github.com/stormbitz/bitz','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (890,'CRAVE','CRAVE',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1427119105,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=crave-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (891,'Zirkcoin','ZIRK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1427149735,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=zirk-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (892,'Dragonsphere','XDB','','x11','v0.9.1.1-beta','/images/coin-892.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.32535279263676,0,'no more pow blocks',0,NULL,0.00001,4.80493801,0.04509805,20397,NULL,NULL,0.00000015633,0.00000019079999948803,1000,1,0,0,1,1427179773,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',8920,'POS',1,NULL,1,0,'ebb3372e57251233c6ed339537b743b99e11adc77e75ae873fae3983a1c02319',NULL,116,2,1429631010,0,'https://bittrex.com/Market/Index?MarketName=BTC-XDB','https://bitcointalk.org/index.php?topic=986534.0','https://github.com/bobbidi/nappa','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (893,'DigitalCash','DASH','','x11','110223','/images/coin-893.png',NULL,NULL,'Xo7oY9WNoJMBBFdYXmH8d2j7chjL1gijgV',NULL,2.20535708,NULL,NULL,1,0,0,NULL,0.060473148791362,9,'',0.00358927,NULL,0,4517.0550441251,NULL,289053,NULL,NULL,0.011206586007694,0.011816295166392,2.43750007,1,1,0,1,1427233695,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',8930,'POW',1,NULL,1,0,'000000000007cd4ff3d7078d1fe1dccd8be0a154571c530898fc637739e9ef43',NULL,147,2638,1434809266,1,'https://bleutrade.com/exchange/DASH/BTC','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (894,'BitCrystal','BTCRY',NULL,'quark','2000000','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,9881.741359579,0,'',0,NULL,0,0.00024413713253701,NULL,0,NULL,NULL,0.0000000193,NULL,5000,1,0,0,1,1427304811,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',8940,'POW',1,NULL,1,0,'',NULL,NULL,0,NULL,0,'https://bittrex.com/Market/Index?MarketName=BTC-BTCRY','https://bitcointalk.org/index.php?topic=966861.0','https://github.com/bitcrystal/bitcrystal_v20/tree/update14','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (895,'iCash','ICASH',NULL,'x11','110125','/images/coin-895.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.089049193251246,59,'',0,NULL,0,178.90462378434,NULL,9664,NULL,NULL,0.00000071217,NULL,2235,1,0,0,1,1427403345,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',8950,'POW',1,NULL,1,0,'000000000594c83986f74beed672256f85c223acc50de59a83b72e7930a3655e',NULL,256,33,1428320229,0,'https://c-cex.com/?p=icash-btc','https://bitcointalk.org/index.php?topic=996567.0','https://github.com/cryptodev35/icash','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (896,'256coin','256',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1427409369,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=256-btc','https://bitcointalk.org/index.php?topic=1002334.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (897,'SelfieCoin','SLFI',NULL,'',NULL,'https://c-cex.com/i/l/slfi.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1427642578,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=slfi-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (898,'NEW ECONOMY MOVEMENt','XEM',NULL,'',NULL,'http://ccn.multipoolmining.com/static/logo.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1427829232,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_XEM','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (899,'CyberCoin','CC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1427895596,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=cc-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (900,'Canadian Dollar','CAD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1427903987,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/CAD_BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (901,'Euro','EUR',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1427903991,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://www.cryptsy.com/markets/view/EUR_BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (902,'UCoin','UCOIN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1427935981,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-UCOIN',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (903,'OCTO','OCTO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1427935986,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://bittrex.com/Market/Index?MarketName=BTC-OCTO',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (904,'ProCoin','PRO','','x15','v1.0.0.0','/images/coin-904.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.13392052465335,0,'no more pow blocks',0,NULL,0.00001,0.38670105,0.00024902,40380,NULL,NULL,0.00000041429766,0.00000053595968,12.5,1,0,0,1,1428016459,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',9040,'POS',1,NULL,1,0,'00000001177c9af0cefabaad3f4774625334fe6caa2321aed030fb5195d11c17',NULL,282,19,1430740768,0,'https://c-cex.com/?p=pro-btc','','https://github.com/procryptoproject/pro','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (905,'unknown','ICN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428181165,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=icn-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (906,'unknown','URC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428271526,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=urc-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (907,'unknown','CRY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428272606,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=cry-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (908,'Phalanx','PXL',NULL,'sha256',NULL,'https://c-cex.com/i/l/pxl.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428275834,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=pxl-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (909,'QoraCoin','QORA',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428520684,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://poloniex.com/exchange/btc_QORA','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (910,'Cypher','CYP',NULL,'qubit','v1.2.0.0: NextGen','/images/coin-910.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.070751766506344,0,'no more pow blocks',0.05281674,NULL,0.0001,509.64367083,0.01901747,18089,NULL,NULL,0.0000263638,NULL,140,1,0,0,1,1428569817,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',9100,'POS',1,NULL,1,0,'7c28d30256e0515ea16e050145d09fc181173325c14de6e9f036e6f509b1e276',NULL,153,4278,1429343234,0,'https://c-cex.com/?p=cyp-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (911,'MorpheusCoin','MRP','','x11','80600','/images/coin-911.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,NULL,0.40749089216424,0,'',0.152894,1360,0,0.050590863615029,NULL,28363,NULL,NULL,0.000000056259999205376,0.00000021000006346342,42.5007,1,0,0,1,1428572848,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp1',9110,'POW',1,NULL,1,0,'0000000a02b06ea40c932354c603fef5a2c0a90263edaaa51752aeef75c08bfd',NULL,1284,0,1431688313,0,'https://c-cex.com/?p=mrp-btc','','https://github.com/mrpcoin/mrp','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (912,'Elektron','EKN','','x13','v3.1.0.0','/images/coin-912.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.66689765400702,0,'no more pow blocks',0,NULL,0.00001,25.14129179,0.02350906,22477,NULL,NULL,0.000033533337026914,0.000040197730034772,50,1,0,0,1,1428669835,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp1',9120,'POS',1,NULL,1,0,'6c8a5dde79901c1e216f2b274e256dc85a812a335fd77f1a3e9aae6afbbd913f',NULL,70,61,1429967186,0,'https://c-cex.com/?p=ekn-btc','','https://github.com/ElektronFoundation/elektron','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (913,'EggCoin','EGG',NULL,'scrypt',NULL,'https://c-cex.com/i/l/egg.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'no pow',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428698437,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=egg-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (914,'unknown','STP',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (915,'unknown','NXE',NULL,'fresh',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=977489.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (916,'unknown','AECC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (917,'unknown','PLANET',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (918,'FireCoin','FIRE',NULL,'x15',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=702951.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (919,'AnalCoin','ANAL',NULL,'sha256','v1.0.0.0-g32a928e','/images/coin-919.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,4940.8126484804,0,'analcoin is not connected!',0,NULL,0.01,0.00024414,0.00024414,0,NULL,NULL,0.000120625,NULL,1,1,0,0,1,1428710640,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',9190,'POS',1,NULL,1,0,'',NULL,NULL,0,NULL,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (920,'unknown','MTLMC3',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (921,'Twistercoin','TWIST',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=966354.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (922,'CrimeCoin','CRIME',NULL,'x13',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=959024.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (923,'Bitcurrency','BTCR',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=867474.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (924,'unknown','TEC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (925,'unknown','KARMA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (926,'TorrentCoin','TCX',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=1012911','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (927,'unknown','TAB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (928,'Ninja Doge','NDOGE',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=998008.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (929,'GiftNet','GIFT',NULL,'x13',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=1001062.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (930,'BaseBallCardCoin','BBCC',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=991921.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (931,'TrickyCoin','TRICK',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=1004692.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (932,'Digigems','DGMS',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=913237.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (933,'CryptoClub','CCB',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=667866.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (934,'Ozziecoin','OZC',NULL,'x11',NULL,'https://i.imgur.com/C9xN5TQ.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=578881.0','https://github.com/ozziecoin/ozziecoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (935,'Stakecoin','STK',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (936,'SifCoin','SIC',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710640,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=240894.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (937,'DecryptRcoin','DECR',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710641,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=926536.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (938,'RiceCoin','RICE',NULL,'x13',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428710641,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','https://bitcointalk.org/index.php?topic=929774.0','https://github.com/teamricecoin/','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (939,'unknown','XPRO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428770651,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (940,'Positron','TRON',NULL,'sha256','v1.0.0.0-g32a928e','/images/coin-940.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.0000084156019817904,0,'no more pow blocks',0,NULL,0.001,50455053.710806,0.00024414,3523,NULL,NULL,0.00042460965,NULL,100,1,0,0,1,1428770651,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',9400,'POS',1,NULL,1,0,'85aca23da8ef9fa8658e28dab31381dd0f962b605c01de3442a01d4467efb253',NULL,468,41060,1429042751,0,'','','https://bitbucket.org/positrondev/positron','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (941,'GizmoCoin','GIZ',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'no pow',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428782890,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (942,'eTRUST','ETRUST',NULL,'scrypt','v1.1.2.0-g','/images/coin-942.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.023201312129849,0,'',0,NULL,0.0001,13.725516824986,NULL,14018,NULL,NULL,0.00001056096,0.000019760000002228,2,1,0,0,1,1428782890,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',9420,'POS',1,NULL,1,0,'',NULL,70,64,1429128166,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (943,'unknown','GLIDE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1428922026,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=glide-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (944,'LeaCoin','LEA','','sha256','1000000','/images/coin-944.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,NULL,0.000021805683583319,0,'',0,0,0,3595.3929029757,NULL,92646,NULL,NULL,0,0,200,1,0,0,1,1428931817,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',9440,'POW',1,NULL,1,0,'00000000001407f26a6f15727604d7104bd10e528dd70d71cd78996bec30add4',NULL,53,12,1431865529,0,'','','https://github.com/leacoin/LeaCoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (945,'HazMatCoin','HZT',NULL,'scrypt','v1.1.0','/images/coin-945.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.034539743374763,0,'',0,0,0.001,3.121042297042,NULL,14726,NULL,NULL,0.0000000873,0.000000195,100,100,0,0,1,1429022676,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',9450,'POS',1,NULL,1,0,'725f999a4d79204508b5baafab4f6cf690c0931bd6f1634468457a61f8c139e2',NULL,1884,13,1431863891,0,'','https://bitcointalk.org/index.php?topic=1019312.0','https://github.com/HazMatCoin/HazMatCoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (946,'P7 Coin','P7C',NULL,'scrypt',NULL,'https://i.imgur.com/2TJaARY.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,0,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0.00000172735,NULL,1,1,0,0,1,1429114917,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','',9460,NULL,1,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,'','','https://github.com/p7coin/p7c','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (947,'IvugeoEvolution','IEC','','scrypt','1020000','/images/coin-947.png',NULL,NULL,'iAmMXZ6er2J6VLjvmyCwS8XhZcFYJ5Bsi1',NULL,NULL,NULL,NULL,1,0,0,NULL,0.090107481303448,11,'',0,NULL,0,35.332114666959,NULL,47824,NULL,NULL,0.000041885118560246,0.000074261097814778,7.601,1,1,0,1,1429290655,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',9470,'POW',1,NULL,1,0,'f52026898f77f9c615d2eaf0091ac404fd3e58504157bdbccf5140b17d71d194',NULL,68,151,1434809266,1,'https://c-cex.com/?p=iec-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (948,'8BitCoin','8BIT',NULL,'scrypt','v1.0.0.0-g','/images/coin-948.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.31614017068258,17,'no more pow blocks',0.06071181,296.0232,0.0001,619.04085821,65536,1888,NULL,NULL,0.002446082,NULL,8.0007,1,0,0,1,1429300996,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9480,'POS',1,NULL,1,0,'1c570a23a1a7297633918699eefce128a8ce33599bbdda027b7b92a042e08e18',NULL,70,2131,1429409562,0,'https://c-cex.com/?p=8bit-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (949,'OKcash','OK',NULL,'scrypt','v2.0.0.0-g','/images/coin-949.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.00016020568209623,0,'no more pow blocks',0,NULL,0.0001,41.20078585,0.59104437,206099,NULL,NULL,0.00000066006,NULL,1,1,0,0,1,1429317793,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9490,'POS',1,NULL,1,0,'',NULL,3339,213,1429352138,0,'https://c-cex.com/?p=ok-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (950,'AnarchistsPrime','ACP','','sha256','80600','/images/coin-950.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.00000047862279295731,0,'',0,96.0009,0,1354564.8254519,NULL,6932,NULL,NULL,0.000002750250704064,0.000006435000384,32,1,0,0,1,1429356999,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9500,'POW',1,NULL,1,0,'00000000000004645c476b689b52cb63e1212cee7a409cd735e06100b39887b9',NULL,5767,1592,1429867030,0,'https://c-cex.com/?p=acp-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (951,'KolschCoin','CGN',NULL,'x11','v1.0.0.0','/images/coin-951.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.11311969461248,0,'',0.00162402,0,0.00001,1.307927194348,0.00024414,38654,NULL,NULL,0,0,0.04041,1,0,0,1,1429359192,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9510,'POS',1,NULL,1,0,'000000001c4a20fa63cfecefbb88b7be9f02a802722ed50fb66349f9264baefe',NULL,62,5,1431865427,0,'','','https://github.com/Tillkoeln/Kolschcoin','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (952,'Californium','CF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1429397079,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (953,'unknown','CTK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1429398150,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (955,'Neutron','NTRN','','sha256','v1.0.0.0-g32a928e','/images/coin-955.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.0000049854200368409,69,'no more pow blocks',0,NULL,0.01,14887410.980583,0.0012256,4463,NULL,NULL,0.000070685711427889,0.000076650649519521,105,1,0,0,1,1429476527,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9550,'POS',1,NULL,1,0,'8a3d7b3feeac137eac1adce7e134d13c828e768a00f75c323b2c90536f93ec6c',NULL,100,4746,1429630459,0,'https://c-cex.com/?p=ntrn-btc','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (956,'Coven','COV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1429485266,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (957,'Slingcoin','SLING','','sha256',NULL,'https://c-cex.com/i/l/sling.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,0,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0.00072294712,0.000792856,1,1,0,0,1,1429503687,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9570,NULL,1,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,'https://www.cryptsy.com/markets/view/SLING_BTC',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (958,'unknown','!MOTO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1429543601,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'https://c-cex.com/?p=!moto-btc',NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (959,'MyriadCoin','MYR-skein','MYR','skein','90214','/images/coin-959.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.0048204349555251,0,'',0.01589,0,0,244.04270793937,NULL,1176782,1130090,NULL,0.0000002156,0.000000225,500,1,0,0,1,1429564241,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9590,'POW',1,NULL,1,0,'c2f8c0204aec442d002a996021ee5fc273b66deac042ac83fd99d1d4832986d7',NULL,56,3761,1431865427,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (960,'Unitus','UIS-skein','UIS','skein','90301','/images/coin-960.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.0011913186759151,0,'',0.27285825,0,0,183.91352963101,NULL,157829,NULL,NULL,0.0000003921542912,0.0000004051970903145,86.02583546,1,0,0,1,1429565643,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9600,'POW',1,NULL,1,1,'492e88a794520ca9d9c03f612190c777f638639c1b6424b44ece7b92b02d1c5b',NULL,96,3848,1431865529,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (961,'Unitus','UIS-qubit','UIS','qubit','90301','/images/coin-961.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.00074188716911912,0,'',0.08495418,0,0,295.32741867343,NULL,157829,NULL,NULL,0.0000003921542912,0.0000004051970903145,86.02583546,1,0,0,1,1429565698,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',9610,'POW',1,NULL,1,1,'492e88a794520ca9d9c03f612190c777f638639c1b6424b44ece7b92b02d1c5b',NULL,96,687,1431865529,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (962,'Digibyte','DGB-qubit','DGB','qubit','3000301','/images/coin-962.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.12536536128669,0,'',0.05613784,0,0,85.058177559432,NULL,852878,NULL,NULL,0.0000004508,0.000000465,2315.09968739,1,0,0,1,1429569031,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9620,'POW',1,NULL,1,0,'0ad52c774ccb9f7fba301b6fe37b061f8ac3ee36c83488bfb2bbe0463bf1ead4',NULL,56,234,1431865529,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (963,'BitLux','LUX','','x11','v1.0.0.0','/images/coin-963.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.094414894036716,0,'no more pow blocks',0,NULL,0.00001,2.24960799,0.00028649,9350,NULL,NULL,0.00002123965,0.000029815400906776,1,1,0,0,1,1429571728,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9630,'POS',1,NULL,1,0,'7e1518a66f5e07fd0710f4bb91d33900f9690cb640184b6d0bdf199252a33e6b',NULL,304,0,1430612611,0,'','','https://github.com/bitluxdev/bitlux','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (964,'DroidZ','DRZ','','qubit','v1.2.0.0: NextGen','/images/coin-964.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.11554164779054,32,'no more pow blocks',0.0004,NULL,0.0001,18.49960634,0.08759783,32653,NULL,NULL,0.00000427495,0.0000051004000384049,50,1,0,0,1,1429633806,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9640,'POS',1,NULL,1,0,'bc8610312c936aa2352d92647241df28627e38ee8ed5b114a1ce706220be519d',NULL,126,418,1431352361,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (965,'007','007',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'apr 26',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1429643176,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (966,'BigCoin','HUGE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1429676527,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (967,'BlitzPay','BLITZ',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'no pow',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1429730301,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (968,'NexusEconomy','NIRO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1429730301,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (969,'GramCoin','GRAM','','sha256','90001','/images/coin-969.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,NULL,0.0000038953109558436,0,'',0,0,0,5534.8597953795,NULL,16934,NULL,NULL,0.0000000098,0.00000002,220,1,0,0,1,1429747276,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9690,'POW',1,NULL,1,0,'000000000002abaacc7d99c0028e8907d33d260fd31fec8834c83a96c52d7711',NULL,171,4,1431865529,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (970,'Singular','SIGU','','scrypt','v1.5.0.0','/images/coin-970.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.19663144613327,0,'',0,NULL,0.0001,206.23944337222,NULL,7893,NULL,NULL,0.0000675886,0.000094539991971185,60,100,0,0,1,1429747276,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9700,'POS',1,NULL,1,0,'4f93a1f679deba28ef59e240cf93f35bcb0c9172ea91d6b1668de4da5d24d985',NULL,124,104,1430059484,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1084,'unknown','SMSR',NULL,'qubit',NULL,'https://i.imgur.com/r4sX4HB.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'5 days',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1434466368,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1085,'GlobalCurrencyCoin','GLOBE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1434471522,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (974,'AsianBond','AIB',NULL,'scrypt',NULL,'https://ip.bitcointalk.org/?u=http%3A%2F%2Faib.iobond.com%2Fimages%2Faib_golden.png&t=551&c=DMkFfs-ZdE9rxg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1430054320,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (975,'Unattainium','UNAT-skein','UNAT','skein','90401','/images/coin-975.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,283.07816500202,0,'Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues.',2.25206778,1.5,0,0.00024621211665824,NULL,678413,NULL,NULL,0.00002787885,0.000033188307987195,0.25,1,0,0,1,1430065051,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',9750,'POW',1,NULL,1,0,'b1313612f93b7c6461c9b192a44ce28d6c7672256f75ffe2737046c2bc7e6a72',NULL,74,0,1430514012,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (976,'Quartz','QTZ','','sha256','v1.0.0.0-g32a928e','/images/coin-976.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.000002733225164589,0,'no more pow blocks',0,NULL,0.001,3848626.4611723,0.01026398,6120,NULL,NULL,0.000021037904627466,0.000027343501202712,50.001,1,0,0,1,1430078003,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9760,'POS',1,NULL,1,0,'34afb30e84d60f0d53656b8957b4e497de4061bcf782ecf381278ca2f40afbcc',NULL,76,1556,1430272294,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (978,'DoxCoin','DOX',NULL,'scrypt',NULL,'https://pbs.twimg.com/profile_images/592494616043069440/ZYgbYOl4_400x400.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1430151924,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (979,'Isotope','XTP','','sha256','v1.0.0.0-g32a928e','/images/coin-979.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.0000072583775641328,0,'no more pow blocks',0.001,NULL,0.001,4455906.182614,0.00029737,1654,NULL,NULL,0.000043123532618355,0.000050000827872484,75,1,0,0,1,1430158299,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',9790,'POS',1,NULL,1,0,'00000000000000f0b1e2e9dd3d10be19f27f791fc62b430b11d853b1a80cfc98',NULL,84,2047,1430740070,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (980,'XanaxCoin','XNX','','scrypt','80602','/images/coin-980.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.0054750439352697,0,'',0,0,0,7.5177514713355,NULL,13607,NULL,NULL,0,0,210.0001,1,0,0,1,1430158303,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9800,'POW',1,NULL,1,0,'240b2b346e1ef0353cbc3863d2dd0647b0398227dc37ef1cd248ddbf0fde96f2',NULL,129,2,1431865529,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (981,'BitSeeds','XSEED',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1430213527,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (982,'MegaStake','XMS','','x11','v1.1.0.0: Satoshi','/images/coin-982.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0,0,'',0,NULL,0.001,1.3613701987993,0.00024414,5276,NULL,NULL,0.000072513613100198,0.000077670603844411,0,1,0,0,1,1430213535,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9820,'POS',1,NULL,1,0,'0000000013dc7865bf8bf081fbd290e634623897b57933030e527f849c547cbf',NULL,111,0,1430406686,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (983,'Dumdum','GUM','','x11','v1.0.0.0','/images/coin-983.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.12542729135545,0,'no more pow blocks',0.00898101,NULL,0.0001,57.7027529,0.02372036,5347,NULL,NULL,0.00000072375,0.0000011251999913779,1000,1,0,0,1,1430325911,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9830,'POS',1,NULL,1,0,'62114979c39422a62339d7d5b390105f2fcb37e0c3957906f9b6bd25f181f8ec',NULL,61,30,1430421538,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (984,'ChronoSphere','SPHR','','scrypt','v1.2.0.0-g32a928e','/images/coin-984.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.0092646897835664,0,'no more pow blocks',5.11501477,NULL,0.0001,147.60524718,107147.53417823,5547,NULL,NULL,0.0000092657169974181,0.000012935215352952,14.75888834,1,0,0,1,1430399551,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9840,'POS',1,NULL,1,0,'2820b6f2d5f489fd86cfac1e7bc116aeb7e9de4e0e518f926941b7be2c3a088b',NULL,88,173,1430612681,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (985,'TrickyDickFunBills','TDFB','','sha256','v1.0.9.1-g32a928ebeta','/images/coin-985.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.000004153523347039,38,'no more pow blocks',0,NULL,0.001,1080347.8456908,0.00099378,4905,NULL,NULL,0.0000029915,0.0000058253568,150,1,0,0,1,1430418389,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp1',9850,'POS',1,NULL,1,0,'',NULL,60927,1002,1430435577,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (986,'unknown','BTX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1430479619,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (987,'UniversalCurrency','UNIT','','sha256','v1.0.0.0-g32a928e','/images/coin-987.png',NULL,NULL,'P9bMmqo9bCJNXMSUyD8SAXEZpGX5jaxyNo',NULL,NULL,NULL,NULL,1,0,0,NULL,0.0000041631792665498,22,'',0,NULL,0.001,367387.60645269,0.0164691,156767,NULL,NULL,0.0000015295004659712,0.000001698393837718,100,1,1,0,1,1430505476,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',9870,'POS',1,NULL,1,0,'3a34c90529450f9229a79ba39021666d038e8d950e8b569efef101d9f69fd1b8',NULL,18,778,1434809266,1,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (988,'BubbleCoin','BUB','','sha256','v1.0.0.0-g32a928e','/images/coin-988.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.0000097946729987092,0,'no more pow blocks',0.08,NULL,0.01,2801746.1638195,0.00029802,4054,NULL,NULL,0.00002195375,0.000025757345030349,125,1,0,0,1,1430505476,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9880,'POS',1,NULL,1,0,'00000000000004efea8c835ac67dee29c93c82d724e9bc7601d004ffa9cbea4b',NULL,62,339,1430612019,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (989,'GraphCoin','GPH','','scrypt','v1.0.0.0-unk','/images/coin-989.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.1031792974924,29,'no more pow blocks',0,NULL,0.0001,2004.38396568,75916.5298547,7735,NULL,NULL,0.00010340546474195,0.0001085257950553,200,1,0,0,1,1430527579,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',9890,'POS',1,NULL,1,0,'e3f231265f36b71c4014612b949bc0aaeed275db1dc2d6042d8bc8ff75939770',NULL,71,3018,1430782535,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (990,'Graviton','GRAV','','sha256',NULL,'https://i.imgur.com/vm2DpSy.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,0,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,0,1430585334,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',9900,NULL,1,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (991,'SpinCoin ','SPC',NULL,'nist5',NULL,'https://c-cex.com/i/l/spc.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'ICO',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1430611621,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (992,'CryptoCoin','CTO','','lyra2','1000000','/images/coin-992.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.59484869157633,0,'',0,0,0,0.19336649789328,NULL,46190,NULL,NULL,0.0000004998,0.0000007500064,4.99452055,1,0,0,1,1430666472,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9920,'POW',1,NULL,1,0,'23d5f4ca54c549e58967b685e334f3f39d6de396224e518846be7390ee27a84d',NULL,32,24,1431865529,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (993,'GorillaTeeth','TEETH',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1430769168,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (994,'Empyrean','EPY','','scrypt','1000000','/images/coin-994.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.0068364314118777,0,'',0.0030603,3,0,286.46245261756,NULL,735,NULL,NULL,0.00019521695361324,0.00023030975907528,0.503,1,0,0,1,1430781458,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',9940,'POW',1,NULL,1,0,'3c5bd882a64f901571c1d9447b5a8e56e16e81b7a1ea7d999a506276ada66b33',NULL,400,355,1431177773,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (995,'GoatCoin','GOAT','','scrypt','v1.2.0.0-g32a928e','/images/coin-995.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.1662435342226,0,'no more pow blocks',0.01001,NULL,0.000001,1571.92278919,23152.9844044,2464,NULL,NULL,0.0000261322,0.000028340605508011,1000,1,0,0,1,1430788767,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',9950,'POS',1,NULL,1,0,'2f7d3441038ac7fed643e177ef6b82cb0f3d4b185429b2df18fe9c43707e607e',NULL,66,906,1430859213,0,'','https://bitcointalk.org/index.php?topic=1048923.0','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (996,'PlatinumCoin','PNC','','sha256','80600','/images/coin-996.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.000000019334622830814,0,'',0,NULL,0,1354564.8254519,NULL,6932,NULL,NULL,0.0000000873,0.000000365,30,1,0,0,1,1430853386,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9960,'POW',1,NULL,1,0,'',NULL,206413,1082,1430855918,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (997,'UltimateCoin','UTLE','','x11','v1.0.0.0','/images/coin-997.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.23940909288556,0,'no more pow blocks',0,NULL,0.00001,141.07651298,0.00073101,8335,NULL,NULL,0.00006755,0.000083897050548957,50,1,0,0,1,1430855843,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',9970,'POS',1,NULL,1,0,'850e54aa2d439ce7edda87f271e46d55e61ce2c404e718f247d6dee65a6e0b30',NULL,64,75,1430927497,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (998,'ViralCoin','VIRAL',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1430857243,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (999,'IslaCoin','ISL','','x11','v1.0.0.0','/images/coin-999.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0,10,'',0,NULL,0.0001,5.4284671476163,0.00315994,52787,NULL,NULL,0.000000784,0.000001595,0,1,0,0,1,1430864916,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',9990,'POS',1,NULL,1,0,'00000000140ae50b4fba883bb4468de6fe8fad395260950e70c29e2c10ab1078',NULL,44,530123,1432656786,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1000,'Gambit','GAM',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'ico',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1430866080,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1001,'ParkByte','PKB','','sha256','v1.0.0.0: Experimental','/images/coin-1001.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0,32,'no more pow blocks',0,0,0.00001,695993.82341994,0.01624057,99286,NULL,NULL,0.000012764417792,0.000014790172232729,0,1,0,0,1,1431023107,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',10010,'POS',1,NULL,1,0,'31be010cc76b8e19c682642b264b13745fbee6a6b87e05f2bf5460ad51c3d59e',NULL,64,244,1433843450,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1002,'ExperienceCoin','EPC','','scrypt','1080200','/images/coin-1002.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,NULL,3.0731006715593e-195,0,'',360.36436265,0,0,2.7108193409189,NULL,42149,NULL,NULL,0,0,17503,1,0,0,1,1431023958,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',10020,'POW',1,NULL,1,0,'ddd94058a297296882ea2efc28fcfee1b05fb86e99a90c065af59a1ab2a7e144',NULL,92,11,1431612873,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1003,'Venturenic','VTN','','qubit','v1.0.0.1: VTNbetaf','/images/coin-1003.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.00015398684086878,10,'no more pow blocks',0,NULL,0.0001,34.64581759,0.03044828,6913,NULL,NULL,0.0000005335,0.00000066995712,1,1,0,0,1,1431025635,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',10030,'POS',1,NULL,1,0,NULL,NULL,177642,382,1431045575,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1004,'CryptoFocus','FCS','','x11','v1.0.0.0-g','/images/coin-1004.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.010211927851211,0,'no more pow blocks',0,0,0.001,47.02102316,0.00024414,12006,NULL,NULL,0.000004798350592,0.000015713036800639,10,1,0,0,1,1431041611,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',10040,'POS',1,NULL,1,0,'6e3c52bef93ac62fee392f87e3429755779025d009a6645f32323e2629821c89',NULL,4668,71,1434275577,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1005,'TicketCoin','TKT','','x11','v2.0.0.0','/images/coin-1005.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.45556279850462,0,'',0,0,0.00001,0.43023706203265,0.00024414,6244,NULL,NULL,0.000000078399974912,0.0000000999839872,250,1,0,0,1,1431045116,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',10050,'POS',1,NULL,1,0,'00000000690b7d8b3bbe4caeabccee233e31f2c83296d1d944c945df9fbe3007',NULL,275,4,1431865529,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1006,'FusionCoin','FSN','','sha256',NULL,'https://pbs.twimg.com/profile_images/595713766530093056/qtLLCjk__400x400.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,0,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,0,1431089635,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',10060,NULL,1,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1007,'MasterMolde','MOLD','','scrypt',NULL,'https://i.imgur.com/WaagVJz.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,0,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,0,0,1,1,0,0,0,1431100210,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',10070,NULL,1,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1008,'unknown','BTI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1431102873,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1009,'LimeCoinX','LIMX','','x11','110226','/images/coin-1009.png',NULL,NULL,NULL,NULL,25.00015,NULL,NULL,1,0,0,NULL,0.091514229214706,0,'',0,NULL,0,15.310392785472,NULL,90844,NULL,NULL,0.0000028004022784307,0.0000035985063424,50,1,0,0,1,1431138978,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp6',10090,'POW',1,NULL,1,0,'0000000000e6abcc2dbbf5dc80ff02128a40c051bf6087e2abd12c72630ddc57',NULL,447,6,1431688008,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1010,'ShellCoin','SHELL',NULL,'x11',NULL,'https://i.imgur.com/Z7iBOJ7.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'no more pow blocks',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1431138996,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1011,'unknown','CLV',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1431289195,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1012,'TeleBET','TB',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'Last PoW block: 2880',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1431369309,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1013,'unknown','BIT16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1431369309,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1014,'16bitcoin','16BIT','','nist5','v1.0.0.0','/images/coin-1014.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,1448.2837716065,0,'sixteenbitcoin is not connected!',0,0,0.00001,0.00024414,0.00024414,0,NULL,NULL,0.0000003491993792,0.00000038999968,200,1,0,0,1,1431384935,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',10140,'POS',1,NULL,1,0,'48532623c975e6f61b8fe3d8054397f54c6d55298d5c517af27a7d454964bc8c',NULL,28,1969,1432642622,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1015,'M1','M1',NULL,'x13',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'no more pow blocks',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1431391060,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1016,'unknown','KRAK',NULL,'sha256',NULL,'https://i.imgur.com/gLqxMRo.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1431393143,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1017,'unknown','BA',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1431422332,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1018,'AstralCoin','AST','','x13','v1.0.0.0','/images/coin-1018.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,0.0022445209464856,0,'astral is not connected!',0,NULL,0.01,1.72865395,NULL,1471,NULL,NULL,0.000000388,0.00000132,1,1,0,0,1,1431424473,NULL,'','','yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',10180,'POS',1,NULL,1,0,'',NULL,973158,28,1431516437,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1019,'GrantCoin','GRT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1431427852,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1020,'Bata','BTA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1431456819,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1021,'unknown','MRB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1431528150,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1022,'StealthCash','STX',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1431530334,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1023,'unknown','PTA',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1431565849,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1024,'DarkCrave','DCC','','sha256','v1.0.2.0-g32a928e','/images/coin-1024.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,76251.584352294,0,'darkcrave is not connected!',0,0,0.000001,0.00001526,0.00001526,0,NULL,NULL,0.00012055959999982,0.00015841597763673,1,1,0,0,1,1431689006,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10240,'POS',1,NULL,1,0,'',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1047,'Synergy','SNRG',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'4320',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432692448,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1026,'ArbitCoin','ARB','','sha256','v1.0.0.0','/images/coin-1026.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.000000021598390414308,0,'no more pow blocks',0,0,0.01,4682208.1667973,0.00267652,18996,NULL,NULL,0.000010112815998755,0.000012074606847447,1,1,0,0,1,1431713702,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',10260,'POS',1,NULL,1,0,'',NULL,54,NULL,1432643452,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1027,'GrantCoin','GRANT',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POP',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1431726150,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1028,'CorgiCoin','CORG',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432346280,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1029,'Darkbit','DB',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432346280,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1030,'Equilibrium','EQM','','sha256','v1.1.0.0-g32a928e','/images/coin-1030.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.000000011438837020104,0,'no more pow blocks',0,0,0.0001,6783906.4289152,0.00100602,4045,NULL,NULL,0.000009672064,0.000013025808090134,1,1,0,0,1,1432346280,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10300,'POS',1,NULL,1,0,NULL,NULL,354220,1812,1432823491,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1031,'Fadecoin','FADE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432346280,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1032,'Seedbit','SED','','quark','v1.0.0.0-g32a928e','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.39460476478798,25,'no more pow blocks',0,NULL,0.0001,0.063080839921875,0.0036984,6249,NULL,NULL,0.0000024892,0.00045752,1,1,0,0,1,1432346280,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',10320,'POS',1,NULL,1,0,'',NULL,96,NULL,1432601807,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1033,'SkullBuzz','SKB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432346280,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1034,'Turing','TNG',NULL,'fresh',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432346280,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1035,'unknown','PSN',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432346283,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1036,'Variance','VARY',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432346283,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1037,'unknown','TWERK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432346285,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1038,'unknown','CS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432346285,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1039,'unknown','GENIUS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432346285,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1040,'Premium','PRE','','scrypt','1000101','/images/coin-1040.png',NULL,NULL,'GcitesPUUV6E1NpeSLYA59SAjEfdbdMuaK',NULL,NULL,NULL,NULL,1,0,0,NULL,0.038176515992767,6,'',0,NULL,0,17.792351720327,NULL,13373,NULL,NULL,0.0000013585,0.000001505120008192,50,1,1,1,1,1432346285,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',10400,'POW',1,NULL,1,0,'32c5e131e8801b7fb43f10f02ec19667043b11bdeab2cc4be44b3600e1dcc149',NULL,19308,44,1434804098,1,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1041,'unknown','NICE',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432346285,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1042,'unknown','XNA',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'no pow',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432417535,NULL,NULL,NULL,NULL,'e7ec005fhdsj3k6po6afbb84545eb24',NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1060,'BananaBits','NANAS',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'No more PoW blocks',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1433415985,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1075,'YepCoin','YEP','','sha256','v1.0.0.0','/images/coin-1075.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,4.4181703690547,7,'',0,0,0.00001,0.00039518620925738,0.00024414,2,NULL,NULL,0.0000001746,0.0000000864,1,1,0,0,1,1434042334,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',10750,'POS',1,NULL,1,0,'',NULL,717029646,0,1434059292,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1043,'unknown','32BIT',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'No more PoW blocks',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432579156,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1066,'unknown','OPT',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1433620673,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1044,'Vcoin','VCN',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432608254,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1081,'Nodex','NODX','','sha256',NULL,'https://i.imgur.com/brPYbyL.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,0,'',0,0,NULL,1,NULL,NULL,NULL,NULL,0,0,1,1,0,0,1,1434385765,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',10810,NULL,1,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1046,'Audiocoin','ADC',NULL,'scrypt',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432678698,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1051,'unknown','TWLV',NULL,'t-inside',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432809060,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1048,'ECCoin','ECC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432734971,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1049,'RadonCoin','RDN','','scrypt','v1.1.0.1-g32a928e','/images/coin-1049.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.059543589648679,0,'no more pow blocks',0,0,0.0001,154.70906106,74910.20616039,24205,NULL,NULL,0.00001842379199821,0.000024391800000717,50.0002,1,0,0,1,1432747507,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp2',10490,'POS',1,NULL,1,0,'486d61ea15ed08f55b9adcdbf651653a217bda9f52cf29c6cb018589d1402687',NULL,55,515,1433595855,0,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1050,'unknown','PSY',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432747507,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1052,'unknown','VCOIN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432826852,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1054,'unknown','GREED',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432837355,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1055,'unknown','EXB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432862313,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1053,'unknown','MOIN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432836578,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1062,'unknown','ARPA',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'No more PoW blocks',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1433500474,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1056,'unknown','GLUCK',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1432919225,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1064,'unknown','DUB',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'ICO',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1433542867,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1059,'unknown','SEEDS',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'No more PoW blocks',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1433415953,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1068,'CeriumCoin','XCE','','sha256','v1.0.0.0-g32a928e','/images/coin-1068.png',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,0.000006839677682872,46,'no more pow blocks',0,0,0.001,5686963.8896015,0.01743737,3667,NULL,NULL,0.0000077793999998013,0.00001396000001321,500,1,0,0,1,1433684674,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',10680,'POS',1,NULL,1,0,'c5fe6884fdfc1d4566b6648c280ff35eecc5b253790fe1901ebe292bba1dbb83',NULL,89,2517,1433843234,0,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1057,'unknown','DRA',NULL,'sha256',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'shit',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1433107106,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1061,'unknown','BNB',NULL,'x11',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'ICO',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1433427661,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1080,'EuropeCoin','ERC',NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,'POS',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1434381642,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1082,'WarOfCoins','WOC2','','x11','v1.0.0.0','/images/coin-1082.png',NULL,NULL,'WPuoBCXwtxtuGbtyQx42NNXy7Czha9T8rP',NULL,NULL,NULL,NULL,1,0,1,NULL,0.53952626700252,8,'no more pow blocks',6,NULL,0.01,0.17643258,135380.02756126,3823,NULL,NULL,0.0000095190011265024,0.000019440000748544,1,1,1,0,1,1434386584,NULL,NULL,NULL,'yaamprpc','e7ec005fhdsj3k6po6afbb84545eb24','yaamp3',10820,'POS',1,NULL,1,0,'0dc57139ff4089da7aa82baea2b91235b1032f582c0557f56295b4c4c58b5895',NULL,175,1,1434809192,1,'','','','',NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1086,'Vibranium','XVI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1434801757,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1087,'unknown','FUTC',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1434801797,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1088,'unknown','BOD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1434801833,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `coins`(`id`,`name`,`symbol`,`symbol2`,`algo`,`version`,`image`,`market`,`marketid`,`master_wallet`,`charity_address`,`charity_amount`,`charity_percent`,`deposit_address`,`deposit_minimum`,`sellonbid`,`dontsell`,`block_explorer`,`index_avg`,`connections`,`errors`,`balance`,`mint`,`txfee`,`difficulty`,`difficulty_pos`,`block_height`,`target_height`,`network_hash`,`price`,`price2`,`reward`,`reward_mul`,`enable`,`auto_ready`,`visible`,`created`,`action`,`conf_folder`,`program`,`rpcuser`,`rpcpasswd`,`rpchost`,`rpcport`,`rpcencoding`,`hassubmitblock`,`usememorypool`,`txmessage`,`auxpow`,`lastblock`,`network_ttf`,`actual_ttf`,`pool_ttf`,`last_network_found`,`installed`,`link_exchange`,`link_bitcointalk`,`link_github`,`link_explorer`,`specifications`) values (1089,'unknown','GTFO',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,1,1,0,0,NULL,1434801865,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
|
|
|
|
/*Table structure for table `connections` */
|
|
|
|
DROP TABLE IF EXISTS `connections`;
|
|
|
|
CREATE TABLE `connections` (
|
|
`id` int(11) NOT NULL,
|
|
`user` varchar(64) DEFAULT NULL,
|
|
`host` varchar(64) DEFAULT NULL,
|
|
`db` varchar(64) DEFAULT NULL,
|
|
`created` int(11) DEFAULT NULL,
|
|
`idle` int(11) DEFAULT NULL,
|
|
`last` int(11) DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
|
|
/*Data for the table `connections` */
|
|
|
|
/*Table structure for table `earnings` */
|
|
|
|
DROP TABLE IF EXISTS `earnings`;
|
|
|
|
CREATE TABLE `earnings` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`userid` int(11) DEFAULT NULL,
|
|
`coinid` int(11) DEFAULT NULL,
|
|
`blockid` int(11) DEFAULT NULL,
|
|
`create_time` int(11) DEFAULT NULL,
|
|
`amount` double DEFAULT NULL,
|
|
`price` double DEFAULT NULL,
|
|
`status` int(11) DEFAULT NULL,
|
|
`mature_time` int(11) DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `user` (`userid`),
|
|
KEY `coin` (`coinid`),
|
|
KEY `block` (`blockid`),
|
|
KEY `create1` (`create_time`),
|
|
KEY `status` (`status`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
/*Data for the table `earnings` */
|
|
|
|
/*Table structure for table `exchange` */
|
|
|
|
DROP TABLE IF EXISTS `exchange`;
|
|
|
|
CREATE TABLE `exchange` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`coinid` int(11) DEFAULT NULL,
|
|
`send_time` int(11) DEFAULT NULL,
|
|
`receive_time` int(11) DEFAULT NULL,
|
|
`price` double DEFAULT NULL,
|
|
`price_estimate` double DEFAULT NULL,
|
|
`quantity` double DEFAULT NULL,
|
|
`fee` double DEFAULT NULL,
|
|
`status` varchar(16) CHARACTER SET latin1 DEFAULT NULL,
|
|
`market` varchar(16) COLLATE latin1_general_ci DEFAULT NULL,
|
|
`tx` varchar(65) CHARACTER SET latin1 DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `coinid` (`coinid`),
|
|
KEY `status` (`status`),
|
|
KEY `market` (`market`),
|
|
KEY `send_time` (`send_time`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
/*Data for the table `exchange` */
|
|
|
|
/*Table structure for table `hashrate` */
|
|
|
|
DROP TABLE IF EXISTS `hashrate`;
|
|
|
|
CREATE TABLE `hashrate` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`time` int(11) DEFAULT NULL,
|
|
`hashrate` bigint(11) DEFAULT NULL,
|
|
`hashrate_bad` bigint(11) DEFAULT NULL,
|
|
`price` double DEFAULT NULL,
|
|
`rent` double DEFAULT NULL,
|
|
`earnings` double DEFAULT NULL,
|
|
`difficulty` double DEFAULT NULL,
|
|
`algo` varchar(16) CHARACTER SET latin1 DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `t1` (`time`),
|
|
KEY `a1` (`algo`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
/*Data for the table `hashrate` */
|
|
|
|
/*Table structure for table `hashrenter` */
|
|
|
|
DROP TABLE IF EXISTS `hashrenter`;
|
|
|
|
CREATE TABLE `hashrenter` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`renterid` int(11) DEFAULT NULL,
|
|
`jobid` int(11) DEFAULT NULL,
|
|
`time` int(11) DEFAULT NULL,
|
|
`hashrate` double DEFAULT NULL,
|
|
`hashrate_bad` double DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=11246 DEFAULT CHARSET=latin1;
|
|
|
|
/*Data for the table `hashrenter` */
|
|
|
|
/*Table structure for table `hashstats` */
|
|
|
|
DROP TABLE IF EXISTS `hashstats`;
|
|
|
|
CREATE TABLE `hashstats` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`time` int(11) DEFAULT NULL,
|
|
`hashrate` bigint(11) DEFAULT NULL,
|
|
`earnings` double DEFAULT NULL,
|
|
`algo` varchar(16) CHARACTER SET latin1 DEFAULT 'scrypt',
|
|
PRIMARY KEY (`id`),
|
|
KEY `algo1` (`algo`),
|
|
KEY `time1` (`time`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
/*Data for the table `hashstats` */
|
|
|
|
/*Table structure for table `hashuser` */
|
|
|
|
DROP TABLE IF EXISTS `hashuser`;
|
|
|
|
CREATE TABLE `hashuser` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`userid` int(11) DEFAULT NULL,
|
|
`time` int(11) DEFAULT NULL,
|
|
`hashrate` bigint(11) DEFAULT NULL,
|
|
`hashrate_bad` bigint(11) DEFAULT NULL,
|
|
`algo` varchar(16) CHARACTER SET latin1 DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `u1` (`userid`),
|
|
KEY `t1` (`time`),
|
|
KEY `a1` (`algo`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=509895 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
/*Data for the table `hashuser` */
|
|
|
|
/*Table structure for table `jobs` */
|
|
|
|
DROP TABLE IF EXISTS `jobs`;
|
|
|
|
CREATE TABLE `jobs` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`renterid` int(11) DEFAULT NULL,
|
|
`ready` tinyint(1) DEFAULT NULL,
|
|
`active` tinyint(1) DEFAULT NULL,
|
|
`time` int(11) DEFAULT NULL,
|
|
`price` double DEFAULT NULL,
|
|
`speed` double DEFAULT NULL,
|
|
`difficulty` double DEFAULT NULL,
|
|
`algo` varchar(16) DEFAULT NULL,
|
|
`host` varchar(1024) DEFAULT NULL,
|
|
`port` int(11) DEFAULT NULL,
|
|
`username` varchar(1024) DEFAULT NULL,
|
|
`password` varchar(1024) DEFAULT NULL,
|
|
`percent` double DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `renterid` (`renterid`),
|
|
KEY `ready` (`ready`),
|
|
KEY `active` (`active`),
|
|
KEY `algo` (`algo`),
|
|
KEY `price` (`price`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
|
|
/*Data for the table `jobs` */
|
|
|
|
/*Table structure for table `jobsubmits` */
|
|
|
|
DROP TABLE IF EXISTS `jobsubmits`;
|
|
|
|
CREATE TABLE `jobsubmits` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`jobid` int(11) DEFAULT NULL,
|
|
`time` int(11) DEFAULT NULL,
|
|
`valid` tinyint(1) DEFAULT NULL,
|
|
`status` int(11) DEFAULT NULL,
|
|
`difficulty` double DEFAULT NULL,
|
|
`amount` double DEFAULT NULL,
|
|
`algo` varchar(16) DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
|
|
/*Data for the table `jobsubmits` */
|
|
|
|
/*Table structure for table `markets` */
|
|
|
|
DROP TABLE IF EXISTS `markets`;
|
|
|
|
CREATE TABLE `markets` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`coinid` int(11) DEFAULT NULL,
|
|
`marketid` int(11) DEFAULT NULL,
|
|
`lastsent` int(11) DEFAULT NULL,
|
|
`lasttraded` int(11) DEFAULT '0',
|
|
`deleted` tinyint(1) DEFAULT NULL,
|
|
`txfee` double DEFAULT NULL,
|
|
`balance` double DEFAULT NULL,
|
|
`price` double DEFAULT NULL,
|
|
`price2` double DEFAULT NULL,
|
|
`deposit_address` varchar(1024) COLLATE latin1_general_ci DEFAULT NULL,
|
|
`message` varchar(2048) COLLATE latin1_general_ci DEFAULT NULL,
|
|
`name` varchar(16) CHARACTER SET latin1 DEFAULT NULL,
|
|
`base_coin` varchar(64) COLLATE latin1_general_ci DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `coinid` (`coinid`),
|
|
KEY `name` (`name`),
|
|
KEY `lastsent` (`lastsent`),
|
|
KEY `lasttraded` (`lasttraded`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=1676 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
/*Data for the table `markets` */
|
|
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1,155,NULL,NULL,0,0,0.002,NULL,0.012070672698923,0.012220737260922,'LZhKYYGzwrtLut3Z9MUryxgp2mwuM2SUv8',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (3,142,NULL,1434521832,1434524748,0,0.002,NULL,0.0000056891860051918,0.0000057007920994282,'PBe9VmDh8w4q7FPbKpKERhokRkXFhpne2s',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (8,153,NULL,NULL,0,0,0.2,NULL,0.0000051,NULL,'RdaYmZYkky3JMUrLRsgiFSty85ZrH8eL6X',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (9,77,NULL,1434456939,1434486428,0,0.002,NULL,0.0005501631801559,0.00055199258490675,'URMtnBZZgHnhXJyg6543nhWPuyUg7vkJyj',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (13,190,NULL,1434522685,1434524748,0,0.02,NULL,0.00026001632821631,0.00026030527664479,'sSi7TJjeEodHQ1Jy6eJKa83m14PWtgyH2o',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (18,104,NULL,1434050553,1434072251,0,0.2,NULL,0.000016000080129024,0.00001603069613271,'Cbn4Sc35HxvxgZwCYviv7iuz2VSV2Kn75d',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (19,196,NULL,NULL,1427398373,0,0.02,NULL,0.00000082,NULL,'Ja4fG45YcbdGVqdE8W4EA1U1UANu7q5XPM',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (28,104,300,1433970099,1434012677,0,0.1,NULL,0.000016061196817346,0.00001619910937208,'CPTcRLKNESc2FhNFJT753tCcj5AoDY3Jw3','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (32,193,295,1415517055,1415609089,0,0.1,NULL,0.00000909,NULL,'LR8awWmujAHmnZhGuWNfPn1ucNQ5WDvzV7','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (33,155,3,NULL,0,0,0.5,NULL,0.011697725806594,0.011698894548784,'LcprmFUCaDgwdAL6YyFriJNAYpU6z8sZPd','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (37,161,286,1415775585,1416674167,0,0.1,NULL,0,NULL,'NgMaGGQrWqJmvPQY56CSWXzPo4jXnTs6Ju','Maintenance','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (38,187,13,1423227045,1423252100,0,3,NULL,0.00241806,NULL,'4JfBgQ3cJz3ZiKne2stPrxzZB21Soz7723','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (39,142,173,1434802584,1434508324,0,5,NULL,0.0000062633824252342,0.0000064330915941565,'PDjgLQ6mbB6v2cvkD6WVuF7yPW4nCeau6Z','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (41,145,117,1434803414,1434523133,0,0.1,NULL,0.00028925006695987,0.00029592490600227,'TX2JUa3EsVrK8aPjkZw38HsAtGy9U1hqKS','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (42,77,247,1434521830,1434522333,0,0.2,NULL,0.000462,0.00047035600277328,'UikMrRmNY2gcvHCt6WdTiNaXhHxaVPjswM','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (47,155,NULL,NULL,0,0,NULL,NULL,0.010000043303489,0.011015819462883,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (49,154,NULL,1415933511,1415969270,0,NULL,NULL,0.00001247,NULL,'DVZErWVn3pAEQS65gsgxJLxgdCZN3UdUaZ',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (56,200,NULL,1420307044,1421857842,0,0.2,NULL,0.0000395,NULL,'SZVXZsqQLKx21p7Z34VDzg3as54a9PYa2T',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (57,200,304,1420295881,1420306375,0,0.1,NULL,0.00003801,NULL,'SjHdv65YvVXn2UdQpg97AX7P54bmyuQbNK','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (70,155,NULL,NULL,0,0,0.01,NULL,0.011381400965226,0.011810195350308,'Lg3iRn5B4UMQwTa8hgLzDwRB5ZQqcMcbm4',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (79,243,143,1416953465,1416997001,0,0.3,NULL,0.000262,NULL,'RTkVRLtaVxbvXee7PYe9mvmBxJrRt16Cmw','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (84,104,NULL,1423481825,1434072277,0,0.1,NULL,0.00001568140096512,0.00001616653266432,'CYnAUfUcHJQZxkmky1gAfQvoe9UJeiNHNG',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (88,142,NULL,1425017779,1434524781,0,0.1,NULL,0.0000055995839365934,0.0000059111041300887,'PBogT5fGXAXLvRagwYRRrLh2Ls7b6VkHcJ',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (89,77,NULL,1414839892,1414851008,0,0.001,NULL,0.00054178739392205,0.00058405369030603,'UNJFpVVSgLJvNtx3RpWcXTCswj1LNWarXf','no','bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (96,146,NULL,1423025840,1423026664,0,2,NULL,0.00000081839996518394,0.00000082419997788157,'DEd3wLRv1qxTNX33nSASetYKf5CnxjC76f',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (97,146,132,1422553301,1422572195,0,100,NULL,0.00000076999984739122,0.00000077499991087922,'DC1BoQTVpbM9Qe7M99V7LQLT4TqCtkxWAd','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (98,146,NULL,NULL,0,0,NULL,NULL,0.00000081999614976164,0.000000824997740032,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (99,146,NULL,NULL,0,0,2,NULL,0.00000081999675392,0.0000008249983642583,'no',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (102,200,NULL,1420309208,1434524781,0,0.1,NULL,0.000038,NULL,'SMP5RmtM48DhXb8hRfTR3juJpFmH5cr259',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (105,270,NULL,1418562395,1434524780,0,0.1,NULL,0.000026,NULL,'LekZdpS3mfgXiarbk5YPamXBNz5R2ghBDS',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (117,295,NULL,1417911899,1418120777,0,NULL,NULL,0.00005998,NULL,'gTEGrAiuLfBgvEBdguEmS89K8a2yURzcR5',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (125,299,NULL,1432922838,1432994673,0,0.1,NULL,0.0000003099981056,0.000000329999046656,'76FBBzLM56atv3VJ4axdb74Kh3uhFjHhFn',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (126,304,88,1434525132,1434524761,0,0.1,NULL,0.0002078120572563,0.00020804808009334,'sPqkYq4r2uJVmxPdfkRF68Xsk7DzwuyP7i','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (127,305,71,1434802599,1434523933,0,0.09,NULL,0.000019493772893391,0.000019590352721746,'QiWkCtU5ix81vki5ed9rZ79pPfRTwot3Xm','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (128,307,31,1434524344,1434523929,0,50,NULL,0.0000017067559167181,0.0000017608419589939,'PsBEHsv1vV5Fi9SZvrszeU8SRYsZWR8Ukn','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (129,308,5,1434802605,1434514210,0,40,NULL,0.000050074197693646,0.000050527726255237,'6oWGFki37qQWBJR3jUcYG4imhQxVguxufx','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (134,190,NULL,1425510082,1426033220,0,0.1,NULL,0.00024333000450253,0.00026080998790687,'sfYdSa9c3ZzaroibwJRC1MRCH1rU3M6zSB',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (142,326,NULL,1431863219,1434524778,0,0.1,NULL,0.000000119999355904,0.000000144999919616,'GjtfrxT14mz6MLhKmEEDdp8MymAxxE7uXS',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (143,245,NULL,1431591448,1431863719,0,0.1,NULL,0.00000021,0.000000225,'DM4WuLpZ8oWdJHsujJ7FQWhHf1ifTcx7gg',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (154,346,NULL,1434277674,1434282608,0,0.02,NULL,0.00080073759273068,0.00080733032896787,'VbEebGRBgtfUAYYFBK1gvb8D9xDSKjtpXn',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (155,346,151,1434507107,1434509151,0,1,NULL,0.00063420942102016,0.00063675817813066,'VfMWNJngJU3g4Am5PEsB9sTqJBTH6nTDxa','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (161,348,NULL,NULL,1419705062,0,NULL,NULL,0.00000145,NULL,'HT2FwfXHd5PkNXFzJpdxczWZ1J5ZvKcMdJ',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (167,308,NULL,1434525132,1434503381,0,0.2,NULL,0.000042035008645124,0.000042357773224168,'6pT4AeppbQKxyamnyXVA9sKGoVeiUEYA5j',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (175,373,309,1431862289,1431865567,0,0.1,NULL,0.00000055000000000013,0.00000057000000000007,'CPU1uPpaj1Y4bHevRHXfoHdrWAaZPmT6vo','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (178,374,NULL,1423507748,1423599532,0,0.002,NULL,0.000046290400775483,0.000046354402061744,'VotjmViDsJcZswnNSHQpA9kbZjE3GrtnrJ',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (179,374,261,1421120569,1422835246,0,0.1,NULL,0.0000500519910556,0.000052086163448756,'VtwN2EQKxShNPRBa71mR2JjpucMfhFfSfS','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (188,386,NULL,1422010095,1434524748,0,0.002,NULL,0.00000104,NULL,'Kz1fcChW7mwcu6fayhisoUFSNPp94ymcvs',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (191,392,NULL,1421173018,1432385898,0,0.2,NULL,0.000018520784,0.000019333716782215,'DDVy62gCc5Yjcoswky1Q1AsS7jseJUWVvu',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (192,392,26,1421117724,1421126812,0,0.1,NULL,0.000018413456131104,0.000019034581613064,'DTjT3iLmJxFm3fKpJBKN1ahqBhEh4A5LWx','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (193,392,NULL,NULL,0,0,0.1,NULL,0.00001891,0.000018955,'DQf6WkFoFtsXgDMhMuCiW8gGcGRcHWgTvm',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (194,393,NULL,1434510421,1434524747,0,0.2,NULL,0.00057444161799494,0.0005928747284224,'MJGC2rF5LYhDjvRLn9cp3y359VJBfMzF1c',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (195,393,NULL,1420517421,1420736934,0,0.1,NULL,0.0005529999987712,0.00060275608915734,'ML4RgsLixz2YQEfsMeWgX5ap9W37zQhXdR',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (196,394,45,1424861810,1424869612,0,0.1,NULL,0.00019125029502232,0.00019215184620399,'MEtjceLJPw53RRCKu6gUWLMyuaFipZapAZ','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (197,394,NULL,1424559716,1434524780,0,0.1,NULL,0.00015864637408777,0.00017680763846359,'MUTNPttBNPvxZ1rLpUhAWnWZ5D5xXbhwhq',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (198,390,NULL,1423640237,1429477846,0,2,NULL,0.00000109,NULL,'SNcFKMz6TuSLmQfSkMtevcerUk5WmLpYEd',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (199,390,278,1424391616,1424431178,0,1,NULL,0.00000106,NULL,'SQQf9hMMLCNYPbAP3piN1NfmWPkrV8DLbe','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (201,396,66,1434503750,1434505041,0,3,NULL,0.000985734646663,0.0010359314306204,'AawiEKGoRSTvoXpQLEynhxDngnXWE6mPZf','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (202,398,NULL,NULL,0,0,0.2,NULL,0.00045872,NULL,'bFpWyRB8DqcFHh2qbQs31RrvKHUqXXjR67',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (203,398,302,NULL,0,0,0.1,NULL,0.00051943,NULL,'bM3LzDFXKspeyKSCDqVUEgBSA8NNPoTpLr','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (204,399,14,1434488679,1434490916,0,100,NULL,0.000063566497984092,0.000065029825727604,'We8TtqPFhvPGghNxKkyXN4xS4ewMfP99oX','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (205,399,NULL,NULL,0,0,0.001,NULL,0.000060874446772665,0.000064198023424732,'WXx4i2o6vPoTCTEY1h18v3fvgE7hQ7ZgDG',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (206,400,136,1419365772,1419600391,0,0.1,NULL,0.00000841,NULL,'9aa7iCJG96zyd1wDZVHwCGy7V23HLUpSuY','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (207,401,249,NULL,0,0,10,NULL,0.00001017,NULL,'HUhcKZ44bbpgQwBw3n1C1xHjAjeiunccpq','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (212,389,NULL,1423016957,1434524749,0,0.02,NULL,0.00001516,NULL,'UVHYaEhMt2MdU8Lb4rLEu5t8BYeMwrbMT5',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (213,389,444,1423754459,1423833043,0,0.1,NULL,0.0000165,NULL,'Uhg7v7z4KT79EaCjgpN4aM51HfknoYVFqy','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (215,406,NULL,1434397280,1434400798,0,2,NULL,0.000000420016001024,0.000000430808001024,'DMWHAyMrsV7NeWUEyvTZNzmZ6daxEBoUpa',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (216,406,167,1434411720,1434412124,0,100,NULL,0.00000043006400000787,0.00000043506405120787,'D8oK8voASXXGzzB1s3Qp2jx2bckuTpDTAz','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (217,356,183,1428959499,1429004481,0,3,NULL,0.00000158,0.000001585,'EP4yEb5ppbAujWgTjCYMqwF4jSi33xWojb','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (218,321,NULL,NULL,1420030398,0,NULL,NULL,0.00000251,NULL,'XgzUM6tfjEE5bmMDsc2KtPegFbKknV8MQF',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (221,417,NULL,NULL,0,0,0.1,NULL,NULL,NULL,'FPpt4fa8eDsDRoAnc8aCADrr7L7KyqASvc','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (222,414,465,1422201734,1422222517,0,0.1,NULL,0.00000004,NULL,'TNkF6uejCW5cxiNozsi9txDPg8YpWmSevm','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (224,418,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (225,419,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (227,421,NULL,1434525132,1434524748,0,0.2,NULL,0.00000025000256,0.00000025500256,'MHtvr5KDpYat19iMEpUzVN12bXwzTuMdms',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (228,422,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (230,424,NULL,NULL,1434524746,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (232,404,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (233,426,NULL,NULL,0,0,0.2,NULL,0.00001542,NULL,'8d6CXQeZ5z4ESPFeqzwqjQ1vppgFLCDA69',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (234,427,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (236,428,NULL,1434524344,1434523108,0,0.2,NULL,0.000003022800027689,0.0000031134566630932,'GeY4XXfeGXB51Y4A4ekhxmwvj45kqzRAPn',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (237,429,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (239,431,NULL,1425408716,1425495029,0,0.2,NULL,0.00000008,NULL,'9ZMFwNyKWT9hZgakQpyCWtTGqfG4V1viSB',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (240,432,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (241,433,NULL,1425007059,1434524746,0,0.2,NULL,0,NULL,'BZ7AS8YPkMtGBcfets2RQ4XW2dfCXgK6dp',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (242,434,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (243,435,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (244,436,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (245,437,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (246,438,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (247,439,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (248,440,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (249,441,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (250,442,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (251,443,NULL,NULL,0,0,0.2,NULL,0.00000965,0.0000098,'Br2Aw9tYWUsx7omC8WGByejeqUmkSmFQkB',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (252,444,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (253,445,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (254,446,NULL,NULL,0,0,0.02,NULL,0.00012347,NULL,'dDy7cu6sfSpLKBvMQ2mvdFSBDyG9MjExtw',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (255,411,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (256,447,NULL,NULL,0,0,0.2,NULL,0.00000002,NULL,'JYrWEdqwRcf9avWuytAGRwSzS1GXk41YWX',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (257,448,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (258,449,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (259,450,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (260,451,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (261,452,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (262,453,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (266,457,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (267,458,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (270,349,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (271,461,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (272,462,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (273,463,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (274,464,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (276,466,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (277,467,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (278,468,NULL,NULL,1430790105,0,0.02,NULL,0.000007,0.000007145,'1EmVLjtHTAYQzeA2sma1gv6r82qNnr8Ykd',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (279,469,NULL,1431862294,1431865557,0,0.02,NULL,0.00001470802227712,0.0000151630624256,'QVEnBTHL9LuEwuXkxTZpzwY4mRrJ7zPXjb',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (282,472,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (283,473,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (285,475,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (286,476,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (287,477,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (288,478,NULL,NULL,0,0,0.2,NULL,0,NULL,'ZKgCP8Gzgw1bGf5PdiFVDeZfoZiHGBKEEw','Wallet to be removed on 6/5. Please withdraw all funds immediately.','bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (289,479,NULL,NULL,0,0,0.02,NULL,0.00374449,NULL,'RBwDHegbKxuwk3j9r4WhDH9ScHqdtxpkGn',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (290,480,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (292,482,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (295,485,NULL,1434041257,1434054876,0,0.0002,NULL,0.0098019308540782,0.010106253421919,'ub9GCkfWLqkGyKeFsyJqfCcAXrDqPNa1sj',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (297,487,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (298,488,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (299,489,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (301,491,NULL,NULL,0,0,0.2,NULL,0.000017950012800033,0.000018415006400016,'ma1NKcdqepPGbKJGRZcpouJgiCdPcTmmAQ','','bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (302,492,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (303,493,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (304,494,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (305,495,NULL,1430512942,1434524749,0,0.0002,NULL,0.00002889,0.000033188307987195,'1KfRhfbpV5v9CYLBZDTcj1XRYam6MurwX6',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (306,496,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (308,498,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (309,499,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (310,500,NULL,1434802640,1434523100,0,0.02,NULL,0.00000821999993856,0.00000997999981056,'HH181SBqXtSoELpwseckE8SiZsmiZ6kyPu',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (312,502,NULL,1434492181,1434523106,0,0.2,NULL,0.000025482000088064,0.00002588200173568,'NgLitK9uYEMZF7CSPVBwkaaqK2e69dwJEX',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (314,504,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (317,371,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (318,507,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (321,192,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (324,512,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (325,513,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (326,514,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (327,515,NULL,1434802640,1434523112,0,0.2,NULL,0.000001460003202048,0.000001490001601024,'1Cw5DhS67bEKhzUMNGZ4iBsn7cNXXL81ZY',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (328,516,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (329,517,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (331,519,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (333,521,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (408,552,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (409,553,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (410,433,NULL,1425483844,1425546475,0,0.1,NULL,0.00000028,NULL,'BrYED4xADo8V8A2owYQsoxnvGhWokLjULv',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (412,479,NULL,NULL,0,0,0.001,NULL,0.00115,NULL,'RUipoo61X21mWDQRm1ZG6UVicVAxK532Nk',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (413,336,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (414,554,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (415,555,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (416,556,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (417,557,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (421,560,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (424,561,NULL,1425479934,1425523859,0,0.1,NULL,0.00000005,0.000000055,'DRjKL4gWrTJMJAHFW9uG5x1iqwSHY7Fs4Y',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (425,562,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (426,424,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (427,563,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (428,564,NULL,NULL,0,0,0.1,NULL,0.00000317,NULL,'1Ct6cm4LJAo36KKBxMtr4tZBdzvHCP876c',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (430,565,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (431,566,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (432,567,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (433,568,NULL,1431862299,1431863723,0,0.1,NULL,0.0000117899999744,0.0000126350015872,'1BnTrqBeu4y45aqyZv3PfbxyUYwDh7tgKy',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (434,569,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (437,572,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (438,573,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (440,513,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (442,491,NULL,NULL,0,0,0.001,NULL,0.00001624,0.000025095,'mHwqNdWh49gsQbjNh4dRaosBmGMeL4eCvh',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (443,574,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (444,575,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (446,502,NULL,NULL,0,0,0.1,NULL,0.000025439999960061,0.00002550500007219,'NWoDndDv1J4JjY7Vefqc7isbsDdSzDDJLG',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (447,428,NULL,1433038808,1433069058,0,0.1,NULL,0.000002780000052224,0.000003055000046592,'GaY6fW1npEs6n7g5udprdYHhHEmEp1cMB7',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (448,577,NULL,NULL,0,0,0.015,NULL,0.00147,0.00148,'N7cqEPyuMiNoQwpwftdo8nSoRqUkmuBcG5',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (449,578,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (450,579,NULL,NULL,0,0,0.1,NULL,0.000037,0.00003736,'oQptmrNQhMDrtaFgKp8M9VBZym5ZAnoWAe',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (451,580,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (455,530,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (456,584,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (457,585,NULL,NULL,0,0,0.1,NULL,0.0013300408,0.001342805968,'PABq427zGKpKm9GWQHtqNLQP1uS82aBkXs',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (458,305,NULL,1432864372,1434524781,0,0.001,NULL,0.000017937524098253,0.00001966100226802,'QhdQR7Lz3TTWZw6rd2Y75CUUSHCjMMsgNk',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (460,418,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (461,426,NULL,NULL,0,0,0.1,NULL,0.00001399,NULL,'8cyxfaArt2yP6aoQk6ZAbXopyKBfREAXGJ',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (462,257,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (465,588,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (466,485,NULL,NULL,1434067528,0,0.01,NULL,0.009999999930026,0.010334978930712,'uP49GHPbhwQjXMaqFw5as7LMAc3jdYXAK4',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (467,589,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (469,440,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (470,590,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (473,251,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (474,591,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (475,409,NULL,NULL,0,0,0.001,NULL,0.002001,NULL,'PEE453HqkhnFWWhJHeQvmdkVzcPnd55HG4',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (484,594,NULL,NULL,0,0,NULL,NULL,0.00000264,NULL,'1AGszaR3eYuGdHZrVp7w5dyawpqRbBYzjC',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (485,512,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (486,516,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (491,557,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (492,274,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (496,561,NULL,NULL,0,0,NULL,NULL,0.00000004,0.000000045,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (498,301,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (501,378,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (515,313,NULL,NULL,0,0,NULL,NULL,0.0000027699487993446,0.0000029499743996723,'WUbbvBZnTM7Fhepro9AdXvYKbppkBtjuAm',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (521,605,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (526,419,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (540,397,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (542,408,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (543,612,NULL,NULL,0,0,NULL,NULL,0.00001072,NULL,'SRoGyNCZMAeYYnHcojykq9pH8EjD88pJbP',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (548,333,NULL,NULL,1420029280,0,NULL,NULL,0.00000097,NULL,'Uh1WfpbHJxa4Rr2GUJerYh3z1CZKEC9rvk',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (558,344,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (559,191,141,NULL,0,0,0.000001,NULL,4.69999994,NULL,'4EZFu8h1oJwxCppfTB47PeoHX8nBemTCWq','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (560,619,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (561,620,287,1434803421,1434420964,0,0.1,NULL,0.00003702,0.000038255,'AY8fr3haZEAspjRd1C7mT1XdLFRnDE4utt','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (562,471,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (563,621,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (564,622,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'ZzumNNgELU9k6TU4uzEWxYVGtvbQ4ZYsxp',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (565,623,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (566,624,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'Am83WwWrVDKt6yMhVckgiwx68Wv4TcPnSL',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (567,477,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (568,260,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (569,625,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (570,626,160,1434524348,1434522299,0,2,NULL,0.0001549758353408,0.00015546606968268,'AQNSXzy51FmwJG1fnDm1ATZy6x6DSJjS66','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (571,505,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (573,627,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (574,628,157,NULL,0,0,0.02,NULL,0.00000331,NULL,NULL,'','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (575,629,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (576,433,251,1426028253,1426059679,0,0.01,NULL,0.0000003,NULL,'BZnmmgd3mjVKocaUzLJ9jAdp2yLdgmWYof','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (577,630,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (578,631,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (579,632,10,NULL,0,0,500,NULL,0.0000013900000000328,0.0000014485866671276,'bYELbHhH9zLojSqcffKemZN3SCaFccWg9s','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (580,633,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (581,479,256,NULL,0,0,1,NULL,0.00364908,NULL,'RVHPK1CLK5Y1DmWC6e2fr5NVg2rCnSnumX','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (582,634,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (583,635,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (584,636,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (585,637,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (586,449,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (587,638,53,NULL,0,0,0.5,NULL,0.00001051,NULL,'F4VYLXAKCZT6ZiFgeaGeZEJQMhDJ9FqrRf','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (588,639,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (589,452,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (591,641,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (592,413,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (593,458,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (594,559,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (595,642,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (596,643,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (597,644,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (598,645,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (599,646,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (600,647,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (601,514,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (602,648,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'Q1YdWWRJWeeqCn3t199yhGhKGxhPZLp6rE',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (603,349,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'EhATLDaYRBZYBL7zZrU2hxDDtpAAgSS8Rj',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (604,649,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'CUnyujP9CNanDdjULkQdF2A8Yr3vaAKVL3',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (605,650,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (606,651,72,NULL,0,0,0.1,NULL,0.00050107131288111,0.00050481089953549,'dXXRCvZYEWjE6urRZGGc5LTntEZUQLokyo','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (607,652,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (608,538,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'DRQxqqep3K86tqR4cVU8TLNWR6JtpdceB4',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (609,653,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'DSgBJqSSGbexgWY8TtWFSS6X6t5czijLSx',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (610,654,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (611,655,139,NULL,1433366201,0,0.1,NULL,0,0.000000145,'ehRwjbZG4Npbtm67JTq15auaexu2ZbbYjY','Maintenance','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (612,424,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (613,656,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (614,596,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'EdKLCGYhhcpx7sxeXHaBRzyAA49qYnPGM5',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (615,657,69,NULL,1429559550,0,0.1,NULL,0.0000030067202229327,0.0000032019622727937,'EqrTHCiLbDEGZgbPuDQHoY2tZce9BnTBrz','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (616,524,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (617,658,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'EcjLYL9yZzWfJ7UXSPjFhCKodjDh6AGTjS',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (618,498,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (619,659,138,NULL,0,0,0.1,NULL,0,NULL,NULL,'Maintenance','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (620,507,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (622,660,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (623,661,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (624,564,39,NULL,0,0,0.01,NULL,0.00000524,NULL,'19k2MeWpW27Cx7Lw9mgWEvtJFeg1LJeVtu','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (625,662,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'F8invZJh3fVXRt64HixL99mUNvYg7chmtD',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (626,663,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'g17btAfKC2yCk8o6bPvAcm6a6QLMoKKQ32',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (627,503,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (628,664,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'gQHaJ8yBL9ckEaH7WmkM2AipgS7gKofTXu',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (629,665,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'7DoAQkKZ6Mhau1DohwgrNqMtr6SZQFGwH9',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (630,666,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'EDidRdmUcX7BS2dgyPArJ7bTYBLM5MtMma',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (631,667,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (632,668,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'7GFTwddmLn72i3J7wNCFoKhAreLxR6Fxg8',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (633,466,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (634,669,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (635,500,281,1434520236,1434522300,0,1,NULL,0.0000079999990272,0.000008220039168,'H7he4uZrQg4T9Tjj8DpDeRWeQjKRYGe4xy','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (636,670,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'EpyiJBkSh23F7eErpfWKPNP6dQuQjhVAVn',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (637,671,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (638,312,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (639,672,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (640,571,59,NULL,0,0,66400,NULL,0.00000012039946752,0.00000012539973376,'iEiqieF4rhcdMgDV6QDyCSYkgyKRQ6B6v4','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (641,488,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'iTwhdaEJZnXB1jNvnm3iWL1pMBXLVUUJ2w',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (642,673,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (643,192,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (644,674,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (645,474,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (646,675,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'KykpCJRTmb5s9wuA2sFWKPFh6qdo6xE5if',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (647,480,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (648,676,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'Z2gdGj6ktm5kvQsDJV8EggfuEefAAjRiwp',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (649,677,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (650,678,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (651,679,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (652,680,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'LCBXDQy7Ap2pUEBvTdDyNadxWzKH8SqCMf',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (653,681,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'LPTwd5oYprE5MGpWa8KTs2x79X5EjMKQvV',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (654,513,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'LPj3RA18MZiNVXkfSvVa9qr7myea2pxNmw',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (655,682,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'LRPopGZgk23qYawkgfcHsSQaEFBKPpFGiN',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (656,492,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (657,683,177,1424928383,1424930912,0,500,NULL,0.00000006,NULL,'LWwBKENQVr4fz7yJcDsSVv9zi7Zz87cjpw','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (658,491,152,NULL,0,0,0.4,NULL,0.000017339424,0.000017624712,'mJHwQNDKozf9VtCN8AF55D3vVpUxKh2HXp','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (659,684,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (660,464,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (661,574,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (662,359,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (663,685,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'MX48PqSQuCAZSdaVZ6nsStacFngBjoj17o',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (664,273,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (665,421,200,1434501377,1434502609,0,0.3,NULL,0.00000024,0.000000245,'MTP8kCz837Whv21SBEe5ZbrDNQiHTxNAmM','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (666,686,164,1434502993,1434522307,0,0.1,NULL,0.0000006700800256,0.00000067604161536,'MP3mCpSdasyzL25nKs4rvrhciegHhaVp4L','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (667,687,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (668,439,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (669,475,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (670,688,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (671,689,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'NhCtdDPvMiiNrdwCvbGz8eahBaeJcPvAji',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (672,528,134,NULL,1425363880,0,50,NULL,0.0000016,NULL,'nHi5UXWBkhKpETYvpC3cM1hnyWsJxhPQZ3','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (673,577,29,NULL,0,0,0.5,NULL,0.0014070628959289,0.0014295284120817,'NDTkhJPmvYXgWm63bsEfxD2eaANLaLaSjh','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (674,431,264,1425440079,1427129711,0,30,NULL,0.00000008,NULL,'9YCdo96Bvrtztiw299KtqW8gBCvyt55pRX','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (675,690,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (676,691,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (677,419,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (678,692,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'KK3zBLpiKZeD2whaSYjxod27cUhoAT76Gf',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (679,523,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (680,579,75,NULL,0,0,0.1,NULL,0.000038010000512,0.00003884500025856,'oLn2QetM8XNxWqEHsQzkXcqzDJe1rxEy5B','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (681,693,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (682,694,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (683,695,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (684,585,28,NULL,0,0,5,NULL,0.0013675190621547,0.0013851327647486,'P9BXAicXegeCNNje9fEfoZwqU6sSwghAPZ','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (685,696,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (686,697,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (687,698,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (688,418,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (689,506,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (690,699,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (691,700,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (692,462,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (693,701,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (694,702,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'sV6b6J7ACvcik8voDqhwwt2SnDTiK1jJbq',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (695,489,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (696,438,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (697,508,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (698,703,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (699,704,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (700,705,158,NULL,0,0,0.1,NULL,0.00000235999999488,0.00000242999999744,'SNSi3Q1fuf3QiyXsCeP44PgnAS71nmfegH','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (701,706,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (702,707,180,1424796518,1425127974,0,4,NULL,0.0000012,NULL,'Sfw1hLkgUav2GzHRfebZ9tJm65kfNPrm13','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (703,708,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (704,709,291,NULL,0,0,0.1,NULL,0.00000081,0.00000082999999994266,'SZr48YW4uPKrPFxeF8Q39zsR4tKo6iyES2','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (705,710,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'sUi5LUwxGtDuKPCvKnFhoN31Tt5HdjnbKT',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (706,411,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (707,257,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (708,587,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (709,442,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (711,712,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (712,713,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (713,714,130,1431862314,1432384426,0,0.1,NULL,0.000001,0.0000010148003200059,'tMqK54399EnHHtPwGGx5yzwoUE4iSjX1VT','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (714,515,448,1434260080,1434264293,0,0.1,NULL,0.000001462,0.000001481,'19NqhPvEsMfi789LWfvHhtGktUKKZKfqGX','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (715,715,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (716,716,27,1431057041,1431070644,0,0.8,NULL,0.000036953804506053,0.00003725615906875,'1PXUeYqgwg9ii7xtaJ9pDQXyB2j1FB9cXR','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (717,717,203,NULL,1430593865,0,0.02,NULL,0.000060592930530381,0.000062540717803783,'1FYbXv17HtejsTi1LVrHkfregvuJXZ62Pd','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (718,485,133,1433969265,1433975437,0,0.01,NULL,0.0099000000153855,0.010069990403404,'uX236b6d3NVb6CD5igNcp5YNPU3rbU4SrG','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (719,718,201,NULL,1431794593,0,0.1,NULL,0.00000022,0.000000225,'GQeuJRw3en3XCbZhqBgCw3ntHndfyuusGt','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (720,422,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (721,525,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (722,290,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (723,455,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (724,440,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (725,430,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (726,510,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'SSG5Dbdq8txWKpdWv64eKny7RbhCpn4oey',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (727,445,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (728,511,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (729,719,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (730,720,115,1434524348,1434523926,0,0.1,NULL,0.0000018883992576,0.0000019137996288,'JKSx8Jmc4qqsJFg3uEsRqH6DREaLBDWkR7','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (731,721,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (732,591,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (733,409,466,NULL,0,0,0.1,NULL,0.00221338,NULL,'PGazkSevVdCQsBF1v72yGXCjvha49EW9v6','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (734,268,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (735,476,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (736,470,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (737,722,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (738,723,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (739,724,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (740,725,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (741,478,85,1434512992,1434522334,0,0.3,NULL,0.000022125999763498,0.000022553959881795,'ZS34vY53xTnGcU2hYmmNGRw64U43YjvLkf','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (742,726,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (743,727,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (744,728,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (745,729,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (746,730,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (747,731,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (748,732,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (749,425,206,1431864148,1431865569,0,0.1,NULL,0.00000005,0.000000055,'7HKyYkv18xhqeRDqq8pAf1hXL9b5cvQWLY','','cryptsy','LTC');
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (750,733,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (751,734,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (752,735,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (753,736,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (754,570,458,1434803418,1434205529,0,0.1,NULL,0.00000068039055257561,0.00000068539368855657,'HLcpp44SrTteB6zYpZF4U8CHKcvvJgszFi','','cryptsy','LTC');
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (755,573,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (756,737,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (757,738,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'M6F98y4LVrp4S8s39LrGi9YcuwVegV6raM',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (758,739,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (759,740,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'KFV4qR3m6DtJqvyJ6q3G9sYtb9aipWPC8v',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (760,575,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (761,741,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (762,742,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (763,743,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (764,744,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (765,745,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (766,746,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (767,747,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (768,319,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (770,522,NULL,NULL,1434524749,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (771,523,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (773,524,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (774,525,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (775,240,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (778,244,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (780,373,NULL,1431646907,1431792579,0,0.2,NULL,0,0.00000066999846051791,'CP56KCuzq5PzrjHDUrAskDPXuhsSsoJxpw','Wallet to be removed on 6/5. Please withdraw all funds immediately.','bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (782,257,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (783,260,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (786,529,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (787,530,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (788,290,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (789,265,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (790,270,NULL,1419454397,1419509525,0,0.2,NULL,0.00006025,NULL,'LabhAKDAUNnycrUoMboReLhBMJQryLRQxy',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (792,532,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (794,273,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (797,306,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (798,247,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (799,533,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (804,309,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (810,541,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (812,320,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (813,327,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (814,330,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (815,363,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (816,335,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (818,323,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (819,338,NULL,1434802607,1434524749,0,0.2,NULL,0.00000003,0.000000035,'BtJEv7KQnDo2tcmeMjoc8zDKGuBTHri2AT',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (820,544,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (824,251,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (826,354,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (827,547,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (829,360,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (830,361,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (831,362,NULL,1431018772,1431049417,0,0.2,NULL,0.00000034,0.000000350040000512,'B4j24C2GdN4Z1wwfHVwrqN5uqmiSrN5tAt',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (833,364,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (837,301,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (838,550,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (839,295,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (842,382,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (843,388,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (844,391,NULL,1427815850,1427828348,0,0.2,NULL,0.00001142,NULL,'BAXXmoX8Uep5r8BuhaoX6sBv2jQnNNHu9Z',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (845,387,NULL,1420824179,1420898418,0,0.2,NULL,0.00000007,NULL,'MHs6ZmpSxumqUCAZYomYGjLq2xbS1U1Qfu',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (847,402,NULL,1420224026,1420248127,0,0.2,NULL,0.00000691,NULL,'EbH6iWqFcARW6oLrTMsTxmkcoQGFe8rufV',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (848,410,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (849,385,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (850,412,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (851,409,NULL,NULL,0,0,0.002,NULL,0.00224601,NULL,'P8gj2STGt495NgfvdeEjCUCAvpF3Tk6dCP',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (852,415,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (853,416,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (856,749,NULL,1424858495,1424875084,0,0.2,NULL,0.00000002,NULL,'bbkikS5xDntcYywr324xdrCZDwDPZ6hbBQ',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (857,268,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (860,596,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (861,752,NULL,1426219841,1426401291,0,0.2,NULL,0.00000005,NULL,'VuaKKKaUtP6EugX5o3UZ4jshbJnrFa7VyQ',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (862,753,NULL,1431737811,1434524746,0,0.2,NULL,0,0.0000017150000061396,'GQoB5cEDtuqdYvn85DEyP4mMEhAWERt4CG','Wallet to be removed on 6/5. Please withdraw all funds immediately.','bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (868,757,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (870,758,NULL,1431865122,1431865560,0,0.2,NULL,0,0.00000028488812799181,'UibRkfVi3L8kMGGV14EmuWwkJd9NwowNET','Wallet to be removed on 6/5. Please withdraw all funds immediately.','bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (871,413,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (875,760,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (876,760,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (877,760,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (878,761,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (881,764,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (882,765,NULL,NULL,0,0,NULL,NULL,0.000003,NULL,'PE1UTACg2jtCjwpqN7DtmgggAkJL3D6bNN',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (885,768,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (886,767,NULL,NULL,1421263146,0,0.2,NULL,0.00005313,NULL,'GgjvLysC72rvVXqfMZwysnpujc3GuKzNHH',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (887,769,NULL,1421419096,1421420072,0,0.2,NULL,0.00009004,NULL,'BDzFNYXDsYZHh6YUfRvnaceELdfG9bWbNM',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (889,770,NULL,1424855458,1424859403,0,0.2,NULL,0.00000048,NULL,'5oyjn1ccWeRtmBC75pcjQoEGmC5JmxS41A',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (890,771,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (892,686,NULL,1434414916,1434500156,0,0.2,NULL,0.000000680000001024,0.0000006999997435904,'MVT3ndk3qoNY1ZSJhbSJLe7vhoQuVhaE9B',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (893,773,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (894,766,NULL,NULL,0,0,0.2,NULL,0.00000751,NULL,'EU9qf8h7pKDm8FuTjZEhEE4GoawKaRajrw',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (896,775,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (897,776,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (898,777,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (899,710,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (900,778,NULL,NULL,1434524782,0,NULL,NULL,0.00029001,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (901,327,NULL,NULL,1434524782,0,NULL,NULL,0.00000031,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (902,779,NULL,NULL,1434524782,0,NULL,NULL,0.00000023,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (903,780,NULL,NULL,1434524782,0,NULL,NULL,0.00000029,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (905,450,NULL,NULL,1434524782,0,NULL,NULL,0.00009326,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (906,781,NULL,NULL,1434524782,0,NULL,NULL,0.00000009,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (907,782,NULL,NULL,1434524782,0,NULL,NULL,0.00000026,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (909,760,NULL,NULL,1434524782,0,NULL,NULL,0.00006821,NULL,'BGGvGWRkjKczMgh3Jkf9SYtDr33U51PAdi',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (910,320,NULL,NULL,1434524782,0,NULL,NULL,0.00009976,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (912,398,NULL,NULL,1434524782,0,NULL,NULL,0.00008187,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (913,371,NULL,NULL,1434524782,0,NULL,NULL,0.00002025,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (914,512,NULL,NULL,1434524782,0,NULL,NULL,0.00000155,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (915,783,NULL,NULL,1434524782,0,NULL,NULL,0.00000151,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (916,452,NULL,NULL,1434524782,0,NULL,NULL,0.00004174,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (917,784,NULL,NULL,1434524782,0,NULL,NULL,0.00002321,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (918,785,NULL,NULL,1434524782,0,NULL,NULL,0.00005055,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (920,413,NULL,NULL,1434524782,0,NULL,NULL,0.00663315,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (921,786,NULL,NULL,1434524782,0,NULL,NULL,0.00017972,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (923,441,NULL,NULL,1434524782,0,NULL,NULL,0.000031,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (924,788,NULL,NULL,1434524782,0,NULL,NULL,0.00000043,NULL,'CSXZ7DYi1hSvTw2ShDu6jd7KucHQqqF6s9',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (925,789,NULL,NULL,1434524782,0,NULL,NULL,0,NULL,'DLZr1tum1uJYLYQbPWEbCfnffMtZHkJBg7',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (926,146,NULL,NULL,1423352890,0,NULL,NULL,0.00000082039676928,0.000000825396845056,'DCEmwnNsBqvKxbHBBcF1P12AVPJpYBGs3t',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (928,790,NULL,NULL,1434524782,0,NULL,NULL,NULL,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (929,596,NULL,NULL,1434524782,0,NULL,NULL,0.00000054,NULL,'EYiPscbgHAVodLX8Ck8zfmVqqBGApH5vJX',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (930,356,NULL,1428451866,1434524782,0,NULL,NULL,0.000001599999988736,0.000001604999993856,'EQrTh3PK5USEsK9Do3JqB9hR6jHhakj9Cq',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (931,507,NULL,NULL,1434524782,0,NULL,NULL,0.00066038,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (932,791,NULL,NULL,1434524782,0,NULL,NULL,0.00000048,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (933,660,NULL,NULL,1434524782,0,NULL,NULL,0.00000083,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (934,661,NULL,NULL,1434524782,0,NULL,NULL,0.00001799,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (935,792,NULL,NULL,1434524782,0,NULL,NULL,0.00000206,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (937,794,NULL,NULL,1434524782,0,NULL,NULL,0.00005403,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (940,795,NULL,NULL,1434524782,0,NULL,NULL,0.3,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (942,796,NULL,NULL,1434524782,0,NULL,NULL,0.000001209199993856,0.000001279599995392,'Fgs9taCLxgfiGuHFFGVtDLZ4FxgRKL8xqf',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (943,797,NULL,NULL,1434524782,0,NULL,NULL,0.00000003,NULL,'HUckuwLDVpmuvuB9XF6hsG2LH78My1Ur35',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (944,401,NULL,NULL,1434524782,0,NULL,NULL,0.00000615,NULL,'H78HqrXHySQxVsP3ZuCRJNDvNpyaG5Lc5H',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (945,312,NULL,NULL,1434524782,0,NULL,NULL,0.00000133,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (946,798,NULL,NULL,1434524782,0,NULL,NULL,0.00000115,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1628,1065,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (948,799,NULL,NULL,1434524782,0,NULL,NULL,0.00012674,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (949,800,NULL,NULL,1434524782,0,NULL,NULL,0.00000058,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (950,155,NULL,NULL,0,0,NULL,NULL,0.012184481913457,0.01220279680754,'LX2iqd912KBzgTmZ3YGde2PY1HKLdgi6Rr',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (951,801,NULL,NULL,1434524782,0,NULL,NULL,0.00008689,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (952,802,NULL,NULL,1434524782,0,NULL,NULL,0.00000082,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (953,803,NULL,NULL,1434524782,0,NULL,NULL,0.00001743,NULL,'MSnG9M8kofSTrKZVA7G6tT2yzdnhkiYUeU',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (954,574,NULL,NULL,1434524782,0,NULL,NULL,0.00000005,NULL,'MYuU32JQStJr31Cmpy1pvCAzt8vKr9Amid',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (955,804,NULL,NULL,1434524782,0,NULL,NULL,0.00000477,NULL,'MGKFtrig7YRLqNjYVQYbsG5aHkh9DFZ4tn',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (956,805,NULL,NULL,1434524782,0,NULL,NULL,0.000049,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (958,806,NULL,NULL,1434524782,0,NULL,NULL,NULL,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (959,807,NULL,NULL,1434524782,0,NULL,NULL,0.00000083,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (960,607,NULL,NULL,1434524782,0,NULL,NULL,0.00620761,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (961,421,NULL,1428642406,1434524782,0,NULL,NULL,0.000000259999998976,0.000000264999998976,'MBxBdMhHBAt4t7gtf7dwmzQ9uCcBTMfafF',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (962,439,NULL,NULL,1434524782,0,NULL,NULL,0.00004799,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (963,475,NULL,NULL,1434524782,0,NULL,NULL,0.00002104,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (964,808,NULL,NULL,1434524782,0,NULL,NULL,0.0041996,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (965,502,NULL,1432803047,1434524782,0,NULL,NULL,0.00002540000080384,0.000026180000438784,'Nbq8UZHmtC6tJYEMM7QPygGz43gbKPXdbC',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (966,577,NULL,NULL,1434524782,0,NULL,NULL,0.00142,0.001435,'MxSKhuGWJTeDnzbDLAiywc2Z8aGbek5vE2',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (967,431,NULL,1425472701,1434524782,0,NULL,NULL,0.00000008,NULL,'9fVUbjq9bN6agp6B2PAuBW2EjsZjyCq6ht',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (968,154,NULL,NULL,1434524782,0,NULL,NULL,0.00004531,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (969,809,NULL,NULL,1434524782,0,NULL,NULL,0.00017201,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1653,1074,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (971,810,NULL,NULL,1434524782,0,NULL,NULL,0.00006005,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (972,523,NULL,NULL,1434524782,0,NULL,NULL,0.00002292,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (973,811,NULL,NULL,1434524782,0,NULL,NULL,0.00000009,NULL,'pWgHGambSFaNdmbvtzP6rMuUXTMxyVAqdD',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (974,487,NULL,NULL,1434524782,0,NULL,NULL,0.00000036,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (975,142,NULL,1428641263,1434524782,0,NULL,NULL,0.000005620000082553,0.0000056650001085932,'PHSPyGTDgr75j4cvgcd98cUrPTVuikRDWG',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (976,585,NULL,NULL,1434524782,0,NULL,NULL,0.0013156711733939,0.0013469972641435,'PVJ896VrtcaYpiLiociNQhxTx7Sg6RB4BV',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (977,812,NULL,NULL,1434524782,0,NULL,NULL,0.00000087,NULL,'QSiX1wfBwFzJmYtV6D5PDZBoiRoj7ez2Xa',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (978,697,NULL,NULL,1434524782,0,NULL,NULL,0.00000089,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (979,314,NULL,NULL,1434524782,0,NULL,NULL,0.00012501,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (980,469,NULL,NULL,1434524782,0,NULL,NULL,0.000015580736714752,0.000015914622434849,'QM28uVbeRv212papTTiNUtvhPTHLUyXL6K',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (981,153,NULL,NULL,1434524782,0,NULL,NULL,0.00001298,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (982,418,NULL,NULL,1434524782,0,NULL,NULL,0.00000005,NULL,'RveJiDDjJLNT7NdybQGEzPmkkutfaGoH4L',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (983,813,NULL,NULL,1434524782,0,NULL,NULL,0.0000124,NULL,'RQpAJD9myjBDZDmccpBgQK1RPFUcAfjg5n',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (985,704,NULL,NULL,1434524782,0,NULL,NULL,0.00000064,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (986,814,NULL,NULL,1434524782,0,NULL,NULL,0.00006407,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (987,815,NULL,NULL,1434524782,0,NULL,NULL,0.000013,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (989,499,NULL,NULL,1434524782,0,NULL,NULL,0.000003,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (991,817,NULL,NULL,1434524782,0,NULL,NULL,0.00004681,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (992,442,NULL,NULL,1434524782,0,NULL,NULL,0.3122371,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (993,390,NULL,1423703964,1434524782,0,NULL,NULL,0.00000163,NULL,'SUQ4yUgjrMsDozU8n3gWrkk2qGApYeDMLm',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (995,758,NULL,1428678829,1434524782,0,NULL,NULL,0.00000040015744,0.0000004051970903145,'UeStRMDf8K4c5whStCQLD3gSU1XYpPMD32',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (996,389,NULL,1423660863,1434524782,0,NULL,NULL,0.00001301,NULL,'UWeXvngi2fMJ9tNdcN4kVg8EZjSqtUvijG',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (997,818,NULL,NULL,1434524782,0,NULL,NULL,0.010802,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (998,77,NULL,NULL,1434524782,0,NULL,NULL,0.00055902198744636,0.00059028812789286,'UR8739y6fFy74NEqdV9JnTubsQ2qNXof7G',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (999,374,NULL,1422778258,1423598296,0,NULL,NULL,0.00004435161469526,0.000045576000246443,'VsvpSeHUKPJc1uPN27WPp21dWL9f5qcSU3',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1001,346,NULL,1428336986,1434524783,0,NULL,NULL,0.0008000401325558,0.00083204110215238,'Vq5jM6UMmmwMvGfuMQbvk1to3JotNZ1TCj',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1002,399,NULL,1428322427,1434524783,0,NULL,NULL,0.000063291871155326,0.00006422710802297,'WUCLkrEmBvEBEZ5YoCJosj77qRZ9HhdmGP',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1004,820,NULL,NULL,1434524783,0,NULL,NULL,0.0000351,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1005,821,NULL,NULL,1434524783,0,NULL,NULL,0.00117501,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1006,445,NULL,NULL,1434524783,0,NULL,NULL,0.00009802,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1007,822,NULL,NULL,1434524783,0,NULL,NULL,0.00000086,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1008,823,NULL,NULL,1434524783,0,NULL,NULL,0.00000069,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1009,824,NULL,NULL,1434524783,0,NULL,NULL,0.00430013,NULL,'1GcRarLAbKKrGQJcrgET1ac7EExBqckArL',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1011,463,NULL,NULL,1434524783,0,NULL,NULL,0.00000031,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1012,825,NULL,NULL,1434524783,0,NULL,NULL,0.00010006,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1013,251,NULL,NULL,1434524783,0,NULL,NULL,0.00009012,NULL,'9JWAFEdb7ByBxtXS5LSz4QV2n55JQsmxG8',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1014,457,NULL,NULL,1434524783,0,NULL,NULL,0.00339875,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1015,591,NULL,NULL,1434524783,0,NULL,NULL,0.00008556,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1016,268,NULL,NULL,1434524783,0,NULL,NULL,0.00003583,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1017,476,NULL,NULL,1434524783,0,NULL,NULL,0.00001556,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1018,826,NULL,NULL,1434524783,0,NULL,NULL,0.00390001,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1019,827,NULL,NULL,1434524783,0,NULL,NULL,0.00000001,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1023,830,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1027,834,NULL,NULL,0,0,NULL,NULL,0.00000085999999999345,0.0000010499999999967,'QMnPXPZV2sYpoj3g74RSAdrPhQLWpypsq7',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1030,837,NULL,NULL,1434524783,0,NULL,NULL,0.00000251,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1031,838,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1033,839,NULL,1422894873,1422895044,0,0.02,NULL,0.00000815,NULL,'9NkSAhMJVYRNLG68w7Bg9iHxPeKEuqohud',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1036,798,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1038,843,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1040,844,NULL,1434510428,1434518266,0,NULL,NULL,0.000094408000104448,0.000098199000152064,'AUEatM5uVdpciCtEbyistxcaxBYiiyz2aM',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1041,845,NULL,NULL,1434524782,0,NULL,NULL,0.00795404,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1627,1064,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1675,1089,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1044,406,NULL,1428611245,1434524782,0,NULL,NULL,0.000000420000001024,0.000000425000001024,'DKdxVi4W92LNfE799DjCNy3RCZW67uFG2k',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1045,848,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1046,847,NULL,1424831798,1424833376,0,0.2,NULL,0.000002,NULL,'FKt8vwoWburnEDLiZ6PmS9Nq1qSa3aXQgV',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1047,849,NULL,NULL,0,0,NULL,NULL,NULL,NULL,'5ZnHbdR58uPQJ9VA8YvZ1HLeq92W3G21vM',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1048,824,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1049,850,NULL,NULL,1429477848,0,0.2,NULL,0,0.00000086907942754903,'pGuUQsRgYcvzFgYE5L3hWH3yt4oWDn1qqn',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1050,607,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1051,814,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1054,852,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1056,854,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1058,856,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1059,768,NULL,NULL,1434524782,0,NULL,NULL,NULL,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1060,415,NULL,NULL,1434524783,0,NULL,NULL,0.00054907,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1061,857,NULL,NULL,0,0,NULL,NULL,0.00000001,NULL,'WdSzn2fRqDgq5epBBh3uvuQpkRGvjeC3Ti',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1062,858,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1064,859,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1065,717,NULL,NULL,0,0,NULL,NULL,0.000014660000005159,0.00008507500000258,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1069,770,471,1424854056,1424873645,0,0.1,NULL,0.00000048,NULL,'5fyko8RVMWvk5fi39fGCVnYfKpGifdA1zH','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1070,860,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1071,854,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1073,839,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1074,415,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1075,561,470,1434803416,1434516584,0,0.1,NULL,0.00000005,0.000000055,'DEK67GB4cXZW87zzr4Qtg6EppnYyvbTfxk','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1076,862,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1077,859,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1078,846,NULL,1428667309,1434524782,0,NULL,NULL,0.000093030075020288,0.00010020305219267,'GHvK4mgogNko3LeAChboTa67BLaxMZUH72',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1080,601,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1081,864,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1082,561,NULL,1433930064,1433931225,0,0.2,NULL,0.000000040000001024,0.000000045000001024,'DCkU28QwXUwHQFA8epi4aZWbY7Pzn9awaT',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1083,846,NULL,1434803423,1434524746,0,0.002,NULL,0.000099652238114816,0.0001025941183376,'GXLTDJ4DjFAqffuo8mctR7uxd2AmrRtsFo',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1085,866,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1088,869,NULL,NULL,1434524782,0,NULL,NULL,0.00001303,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1090,791,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1093,872,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1097,868,NULL,NULL,1424963698,0,0.2,NULL,0.00000894,NULL,'GfH6Fe2CwAp7pD6A3UYrCLgtvxFngkRHTw',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1098,873,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1099,794,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1102,601,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1105,876,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1106,877,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1107,877,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1108,878,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1110,877,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1111,876,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1114,879,NULL,NULL,0,0,0.2,NULL,0.00001373,NULL,'iMLD1LijfYZFxHD6UkLgwkaRd1XRyDa8tZ',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1115,871,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1116,870,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1117,880,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1119,417,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1121,364,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1122,417,NULL,NULL,1434524782,0,NULL,NULL,0.00000353,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1123,881,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1124,882,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1125,883,NULL,1426643038,1434524746,0,0.2,NULL,0.0000026,NULL,'AbSgLgkuVAaLFDZBDwCP2ioFPEJ134FSrg',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1126,884,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1127,885,NULL,NULL,0,0,NULL,NULL,0.00000005,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1131,885,NULL,NULL,0,0,2,NULL,0.00000005,NULL,'dbMcwHc6KgKj1eUtWyHfKY65nj9Ydhq3AF',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1132,887,NULL,1434524349,1434515781,0,0.2,NULL,0.0000098679601270349,0.0000099851803081996,'oeGK8CTN9WZh4ro1FZL4QamuKS8ysCAyVF',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1135,889,NULL,NULL,0,0,NULL,NULL,0.00000235,NULL,'BGcgkCaatWnLkQmr5xZAP1qzzDbJd5pJ5g',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1136,890,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1137,891,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1138,891,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1139,892,NULL,NULL,1429586905,0,0.002,NULL,0.000000162,0.00000019079999948803,'62dpXowqVzdo3xmnhfWLHqrLMa57BntrnQ',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1140,893,NULL,NULL,0,0,0.03,NULL,0.011312402094011,0.011905546796138,'XyqMbeinjaZ9ePLzx8z5L9yEjQk8WSMgLA',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1141,893,155,1434380602,1434384273,0,0.4,NULL,0.011660774229936,0.011694104127139,'XfK2rWAqMtfcjmdvM6AXB68DA8uYxQUs2D','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1142,890,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1143,894,NULL,NULL,0,0,2,NULL,0.00000002,NULL,'12HWRGZoeB972UHwjczx5s3Zw8mgjkqknF',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1144,893,NULL,1428665177,1434524782,0,NULL,NULL,0.011764991591355,0.011805555610918,'XpSbd5eJdKx6prriRGUDqRZ24DbfrU7Kvr',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1145,893,NULL,NULL,0,0,NULL,NULL,0.011251259999892,0.011575610004454,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1146,895,NULL,NULL,0,0,NULL,NULL,0.00000082,NULL,'iRb4hTVTtVLZpsVuyMYJPiqe2DFLXta8XQ',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1147,896,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1148,893,NULL,1434802685,1434500989,0,0.002,NULL,0.011796406323888,0.011816295166392,'XggFJN4fx3YwYRv3KStBwFFoJpjURFpaUV',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1149,865,NULL,NULL,0,0,NULL,NULL,0.000001,0.000005,'LMMBKnXYEWJCMWoMCLENqye9rKQMf8Xcuu',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1150,897,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1152,899,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1153,900,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1154,901,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1156,903,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1157,899,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1158,333,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1159,904,NULL,NULL,0,0,NULL,NULL,0.00000045192,0.00000053595968,'PFCgWAY3hmKahZUBHmEBgnjxswkWYu5Rsa',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1160,905,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1161,906,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1162,907,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1163,908,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1164,808,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1165,898,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1167,910,NULL,NULL,0,0,NULL,NULL,0.0000203,NULL,'FK25RoNeG74WxpA6YHXBH5xuTuG2ZvSWqy',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1168,911,NULL,1431689663,1433110596,0,NULL,NULL,0.0000000579999991808,0.00000021000006346342,'MMLmmUBcnkjfPwPmNYwhyj6aMB2w992AsE',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1170,910,NULL,NULL,1428935543,0,0.02,NULL,0.00002732,NULL,'FLjsq2PkJ8o89aBxRhHjG1cnwoR4HJTJoi',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1171,912,NULL,NULL,0,0,NULL,NULL,0.000036578496893279,0.000040197730034772,'EYv8Ki7ABUkRXEwf8avJtngyKgbgLwrYLc',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1172,874,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1173,913,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1174,155,NULL,NULL,0,0,NULL,NULL,0.010007943998121,0.011503975843151,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1175,577,NULL,NULL,0,0,NULL,NULL,0.00002101,0.001060505,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1176,585,NULL,NULL,0,0,NULL,NULL,0.0008,0.00105,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1177,893,NULL,NULL,0,0,NULL,NULL,0.0090010899999969,0.010740539999994,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1178,146,NULL,NULL,0,0,NULL,NULL,0.00000076800011886592,0.0000007890000559104,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1179,544,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1180,104,NULL,NULL,0,0,NULL,NULL,0.00001223,0.00001606500000512,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1181,77,NULL,NULL,0,0,NULL,NULL,0.000299999992832,0.050149999996416,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1182,523,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1183,374,NULL,NULL,0,0,NULL,NULL,0.00002499999978496,0.00004624999989248,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1184,489,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1185,190,NULL,NULL,0,0,NULL,NULL,0.00020017,0.00027258000025651,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1186,354,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1187,346,NULL,NULL,0,0,NULL,NULL,0.00032,0.00016,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1188,306,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1189,240,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1190,547,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1191,466,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1192,409,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1193,897,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1194,914,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1195,915,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1196,881,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1197,908,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1198,916,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1199,894,NULL,NULL,0,0,NULL,NULL,0.00000004,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1200,917,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1201,918,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1202,919,NULL,NULL,0,0,NULL,NULL,0.000125,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1203,885,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1204,920,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1205,921,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1206,922,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1207,923,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1208,493,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1209,868,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1210,867,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1211,875,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1212,854,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1213,876,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1215,889,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1216,852,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1217,924,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1218,891,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1219,899,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1220,387,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1221,413,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1222,925,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1223,907,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1224,911,NULL,1429824397,1434524792,0,NULL,NULL,0.00000001,0.00000008,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1225,926,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1226,154,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1227,418,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1228,910,NULL,NULL,0,0,NULL,NULL,0.00001919,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1229,333,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1231,892,NULL,NULL,0,0,NULL,NULL,0.00000006,0.00000021,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1232,927,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1233,928,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1234,890,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1235,895,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1236,896,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1237,929,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1238,930,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1239,906,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1240,931,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1241,932,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1242,606,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1243,583,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1244,385,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1245,383,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1246,764,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1247,933,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1248,765,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1249,448,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1250,767,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1251,433,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1252,747,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1253,772,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1254,410,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1255,475,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1256,416,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1257,766,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1258,771,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1259,390,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1260,713,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1261,759,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1262,530,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1263,762,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1264,934,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1265,935,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1266,756,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1267,844,NULL,1431437814,1431543768,0,NULL,NULL,0.00008201,0.00009433,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1268,846,NULL,NULL,0,0,NULL,NULL,0.0000399999995904,0.0005199999997952,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1269,406,NULL,NULL,0,0,NULL,NULL,0.0000003800000051198,0.0000004150000025599,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1270,847,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1271,723,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1272,453,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1273,849,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1274,187,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1275,936,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1276,561,NULL,NULL,0,0,NULL,NULL,0.00000005,0.000000055,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1277,855,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1278,905,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1279,382,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1280,769,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1281,361,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1282,937,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1283,831,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1284,938,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1285,516,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1286,828,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1288,835,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1289,857,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1290,939,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1291,940,NULL,NULL,0,0,NULL,NULL,0.00035,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1292,940,NULL,NULL,0,0,NULL,NULL,0.000375,NULL,'PXGNkCVPcxEn4Tw8G4Gpf6mQkpTNLxPiV3',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1293,941,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1294,942,NULL,NULL,0,0,NULL,NULL,0.00001152,0.000019760000002228,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1295,910,482,NULL,0,0,0.1,NULL,0.00002601,NULL,'FCHkaxycWKpeKcPPBQTLg5UzoDU9BK1g2D','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1296,393,479,1434488679,1434505880,0,0.1,NULL,0.00063993340800003,0.00064409862982438,'MUFitUSKHekfs222htGJvwmLjxWRe4G8kD','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1297,190,480,1434802586,1434524764,0,0.1,NULL,0.00028001645912253,0.00028567959107346,'sff2vn9PYXHtnAw1KtABCqnLhzWD1B4a1E','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1298,769,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1299,940,NULL,1428985738,1428986353,0,0.02,NULL,0.00043,NULL,'PH41T9WS2w1JkY24Vy3SFBa92ATCorxrzF',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1300,943,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1301,880,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1302,913,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1303,944,NULL,1431863233,1434524790,0,NULL,NULL,0.00000003,0.000000037,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1304,941,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1305,479,NULL,NULL,1434524782,0,NULL,NULL,NULL,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1306,941,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1307,945,NULL,1431022850,1431865590,0,NULL,NULL,0.00000004,0.000000385,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1308,260,NULL,NULL,1434524782,0,NULL,NULL,NULL,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1309,945,NULL,1431864157,1433036876,0,NULL,NULL,0.00000009,0.000000195,'HUnoqE6bpjQ9jzxu9meorPUbTYniDF3oqG',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1310,890,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1311,940,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1312,873,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1313,946,NULL,NULL,0,0,NULL,NULL,0.00000102,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1316,946,NULL,NULL,0,0,2,NULL,0.00000179,NULL,'PCStuBgBLxZKWXY1V5erW8EVDwzxGdekR8',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1317,947,NULL,1432922842,1432923331,0,NULL,NULL,0.000051069997853491,0.00009549999736201,'iQTdpxGuYA9TUAeC2RzEGREc4NqK27p1s7',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1318,948,NULL,NULL,0,0,NULL,NULL,0.002154,NULL,'8Qnu4ZrGwmpNrk9Rt8KzwANo3h25x3ZRh9',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1319,949,NULL,NULL,0,0,NULL,NULL,0.00000072,NULL,'PLTwKvqySifCDMkNHEmfkuXsbUfH6p7Tbi',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1320,948,NULL,NULL,0,0,NULL,NULL,0.00150002,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1321,950,NULL,NULL,0,0,NULL,NULL,0.000003000000768,0.000006435000384,'1GQ5esgerNwgB6G4UA1RKLR28zrzhdFZDe',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1322,951,NULL,1431791086,1431865591,0,NULL,NULL,0.000375,0.000587495,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1323,948,NULL,NULL,1429408966,0,0.002,NULL,0.0025348,NULL,'8VtPLGFAxoLz65qHsUneKUYwnSK3FtajA2',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1324,413,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1325,952,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1326,953,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1328,955,NULL,NULL,0,0,NULL,NULL,0.000064724761599959,0.000087336612802471,'9TyQYkksumkP2tYYXtyjbywwK3ZNzH5xGV',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1329,955,NULL,NULL,0,0,NULL,NULL,0.0000806,0.00010280367994982,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1330,956,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1332,948,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1333,955,488,1429580440,1429582256,0,0.1,NULL,0.000063476712499231,0.000075083574739456,'9T7MkVs9gQKUNrgczSduhsnUHqGmYcPw4f','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1334,957,487,NULL,0,0,0.1,NULL,0.0007480288,0.0007828128,NULL,'','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1335,952,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1336,955,NULL,1429590816,1429591388,0,0.02,NULL,0.000073249441894186,0.000076650649519521,'9XMrpZE2HQR1frNYTQ6MH1TVcqPWs29erF',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1337,711,166,1431793179,1431793651,0,60,NULL,0.00000004,0.000000045,'TTteXfC5mEoQA4oNKPRk81RhAHrSfZvnCH','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1341,957,NULL,NULL,0,0,NULL,NULL,0.0007200096,0.0008832048,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1342,957,NULL,NULL,0,0,0.002,NULL,0.000749168,0.000792856,'SedshGqLfnpCFdjejdyGgKL6dk7fs9QnAM',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1343,956,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1344,959,NULL,NULL,0,0,NULL,NULL,0.00000022,0.000000225,'MHtvr5KDpYat19iMEpUzVN12bXwzTuMdms',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1345,959,NULL,NULL,0,0,NULL,NULL,0.00000022,0.00000022500000002048,'MTP8kCz837Whv21SBEe5ZbrDNQiHTxNAmM',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1346,959,NULL,NULL,0,0,NULL,NULL,0.00000021999999999988,0.00000022999998719994,'MBxBdMhHBAt4t7gtf7dwmzQ9uCcBTMfafF',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1347,960,NULL,NULL,0,0,NULL,NULL,0,0.00000028488812799181,'UibRkfVi3L8kMGGV14EmuWwkJd9NwowNET',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1610,1055,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1349,960,NULL,NULL,0,0,NULL,NULL,0.00000040015744,0.0000004051970903145,'UeStRMDf8K4c5whStCQLD3gSU1XYpPMD32',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1350,961,NULL,NULL,0,0,NULL,NULL,0.00000040015744,0.0000004051970903145,'UeStRMDf8K4c5whStCQLD3gSU1XYpPMD32',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1351,962,NULL,NULL,0,0,NULL,NULL,0.00000046,0.000000465,'DMWHAyMrsV7NeWUEyvTZNzmZ6daxEBoUpa',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1352,962,NULL,NULL,0,0,NULL,NULL,0.00000045,0.000000455,'D8oK8voASXXGzzB1s3Qp2jx2bckuTpDTAz',NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1353,962,NULL,NULL,0,0,NULL,NULL,0.00000045,0.00000046,'DKdxVi4W92LNfE799DjCNy3RCZW67uFG2k',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1354,962,NULL,NULL,0,0,NULL,NULL,0.00000031,0.000000415,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1355,963,NULL,1429738252,1429764366,0,NULL,NULL,0.00000356,0.000026769999999999,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1356,964,NULL,1430523537,1430525338,0,NULL,NULL,0.00000449,0.000006245,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1357,965,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1358,963,NULL,NULL,0,0,NULL,NULL,0.00001112,0.00002306,'8hetmZVgt9ba1gN3EJwCPgw4NpgSvYv1f2',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1359,966,NULL,NULL,1434524782,0,NULL,NULL,NULL,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1360,912,490,NULL,0,0,0.1,NULL,0.000035459999384617,0.000042729999692298,NULL,'','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1361,965,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1362,881,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1363,949,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1364,965,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1365,967,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1366,968,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1367,969,NULL,1431862329,1431865593,0,NULL,NULL,0.00000001,0.000000015,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1368,970,NULL,1430009999,1434524790,0,NULL,NULL,0.00007004,0.000094539991971185,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1369,963,NULL,NULL,1430500006,0,0.002,NULL,0.00002201,0.000029815400906776,'8x72a4y81Mmvj9KUgUTYPKiUN2dirYTWCD',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1370,886,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1372,969,NULL,1431674818,1431864759,0,NULL,NULL,0.00000001,0.00000002,'GPUmJ5bPXUKGbxHphSG31BZuUQkauHhFmr',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1373,489,NULL,NULL,1434524782,0,NULL,NULL,NULL,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1378,947,NULL,1434524349,1434523102,0,0.2,NULL,0.00004408959848447,0.000074261097814778,'iKxToHv3Rvu2h3QfK5CnrGx1hkkyoa5J4F',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1379,966,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1381,601,NULL,NULL,1434524782,0,NULL,NULL,NULL,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1382,974,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1383,975,NULL,NULL,0,0,NULL,NULL,0.00002889,0.000033188307987195,'1KfRhfbpV5v9CYLBZDTcj1XRYam6MurwX6',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1384,976,NULL,NULL,0,0,NULL,NULL,0.000022948355197672,0.000027343501202712,'RNwtV27iAxZhKdbNo8RRFcok3Vz38EAAFR',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1385,976,NULL,1430172183,1430195149,0,NULL,NULL,0.00001204,0.000017019600332512,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1387,970,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1391,978,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1392,979,NULL,NULL,0,0,NULL,NULL,0.000047039577440256,0.000050000827872484,'XFdMfCkSYWvevT7vaeYAuwwq1uaqWqfVU5',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1393,980,NULL,1431862329,1431864637,0,NULL,NULL,0.00000002,0.000000025,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1394,710,NULL,NULL,1434524782,0,NULL,NULL,NULL,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1397,981,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1398,982,NULL,NULL,0,0,NULL,NULL,0.0000756813882567,0.000087830675289554,'RSSqjHMPsDop37nUZDS28rG4XVyKjAAsdH',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1399,912,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1400,978,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1401,982,NULL,NULL,0,0,NULL,NULL,0.00005601,0.000083010008512826,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1402,983,NULL,NULL,1430399777,0,NULL,NULL,0.00000075,0.0000011251999913779,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1403,982,NULL,NULL,0,0,0.002,NULL,0.00007514364051834,0.000077670603844411,'RQQsFHi1SirvesKMqZtVKYtGeL6XeGuY47',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1404,976,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1405,984,NULL,NULL,0,0,NULL,NULL,0.000010107136075722,0.000012935215352952,'BPubGWF45xfjcavEBvd1ArMbbLAk8sLKMo',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1406,985,NULL,NULL,0,0,NULL,NULL,0.0000031,0.0000058253568,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1407,986,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1408,651,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1409,987,NULL,1431118034,1434524790,0,NULL,NULL,0.00000065999998976,0.000001799999956992,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1410,988,NULL,1430606422,1430608238,0,NULL,NULL,0.00002275,0.000025757345030349,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1411,964,NULL,NULL,1431273019,0,0.02,NULL,0.00000443,0.0000051004000384049,'5qLTafbLrmMo4VfV2M5An9oqKw7k36Y6kv',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1412,989,NULL,1430766213,1430766922,0,NULL,NULL,0.00010715592201238,0.0001085257950553,'GThJ5hxbYcfQ1YquKW3F2wkctfnBpqu7ZD',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1413,964,NULL,NULL,0,0,NULL,NULL,0.000004,0.0000065,'5xfviDK8y7gmmP1D34UZDHvNwv2rqUJmeM',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1414,990,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1416,991,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1419,766,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1420,987,NULL,1432830840,1432831308,0,NULL,NULL,0.000001659999895552,0.000001859999944704,'PPb4589U6PauFwoKYmp1kYFxanFCdK2Rjs',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1460,988,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1462,992,NULL,1431863234,1431864747,0,NULL,NULL,0.00000051,0.0000007500064,'CarYRay6chG956zk7eNRvWFRLtytZzvSzx',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1637,1071,NULL,1433877405,1433883675,0,NULL,NULL,0.000048000000728064,0.000073985001138176,'GSHaqQr7XADVnnTBx1RPvAAT1Ptju9XzzR',NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1638,1072,NULL,1434804769,1434524792,0,NULL,NULL,0.000000010000037888,0.000000130000035328,'TJTbCNDKCu7ukRn9hDawz2Fsgd8NqphuS4',NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1476,990,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1478,994,NULL,1431146575,1434524790,0,NULL,NULL,0.00015005,0.000275025,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1479,995,NULL,NULL,1430851096,0,NULL,NULL,0.00002708,0.000028340605508011,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1480,994,NULL,1431162519,1431199867,0,NULL,NULL,0.000152040049408,0.00023597424805245,'GbgtRhiujv2d9YLkX7bMrQXCavx1F7WppW',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1481,996,NULL,NULL,0,0,NULL,NULL,0.00000009,0.000000365,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1482,997,NULL,1430893619,1430894261,0,NULL,NULL,0.00007,0.000083897050548957,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1483,998,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1484,999,NULL,1431862331,1434524790,0,NULL,NULL,0.00000081,0.0000012000000000002,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1485,1000,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1486,995,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1487,999,NULL,NULL,0,0,NULL,NULL,0.0000008,0.000001595,'iDFdHK3G2rkZvcZ5QYsQo3k78mFR4sfdXN',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1488,997,NULL,NULL,0,0,NULL,NULL,0.000046664502159251,0.000072677331346888,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1489,989,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1490,993,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1491,993,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1492,1001,NULL,1431794102,1431865593,0,NULL,NULL,0.00001501,0.00001551,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1493,1002,NULL,1431515422,1433842992,0,NULL,NULL,0,0.000000005,'Ed8E7gUDPPpmST94ogsKfv6aN9hqBfuMMD',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1494,1003,NULL,NULL,0,0,NULL,NULL,0.00000055,0.00000066995712,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1495,1004,NULL,NULL,1434177512,0,NULL,NULL,0.00000505089536,0.000015713036800639,'FTmBQt3EBdvVb8YdQ1mWwJW4bvhDFScpzz',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1496,1005,NULL,NULL,1431864782,0,NULL,NULL,0.0000000799999744,0.0000000999839872,'Tv1ENiMrHPT8WGzAqCi9vF9xsmKtTbARJK',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1497,1006,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1498,1007,NULL,NULL,0,0,NULL,NULL,0.000005,0.0000064,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1499,986,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1500,1008,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1502,1009,NULL,1431488360,1432385898,0,0.002,NULL,0.000002887012658176,0.0000035985063424,'i6HKjtk15je8ihs71ZdQBeHtgYuuHjJH4F',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1503,1010,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1504,987,NULL,1434523509,1434524750,0,2,NULL,0.000001610000490496,0.000001698393837718,'PVanujK2yfHjhQKUyqW8k3huzoPhQcNWaa',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1505,979,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1506,1010,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1507,1011,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1508,898,NULL,NULL,1434524783,0,NULL,NULL,NULL,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1510,1012,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1511,1013,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1512,606,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1514,1014,NULL,1431862332,1431862800,0,0.02,NULL,0.00000035999936,0.00000038999968,'5KBju7z6tiA3zaC36ZYdKMdZo5PUAvbZV3',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1515,1015,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1516,1016,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1517,1017,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1518,1018,NULL,NULL,0,0,NULL,NULL,0.0000004,0.00000132,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1520,1020,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1521,1015,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1522,1021,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1523,1022,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1524,994,NULL,NULL,0,0,0.00002,NULL,0.00020125459135386,0.00023030975907528,'Gg39zDyr1TmNtA1BKLuPPTqtcVftbzuZwx',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1525,1010,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1527,1015,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1528,1020,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1529,486,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1530,1023,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1531,1024,NULL,NULL,0,0,NULL,NULL,0.00010003,0.00013901,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1532,1024,NULL,NULL,0,0,NULL,NULL,0.00015,0.000247495,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1534,1026,NULL,NULL,0,0,NULL,NULL,0.0000215,0.00002155,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1536,1019,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1537,453,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1538,998,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1542,1026,NULL,NULL,0,0,0.1,NULL,0.00001305,0.00002414752672,'AQmaaYxNNeYk3PVvbM8St18DkoneTaPGDZ',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1562,1036,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1563,432,NULL,NULL,1434524782,0,NULL,NULL,NULL,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1560,1035,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1543,1028,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1554,998,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1553,940,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1549,1033,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1550,1022,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1552,1034,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1547,859,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1545,1030,NULL,NULL,0,0,0.1,NULL,0.00000467,0.000010085,'2RzT49ezgss7wrMaazaJcLkXf3WzWVNgr6',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1544,1029,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1551,1012,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1548,1032,NULL,NULL,0,0,0.1,NULL,0.00000254,0.00045752,'SWpstfF2XcHMLfitzj3XHxn3AhhGgUVh5Y',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1541,1026,NULL,NULL,0,0,0.02,NULL,0.00001031919999873,0.000012074606847447,'AewSuKF6uBtfxPfHLUaeP6iUzvikM7emKu',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1540,984,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1539,1015,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1556,407,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1557,1029,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1558,1030,NULL,NULL,0,0,NULL,NULL,0.0000099712,0.000013025808090134,'2Yg3mMoDZHt6DBN4tovxGNR1EEpdNMzPJk',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1559,1001,NULL,1433273753,1433276651,0,NULL,NULL,0.00001103,0.000016505,'PV6YLFkqHkzKncNarfNeQJc2EVEi654WqU',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1555,1026,NULL,NULL,0,0,NULL,NULL,0.0000103,0.000015115,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1561,1012,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1570,1032,NULL,NULL,0,0,NULL,NULL,0.000002,0.0000032942000021914,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1574,1040,NULL,1434042045,1434523109,0,0.02,NULL,0.00000143,0.000001505120008192,'GVEmNyrssfApRWzKpbaN9bXisyUJWEMPvo',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1572,1041,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1573,1033,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1571,1040,NULL,NULL,0,0,NULL,NULL,0.00000151,0.000002005,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1569,1039,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1565,1030,NULL,NULL,0,0,NULL,NULL,0.00000601,0.00001115008188177,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1564,1037,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1566,1029,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1567,1034,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1568,1038,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1624,1061,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1591,570,NULL,NULL,1434524778,0,0.1,NULL,0,0.000000005,'HMPSE3w5stPT8AcUyxKWE69hpcDCMLdQiN',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1582,1043,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1586,1024,NULL,NULL,0,0,0.0002,NULL,0.00012301999999982,0.00015841597763673,'BwmGTYo6TH8vveSKnbkxvC5rDZbkHZMqv9',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1596,1046,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1589,844,NULL,1434802654,1434475894,0,0.1,NULL,0.000097009984,0.0001004077919232,'ASnqUrGq13aM9Efp1nzEKQaDmNY9qG4EFu',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1617,299,NULL,1433188809,1433697778,0,0.2,NULL,0.000000320800002048,0.00000033540489789523,'74eCbCfFMaPSEBYKkU2bkPKzX28cm3Tic6',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1587,1036,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1584,1034,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1608,1054,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1633,1068,NULL,1433781998,1433782550,0,NULL,NULL,0.00000986,0.000011410026560414,'CNADNASq8w1DmNTxan7B4kwMz6ZZS61spz',NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1619,1001,NULL,NULL,0,0,0.02,NULL,0.0000131591936,0.000014790172232729,'PHU7jSJB8mpmivSx69mwNCZaNzEdouGhfZ',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1618,1047,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1575,1042,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1595,346,NULL,NULL,0,0,0.1,NULL,0.00079054929159148,0.00085264285124854,'Vgccenv1jrByxNstDHp6nyV7xJF21LP1Kt',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1671,1086,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1606,1052,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1585,448,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1612,1056,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1668,1084,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1645,1067,NULL,NULL,0,0,0.1,NULL,0.00000118,0.00000559,'PRrwCeDKbPnCNTDjHnGkR4M4MbkjvJ4Sx9',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1590,854,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1620,1058,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1613,949,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1614,1046,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1576,961,NULL,NULL,0,0,NULL,NULL,0,0.00000028488812799181,'UibRkfVi3L8kMGGV14EmuWwkJd9NwowNET',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1642,1068,NULL,NULL,0,0,0.1,NULL,0.0000080199999997952,0.00001396000001321,'CUxWG4xR1YqCbwSFQVA9gQhE3n1c4N2Utw',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1599,1048,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1579,865,NULL,NULL,1434524746,0,0.002,NULL,NULL,NULL,NULL,'Wallet to be removed on 6/5. Please withdraw all funds immediately.','bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1636,1070,NULL,1433884061,1433888487,0,NULL,NULL,0.000000150000006144,0.000000195000006144,'HiwjRVtTLzGF3iPESM46HBTs44aKKgCsB7',NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1581,571,NULL,NULL,1434524782,0,NULL,NULL,NULL,NULL,'iRLGZboQh4HgrhP1SBUbbXMXQfg721cTHv',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1583,1031,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1639,1068,NULL,NULL,0,0,NULL,NULL,0.0000078179999999917,0.0000099790044864061,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1625,1062,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1609,1049,NULL,NULL,1433342202,0,NULL,NULL,0.000018993599998155,0.000024391800000717,'XxzbyMvEyWbG4SVCgvWSHExsSGG7rP92pi',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1580,364,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1593,1033,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1605,1051,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1597,1047,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1588,1044,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1603,947,NULL,NULL,0,0,0.1,NULL,0.000047089989376,0.00007878997997414,'iRiVrjhAxvzt1rMuuPCUJaqEp74LUzTv5y',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1644,1069,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1592,1045,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1652,347,189,1434477823,1434522311,0,70,NULL,0.00000088,0.000000905,'MVsutT7wypLGp6jcsPpMj19TvDDaUPzqV4','','cryptsy',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1600,1049,NULL,NULL,0,0,NULL,NULL,0.00001602,0.000047935008000008,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1601,1050,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1602,1047,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1616,1057,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1594,989,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1607,1053,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1646,1060,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1630,1046,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1634,1069,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1621,247,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1649,1030,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1598,440,NULL,NULL,1434524783,0,NULL,NULL,NULL,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1626,1063,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1643,1069,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1666,1083,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1604,1031,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1622,1059,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1623,1060,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1657,1077,NULL,1434525131,1434524790,0,NULL,NULL,0.000000200000246784,0.000000475000279552,'SPEmUj9375hszDEpgCuPJKUcLVGS7n8MN5',NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1648,1070,NULL,1434806256,1434524778,0,0.1,NULL,0.000000129999998976,0.00000024500002458419,'HWXhmYa8vBjUAZrYQMiMAWSW2yp5wKW5wR',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1611,516,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1663,1081,NULL,NULL,0,0,NULL,NULL,0.00000488,0.00010244,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1650,1071,NULL,1434516929,1434523099,0,0.002,NULL,0.000084869983912059,0.000090260459140424,'GThd6xyTXU7su5GqNToRcR3NRGk3vcwUKR',NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1632,1067,NULL,1433941645,1433942145,0,NULL,NULL,0.0000031457500004168,0.0000034178738840484,'PDEdnQa6Zk36D4eAjFaHDhYrmfEySuHaag',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1640,1073,NULL,1434097936,1434098402,0,NULL,NULL,0.0000055,0.000007245,'ELTG22gZRCG2PdReHwxyhbWUtvCYKBFHkK',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1631,1066,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1647,1060,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1629,753,NULL,NULL,1434524782,0,NULL,NULL,NULL,NULL,'GHvRnaNY1vi9HJo6jpZqTuDmVarthJpqsH',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1654,1075,NULL,NULL,0,0,NULL,NULL,0.00000018,0.0000000864,'DrzdVCZAJFzvSzxJzVqN66cSbuvC8J4Yar',NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1665,1060,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1670,1000,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1641,1073,NULL,1434066240,1434099284,0,0.1,NULL,0.00000121,0.000015595000000004,'EgRhimRFrhGcVbRGYZwmH5whMQ4mLEVsWe',NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1635,419,NULL,NULL,1434524782,0,NULL,NULL,NULL,NULL,'NXT-GHGV-VHSW-JURK-G8ST7',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1658,1069,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1656,1076,NULL,NULL,0,NULL,NULL,NULL,0.0017597376423218,0.0018935169210583,'SbNdGpSrg5xQKLyaa7x7jpMuZs9rSL1Riy',NULL,'jubi',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1651,909,NULL,NULL,1434524782,0,NULL,NULL,NULL,NULL,NULL,NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1664,1082,NULL,1434524349,1434524028,0,NULL,NULL,0.000010020001185792,0.000019440000748544,'WZkoZ6soEjGKZMY4dFen9gWu549jSW8N5e',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1673,1087,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1661,874,NULL,NULL,1434524783,0,NULL,NULL,NULL,NULL,'VeL2h3mozrbeu9kXhLS4zo58GgUg5QY73x',NULL,'poloniex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1672,563,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1667,1079,NULL,NULL,0,0,NULL,NULL,0.000004100000495616,0.00000629500368384,NULL,NULL,'yobit',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1660,1079,NULL,1434525131,1434524817,0,NULL,NULL,0.0000041976800409925,0.0000050866405744606,'HBq1RDyQK8CdjjtfcfNnGxTpXrxScyrs7N',NULL,'c-cex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1669,1085,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bittrex',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1662,1080,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'bleutrade',NULL);
|
|
insert into `markets`(`id`,`coinid`,`marketid`,`lastsent`,`lasttraded`,`deleted`,`txfee`,`balance`,`price`,`price2`,`deposit_address`,`message`,`name`,`base_coin`) values (1674,1088,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,'yobit',NULL);
|
|
|
|
/*Table structure for table `mining` */
|
|
|
|
DROP TABLE IF EXISTS `mining`;
|
|
|
|
CREATE TABLE `mining` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`usdbtc` double DEFAULT NULL,
|
|
`last_monitor_exchange` int(11) DEFAULT NULL,
|
|
`last_update_price` int(11) DEFAULT NULL,
|
|
`last_payout` int(11) DEFAULT NULL,
|
|
`stratumids` varchar(1024) COLLATE latin1_general_ci DEFAULT NULL,
|
|
`best_algo` varchar(64) COLLATE latin1_general_ci DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
/*Data for the table `mining` */
|
|
|
|
insert into `mining`(`id`,`usdbtc`,`last_monitor_exchange`,`last_update_price`,`last_payout`,`stratumids`,`best_algo`) values (1,243.49,1422830048,1422829644,1434801898,'','lyra2');
|
|
|
|
/*Table structure for table `nicehash` */
|
|
|
|
DROP TABLE IF EXISTS `nicehash`;
|
|
|
|
CREATE TABLE `nicehash` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`active` tinyint(1) DEFAULT NULL,
|
|
`orderid` int(11) DEFAULT NULL,
|
|
`last_decrease` int(11) DEFAULT NULL,
|
|
`algo` varchar(32) DEFAULT NULL,
|
|
`btc` double DEFAULT NULL,
|
|
`price` double DEFAULT NULL,
|
|
`speed` double DEFAULT NULL,
|
|
`workers` int(11) DEFAULT NULL,
|
|
`accepted` double DEFAULT NULL,
|
|
`rejected` double DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
|
|
|
|
/*Data for the table `nicehash` */
|
|
|
|
insert into `nicehash`(`id`,`active`,`orderid`,`last_decrease`,`algo`,`btc`,`price`,`speed`,`workers`,`accepted`,`rejected`) values (1,0,NULL,NULL,'x11',NULL,NULL,NULL,0,0,0);
|
|
insert into `nicehash`(`id`,`active`,`orderid`,`last_decrease`,`algo`,`btc`,`price`,`speed`,`workers`,`accepted`,`rejected`) values (2,0,NULL,NULL,'scrypt',NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `nicehash`(`id`,`active`,`orderid`,`last_decrease`,`algo`,`btc`,`price`,`speed`,`workers`,`accepted`,`rejected`) values (3,0,NULL,NULL,'sha256',NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `nicehash`(`id`,`active`,`orderid`,`last_decrease`,`algo`,`btc`,`price`,`speed`,`workers`,`accepted`,`rejected`) values (4,0,NULL,NULL,'scryptn',NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `nicehash`(`id`,`active`,`orderid`,`last_decrease`,`algo`,`btc`,`price`,`speed`,`workers`,`accepted`,`rejected`) values (5,0,NULL,NULL,'x13',NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `nicehash`(`id`,`active`,`orderid`,`last_decrease`,`algo`,`btc`,`price`,`speed`,`workers`,`accepted`,`rejected`) values (6,0,NULL,NULL,'x15',NULL,NULL,NULL,0,0,0);
|
|
insert into `nicehash`(`id`,`active`,`orderid`,`last_decrease`,`algo`,`btc`,`price`,`speed`,`workers`,`accepted`,`rejected`) values (7,0,NULL,NULL,'nist5',NULL,NULL,NULL,NULL,NULL,NULL);
|
|
insert into `nicehash`(`id`,`active`,`orderid`,`last_decrease`,`algo`,`btc`,`price`,`speed`,`workers`,`accepted`,`rejected`) values (8,0,NULL,NULL,'neoscrypt',NULL,NULL,NULL,0,0,0);
|
|
insert into `nicehash`(`id`,`active`,`orderid`,`last_decrease`,`algo`,`btc`,`price`,`speed`,`workers`,`accepted`,`rejected`) values (9,0,NULL,NULL,'lyra2',NULL,NULL,NULL,0,0,0);
|
|
|
|
/*Table structure for table `orders` */
|
|
|
|
DROP TABLE IF EXISTS `orders`;
|
|
|
|
CREATE TABLE `orders` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`coinid` int(11) DEFAULT NULL,
|
|
`created` int(11) DEFAULT NULL,
|
|
`amount` double DEFAULT NULL,
|
|
`price` double DEFAULT NULL,
|
|
`ask` double DEFAULT NULL,
|
|
`bid` double DEFAULT NULL,
|
|
`market` varchar(16) DEFAULT NULL,
|
|
`uuid` varchar(256) DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `coinid` (`coinid`),
|
|
KEY `created` (`created`),
|
|
KEY `market` (`market`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
|
|
/*Data for the table `orders` */
|
|
|
|
/*Table structure for table `payouts` */
|
|
|
|
DROP TABLE IF EXISTS `payouts`;
|
|
|
|
CREATE TABLE `payouts` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`account_id` int(11) NOT NULL,
|
|
`account_ids` varchar(1024) CHARACTER SET latin1 DEFAULT NULL,
|
|
`time` int(11) NOT NULL,
|
|
`completed` tinyint(1) NOT NULL DEFAULT '0',
|
|
`amount` double DEFAULT NULL,
|
|
`fee` double DEFAULT NULL,
|
|
`tx` varchar(128) CHARACTER SET latin1 DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `account_id` (`account_id`,`completed`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
/*Data for the table `payouts` */
|
|
|
|
/*Table structure for table `rawcoins` */
|
|
|
|
DROP TABLE IF EXISTS `rawcoins`;
|
|
|
|
CREATE TABLE `rawcoins` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(64) DEFAULT NULL,
|
|
`symbol` varchar(32) DEFAULT NULL,
|
|
`active` tinyint(1) DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=655 DEFAULT CHARSET=latin1;
|
|
|
|
/*Data for the table `rawcoins` */
|
|
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (1,'Bitcoin','BTC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (2,'Litecoin','LTC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (3,'Dogecoin','DOGE',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (4,'Vertcoin','VTC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (5,'ReddCoin','RDD',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (6,'NXT','NXT',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (7,'DarkCoin','DRK',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (8,'PotCoin','POT',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (9,'BlackCoin','BC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (10,'MyriadCoin','MYR',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (12,'OctoCoin','888',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (15,'ElectronicGulden','EFL',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (16,'DimeCoin','DIME',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (17,'RotoCoin','RT2',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (18,'SolarCoin','SLR',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (21,'FlutterCoin ','FLT',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (23,'CryptoEscudoCoin','CESC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (24,'PesetaCoin ','PTC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (25,'IsraelCoin ','ISR',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (26,'CleanWaterCoin ','WATER',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (29,'GuldenCoin','NLG',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (30,'RubyCoin','RBY',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (31,'GiveCoin','GIVE',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (32,'WhiteCoin','WC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (34,'MonaCoin','MONA',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (36,'NobleCoin','NOBL',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (37,'CinniCoin','CINNI',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (38,'BitStarCoin','BITS',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (39,'BlueCoin','BLU',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (40,'OrangeCoin','OC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (42,'HempCoin','THC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (46,'EnergyCoin','ENRG',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (47,'ShibeCoin','SHIBE',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (49,'SaffronCoin','SFR',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (53,'LibertyCoin','XLB',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (55,'NautilusCoin','NAUT',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (56,'VeriCoin','VRC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (57,'CureCoin','CURE',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (60,'UroCoin','URO',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (62,'SyncCoin','SYNC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (64,'BlakeCoin','BLC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (66,'StabilitySharesXSI','XSI',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (67,'XCurrency','XC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (68,'Dirac','XDQ',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (71,'GraniteCoin','GRN',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (73,'SuperCoin','SUPER',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (74,'JackpotCoin ','JPC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (76,'Maieuticoin','MMXIV',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (77,'BoostCoin ','BOST',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (78,'CAIx','CAIX',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (81,'Boolberry','BBR',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (83,'Hyper','HYPER',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (84,'CannaCoin','CCN',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (90,'KryptKoin','KTK',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (91,'Mugatu','MUGA',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (93,'VootCoin','VOOT',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (94,'BankNote','BN',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (95,'Monero','XMR',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (96,'CloakCoin','CLOAK',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (100,'TalkCoin','TAC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (103,'CHCCoin','CHCC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (107,'GlyphCoin','GLYPH',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (109,'CoolCoin','COOL',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (110,'BurnerCoin','BURN',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (112,'CryptCoin','CRYPT',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (115,'StartCoin','START',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (116,'FractalCoin','FRAC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (119,'KoreCoin','KORE',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (122,'Razor','RZR',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (123,'Guerillacoin','GUE',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (124,'DuckNote','XDN',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (128,'Minerals','MIN',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (133,'TechCoin','TECH',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (135,'CoffeeCoin','CFC2',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (136,'GameLeagueCoin','GML',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (137,'TruckCoin','TRK',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (139,'WankCoin','WKC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (143,'Quatloo','QTL',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (144,'Saturn2Coin','SAT2',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (145,'XXXCoin','XXX',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (151,'AeroCoin','AERO',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (156,'TrustPlus','TRUST',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (157,'BritCoin','BRIT',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (158,'JudgeCoin','JUDGE',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (159,'NavajoCoin','NAV',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (160,'IcebergCoin','ICB',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (161,'FreshCoin','FRSH',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (162,'ShieldCoin','SHLD',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (163,'StealthCoin','XST',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (164,'AegisCoin','AGS',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (168,'ApexCoin','APEX',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (171,'ZetaCoin','ZET',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (172,'BitcoinDark','BTCD',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (173,'PseudoCash','PSEUD',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (176,'KeyCoin','KEY',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (178,'NewUniversalDollar','NUD',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (180,'ViaCoin','VIA',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (181,'Triangles','TRI',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (182,'PlanktonCoin','FOOD',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (183,'ConcealCoin','CNL',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (186,'Pesa','PES',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (187,'IncognitoCoin','ICG',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (189,'Unobtanium','UNO',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (192,'EsportsCoin','ESC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (193,'DarkCash','DRKC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (198,'PinkCoin','PINK',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (199,'IOCoin','IOC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (202,'ShadowCash','SDC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (204,'RawCoin','RAW',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (207,'MaxCoin','MAX',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (208,'LibrexCoin','LXC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (209,'BoomCoin','BOOM',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (210,'DobbsCoin','BOB',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (215,'Unattainium','UNAT',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (216,'MultiWalletCoin','MWC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (217,'CannabisCoin','CANN',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (220,'VaultCoin','VAULT',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (224,'Fuel2Coin','FC2',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (225,'SonicScrewDriver','SSD',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (229,'JoinCoin','J',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (230,'SoleCoin','SOLE',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (231,'UmbrellaLTC','ULTC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (233,'SysCoin','SYS',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (235,'Halcyon','HAL',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (237,'BigBullion','BIG',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (239,'NeosCoin','NEOS',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (240,'Digibyte','DGB',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (242,'GreenBacks','GB',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (243,'RootCoin','ROOT',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (245,'Axron','AXR',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (246,'RipoffCoin','RIPO',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (249,'Fibre','FIBRE',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (252,'Nimbus','NMB',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (253,'ACoin','ACOIN',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (254,'ShadeCoin','SHADE',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (255,'FlexibleCoin','FLEX',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (256,'CoinMarketsCoin','JBS',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (257,'SSVCoin','SSV',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (258,'SocialXBot','XBOT',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (259,'XCash','XCASH',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (260,'BURST','BURST',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (262,'LitecoinDark','LTCD',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (263,'LightSpeed','LSD',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (264,'BancorCoin','BNCR',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (265,'CraigsCoin','CRAIG',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (266,'TitCoin','TIT',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (267,'GlobalBoost-Y','BSTY',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (268,'Gnosis','GNS',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (269,'VolatilityCoin','VLTY',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (270,'DeepCoin','DCN',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (271,'Prime-XI','PXI',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (272,'MozzShare','MLS',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (273,'CrackCoin','CRACK',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (274,'DigitalCoin','DGC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (275,'Bitmark','BTM',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (278,'CoinWorksCoin','LAB',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (279,'SterlingCoin','SLG',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (280,'DarkToken','DT',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (281,'RosCoin','ROS',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (282,'42Coin','42',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (283,'AsiaCoin','AC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (284,'AlphaCoin','ALF',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (285,'AlienCoin','ALN',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (286,'AmericanCoin','AMC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (287,'AnonCoin','ANC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (288,'Argentum','ARG',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (289,'AuroraCoin','AUR',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (290,'BattleCoin','BCX',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (291,'Benjamins','BEN',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (292,'Betacoin','BET',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (293,'BBQCoin','BQC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (294,'BitBar','BTB',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (295,'ByteCoin','BTE',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (296,'BitGem','BTG',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (297,'CryptoBuck','BUK',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (298,'CACHeCoin','CACH',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (299,'BottleCaps','CAP',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (300,'CashCoin','CASH',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (301,'CatCoin','CAT',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (302,'CryptogenicBullion','CGB',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (303,'CopperLark','CLR',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (304,'Cosmoscoin','CMC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (305,'CHNCoin','CNC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (306,'CommunityCoin','COMM',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (307,'CraftCoin','CRC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (308,'CasinoCoin','CSC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (309,'eMark','DEM',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (310,'Diamond','DMD',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (311,'DevCoin','DVC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (312,'EarthCoin','EAC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (313,'ElaCoin','ELC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (314,'Einsteinium','EMC2',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (315,'Emerald','EMD',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (316,'ExeCoin','EXE',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (317,'EZCoin','EZC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (318,'FireflyCoin','FFC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (319,'FreiCoin','FRC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (320,'Franko','FRK',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (321,'FastCoin','FST',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (322,'FeatherCoin','FTC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (323,'GrandCoin','GDC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (324,'Globalcoin','GLC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (325,'GoldCoin','GLD',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (326,'Galaxycoin','GLX',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (327,'HoboNickels','HBN',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (328,'HunterCoin','HUC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (329,'HeavyCoin','HVC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (330,'InfiniteCoin','IFC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (331,'IXCoin','IXC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (332,'JunkCoin','JKC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (333,'KlondikeCoin','KDC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (334,'KrugerCoin','KGC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (335,'LegendaryCoin','LGD',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (336,'Lucky7Coin','LK7',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (337,'LuckyCoin','LKY',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (338,'LiteBar','LTB',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (339,'LiteCoinX','LTCX',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (340,'LycanCoin','LYC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (341,'MegaCoin','MEC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (342,'Mediterraneancoin','MED',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (343,'MintCoin','MINT',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (346,'MinCoin','MNC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (347,'MurrayCoin','MRY',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (348,'MazaCoin','MZC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (349,'NanoToken','NAN',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (350,'Nibble','NBL',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (351,'NeoCoin','NEC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (352,'Netcoin','NET',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (353,'NameCoin','NMC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (354,'NoirBits','NRB',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (355,'NoirShares','NRS',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (356,'NovaCoin','NVC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (357,'NyanCoin','NYAN',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (358,'Orbitcoin','ORB',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (359,'OpenSourceCoin','OSC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (360,'PhilosopherStone','PHS',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (361,'CryptsyPoints','Points',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (362,'Peercoin','PPC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (363,'Bitshares PTS','PTS',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (364,'PhoenixCoin','PXC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (365,'PayCoin','PYC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (366,'Quark','QRK',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (367,'RonPaulCoin','RPC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (368,'RoyalCoin','RYC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (369,'StableCoin','SBC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (370,'SilkCoin','SILK',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (371,'SmartCoin','SMC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (372,'SpainCoin','SPA',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (373,'Spots','SPT',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (374,'SecureCoin','SRC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (375,'StarCoin','STR',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (376,'SexCoin','SXC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (377,'TagCoin','TAG',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (378,'TakCoin','TAK',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (379,'TekCoin','TEK',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (380,'TeslaCoin','TES',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (381,'TigerCoin','TGC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (382,'TorCoin','TOR',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (383,'TerraCoin','TRC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (384,'UnbreakableCoin','UNB',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (385,'USDe','USDe',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (386,'UltraCoin','UTC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (387,'WorldCoin','WDC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (388,'Crypti','XCR',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (389,'JouleCoin','XJO',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (390,'PrimeCoin','XPM',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (391,'YaCoin','YAC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (392,'YBCoin','YBC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (393,'ZcCoin','ZCC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (394,'ZedCoin','ZED',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (395,'AndroidsTokensV2','ADT',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (396,'AsicCoin','ASC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (397,'BatCoin','BAT',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (398,'ColossusCoin','COL',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (399,'CopperBars','CPR',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (400,'Continuumcoin','CTM',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (401,'Doubloons','DBL',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (402,'DamaCoin','DMC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (403,'ElephantCoin','ELP',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (404,'FlappyCoin','FLAP',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (405,'FlorinCoin','FLO',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (406,'GameCoin','GME',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (407,'KarmaCoin','KARM',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (408,'LeafCoin','LEAF',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (409,'LottoCoin','LOT',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (410,'MemeCoin','MEM',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (411,'KittehCoin','MEOW',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (412,'MoonCoin','MOON',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (413,'MasterCoin (Hydro)','MST',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (414,'RabbitCoin','RBBT',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (415,'RedCoin','RED',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (416,'FedoraCoin','TIPS',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (417,'Tickets','TIX',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (418,'XenCoin','XNC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (419,'ZeitCoin','ZEIT',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (420,'','ABC2',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (421,'','AID',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (424,'','BTQ',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (426,'','CHILD',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (428,'Checkcoin','CKC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (437,'','GRC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (438,'','IMAC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (440,'Lemurcoin','LMR',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (441,'','MOTO',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (442,'','MSC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (444,'','NIC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (445,'','NOTE',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (446,'','NWO',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (447,'','ONE',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (448,'OpalCoin','OPAL',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (450,'','PLCN',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (452,'','PROZ',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (453,'PyramidsCoin','PYRA',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (460,'SativaCoin','STV',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (467,'','XRC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (468,'','XSX',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (469,'','CCI',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (470,'','GHC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (471,'Bleutrade Share','BLEU',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (473,'BeaverCoin','BVC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (474,'Canada eCoin','CDN',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (475,'CzechCrownCoin','CZC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (476,'Donationcoin','DON',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (477,'FujiCoin','FJC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (478,'GCoin','GCN',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (479,'Guncoin','GUN',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (480,'HamRadioCoin','HAM',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (481,'HeisenbergHex','HEX',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (482,'HTML5','HTML5',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (483,'IrishCoin','IRL',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (484,'NewYorkCoin','NYC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (485,'Paccoin','PAC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (486,'PolishCoin','PCC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (487,'PHCoin','PHC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (488,'Pandacoin','PND',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (489,'POWcoin','POW',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (490,'RussiaCoin','RC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (494,'TrollCoin','TRL',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (495,'US Dollar','USD',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (497,'VirtaCoin','VTA',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (498,'InkwayCoin','LKNX',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (503,'ExclusiveCoin','EXCL',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (505,'EtherCoin','ETC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (506,'VikingCoin','VIK',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (507,'XG','XG',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (513,'MaryJaneCoin','MARYJ',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (516,'unknown','SONG',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (517,'Magi','XMG',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (518,'UtilityCoin','UTIL',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (519,'Ruble','RUBLE',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (520,'Wolfcoin','WLF',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (521,'XCloudCoin','XCLD',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (522,'BitSwift','SWIFT',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (525,'ArchCoin','ARCH',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (526,'GhostCoin','GHOST',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (527,'SeedCoin','SEED',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (530,'GAIACoin','GAIA',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (531,'WorldWideCoin','WWC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (532,'Cagecoin','CAGE',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (533,'Ripple','XRP',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (534,'WhistleCoin','WSTL',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (537,'Munne','MNE',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (538,'unknown','CRW',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (539,'unknown','SQC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (541,'unknown','VOXP',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (542,'EquinoxCoin ','EQX',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (544,'GlowCoin','GLOW',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (545,'unknown','KRYP',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (547,'unknown','PLCS',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (548,'unknown','VTX',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (549,'MiracleCoin','MCL',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (550,'DopeCoin','DOPE',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (552,'unknown','DOGEB',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (553,'unknown','SPUDS',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (554,'VidioShare','VDO',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (555,'CamorraCoin','CAM',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (556,'NopeCoin','NOPE',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (557,'SparkCoin','SPARK',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (558,'unknown','UP',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (560,'CannabisDarkcoin','CND',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (561,'DogeCoinDark','DOGED',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (562,'MetalMusicCoin','MTLMC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (563,'MonetaryUnit','MUE',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (564,'GanjaCoin','GANJA',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (565,'DayTraderCoin','DTC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (567,'ScatterCoin','XSTC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (568,'Sembro Token','SMBR',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (569,'CleverHash','CHASH',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (570,'DarkShibe','DSB',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (571,'HyperStake','HYP',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (572,'unknown','LOG',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (573,'unknown','QBK',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (574,'DigitalPrice','DP',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (575,'Bladecoin','BLA',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (576,'DarkKush','DANK',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (578,'Pennies','CENT',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (579,'BlockNet','BLOCK',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (580,'unknown','CATC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (581,'unknown','VOCAL',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (582,'SecuritySysCoin','SCSY',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (583,'AppleBytes','ABY',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (584,'unknown','MIC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (585,'Snowballs','BALLS',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (586,'RektCoin','REKT',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (587,'Quicksilver','QSLV',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (588,'unknown','ICNX',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (590,'unknown','U',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (592,'ByteCent','BYC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (593,'BunnyCoin','BUN',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (594,'UroDark','UROD',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (595,'UFOCoin','UFO',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (596,'unknown','ZER',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (597,'EthereumDark','ETD',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (598,'Nanite','XNAN',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (600,'OcupyCoin','OCUPY',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (601,'unknown','ZNY',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (602,'unknown','FICE',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (603,'unknown','HLC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (604,'Guarany','GUA',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (605,'unknown','ACHK',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (606,'unknown','GIMP',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (607,'unknown','BOARD',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (608,'GlowShares','GSX',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (609,'unknown','PFC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (610,'Quotient','XQN',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (611,'OptimumCoin','OPTI',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (612,'Consolidated Mining','MN',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (613,'GreenCoin','GRE',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (614,'VPNCoin','VPN',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (615,'Bollywoodcoin','BDC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (616,'ViorCoin','VIOR',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (617,'BitBay','BAY',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (618,'HawaiiCoin','HIC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (619,'MalibuCoin','MAL',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (620,'ImperiumCoin','IMPC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (621,'Diode','DIO',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (622,'DeafDollars','DEAF',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (623,'unknown','ALI',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (624,'BitSharesX','BTS',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (625,'unknown','EUPH',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (626,'WorldTradeFunds','XWT',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (627,'MobCoin','MOB',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (628,'PimpCash','PIMP',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (629,'unknown','ERM',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (630,'MewnCoin','MEWN',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (631,'unknown','FUD',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (632,'unknown','KING',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (633,'AeroME','AM',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (634,'unknown','FIND',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (635,'unknown','CBR',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (636,'SpreadCoin','SPR',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (637,'MetalCoin','METAL',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (638,'CheckOutCoin','CXC',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (639,'BitcoinFast','BCF',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (640,'unknown','STB',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (641,'unknown','RMS',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (642,'EventCoint','EVENT',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (644,'FairCoin','FAIR',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (645,'DarkSwift','DS',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (646,'unknown','BCENT',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (647,'unknown','SMLY',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (648,'PayCoin','XPY',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (649,'NooCoin','NOO',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (650,'vTorrent','VTR',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (651,'Clams','CLAM',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (652,'TittieCoin','TTC',0);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (653,'Sapience','XAI',1);
|
|
insert into `rawcoins`(`id`,`name`,`symbol`,`active`) values (654,'NakomotoDark','NKT',1);
|
|
|
|
/*Table structure for table `renters` */
|
|
|
|
DROP TABLE IF EXISTS `renters`;
|
|
|
|
CREATE TABLE `renters` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`created` int(11) DEFAULT NULL,
|
|
`updated` int(11) DEFAULT NULL,
|
|
`address` varchar(1024) DEFAULT NULL,
|
|
`email` varchar(1024) DEFAULT NULL,
|
|
`password` varchar(64) DEFAULT NULL,
|
|
`apikey` varbinary(1024) DEFAULT NULL,
|
|
`received` double DEFAULT NULL,
|
|
`balance` double DEFAULT NULL,
|
|
`unconfirmed` double DEFAULT NULL,
|
|
`spent` double DEFAULT NULL,
|
|
`custom_start` double DEFAULT NULL,
|
|
`custom_balance` double DEFAULT NULL,
|
|
`custom_accept` double DEFAULT NULL,
|
|
`custom_reject` double DEFAULT NULL,
|
|
`custom_address` varchar(1024) DEFAULT NULL,
|
|
`custom_server` varchar(1024) DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
|
|
/*Data for the table `renters` */
|
|
|
|
/*Table structure for table `rentertxs` */
|
|
|
|
DROP TABLE IF EXISTS `rentertxs`;
|
|
|
|
CREATE TABLE `rentertxs` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`renterid` int(11) DEFAULT NULL,
|
|
`time` int(11) DEFAULT NULL,
|
|
`amount` double DEFAULT NULL,
|
|
`type` varchar(32) DEFAULT NULL,
|
|
`address` varchar(1024) DEFAULT NULL,
|
|
`tx` varchar(1024) DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `renterid` (`renterid`),
|
|
KEY `time` (`time`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
|
|
/*Data for the table `rentertxs` */
|
|
|
|
/*Table structure for table `servers` */
|
|
|
|
DROP TABLE IF EXISTS `servers`;
|
|
|
|
CREATE TABLE `servers` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(32) CHARACTER SET latin1 DEFAULT NULL,
|
|
`maxcoins` int(11) DEFAULT NULL,
|
|
`uptime` varchar(256) CHARACTER SET latin1 DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `name1` (`name`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
/*Data for the table `servers` */
|
|
|
|
/*Table structure for table `services` */
|
|
|
|
DROP TABLE IF EXISTS `services`;
|
|
|
|
CREATE TABLE `services` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(64) DEFAULT NULL,
|
|
`algo` varchar(64) DEFAULT NULL,
|
|
`price` double DEFAULT NULL,
|
|
`speed` bigint(20) DEFAULT NULL,
|
|
`custom_balance` double DEFAULT NULL,
|
|
`custom_accept` double DEFAULT NULL,
|
|
`custom_reject` double DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=latin1;
|
|
|
|
/*Data for the table `services` */
|
|
|
|
insert into `services`(`id`,`name`,`algo`,`price`,`speed`,`custom_balance`,`custom_accept`,`custom_reject`) values (1,'Nicehash','scrypt',0.000311,24769100000,0.0000027,0,0);
|
|
insert into `services`(`id`,`name`,`algo`,`price`,`speed`,`custom_balance`,`custom_accept`,`custom_reject`) values (2,'Nicehash','x11',0.0003403,11823800000,0.00232441,0,0);
|
|
insert into `services`(`id`,`name`,`algo`,`price`,`speed`,`custom_balance`,`custom_accept`,`custom_reject`) values (3,'Nicehash','x13',0.0002867,257600000,0,0,0);
|
|
insert into `services`(`id`,`name`,`algo`,`price`,`speed`,`custom_balance`,`custom_accept`,`custom_reject`) values (4,'Nicehash','x15',0.0001933,3600000,0,0,0);
|
|
insert into `services`(`id`,`name`,`algo`,`price`,`speed`,`custom_balance`,`custom_accept`,`custom_reject`) values (5,'Nicehash','nist5',0.000001,2471500000,NULL,NULL,NULL);
|
|
insert into `services`(`id`,`name`,`algo`,`price`,`speed`,`custom_balance`,`custom_accept`,`custom_reject`) values (6,'Nicehash','sha256',0.0000105,2765355686300000,0,0,0);
|
|
insert into `services`(`id`,`name`,`algo`,`price`,`speed`,`custom_balance`,`custom_accept`,`custom_reject`) values (7,'Nicehash','scryptn',0.0005493,700000,NULL,NULL,NULL);
|
|
insert into `services`(`id`,`name`,`algo`,`price`,`speed`,`custom_balance`,`custom_accept`,`custom_reject`) values (8,'Nicehash','neoscrypt',0.0060339,19900000,0.00001565,0,0);
|
|
insert into `services`(`id`,`name`,`algo`,`price`,`speed`,`custom_balance`,`custom_accept`,`custom_reject`) values (9,'Nicehash','lyra2',0.0016678,427000000,NULL,NULL,NULL);
|
|
insert into `services`(`id`,`name`,`algo`,`price`,`speed`,`custom_balance`,`custom_accept`,`custom_reject`) values (16,'Nicehash','qubit',0.0001677,36900000,NULL,NULL,NULL);
|
|
insert into `services`(`id`,`name`,`algo`,`price`,`speed`,`custom_balance`,`custom_accept`,`custom_reject`) values (17,'Nicehash','quark',0.0004634,61865000000,NULL,NULL,NULL);
|
|
|
|
/*Table structure for table `shares` */
|
|
|
|
DROP TABLE IF EXISTS `shares`;
|
|
|
|
CREATE TABLE `shares` (
|
|
`id` bigint(30) NOT NULL AUTO_INCREMENT,
|
|
`userid` int(11) DEFAULT NULL,
|
|
`workerid` int(11) DEFAULT NULL,
|
|
`coinid` int(11) DEFAULT NULL,
|
|
`jobid` int(11) DEFAULT NULL,
|
|
`pid` int(11) DEFAULT NULL,
|
|
`time` int(11) DEFAULT NULL,
|
|
`error` int(11) DEFAULT NULL,
|
|
`valid` tinyint(1) DEFAULT NULL,
|
|
`extranonce1` tinyint(1) DEFAULT NULL,
|
|
`difficulty` double DEFAULT '0',
|
|
`algo` varchar(16) DEFAULT 'scrypt',
|
|
PRIMARY KEY (`id`),
|
|
KEY `time` (`time`),
|
|
KEY `algo1` (`algo`),
|
|
KEY `valid1` (`valid`),
|
|
KEY `user1` (`userid`),
|
|
KEY `worker1` (`workerid`),
|
|
KEY `coin1` (`coinid`),
|
|
KEY `jobid` (`jobid`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
|
|
/*Data for the table `shares` */
|
|
|
|
/*Table structure for table `stats` */
|
|
|
|
DROP TABLE IF EXISTS `stats`;
|
|
|
|
CREATE TABLE `stats` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`time` int(11) DEFAULT NULL,
|
|
`profit` double DEFAULT NULL,
|
|
`wallet` double DEFAULT NULL,
|
|
`wallets` double DEFAULT NULL,
|
|
`immature` double DEFAULT NULL,
|
|
`margin` double DEFAULT NULL,
|
|
`waiting` double DEFAULT NULL,
|
|
`balances` double DEFAULT NULL,
|
|
`onsell` double DEFAULT NULL,
|
|
`renters` double DEFAULT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `time` (`time`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
|
|
/*Data for the table `stats` */
|
|
|
|
/*Table structure for table `stratums` */
|
|
|
|
DROP TABLE IF EXISTS `stratums`;
|
|
|
|
CREATE TABLE `stratums` (
|
|
`pid` int(11) NOT NULL,
|
|
`time` int(11) DEFAULT NULL,
|
|
`algo` varchar(64) DEFAULT NULL,
|
|
PRIMARY KEY (`pid`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
|
|
/*Data for the table `stratums` */
|
|
|
|
/*Table structure for table `withdraws` */
|
|
|
|
DROP TABLE IF EXISTS `withdraws`;
|
|
|
|
CREATE TABLE `withdraws` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`market` varchar(1024) CHARACTER SET latin1 DEFAULT NULL,
|
|
`address` varchar(1024) CHARACTER SET latin1 DEFAULT NULL,
|
|
`amount` double DEFAULT NULL,
|
|
`time` int(11) DEFAULT NULL,
|
|
`uuid` varchar(1024) CHARACTER SET latin1 DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
/*Data for the table `withdraws` */
|
|
|
|
/*Table structure for table `workers` */
|
|
|
|
DROP TABLE IF EXISTS `workers`;
|
|
|
|
CREATE TABLE `workers` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`userid` int(11) DEFAULT NULL,
|
|
`time` int(11) DEFAULT NULL,
|
|
`pid` int(11) DEFAULT NULL,
|
|
`subscribe` tinyint(1) DEFAULT NULL,
|
|
`difficulty` double DEFAULT NULL,
|
|
`ip` varchar(32) CHARACTER SET latin1 DEFAULT NULL,
|
|
`dns` varchar(1024) COLLATE latin1_general_ci DEFAULT NULL,
|
|
`name` varchar(40) CHARACTER SET latin1 DEFAULT NULL,
|
|
`nonce1` varchar(64) CHARACTER SET latin1 DEFAULT NULL,
|
|
`version` varchar(64) CHARACTER SET latin1 DEFAULT NULL,
|
|
`password` varchar(64) CHARACTER SET latin1 DEFAULT NULL,
|
|
`worker` varchar(64) COLLATE latin1_general_ci DEFAULT NULL,
|
|
`algo` varchar(16) CHARACTER SET latin1 DEFAULT 'scrypt',
|
|
PRIMARY KEY (`id`),
|
|
KEY `algo1` (`algo`),
|
|
KEY `name1` (`name`),
|
|
KEY `userid` (`userid`),
|
|
KEY `pid` (`pid`)
|
|
) ENGINE=MyISAM AUTO_INCREMENT=5324974 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
|
|
|
/*Data for the table `workers` */
|
|
|
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|