Overview [ERC-20]
Price
$16.15 @ 0.008713 Eth (+1.34%)
Fully Diluted Market Cap
Max Total Supply:
40,000,000 UQC
Holders:
9,739 (0.00%)
Transfers:
-
Contract:
Decimals:
18
Official Site:
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
The goal of this blockchain asset is to supplement the development of UQUID Ecosystem. In this virtual revolution, coin holders will have the benefit of instantly and effortlessly cash out their coins.Profitability / Loss
Since Initial Offer Price | : | $1.60 909.38% |ETH 0.00540541 61.19% |
Market
Volume (24H) | : | $6,185,694.00 |
Market Capitalization | : | $161,406,883.00 |
Circulating Supply | : | 10,000,000.00 UQC |
Market Data Source: Coinmarketcap |
ICO Information
ICO Start Date | : | Oct 2, 2017 |
Total Cap | : | $17,700,000 |
ICO Price | : | $1.6 | 0.00540541 ETH | 0.00036584 BTC |
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | ![]() | UQC-BTC | $16.39 0.0088512 Eth | $2,112,671.00 128,881.208 UQC | 10.9150% |
2 | ![]() | UQC-ETH | $16.13 0.0087113 Eth | $1,658,505.00 102,831.002 UQC | 8.7088% |
3 | ![]() | UQC-USDT | $15.77 0.0085192 Eth | $1,534,840.00 97,308.539 UQC | 8.2411% |
4 | ![]() | USDC-UQC | $16.12 0.0087061 Eth | $307,796.00 308,395.800 USDC | 26.1181% |
5 | ![]() | ENJ-UQC | $16.13 0.0087106 Eth | $185,254.00 264,679.392 ENJ | 22.4158% |
6 | ![]() | UQC-ETH | $14.32 0.0077288 Eth | $165,684.00 11,569.021 UQC | 0.9798% |
7 | ![]() | UQC-ETH | $13.88 0.0074990 Eth | $154,215.00 11,112.683 UQC | 0.9411% |
8 | ![]() | LINK-UQC | $16.13 0.0087106 Eth | $146,397.00 16,244.892 LINK | 1.3758% |
9 | ![]() | UQC-BTC | $14.01 0.0075625 Eth | $104,502.00 7,457.425 UQC | 0.6316% |
10 | ![]() | BAT-UQC | $16.13 0.0087113 Eth | $82,391.00 178,885.770 BAT | 15.1499% |
11 | ![]() | UQC-BTC | $13.88 0.0074905 Eth | $62,017.00 4,468.276 UQC | 0.3784% |
12 | ![]() | UQC-ETH | $17.08 0.0092207 Eth | $57,092.00 3,342.000 UQC | 0.2830% |
13 | ![]() | REP-UQC | $16.13 0.0087113 Eth | $49,111.00 5,385.555 REP | 0.4561% |
14 | ![]() | UQC-USDT | $13.97 0.0075381 Eth | $40,428.00 2,894.345 UQC | 0.2451% |
15 | ![]() | ONT-UQC | $16.13 0.0087113 Eth | $19,884.12 69,653.082 ONT | 5.8989% |
16 | ![]() | GAS-UQC | $16.13 0.0087106 Eth | $15,467.15 5,077.155 GAS | 0.4300% |
17 | ![]() | LTC-UQC | $16.13 0.0087106 Eth | $9,157.65 75.580 LTC | 0.0064% |
18 | ![]() | BCH-UQC | $16.13 0.0087113 Eth | $3,922.44 13.891 BCH | 0.0012% |
19 | ![]() | XRP-UQC | $16.13 0.0087077 Eth | $2,828.31 3,091.750 XRP | 0.2618% |
Contract Name:
UquidCoin
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-03 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.12; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { if (newOwner != address(0)) { owner = newOwner; } } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ abstract contract ERC20Basic { uint public _totalSupply; function totalSupply() public virtual view returns (uint); function balanceOf(address who) public virtual view returns (uint); function transfer(address to, uint value) public virtual; event Transfer(address indexed from, address indexed to, uint value); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ abstract contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public virtual view returns (uint); function transferFrom(address from, address to, uint value) public virtual; function approve(address spender, uint value) public virtual; event Approval(address indexed owner, address indexed spender, uint value); } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ abstract contract BasicToken is Ownable, ERC20Basic { using SafeMath for uint; mapping(address => uint) public balances; // additional variables for use if transaction fees ever became necessary uint public basisPointsRate = 0; uint public maximumFee = 0; /** * @dev Fix for the ERC20 short address attack. */ modifier onlyPayloadSize(uint size) { require(!(msg.data.length < size + 4)); _; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint _value) public override virtual onlyPayloadSize(2 * 32) { uint fee = (_value.mul(basisPointsRate)).div(10000); if (fee > maximumFee) { fee = maximumFee; } uint sendAmount = _value.sub(fee); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(sendAmount); if (fee > 0) { balances[owner] = balances[owner].add(fee); emit Transfer(msg.sender, owner, fee); } emit Transfer(msg.sender, _to, sendAmount); } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return balance uint An uint representing the amount owned by the passed address. */ function balanceOf(address _owner) public override virtual view returns (uint balance) { return balances[_owner]; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based oncode by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ abstract contract StandardToken is BasicToken, ERC20 { mapping (address => mapping (address => uint)) public allowed; uint public constant MAX_UINT = 2**256 - 1; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint _value) public override virtual onlyPayloadSize(3 * 32) { uint256 _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // if (_value > _allowance) throw; uint fee = (_value.mul(basisPointsRate)).div(10000); if (fee > maximumFee) { fee = maximumFee; } if (_allowance < MAX_UINT) { allowed[_from][msg.sender] = _allowance.sub(_value); } uint sendAmount = _value.sub(fee); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(sendAmount); if (fee > 0) { balances[owner] = balances[owner].add(fee); emit Transfer(_from, owner, fee); } emit Transfer(_from, _to, sendAmount); } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint _value) public override virtual onlyPayloadSize(2 * 32) { // To change the approve amount you first have to reduce the addresses` // allowance to zero by calling `approve(_spender, 0)` if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 require(!((_value != 0) && (allowed[msg.sender][_spender] != 0))); allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); } /** * @dev Function to check the amount of tokens than an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return remaining uint A uint specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public override virtual view returns (uint remaining) { return allowed[_owner][_spender]; } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; Unpause(); } } abstract contract BlackList is Ownable, BasicToken { /////// Getters to allow the same blacklist to be used also by other contracts (including upgraded Tether) /////// function getBlackListStatus(address _maker) external view returns (bool) { return isBlackListed[_maker]; } function getOwner() external view returns (address) { return owner; } mapping (address => bool) public isBlackListed; function addBlackList (address _evilUser) public onlyOwner { isBlackListed[_evilUser] = true; AddedBlackList(_evilUser); } function removeBlackList (address _clearedUser) public onlyOwner { isBlackListed[_clearedUser] = false; RemovedBlackList(_clearedUser); } function destroyBlackFunds (address _blackListedUser) public onlyOwner { require(isBlackListed[_blackListedUser]); uint dirtyFunds = balanceOf(_blackListedUser); balances[_blackListedUser] = 0; _totalSupply -= dirtyFunds; DestroyedBlackFunds(_blackListedUser, dirtyFunds); } event DestroyedBlackFunds(address _blackListedUser, uint _balance); event AddedBlackList(address _user); event RemovedBlackList(address _user); } abstract contract UpgradedStandardToken is StandardToken{ // those methods are called by the legacy contract // and they must ensure msg.sender to be the contract address function transferByLegacy(address from, address to, uint value) virtual public; function transferFromByLegacy(address sender, address from, address spender, uint value) virtual public; function approveByLegacy(address from, address spender, uint value) virtual public; } contract UquidCoin is Pausable, StandardToken, BlackList { string public name; string public symbol; uint public decimals; address public upgradedAddress; bool public deprecated; // The contract can be initialized with a number of tokens // All the tokens are deposited to the owner address // // @param _balance Initial supply of the contract // @param _name Token Name // @param _symbol Token symbol // @param _decimals Token decimals constructor (uint _initialSupply, string memory _name, string memory _symbol, uint _decimals) public { _totalSupply = _initialSupply; name = _name; symbol = _symbol; decimals = _decimals; balances[owner] = _initialSupply; deprecated = false; } // Forward ERC20 methods to upgraded contract if this one is deprecated function transfer(address _to, uint _value) public override whenNotPaused { require(!isBlackListed[msg.sender]); if (deprecated) { return UpgradedStandardToken(upgradedAddress).transferByLegacy(msg.sender, _to, _value); } else { return super.transfer(_to, _value); } } // Forward ERC20 methods to upgraded contract if this one is deprecated function transferFrom(address _from, address _to, uint _value) public override whenNotPaused { require(!isBlackListed[_from]); if (deprecated) { return UpgradedStandardToken(upgradedAddress).transferFromByLegacy(msg.sender, _from, _to, _value); } else { return super.transferFrom(_from, _to, _value); } } // Forward ERC20 methods to upgraded contract if this one is deprecated function balanceOf(address who) public override view returns (uint) { if (deprecated) { return UpgradedStandardToken(upgradedAddress).balanceOf(who); } else { return super.balanceOf(who); } } // Forward ERC20 methods to upgraded contract if this one is deprecated function approve(address _spender, uint _value) public override onlyPayloadSize(2 * 32) { if (deprecated) { return UpgradedStandardToken(upgradedAddress).approveByLegacy(msg.sender, _spender, _value); } else { return super.approve(_spender, _value); } } // Forward ERC20 methods to upgraded contract if this one is deprecated function allowance(address _owner, address _spender) public override view returns (uint remaining) { if (deprecated) { return StandardToken(upgradedAddress).allowance(_owner, _spender); } else { return super.allowance(_owner, _spender); } } // deprecate current contract in favour of a new one function deprecate(address _upgradedAddress) public onlyOwner { deprecated = true; upgradedAddress = _upgradedAddress; Deprecate(_upgradedAddress); } // deprecate current contract if favour of a new one function totalSupply() public override view returns (uint) { if (deprecated) { return StandardToken(upgradedAddress).totalSupply(); } else { return _totalSupply; } } // Issue a new amount of tokens // these tokens are deposited into the owner address // // @param _amount Number of tokens to be issued function issue(uint amount) public onlyOwner { require(_totalSupply + amount > _totalSupply); require(balances[owner] + amount > balances[owner]); balances[owner] += amount; _totalSupply += amount; Issue(amount); } // Redeem tokens. // These tokens are withdrawn from the owner address // if the balance must be enough to cover the redeem // or the call will fail. // @param _amount Number of tokens to be issued function redeem(uint amount) public onlyOwner { require(_totalSupply >= amount); require(balances[owner] >= amount); _totalSupply -= amount; balances[owner] -= amount; Redeem(amount); } function setParams(uint newBasisPoints, uint newMaxFee) public onlyOwner { // Ensure transparency by hardcoding limit beyond which fees can never be added require(newBasisPoints < 20); require(newMaxFee < 50); basisPointsRate = newBasisPoints; maximumFee = newMaxFee.mul(10**decimals); Params(basisPointsRate, maximumFee); } // Called when new token are issued event Issue(uint amount); // Called when tokens are redeemed event Redeem(uint amount); // Called when contract is deprecated event Deprecate(address newAddress); // Called if contract ever adds fees event Params(uint feeBasisPoints, uint maxFee); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_decimals","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"Deprecate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_blackListedUser","type":"address"},{"indexed":false,"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"DestroyedBlackFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Issue","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feeBasisPoints","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxFee","type":"uint256"}],"name":"Params","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"}],"name":"RemovedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"inputs":[],"name":"MAX_UINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"basisPointsRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_upgradedAddress","type":"address"}],"name":"deprecate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deprecated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_blackListedUser","type":"address"}],"name":"destroyBlackFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_maker","type":"address"}],"name":"getBlackListStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"issue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maximumFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBasisPoints","type":"uint256"},{"internalType":"uint256","name":"newMaxFee","type":"uint256"}],"name":"setParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upgradedAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405260008060146101000a81548160ff021916908315150217905550600060035560006004553480156200003557600080fd5b5060405162002d5038038062002d50833981810160405260808110156200005b57600080fd5b8101908080519060200190929190805160405193929190846401000000008211156200008657600080fd5b838201915060208201858111156200009d57600080fd5b8251866001820283011164010000000082111715620000bb57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000f1578082015181840152602081019050620000d4565b50505050905090810190601f1680156200011f5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200014357600080fd5b838201915060208201858111156200015a57600080fd5b82518660018202830111640100000000821117156200017857600080fd5b8083526020830192505050908051906020019080838360005b83811015620001ae57808201518184015260208101905062000191565b50505050905090810190601f168015620001dc5780820380516001836020036101000a031916815260200191505b5060405260200180519060200190929190505050336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360018190555082600790805190602001906200024f929190620002fa565b50816008908051906020019062000268929190620002fa565b508060098190555083600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600a60146101000a81548160ff02191690831515021790555050505050620003a0565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200033d57805160ff19168380011785556200036e565b828001600101855582156200036e579182015b828111156200036d57825182559160200191906001019062000350565b5b5090506200037d919062000381565b5090565b5b808211156200039c57600081600090555060010162000382565b5090565b6129a080620003b06000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806370a082311161010f578063db006a75116100a2578063e4997dc511610071578063e4997dc5146108fb578063e5b5019a1461093f578063f2fde38b1461095d578063f3bdc228146109a1576101f0565b8063db006a75146107dd578063dd62ed3e1461080b578063dd644f7214610883578063e47d6060146108a1576101f0565b806395d89b41116100de57806395d89b41146106a6578063a9059cbb14610729578063c0324c7714610777578063cc872b66146107af576101f0565b806370a08231146105dc5780638456cb5914610634578063893d20e81461063e5780638da5cb5b14610672576101f0565b806327e235e3116101875780633f4ba83a116101565780633f4ba83a146104e057806359bf1abe146104ea5780635c658165146105445780635c975abb146105bc576101f0565b806327e235e31461042e578063313ce5671461048657806335390714146104a45780633eaaf86b146104c2576101f0565b80630ecb93c0116101c35780630ecb93c01461032a57806318160ddd1461036e57806323b872dd1461038c57806326976e3f146103fa576101f0565b806306fdde03146101f55780630753c30c14610278578063095ea7b3146102bc5780630e136b191461030a575b600080fd5b6101fd6109e5565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023d578082015181840152602081019050610222565b50505050905090810190601f16801561026a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ba6004803603602081101561028e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a83565b005b610308600480360360408110156102d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b87565b005b610312610c90565b60405180821515815260200191505060405180910390f35b61036c6004803603602081101561034057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca3565b005b610376610da3565b6040518082815260200191505060405180910390f35b6103f8600480360360608110156103a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e6d565b005b610402610ff0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104706004803603602081101561044457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611016565b6040518082815260200191505060405180910390f35b61048e61102e565b6040518082815260200191505060405180910390f35b6104ac611034565b6040518082815260200191505060405180910390f35b6104ca61103a565b6040518082815260200191505060405180910390f35b6104e8611040565b005b61052c6004803603602081101561050057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110f9565b60405180821515815260200191505060405180910390f35b6105a66004803603604081101561055a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061114f565b6040518082815260200191505060405180910390f35b6105c4611174565b60405180821515815260200191505060405180910390f35b61061e600480360360208110156105f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611187565b6040518082815260200191505060405180910390f35b61063c61127a565b005b610646611335565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61067a61135e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106ae611382565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106ee5780820151818401526020810190506106d3565b50505050905090810190601f16801561071b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107756004803603604081101561073f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611420565b005b6107ad6004803603604081101561078d57600080fd5b810190808035906020019092919080359060200190929190505050611583565b005b6107db600480360360208110156107c557600080fd5b8101908080359060200190929190505050611661565b005b610809600480360360208110156107f357600080fd5b8101908080359060200190929190505050611851565b005b61086d6004803603604081101561082157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119dd565b6040518082815260200191505060405180910390f35b61088b611af0565b6040518082815260200191505060405180910390f35b6108e3600480360360208110156108b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611af6565b60405180821515815260200191505060405180910390f35b61093d6004803603602081101561091157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b16565b005b610947611c16565b6040518082815260200191505060405180910390f35b61099f6004803603602081101561097357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c3a565b005b6109e3600480360360208110156109b757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d0a565b005b60078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a7b5780601f10610a5057610100808354040283529160200191610a7b565b820191906000526020600020905b815481529060010190602001808311610a5e57829003601f168201915b505050505081565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610adb57600080fd5b6001600a60146101000a81548160ff02191690831515021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e81604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b60406004810160003690501015610b9d57600080fd5b600a60149054906101000a900460ff1615610c8057600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aee92d333385856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b158015610c6357600080fd5b505af1158015610c77573d6000803e3d6000fd5b50505050610c8b565b610c8a8383611e73565b5b505050565b600a60149054906101000a900460ff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cfb57600080fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc81604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6000600a60149054906101000a900460ff1615610e6457600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610e2257600080fd5b505afa158015610e36573d6000803e3d6000fd5b505050506040513d6020811015610e4c57600080fd5b81019080805190602001909291905050509050610e6a565b60015490505b90565b600060149054906101000a900460ff1615610e8757600080fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ede57600080fd5b600a60149054906101000a900460ff1615610fdf57600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638b477adb338585856040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff168152602001828152602001945050505050600060405180830381600087803b158015610fc257600080fd5b505af1158015610fd6573d6000803e3d6000fd5b50505050610feb565b610fea83838361200c565b5b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60026020528060005260406000206000915090505481565b60095481565b60045481565b60015481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461109857600080fd5b600060149054906101000a900460ff166110b157600080fd5b60008060146101000a81548160ff0219169083151502179055507f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6005602052816000526040600020602052806000526040600020600091509150505481565b600060149054906101000a900460ff1681565b6000600a60149054906101000a900460ff161561126957600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561122757600080fd5b505afa15801561123b573d6000803e3d6000fd5b505050506040513d602081101561125157600080fd5b81019080805190602001909291905050509050611275565b611272826124b1565b90505b919050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112d257600080fd5b600060149054906101000a900460ff16156112ec57600080fd5b6001600060146101000a81548160ff0219169083151502179055507f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114185780601f106113ed57610100808354040283529160200191611418565b820191906000526020600020905b8154815290600101906020018083116113fb57829003601f168201915b505050505081565b600060149054906101000a900460ff161561143a57600080fd5b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561149157600080fd5b600a60149054906101000a900460ff161561157457600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636e18980a3384846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050600060405180830381600087803b15801561155757600080fd5b505af115801561156b573d6000803e3d6000fd5b5050505061157f565b61157e82826124fa565b5b5050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115db57600080fd5b601482106115e857600080fd5b603281106115f557600080fd5b81600381905550611614600954600a0a8261286090919063ffffffff16565b6004819055507fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e600354600454604051808381526020018281526020019250505060405180910390a15050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116b957600080fd5b6001548160015401116116cb57600080fd5b600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054011161179957600080fd5b80600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550806001600082825401925050819055507fcb8241adb0c3fdb35b70c24ce35c5eb0c17af7431c99f827d44a445ca624176a816040518082815260200191505060405180910390a150565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118a957600080fd5b8060015410156118b857600080fd5b80600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561192557600080fd5b8060016000828254039250508190555080600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055507f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a44816040518082815260200191505060405180910390a150565b6000600a60149054906101000a900460ff1615611add57600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b158015611a9b57600080fd5b505afa158015611aaf573d6000803e3d6000fd5b505050506040513d6020811015611ac557600080fd5b81019080805190602001909291905050509050611aea565b611ae78383612897565b90505b92915050565b60035481565b60066020528060005260406000206000915054906101000a900460ff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b6e57600080fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c81604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c9257600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d0757806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d6257600080fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611db857600080fd5b6000611dc382611187565b90506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806001600082825403925050819055507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c68282604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b60406004810160003690501015611e8957600080fd5b60008214158015611f1757506000600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414155b15611f2157600080fd5b81600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a3505050565b6060600481016000369050101561202257600080fd5b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060006120ce6127106120c06003548761286090919063ffffffff16565b61291e90919063ffffffff16565b90506004548111156120e05760045490505b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82101561219c5761211b848361293790919063ffffffff16565b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60006121b1828661293790919063ffffffff16565b905061220585600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461293790919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061229a81600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461294e90919063ffffffff16565b600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008211156124435761235982600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461294e90919063ffffffff16565b600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6040600481016000369050101561251057600080fd5b600061253b61271061252d6003548661286090919063ffffffff16565b61291e90919063ffffffff16565b905060045481111561254d5760045490505b6000612562828561293790919063ffffffff16565b90506125b684600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461293790919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061264b81600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461294e90919063ffffffff16565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008211156127f45761270a82600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461294e90919063ffffffff16565b600260008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050505050565b6000808314156128735760009050612891565b600082840290508284828161288457fe5b041461288c57fe5b809150505b92915050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008082848161292a57fe5b0490508091505092915050565b60008282111561294357fe5b818303905092915050565b60008082840190508381101561296057fe5b809150509291505056fea2646970667358221220ec4fd9542c8e29399921b57a8e516a592a1510b943c330b0f386d211b7fe405664736f6c634300060c00330000000000000000000000000000000000000000002116545850052128000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a557175696420436f696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035551430000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000002116545850052128000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000a557175696420436f696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035551430000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 40000000000000000000000000
Arg [1] : _name (string): Uquid Coin
Arg [2] : _symbol (string): UQC
Arg [3] : _decimals (uint256): 18
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000002116545850052128000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 557175696420436f696e00000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5551430000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
10237:4963:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10303:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13102:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12342:311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10419:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;8947:145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;13349:223;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11552:371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10382:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;3044:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10355:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3210:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2092:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8392:90;;;:::i;:::-;;8669:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;4896:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7776:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12008:249;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8217:88;;;:::i;:::-;;8797:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;1197:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;10328;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11132:335;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14478:387;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;13736:266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14233:237;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12738:298;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3172:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8888:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;9100:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4966:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1764:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;9268:324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10303:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13102:181::-;1564:5;;;;;;;;;;1550:19;;:10;:19;;;1542:28;;;;;;13188:4:::1;13175:10;;:17;;;;;;;;;;;;;;;;;;13221:16;13203:15;;:34;;;;;;;;;;;;;;;;;;13248:27;13258:16;13248:27;;;;;;;;;;;;;;;;;;;;13102:181:::0;:::o;12342:311::-;12422:6;3396:1;3389:4;:8;3371;;:15;;:26;3369:29;3361:38;;;;;;12445:10:::1;;;;;;;;;;;12441:205;;;12501:15;;;;;;;;;;;12479:54;;;12534:10;12546:8;12556:6;12479:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;12472:91;;12441:205;12603:31;12617:8;12627:6;12603:13;:31::i;:::-;3410:1;12342:311:::0;;;:::o;10419:22::-;;;;;;;;;;;;;:::o;8947:145::-;1564:5;;;;;;;;;;1550:19;;:10;:19;;;1542:28;;;;;;9044:4:::1;9017:13;:24;9031:9;9017:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;9059:25;9074:9;9059:25;;;;;;;;;;;;;;;;;;;;8947:145:::0;:::o;13349:223::-;13402:4;13423:10;;;;;;;;;;;13419:146;;;13471:15;;;;;;;;;;;13457:42;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13450:51;;;;13419:146;13541:12;;13534:19;;13349:223;;:::o;11552:371::-;7952:6;;;;;;;;;;;7951:7;7943:16;;;;;;11665:13:::1;:20;11679:5;11665:20;;;;;;;;;;;;;;;;;;;;;;;;;11664:21;11656:30;;;::::0;::::1;;11701:10;;;;;;;;;;;11697:219;;;11757:15;;;;;;;;;;;11735:59;;;11795:10;11807:5;11814:3;11819:6;11735:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;11728:98;;11697:219;11866:38;11885:5;11892:3;11897:6;11866:18;:38::i;:::-;7966:1;11552:371:::0;;;:::o;10382:30::-;;;;;;;;;;;;;:::o;3044:40::-;;;;;;;;;;;;;;;;;:::o;10355:20::-;;;;:::o;3210:26::-;;;;:::o;2092:24::-;;;;:::o;8392:90::-;1564:5;;;;;;;;;;1550:19;;:10;:19;;;1542:28;;;;;;8112:6:::1;;;;;;;;;;;8104:15;;;::::0;::::1;;8455:5:::2;8446:6:::0;::::2;:14;;;;;;;;;;;;;;;;;;8467:9;;;;;;;;;;8392:90::o:0;8669:120::-;8736:4;8760:13;:21;8774:6;8760:21;;;;;;;;;;;;;;;;;;;;;;;;;8753:28;;8669:120;;;:::o;4896:61::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7776:26::-;;;;;;;;;;;;;:::o;12008:249::-;12070:4;12091:10;;;;;;;;;;;12087:163;;;12147:15;;;;;;;;;;;12125:48;;;12174:3;12125:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12118:60;;;;12087:163;12218:20;12234:3;12218:15;:20::i;:::-;12211:27;;12008:249;;;;:::o;8217:88::-;1564:5;;;;;;;;;;1550:19;;:10;:19;;;1542:28;;;;;;7952:6:::1;;;;;;;;;;;7951:7;7943:16;;;::::0;::::1;;8281:4:::2;8272:6;;:13;;;;;;;;;;;;;;;;;;8292:7;;;;;;;;;;8217:88::o:0;8797:83::-;8840:7;8867:5;;;;;;;;;;;8860:12;;8797:83;:::o;1197:20::-;;;;;;;;;;;;:::o;10328:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11132:335::-;7952:6;;;;;;;;;;;7951:7;7943:16;;;;;;11226:13:::1;:25;11240:10;11226:25;;;;;;;;;;;;;;;;;;;;;;;;;11225:26;11217:35;;;::::0;::::1;;11267:10;;;;;;;;;;;11263:197;;;11323:15;;;;;;;;;;;11301:55;;;11357:10;11369:3;11374:6;11301:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;11294:87;;11263:197;11421:27;11436:3;11441:6;11421:14;:27::i;:::-;7966:1;11132:335:::0;;:::o;14478:387::-;1564:5;;;;;;;;;;1550:19;;:10;:19;;;1542:28;;;;;;14676:2:::1;14659:14;:19;14651:28;;;::::0;::::1;;14710:2;14698:9;:14;14690:23;;;::::0;::::1;;14744:14;14726:15;:32;;;;14782:27;14800:8;;14796:2;:12;14782:9;:13;;:27;;;;:::i;:::-;14769:10;:40;;;;14822:35;14829:15;;14846:10;;14822:35;;;;;;;;;;;;;;;;;;;;;;;;14478:387:::0;;:::o;13736:266::-;1564:5;;;;;;;;;;1550:19;;:10;:19;;;1542:28;;;;;;13824:12:::1;;13815:6;13800:12;;:21;:36;13792:45;;;::::0;::::1;;13883:8;:15;13892:5:::0;::::1;;;;;;;;;;13883:15;;;;;;;;;;;;;;;;13874:6;13856:8;:15;13865:5:::0;::::1;;;;;;;;;;13856:15;;;;;;;;;;;;;;;;:24;:42;13848:51;;;::::0;::::1;;13931:6;13912:8;:15;13921:5:::0;::::1;;;;;;;;;;13912:15;;;;;;;;;;;;;;;;:25;;;;;;;;;;;13964:6;13948:12;;:22;;;;;;;;;;;13981:13;13987:6;13981:13;;;;;;;;;;;;;;;;;;13736:266:::0;:::o;14233:237::-;1564:5;;;;;;;;;;1550:19;;:10;:19;;;1542:28;;;;;;14314:6:::1;14298:12;;:22;;14290:31;;;::::0;::::1;;14359:6;14340:8;:15;14349:5:::0;::::1;;;;;;;;;;14340:15;;;;;;;;;;;;;;;;:25;;14332:34;;;::::0;::::1;;14395:6;14379:12;;:22;;;;;;;;;;;14431:6;14412:8;:15;14421:5:::0;::::1;;;;;;;;;;14412:15;;;;;;;;;;;;;;;;:25;;;;;;;;;;;14448:14;14455:6;14448:14;;;;;;;;;;;;;;;;;;14233:237:::0;:::o;12738:298::-;12821:14;12852:10;;;;;;;;;;;12848:181;;;12900:15;;;;;;;;;;;12886:40;;;12927:6;12935:8;12886:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12879:65;;;;12848:181;12984:33;13000:6;13008:8;12984:15;:33::i;:::-;12977:40;;12738:298;;;;;:::o;3172:31::-;;;;:::o;8888:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;9100:160::-;1564:5;;;;;;;;;;1550:19;;:10;:19;;;1542:28;;;;;;9206:5:::1;9176:13;:27;9190:12;9176:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;9222:30;9239:12;9222:30;;;;;;;;;;;;;;;;;;;;9100:160:::0;:::o;4966:42::-;4998:10;4966:42;:::o;1764:151::-;1564:5;;;;;;;;;;1550:19;;:10;:19;;;1542:28;;;;;;1861:1:::1;1841:22;;:8;:22;;;1837:71;;1888:8;1880:5;::::0;:16:::1;;;;;;;;;;;;;;;;;;1837:71;1764:151:::0;:::o;9268:324::-;1564:5;;;;;;;;;;1550:19;;:10;:19;;;1542:28;;;;;;9358:13:::1;:31;9372:16;9358:31;;;;;;;;;;;;;;;;;;;;;;;;;9350:40;;;::::0;::::1;;9401:15;9419:27;9429:16;9419:9;:27::i;:::-;9401:45;;9486:1;9457:8;:26;9466:16;9457:26;;;;;;;;;;;;;;;:30;;;;9514:10;9498:12;;:26;;;;;;;;;;;9535:49;9555:16;9573:10;9535:49;;;;;;;;;;;;;;;;;;;;;;;;;;1581:1;9268:324:::0;:::o;6478:590::-;6566:6;3396:1;3389:4;:8;3371;;:15;;:26;3369:29;3361:38;;;;;;6916:1:::1;6906:6;:11;;6905:53;;;;;6956:1;6923:7;:19;6931:10;6923:19;;;;;;;;;;;;;;;:29;6943:8;6923:29;;;;;;;;;;;;;;;;:34;;6905:53;6903:56;6895:65;;;::::0;::::1;;7005:6;6973:7;:19;6981:10;6973:19;;;;;;;;;;;;;;;:29;6993:8;6973:29;;;;;;;;;;;;;;;:38;;;;7043:8;7022:38;;7031:10;7022:38;;;7053:6;7022:38;;;;;;;;;;;;;;;;;;6478:590:::0;;;:::o;5298:933::-;5402:6;3396:1;3389:4;:8;3371;;:15;;:26;3369:29;3361:38;;;;;;5421:18:::1;5442:7;:14;5450:5;5442:14;;;;;;;;;;;;;;;:26;5457:10;5442:26;;;;;;;;;;;;;;;;5421:47;;5639:8;5650:40;5684:5;5651:27;5662:15;;5651:6;:10;;:27;;;;:::i;:::-;5650:33;;:40;;;;:::i;:::-;5639:51;;5711:10;;5705:3;:16;5701:65;;;5744:10;;5738:16;;5701:65;4998:10;5780;:21;5776:105;;;5847:22;5862:6;5847:10;:14;;:22;;;;:::i;:::-;5818:7;:14;5826:5;5818:14;;;;;;;;;;;;;;;:26;5833:10;5818:26;;;;;;;;;;;;;;;:51;;;;5776:105;5891:15;5909;5920:3;5909:6;:10;;:15;;;;:::i;:::-;5891:33;;5953:27;5973:6;5953:8;:15;5962:5;5953:15;;;;;;;;;;;;;;;;:19;;:27;;;;:::i;:::-;5935:8;:15;5944:5;5935:15;;;;;;;;;;;;;;;:45;;;;6007:29;6025:10;6007:8;:13;6016:3;6007:13;;;;;;;;;;;;;;;;:17;;:29;;;;:::i;:::-;5991:8;:13;6000:3;5991:13;;;;;;;;;;;;;;;:45;;;;6057:1;6051:3;:7;6047:129;;;6093:24;6113:3;6093:8;:15;6102:5:::0;::::1;;;;;;;;;;6093:15;;;;;;;;;;;;;;;;:19;;:24;;;;:::i;:::-;6075:8;:15;6084:5:::0;::::1;;;;;;;;;;6075:15;;;;;;;;;;;;;;;:42;;;;6153:5;::::0;::::1;;;;;;;;6137:27;;6146:5;6137:27;;;6160:3;6137:27;;;;;;;;;;;;;;;;;;6047:129;6207:3;6191:32;;6200:5;6191:32;;;6212:10;6191:32;;;;;;;;;;;;;;;;;;3410:1;;;5298:933:::0;;;;:::o;4423:129::-;4496:12;4528:8;:16;4537:6;4528:16;;;;;;;;;;;;;;;;4521:23;;4423:129;;;:::o;3592:600::-;3676:6;3396:1;3389:4;:8;3371;;:15;;:26;3369:29;3361:38;;;;;;3695:8:::1;3706:40;3740:5;3707:27;3718:15;;3707:6;:10;;:27;;;;:::i;:::-;3706:33;;:40;;;;:::i;:::-;3695:51;;3767:10;;3761:3;:16;3757:65;;;3800:10;;3794:16;;3757:65;3832:15;3850;3861:3;3850:6;:10;;:15;;;;:::i;:::-;3832:33;;3899:32;3924:6;3899:8;:20;3908:10;3899:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;3876:8;:20;3885:10;3876:20;;;;;;;;;;;;;;;:55;;;;3958:29;3976:10;3958:8;:13;3967:3;3958:13;;;;;;;;;;;;;;;;:17;;:29;;;;:::i;:::-;3942:8;:13;3951:3;3942:13;;;;;;;;;;;;;;;:45;;;;4008:1;4002:3;:7;3998:134;;;4044:24;4064:3;4044:8;:15;4053:5:::0;::::1;;;;;;;;;;4044:15;;;;;;;;;;;;;;;;:19;;:24;;;;:::i;:::-;4026:8;:15;4035:5:::0;::::1;;;;;;;;;;4026:15;;;;;;;;;;;;;;;:42;;;;4109:5;::::0;::::1;;;;;;;;4088:32;;4097:10;4088:32;;;4116:3;4088:32;;;;;;;;;;;;;;;;;;3998:134;4168:3;4147:37;;4156:10;4147:37;;;4173:10;4147:37;;;;;;;;;;;;;;;;;;3410:1;;3592:600:::0;;;:::o;181:208::-;239:7;268:1;263;:6;259:47;;;293:1;286:8;;;;259:47;316:9;332:1;328;:5;316:17;;360:1;355;351;:5;;;;;;:10;344:18;;;;380:1;373:8;;;181:208;;;;;:::o;7416:158::-;7507:14;7541:7;:15;7549:6;7541:15;;;;;;;;;;;;;;;:25;7557:8;7541:25;;;;;;;;;;;;;;;;7534:32;;7416:158;;;;:::o;397:288::-;455:7;554:9;570:1;566;:5;;;;;;554:17;;676:1;669:8;;;397:288;;;;:::o;693:123::-;751:7;783:1;778;:6;;771:14;;;;807:1;803;:5;796:12;;693:123;;;;:::o;824:147::-;882:7;902:9;918:1;914;:5;902:17;;942:1;937;:6;;930:14;;;;962:1;955:8;;;824:147;;;;:::o
Swarm Source
ipfs://ec4fd9542c8e29399921b57a8e516a592a1510b943c330b0f386d211b7fe4056
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.