Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 747 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 15100863 | 933 days ago | IN | 0 ETH | 0.00066513 | ||||
Transfer | 12975448 | 1268 days ago | IN | 0 ETH | 0.00159091 | ||||
Transfer | 12970771 | 1269 days ago | IN | 0 ETH | 0.00128075 | ||||
Transfer | 12970754 | 1269 days ago | IN | 0 ETH | 0.00171358 | ||||
Transfer | 12528077 | 1338 days ago | IN | 0 ETH | 0.00069146 | ||||
Transfer | 12527937 | 1338 days ago | IN | 0 ETH | 0.00069146 | ||||
Transfer | 12527922 | 1338 days ago | IN | 0 ETH | 0.00069146 | ||||
Transfer | 12333390 | 1368 days ago | IN | 0 ETH | 0.02320117 | ||||
Transfer | 12326453 | 1369 days ago | IN | 0 ETH | 0.00273994 | ||||
Transfer | 12312666 | 1371 days ago | IN | 0 ETH | 0.01552327 | ||||
Transfer | 12312665 | 1371 days ago | IN | 0 ETH | 0.01552327 | ||||
Transfer | 12312665 | 1371 days ago | IN | 0 ETH | 0.01552327 | ||||
Transfer | 12312665 | 1371 days ago | IN | 0 ETH | 0.00069146 | ||||
Transfer | 12312665 | 1371 days ago | IN | 0 ETH | 0.00069146 | ||||
Transfer | 12312665 | 1371 days ago | IN | 0 ETH | 0.00069146 | ||||
Transfer | 12312665 | 1371 days ago | IN | 0 ETH | 0.00069146 | ||||
Transfer | 12255682 | 1380 days ago | IN | 0 ETH | 0.00635725 | ||||
Transfer | 12184218 | 1391 days ago | IN | 0 ETH | 0.00542561 | ||||
Transfer | 12157947 | 1395 days ago | IN | 0 ETH | 0.01624167 | ||||
Transfer | 12157537 | 1395 days ago | IN | 0 ETH | 0.00676435 | ||||
Transfer | 12145823 | 1397 days ago | IN | 0 ETH | 0.00557249 | ||||
Transfer | 12132667 | 1399 days ago | IN | 0 ETH | 0.01624167 | ||||
Transfer | 12132641 | 1399 days ago | IN | 0 ETH | 0.01624167 | ||||
Transfer | 12132634 | 1399 days ago | IN | 0 ETH | 0.01624167 | ||||
Transfer | 12113756 | 1402 days ago | IN | 0 ETH | 0.01624167 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
USDRTether
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-04-16 */ // File: node_modules\@openzeppelin\contracts\GSN\Context.sol pragma solidity ^0.5.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: node_modules\@openzeppelin\contracts\math\SafeMath.sol pragma solidity ^0.5.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin\contracts\token\ERC20\ERC20.sol pragma solidity ^0.5.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20Mintable}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } } // File: @openzeppelin\contracts\access\Roles.sol pragma solidity ^0.5.0; /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } // File: @openzeppelin\contracts\ownership\Ownable.sol pragma solidity ^0.5.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts\ControlledMinterRole.sol pragma solidity ^0.5.0; contract ControlledMinterRole is Ownable { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; constructor () internal { _addMinter(_msgSender()); } modifier onlyMinter() { require(isMinter(_msgSender()), "ControlledMinterRole: caller does not have the Minter role"); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } // onlyMinter -> onlyOwner function addMinter(address account) public onlyOwner { _addMinter(account); } // Add require() function renounceMinter() public { require(!isOwner(), "ControlledMinterRole: owner cannot renounce MinterRole"); _removeMinter(_msgSender()); } // new function function revokeMinter(address account) public onlyOwner { require(account != owner(), "ControlledMinterRole: owner cannot renounce MinterRole"); _removeMinter(account); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } } // File: contracts\ControlledERC20Mintable.sol pragma solidity ^0.5.0; /** * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole}, * which have permission to mint (create) new tokens as they see fit. * * At construction, the deployer of the contract is the only minter. */ contract ControlledERC20Mintable is ERC20, ControlledMinterRole { /** * @dev See {ERC20-_mint}. * * Requirements: * * - the caller must have the {MinterRole}. */ function mint(address account, uint256 amount) public onlyMinter returns (bool) { _mint(account, amount); return true; } } // File: contracts\USDRTether.sol pragma solidity ^0.5.0; contract USDRTether is ControlledERC20Mintable { using SafeMath for uint256; string public constant name = "USDR Tether"; string public constant symbol = "USDRT"; uint8 public constant decimals = 18; uint256 public constant INITIAL_SUPPLY = 50000000 * (10 ** uint256(decimals)); uint256 public constant MAXIMUM_SUPPLY = 10000000000 * (10 ** uint256(decimals)); uint256 public constant SUPPLY_MULTIPLE = 30000000 * (10 ** uint256(decimals)); constructor() public { _mint(_msgSender(), INITIAL_SUPPLY); } function mint(address _account, uint256 _amount) public onlyMinter returns (bool) { require(_account != address(0)); require(_amount > 0); require(_amount.mod(SUPPLY_MULTIPLE) == 0, "Minting is only possible as a multiple of the SUPPLY_MULTIPLE variable."); require(totalSupply() != MAXIMUM_SUPPLY, "Can't mint more than MAXIMUM_SUPPLY."); if(totalSupply().add(_amount) > MAXIMUM_SUPPLY) { _amount = MAXIMUM_SUPPLY.sub(totalSupply()); } super.mint(_account, _amount); return true; } function mint(uint256 _amount) public onlyMinter returns (bool) { require(_amount > 0); require(_amount.mod(SUPPLY_MULTIPLE) == 0, "Minting is only possible as a multiple of the SUPPLY_MULTIPLE variable."); require(totalSupply() != MAXIMUM_SUPPLY, "Can't mint more than MAXIMUM_SUPPLY."); if(totalSupply().add(_amount) > MAXIMUM_SUPPLY) { _amount = MAXIMUM_SUPPLY.sub(totalSupply()); } super.mint(owner(), _amount); return true; } function mint() public onlyMinter returns (bool) { require(totalSupply() != MAXIMUM_SUPPLY, "Can't mint more than MAXIMUM_SUPPLY."); uint256 _amount = SUPPLY_MULTIPLE; if(totalSupply().add(_amount) > MAXIMUM_SUPPLY) { _amount = MAXIMUM_SUPPLY.sub(totalSupply()); } super.mint(owner(), _amount); return true; } function renounceOwnership() public onlyOwner { revert("The owner cannot release ownership."); } function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); require(newOwner != owner()); addMinter(newOwner); super.transferOwnership(newOwner); renounceMinter(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAXIMUM_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"SUPPLY_MULTIPLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revokeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506000620000276001600160e01b03620000d316565b600380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200009b6200008c6001600160e01b03620000d316565b6001600160e01b03620000d716565b620000cd620000b26001600160e01b03620000d316565b6a295be96e640669720000006001600160e01b036200012916565b62000382565b3390565b620000f28160046200022a60201b6200140e1790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6001600160a01b03821662000185576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001a181600254620002b760201b62000e4b1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001d491839062000e4b620002b7821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6200023f82826001600160e01b036200031916565b1562000292576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60008282018381101562000312576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006001600160a01b038216620003625760405162461bcd60e51b815260040180806020018281038252602281526020018062001be66022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b61185480620003926000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063a0712d6811610097578063aa271e1a11610071578063aa271e1a14610422578063cfbd488514610448578063dd62ed3e1461046e578063f2fde38b1461049c57610173565b8063a0712d68146103ad578063a457c2d7146103ca578063a9059cbb146103f657610173565b8063715018a6146103415780638da5cb5b1461034b5780638f32d59b1461036f57806395d89b4114610377578063983b2d561461037f57806398650275146103a557610173565b80632ff2e9dc116101305780632ff2e9dc14610295578063313ce5671461029d57806339509351146102bb5780633d0c4924146102e757806340c10f19146102ef57806370a082311461031b57610173565b806306fdde0314610178578063095ea7b3146101f5578063096a1e82146102355780631249c58b1461024f57806318160ddd1461025757806323b872dd1461025f575b600080fd5b6101806104c2565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102216004803603604081101561020b57600080fd5b506001600160a01b0381351690602001356104e9565b604080519115158252519081900360200190f35b61023d610506565b60408051918252519081900360200190f35b610221610515565b61023d61062c565b6102216004803603606081101561027557600080fd5b506001600160a01b03813581169160208101359091169060400135610632565b61023d6106bf565b6102a56106ce565b6040805160ff9092168252519081900360200190f35b610221600480360360408110156102d157600080fd5b506001600160a01b0381351690602001356106d3565b61023d610727565b6102216004803603604081101561030557600080fd5b506001600160a01b038135169060200135610737565b61023d6004803603602081101561033157600080fd5b50356001600160a01b031661087f565b61034961089a565b005b610353610918565b604080516001600160a01b039092168252519081900360200190f35b610221610927565b61018061094d565b6103496004803603602081101561039557600080fd5b50356001600160a01b031661096e565b6103496109c1565b610221600480360360208110156103c357600080fd5b5035610a17565b610221600480360360408110156103e057600080fd5b506001600160a01b038135169060200135610b53565b6102216004803603604081101561040c57600080fd5b506001600160a01b038135169060200135610bc1565b6102216004803603602081101561043857600080fd5b50356001600160a01b0316610bd5565b6103496004803603602081101561045e57600080fd5b50356001600160a01b0316610bee565b61023d6004803603604081101561048457600080fd5b506001600160a01b0381358116916020013516610c96565b610349600480360360208110156104b257600080fd5b50356001600160a01b0316610cc1565b6040518060400160405280600b81526020016a2aa9a229102a32ba3432b960a91b81525081565b60006104fd6104f6610d5b565b8484610d5f565b50600192915050565b6a18d0bf423c03d8de00000081565b6000610527610522610d5b565b610bd5565b6105625760405162461bcd60e51b815260040180806020018281038252603a815260200180611767603a913960400191505060405180910390fd5b6b204fce5e3e2502611000000061057761062c565b14156105b45760405162461bcd60e51b81526004018080602001828103825260248152602001806116026024913960400191505060405180910390fd5b6a18d0bf423c03d8de0000006b204fce5e3e250261100000006105e5826105d961062c565b9063ffffffff610e4b16565b11156106125761060f6105f661062c565b6b204fce5e3e250261100000009063ffffffff610eac16565b90505b61062361061d610918565b82610eee565b50600191505090565b60025490565b600061063f848484610f40565b6106b58461064b610d5b565b6106b0856040518060600160405280602881526020016116d8602891396001600160a01b038a16600090815260016020526040812090610689610d5b565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61109c16565b610d5f565b5060019392505050565b6a295be96e6406697200000081565b601281565b60006104fd6106e0610d5b565b846106b085600160006106f1610d5b565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610e4b16565b6b204fce5e3e2502611000000081565b6000610744610522610d5b565b61077f5760405162461bcd60e51b815260040180806020018281038252603a815260200180611767603a913960400191505060405180910390fd5b6001600160a01b03831661079257600080fd5b6000821161079f57600080fd5b6107ba826a18d0bf423c03d8de00000063ffffffff61113316565b156107f65760405162461bcd60e51b81526004018080602001828103825260478152602001806115bb6047913960600191505060405180910390fd5b6b204fce5e3e2502611000000061080b61062c565b14156108485760405162461bcd60e51b81526004018080602001828103825260248152602001806116026024913960400191505060405180910390fd5b6b204fce5e3e25026110000000610861836105d961062c565b1115610875576108726105f661062c565b91505b6106b58383610eee565b6001600160a01b031660009081526020819052604090205490565b6108a2610927565b6108e1576040805162461bcd60e51b81526020600482018190526024820152600080516020611700833981519152604482015290519081900360640190fd5b60405162461bcd60e51b81526004018080602001828103825260238152602001806116946023913960400191505060405180910390fd5b6003546001600160a01b031690565b6003546000906001600160a01b031661093e610d5b565b6001600160a01b031614905090565b604051806040016040528060058152602001641554d1149560da1b81525081565b610976610927565b6109b5576040805162461bcd60e51b81526020600482018190526024820152600080516020611700833981519152604482015290519081900360640190fd5b6109be81611175565b50565b6109c9610927565b15610a055760405162461bcd60e51b81526004018080602001828103825260368152602001806117c56036913960400191505060405180910390fd5b610a15610a10610d5b565b6111bd565b565b6000610a24610522610d5b565b610a5f5760405162461bcd60e51b815260040180806020018281038252603a815260200180611767603a913960400191505060405180910390fd5b60008211610a6c57600080fd5b610a87826a18d0bf423c03d8de00000063ffffffff61113316565b15610ac35760405162461bcd60e51b81526004018080602001828103825260478152602001806115bb6047913960600191505060405180910390fd5b6b204fce5e3e25026110000000610ad861062c565b1415610b155760405162461bcd60e51b81526004018080602001828103825260248152602001806116026024913960400191505060405180910390fd5b6b204fce5e3e25026110000000610b2e836105d961062c565b1115610b4257610b3f6105f661062c565b91505b6104fd610b4d610918565b83610eee565b60006104fd610b60610d5b565b846106b0856040518060600160405280602581526020016117fb6025913960016000610b8a610d5b565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61109c16565b60006104fd610bce610d5b565b8484610f40565b6000610be860048363ffffffff61120516565b92915050565b610bf6610927565b610c35576040805162461bcd60e51b81526020600482018190526024820152600080516020611700833981519152604482015290519081900360640190fd5b610c3d610918565b6001600160a01b0316816001600160a01b03161415610c8d5760405162461bcd60e51b81526004018080602001828103825260368152602001806117c56036913960400191505060405180910390fd5b6109be816111bd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610cc9610927565b610d08576040805162461bcd60e51b81526020600482018190526024820152600080516020611700833981519152604482015290519081900360640190fd5b6001600160a01b038116610d1b57600080fd5b610d23610918565b6001600160a01b0316816001600160a01b03161415610d4157600080fd5b610d4a8161096e565b610d538161126c565b6109be6109c1565b3390565b6001600160a01b038316610da45760405162461bcd60e51b81526004018080602001828103825260248152602001806117a16024913960400191505060405180910390fd5b6001600160a01b038216610de95760405162461bcd60e51b815260040180806020018281038252602281526020018061164c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600082820183811015610ea5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000610ea583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061109c565b6000610efb610522610d5b565b610f365760405162461bcd60e51b815260040180806020018281038252603a815260200180611767603a913960400191505060405180910390fd5b6104fd83836112bc565b6001600160a01b038316610f855760405162461bcd60e51b81526004018080602001828103825260258152602001806117426025913960400191505060405180910390fd5b6001600160a01b038216610fca5760405162461bcd60e51b81526004018080602001828103825260238152602001806115986023913960400191505060405180910390fd5b61100d8160405180606001604052806026815260200161166e602691396001600160a01b038616600090815260208190526040902054919063ffffffff61109c16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611042908263ffffffff610e4b16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561112b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156110f05781810151838201526020016110d8565b50505050905090810190601f16801561111d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610ea583836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f00000000000000008152506113ac565b61118660048263ffffffff61140e16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6111ce60048263ffffffff61148f16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b03821661124c5760405162461bcd60e51b81526004018080602001828103825260228152602001806117206022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b611274610927565b6112b3576040805162461bcd60e51b81526020600482018190526024820152600080516020611700833981519152604482015290519081900360640190fd5b6109be816114f6565b6001600160a01b038216611317576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60025461132a908263ffffffff610e4b16565b6002556001600160a01b038216600090815260208190526040902054611356908263ffffffff610e4b16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600081836113fb5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156110f05781810151838201526020016110d8565b5082848161140557fe5b06949350505050565b6114188282611205565b1561146a576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6114998282611205565b6114d45760405162461bcd60e51b81526004018080602001828103825260218152602001806116b76021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6001600160a01b03811661153b5760405162461bcd60e51b81526004018080602001828103825260268152602001806116266026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b039290921691909117905556fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734d696e74696e67206973206f6e6c7920706f737369626c652061732061206d756c7469706c65206f662074686520535550504c595f4d554c5449504c45207661726961626c652e43616e2774206d696e74206d6f7265207468616e204d4158494d554d5f535550504c592e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365546865206f776e65722063616e6e6f742072656c65617365206f776e6572736869702e526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373436f6e74726f6c6c65644d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c6545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373436f6e74726f6c6c65644d696e746572526f6c653a206f776e65722063616e6e6f742072656e6f756e6365204d696e746572526f6c6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a7231582015961400396ef883fdf50017d51a9c3f1e8bf10b8469c0d2b3d2eacc096ed51f64736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063a0712d6811610097578063aa271e1a11610071578063aa271e1a14610422578063cfbd488514610448578063dd62ed3e1461046e578063f2fde38b1461049c57610173565b8063a0712d68146103ad578063a457c2d7146103ca578063a9059cbb146103f657610173565b8063715018a6146103415780638da5cb5b1461034b5780638f32d59b1461036f57806395d89b4114610377578063983b2d561461037f57806398650275146103a557610173565b80632ff2e9dc116101305780632ff2e9dc14610295578063313ce5671461029d57806339509351146102bb5780633d0c4924146102e757806340c10f19146102ef57806370a082311461031b57610173565b806306fdde0314610178578063095ea7b3146101f5578063096a1e82146102355780631249c58b1461024f57806318160ddd1461025757806323b872dd1461025f575b600080fd5b6101806104c2565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102216004803603604081101561020b57600080fd5b506001600160a01b0381351690602001356104e9565b604080519115158252519081900360200190f35b61023d610506565b60408051918252519081900360200190f35b610221610515565b61023d61062c565b6102216004803603606081101561027557600080fd5b506001600160a01b03813581169160208101359091169060400135610632565b61023d6106bf565b6102a56106ce565b6040805160ff9092168252519081900360200190f35b610221600480360360408110156102d157600080fd5b506001600160a01b0381351690602001356106d3565b61023d610727565b6102216004803603604081101561030557600080fd5b506001600160a01b038135169060200135610737565b61023d6004803603602081101561033157600080fd5b50356001600160a01b031661087f565b61034961089a565b005b610353610918565b604080516001600160a01b039092168252519081900360200190f35b610221610927565b61018061094d565b6103496004803603602081101561039557600080fd5b50356001600160a01b031661096e565b6103496109c1565b610221600480360360208110156103c357600080fd5b5035610a17565b610221600480360360408110156103e057600080fd5b506001600160a01b038135169060200135610b53565b6102216004803603604081101561040c57600080fd5b506001600160a01b038135169060200135610bc1565b6102216004803603602081101561043857600080fd5b50356001600160a01b0316610bd5565b6103496004803603602081101561045e57600080fd5b50356001600160a01b0316610bee565b61023d6004803603604081101561048457600080fd5b506001600160a01b0381358116916020013516610c96565b610349600480360360208110156104b257600080fd5b50356001600160a01b0316610cc1565b6040518060400160405280600b81526020016a2aa9a229102a32ba3432b960a91b81525081565b60006104fd6104f6610d5b565b8484610d5f565b50600192915050565b6a18d0bf423c03d8de00000081565b6000610527610522610d5b565b610bd5565b6105625760405162461bcd60e51b815260040180806020018281038252603a815260200180611767603a913960400191505060405180910390fd5b6b204fce5e3e2502611000000061057761062c565b14156105b45760405162461bcd60e51b81526004018080602001828103825260248152602001806116026024913960400191505060405180910390fd5b6a18d0bf423c03d8de0000006b204fce5e3e250261100000006105e5826105d961062c565b9063ffffffff610e4b16565b11156106125761060f6105f661062c565b6b204fce5e3e250261100000009063ffffffff610eac16565b90505b61062361061d610918565b82610eee565b50600191505090565b60025490565b600061063f848484610f40565b6106b58461064b610d5b565b6106b0856040518060600160405280602881526020016116d8602891396001600160a01b038a16600090815260016020526040812090610689610d5b565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61109c16565b610d5f565b5060019392505050565b6a295be96e6406697200000081565b601281565b60006104fd6106e0610d5b565b846106b085600160006106f1610d5b565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610e4b16565b6b204fce5e3e2502611000000081565b6000610744610522610d5b565b61077f5760405162461bcd60e51b815260040180806020018281038252603a815260200180611767603a913960400191505060405180910390fd5b6001600160a01b03831661079257600080fd5b6000821161079f57600080fd5b6107ba826a18d0bf423c03d8de00000063ffffffff61113316565b156107f65760405162461bcd60e51b81526004018080602001828103825260478152602001806115bb6047913960600191505060405180910390fd5b6b204fce5e3e2502611000000061080b61062c565b14156108485760405162461bcd60e51b81526004018080602001828103825260248152602001806116026024913960400191505060405180910390fd5b6b204fce5e3e25026110000000610861836105d961062c565b1115610875576108726105f661062c565b91505b6106b58383610eee565b6001600160a01b031660009081526020819052604090205490565b6108a2610927565b6108e1576040805162461bcd60e51b81526020600482018190526024820152600080516020611700833981519152604482015290519081900360640190fd5b60405162461bcd60e51b81526004018080602001828103825260238152602001806116946023913960400191505060405180910390fd5b6003546001600160a01b031690565b6003546000906001600160a01b031661093e610d5b565b6001600160a01b031614905090565b604051806040016040528060058152602001641554d1149560da1b81525081565b610976610927565b6109b5576040805162461bcd60e51b81526020600482018190526024820152600080516020611700833981519152604482015290519081900360640190fd5b6109be81611175565b50565b6109c9610927565b15610a055760405162461bcd60e51b81526004018080602001828103825260368152602001806117c56036913960400191505060405180910390fd5b610a15610a10610d5b565b6111bd565b565b6000610a24610522610d5b565b610a5f5760405162461bcd60e51b815260040180806020018281038252603a815260200180611767603a913960400191505060405180910390fd5b60008211610a6c57600080fd5b610a87826a18d0bf423c03d8de00000063ffffffff61113316565b15610ac35760405162461bcd60e51b81526004018080602001828103825260478152602001806115bb6047913960600191505060405180910390fd5b6b204fce5e3e25026110000000610ad861062c565b1415610b155760405162461bcd60e51b81526004018080602001828103825260248152602001806116026024913960400191505060405180910390fd5b6b204fce5e3e25026110000000610b2e836105d961062c565b1115610b4257610b3f6105f661062c565b91505b6104fd610b4d610918565b83610eee565b60006104fd610b60610d5b565b846106b0856040518060600160405280602581526020016117fb6025913960016000610b8a610d5b565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61109c16565b60006104fd610bce610d5b565b8484610f40565b6000610be860048363ffffffff61120516565b92915050565b610bf6610927565b610c35576040805162461bcd60e51b81526020600482018190526024820152600080516020611700833981519152604482015290519081900360640190fd5b610c3d610918565b6001600160a01b0316816001600160a01b03161415610c8d5760405162461bcd60e51b81526004018080602001828103825260368152602001806117c56036913960400191505060405180910390fd5b6109be816111bd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610cc9610927565b610d08576040805162461bcd60e51b81526020600482018190526024820152600080516020611700833981519152604482015290519081900360640190fd5b6001600160a01b038116610d1b57600080fd5b610d23610918565b6001600160a01b0316816001600160a01b03161415610d4157600080fd5b610d4a8161096e565b610d538161126c565b6109be6109c1565b3390565b6001600160a01b038316610da45760405162461bcd60e51b81526004018080602001828103825260248152602001806117a16024913960400191505060405180910390fd5b6001600160a01b038216610de95760405162461bcd60e51b815260040180806020018281038252602281526020018061164c6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600082820183811015610ea5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000610ea583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061109c565b6000610efb610522610d5b565b610f365760405162461bcd60e51b815260040180806020018281038252603a815260200180611767603a913960400191505060405180910390fd5b6104fd83836112bc565b6001600160a01b038316610f855760405162461bcd60e51b81526004018080602001828103825260258152602001806117426025913960400191505060405180910390fd5b6001600160a01b038216610fca5760405162461bcd60e51b81526004018080602001828103825260238152602001806115986023913960400191505060405180910390fd5b61100d8160405180606001604052806026815260200161166e602691396001600160a01b038616600090815260208190526040902054919063ffffffff61109c16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611042908263ffffffff610e4b16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561112b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156110f05781810151838201526020016110d8565b50505050905090810190601f16801561111d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610ea583836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f00000000000000008152506113ac565b61118660048263ffffffff61140e16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6111ce60048263ffffffff61148f16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b03821661124c5760405162461bcd60e51b81526004018080602001828103825260228152602001806117206022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b611274610927565b6112b3576040805162461bcd60e51b81526020600482018190526024820152600080516020611700833981519152604482015290519081900360640190fd5b6109be816114f6565b6001600160a01b038216611317576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60025461132a908263ffffffff610e4b16565b6002556001600160a01b038216600090815260208190526040902054611356908263ffffffff610e4b16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600081836113fb5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156110f05781810151838201526020016110d8565b5082848161140557fe5b06949350505050565b6114188282611205565b1561146a576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6114998282611205565b6114d45760405162461bcd60e51b81526004018080602001828103825260218152602001806116b76021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6001600160a01b03811661153b5760405162461bcd60e51b81526004018080602001828103825260268152602001806116266026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b039290921691909117905556fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734d696e74696e67206973206f6e6c7920706f737369626c652061732061206d756c7469706c65206f662074686520535550504c595f4d554c5449504c45207661726961626c652e43616e2774206d696e74206d6f7265207468616e204d4158494d554d5f535550504c592e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365546865206f776e65722063616e6e6f742072656c65617365206f776e6572736869702e526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373436f6e74726f6c6c65644d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c6545524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373436f6e74726f6c6c65644d696e746572526f6c653a206f776e65722063616e6e6f742072656e6f756e6365204d696e746572526f6c6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a7231582015961400396ef883fdf50017d51a9c3f1e8bf10b8469c0d2b3d2eacc096ed51f64736f6c63430005110032
Deployed Bytecode Sourcemap
23708:2610:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23708:2610:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23797:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;23797:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12175:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12175:152:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;24114:81;;;:::i;:::-;;;;;;;;;;;;;;;;25472:417;;;:::i;11196:91::-;;;:::i;12799:304::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12799:304:0;;;;;;;;;;;;;;;;;:::i;23938:81::-;;;:::i;23893:36::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13512:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13512:210:0;;;;;;;;:::i;24026:81::-;;;:::i;24301:608::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24301:608:0;;;;;;;;:::i;11350:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11350:110:0;-1:-1:-1;;;;;11350:110:0;;:::i;25897:133::-;;;:::i;:::-;;19948:79;;;:::i;:::-;;;;-1:-1:-1;;;;;19948:79:0;;;;;;;;;;;;;;20314:94;;;:::i;23847:39::-;;;:::i;22182:91::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22182:91:0;-1:-1:-1;;;;;22182:91:0;;:::i;22303:167::-;;;:::i;24917:547::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24917:547:0;;:::i;14225:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14225:261:0;;;;;;;;:::i;11673:158::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11673:158:0;;;;;;;;:::i;22033:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22033:109:0;-1:-1:-1;;;;;22033:109:0;;:::i;22499:193::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22499:193:0;-1:-1:-1;;;;;22499:193:0;;:::i;11894:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11894:134:0;;;;;;;;;;:::i;26038:277::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26038:277:0;-1:-1:-1;;;;;26038:277:0;;:::i;23797:43::-;;;;;;;;;;;;;;-1:-1:-1;;;23797:43:0;;;;:::o;12175:152::-;12241:4;12258:39;12267:12;:10;:12::i;:::-;12281:7;12290:6;12258:8;:39::i;:::-;-1:-1:-1;12315:4:0;12175:152;;;;:::o;24114:81::-;24159:36;24114:81;:::o;25472:417::-;25542:4;21920:22;21929:12;:10;:12::i;:::-;21920:8;:22::i;:::-;21912:93;;;;-1:-1:-1;;;21912:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24068:39;25572:13;:11;:13::i;:::-;:31;;25564:80;;;;-1:-1:-1;;;25564:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24159:36;24068:39;25704:26;24159:36;25704:13;:11;:13::i;:::-;:17;:26;:17;:26;:::i;:::-;:43;25701:118;;;25774:33;25793:13;:11;:13::i;:::-;24068:39;;25774:33;:18;:33;:::i;:::-;25764:43;;25701:118;25831:28;25842:7;:5;:7::i;:::-;25851;25831:10;:28::i;:::-;;25877:4;25870:11;;;25472:417;:::o;11196:91::-;11267:12;;11196:91;:::o;12799:304::-;12888:4;12905:36;12915:6;12923:9;12934:6;12905:9;:36::i;:::-;12952:121;12961:6;12969:12;:10;:12::i;:::-;12983:89;13021:6;12983:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12983:19:0;;;;;;:11;:19;;;;;;13003:12;:10;:12::i;:::-;-1:-1:-1;;;;;12983:33:0;;;;;;;;;;;;-1:-1:-1;12983:33:0;;;:89;;:37;:89;:::i;:::-;12952:8;:121::i;:::-;-1:-1:-1;13091:4:0;12799:304;;;;;:::o;23938:81::-;23983:36;23938:81;:::o;23893:36::-;23927:2;23893:36;:::o;13512:210::-;13592:4;13609:83;13618:12;:10;:12::i;:::-;13632:7;13641:50;13680:10;13641:11;:25;13653:12;:10;:12::i;:::-;-1:-1:-1;;;;;13641:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13641:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;24026:81::-;24068:39;24026:81;:::o;24301:608::-;24404:4;21920:22;21929:12;:10;:12::i;21920:22::-;21912:93;;;;-1:-1:-1;;;21912:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24434:22:0;;24426:31;;;;;;24486:1;24476:7;:11;24468:20;;;;;;24507:28;:7;24159:36;24507:28;:11;:28;:::i;:::-;:33;24499:117;;;;-1:-1:-1;;;24499:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24068:39;24635:13;:11;:13::i;:::-;:31;;24627:80;;;;-1:-1:-1;;;24627:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24068:39;24723:26;24741:7;24723:13;:11;:13::i;:26::-;:43;24720:118;;;24793:33;24812:13;:11;:13::i;24793:33::-;24783:43;;24720:118;24850:29;24861:8;24871:7;24850:10;:29::i;11350:110::-;-1:-1:-1;;;;;11434:18:0;11407:7;11434:18;;;;;;;;;;;;11350:110::o;25897:133::-;20160:9;:7;:9::i;:::-;20152:54;;;;;-1:-1:-1;;;20152:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20152:54:0;;;;;;;;;;;;;;;25977:45;;-1:-1:-1;;;25977:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19948:79;20013:6;;-1:-1:-1;;;;;20013:6:0;19948:79;:::o;20314:94::-;20394:6;;20354:4;;-1:-1:-1;;;;;20394:6:0;20378:12;:10;:12::i;:::-;-1:-1:-1;;;;;20378:22:0;;20371:29;;20314:94;:::o;23847:39::-;;;;;;;;;;;;;;-1:-1:-1;;;23847:39:0;;;;:::o;22182:91::-;20160:9;:7;:9::i;:::-;20152:54;;;;;-1:-1:-1;;;20152:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20152:54:0;;;;;;;;;;;;;;;22246:19;22257:7;22246:10;:19::i;:::-;22182:91;:::o;22303:167::-;22356:9;:7;:9::i;:::-;22355:10;22347:77;;;;-1:-1:-1;;;22347:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22435:27;22449:12;:10;:12::i;:::-;22435:13;:27::i;:::-;22303:167::o;24917:547::-;25002:4;21920:22;21929:12;:10;:12::i;21920:22::-;21912:93;;;;-1:-1:-1;;;21912:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25042:1;25032:7;:11;25024:20;;;;;;25063:28;:7;24159:36;25063:28;:11;:28;:::i;:::-;:33;25055:117;;;;-1:-1:-1;;;25055:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24068:39;25191:13;:11;:13::i;:::-;:31;;25183:80;;;;-1:-1:-1;;;25183:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24068:39;25279:26;25297:7;25279:13;:11;:13::i;:26::-;:43;25276:118;;;25349:33;25368:13;:11;:13::i;25349:33::-;25339:43;;25276:118;25406:28;25417:7;:5;:7::i;:::-;25426;25406:10;:28::i;14225:261::-;14310:4;14327:129;14336:12;:10;:12::i;:::-;14350:7;14359:96;14398:15;14359:96;;;;;;;;;;;;;;;;;:11;:25;14371:12;:10;:12::i;:::-;-1:-1:-1;;;;;14359:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14359:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;11673:158::-;11742:4;11759:42;11769:12;:10;:12::i;:::-;11783:9;11794:6;11759:9;:42::i;22033:109::-;22089:4;22113:21;:8;22126:7;22113:21;:12;:21;:::i;:::-;22106:28;22033:109;-1:-1:-1;;22033:109:0:o;22499:193::-;20160:9;:7;:9::i;:::-;20152:54;;;;;-1:-1:-1;;;20152:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20152:54:0;;;;;;;;;;;;;;;22585:7;:5;:7::i;:::-;-1:-1:-1;;;;;22574:18:0;:7;-1:-1:-1;;;;;22574:18:0;;;22566:85;;;;-1:-1:-1;;;22566:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22662:22;22676:7;22662:13;:22::i;11894:134::-;-1:-1:-1;;;;;11993:18:0;;;11966:7;11993:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11894:134::o;26038:277::-;20160:9;:7;:9::i;:::-;20152:54;;;;;-1:-1:-1;;;20152:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20152:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26142:22:0;;26134:31;;;;;;26196:7;:5;:7::i;:::-;-1:-1:-1;;;;;26184:19:0;:8;-1:-1:-1;;;;;26184:19:0;;;26176:28;;;;;;26217:19;26227:8;26217:9;:19::i;:::-;26247:33;26271:8;26247:23;:33::i;:::-;26291:16;:14;:16::i;871:98::-;951:10;871:98;:::o;17156:338::-;-1:-1:-1;;;;;17250:19:0;;17242:68;;;;-1:-1:-1;;;17242:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17329:21:0;;17321:68;;;;-1:-1:-1;;;17321:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17402:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17454:32;;;;;;;;;;;;;;;;;17156:338;;;:::o;5028:181::-;5086:7;5118:5;;;5142:6;;;;5134:46;;;;;-1:-1:-1;;;5134:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5200:1;5028:181;-1:-1:-1;;;5028:181:0:o;5484:136::-;5542:7;5569:43;5573:1;5576;5569:43;;;;;;;;;;;;;;;;;:3;:43::i;23492:143::-;23566:4;21920:22;21929:12;:10;:12::i;21920:22::-;21912:93;;;;-1:-1:-1;;;21912:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23583:22;23589:7;23598:6;23583:5;:22::i;14976:471::-;-1:-1:-1;;;;;15074:20:0;;15066:70;;;;-1:-1:-1;;;15066:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15155:23:0;;15147:71;;;;-1:-1:-1;;;15147:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15251;15273:6;15251:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15251:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;15231:17:0;;;:9;:17;;;;;;;;;;;:91;;;;15356:20;;;;;;;:32;;15381:6;15356:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;15333:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;15404:35;;;;;;;15333:20;;15404:35;;;;;;;;;;;;;14976:471;;;:::o;5957:192::-;6043:7;6079:12;6071:6;;;;6063:29;;;;-1:-1:-1;;;6063:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6063:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6115:5:0;;;5957:192::o;8803:130::-;8861:7;8888:37;8892:1;8895;8888:37;;;;;;;;;;;;;;;;;:3;:37::i;22700:122::-;22757:21;:8;22770:7;22757:21;:12;:21;:::i;:::-;22794:20;;-1:-1:-1;;;;;22794:20:0;;;;;;;;22700:122;:::o;22830:130::-;22890:24;:8;22906:7;22890:24;:15;:24;:::i;:::-;22930:22;;-1:-1:-1;;;;;22930:22:0;;;;;;;;22830:130;:::o;18782:203::-;18854:4;-1:-1:-1;;;;;18879:21:0;;18871:68;;;;-1:-1:-1;;;18871:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18957:20:0;:11;:20;;;;;;;;;;;;;;;18782:203::o;21054:109::-;20160:9;:7;:9::i;:::-;20152:54;;;;;-1:-1:-1;;;20152:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20152:54:0;;;;;;;;;;;;;;;21127:28;21146:8;21127:18;:28::i;15728:308::-;-1:-1:-1;;;;;15804:21:0;;15796:65;;;;;-1:-1:-1;;;15796:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15889:12;;:24;;15906:6;15889:24;:16;:24;:::i;:::-;15874:12;:39;-1:-1:-1;;;;;15945:18:0;;:9;:18;;;;;;;;;;;:30;;15968:6;15945:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;15924:18:0;;:9;:18;;;;;;;;;;;:51;;;;15991:37;;;;;;;15924:18;;:9;;15991:37;;;;;;;;;;15728:308;;:::o;9452:166::-;9538:7;9574:12;9566:6;9558:29;;;;-1:-1:-1;;;9558:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;9558:29:0;;9609:1;9605;:5;;;;;;;9452:166;-1:-1:-1;;;;9452:166:0:o;18246:178::-;18324:18;18328:4;18334:7;18324:3;:18::i;:::-;18323:19;18315:63;;;;;-1:-1:-1;;;18315:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18389:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;18389:27:0;18412:4;18389:27;;;18246:178::o;18504:183::-;18584:18;18588:4;18594:7;18584:3;:18::i;:::-;18576:64;;;;-1:-1:-1;;;18576:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18651:20:0;18674:5;18651:20;;;;;;;;;;;:28;;-1:-1:-1;;18651:28:0;;;18504:183::o;21269:229::-;-1:-1:-1;;;;;21343:22:0;;21335:73;;;;-1:-1:-1;;;21335:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21445:6;;21424:38;;-1:-1:-1;;;;;21424:38:0;;;;21445:6;;21424:38;;21445:6;;21424:38;21473:6;:17;;-1:-1:-1;;;;;;21473:17:0;-1:-1:-1;;;;;21473:17:0;;;;;;;;;;21269:229::o
Swarm Source
bzzr://15961400396ef883fdf50017d51a9c3f1e8bf10b8469c0d2b3d2eacc096ed51f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.