ETH Price: $3,365.75 (+0.32%)
Gas: 7 Gwei

Token

ShardingDAO (SHD)
 

Overview

Max Total Supply

11,445,142.39094 SHD

Holders

267 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
12.021472668788 SHD

Value
$0.00
0x316f99537b4bade5eea51073f1b7c38dfbf69a70
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A NFT fragmentation protocol and a marketplace for the shards.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SHDToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-18
*/

// File: @openzeppelin/contracts/utils/Context.sol


pragma solidity >=0.6.0 <0.8.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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/GSN/Context.sol


pragma solidity >=0.6.0 <0.8.0;

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity >=0.6.0 <0.8.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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


pragma solidity >=0.6.0 <0.8.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 {ERC20PresetMinterPauser}.
 *
 * 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;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override 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 virtual override 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 virtual 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 virtual 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 virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _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 virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _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 virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _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 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 virtual {
        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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

// File: @openzeppelin/contracts/access/Ownable.sol


pragma solidity >=0.6.0 <0.8.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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * 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.
 */
abstract 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 virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the 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 virtual 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 virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/SHDToken.sol


pragma solidity 0.6.12;






// SHDToken with Governance.
contract SHDToken is ERC20("ShardingDAO", "SHD"), Ownable {
    // cross chain
    mapping(address => bool) public minters;

    struct Checkpoint {
        uint256 fromBlock;
        uint256 votes;
    }
    /// @notice A record of votes checkpoints for each account, by index
    mapping(address => mapping(uint256 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping(address => uint256) public numCheckpoints;
    event VotesBalanceChanged(
        address indexed user,
        uint256 previousBalance,
        uint256 newBalance
    );

    /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef).
    function mint(address _to, uint256 _amount) public {
        require(minters[msg.sender] == true, "SHD : You are not the miner");
        _mint(_to, _amount);
    }

    function burn(uint256 _amount) public {
        _burn(msg.sender, _amount);
    }

    function addMiner(address _miner) external onlyOwner {
        minters[_miner] = true;
    }

    function removeMiner(address _miner) external onlyOwner {
        minters[_miner] = false;
    }

    function getPriorVotes(address account, uint256 blockNumber)
        public
        view
        returns (uint256)
    {
        require(
            blockNumber < block.number,
            "getPriorVotes: not yet determined"
        );

        uint256 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint256 lower = 0;
        uint256 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint256 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _voteTransfer(
        address from,
        address to,
        uint256 amount
    ) internal {
        if (from != to && amount > 0) {
            if (from != address(0)) {
                uint256 fromNum = numCheckpoints[from];
                uint256 fromOld =
                    fromNum > 0 ? checkpoints[from][fromNum - 1].votes : 0;
                uint256 fromNew = fromOld.sub(amount);
                _writeCheckpoint(from, fromNum, fromOld, fromNew);
            }

            if (to != address(0)) {
                uint256 toNum = numCheckpoints[to];
                uint256 toOld =
                    toNum > 0 ? checkpoints[to][toNum - 1].votes : 0;
                uint256 toNew = toOld.add(amount);
                _writeCheckpoint(to, toNum, toOld, toNew);
            }
        }
    }

    function _writeCheckpoint(
        address user,
        uint256 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    ) internal {
        uint256 blockNumber = block.number;
        if (
            nCheckpoints > 0 &&
            checkpoints[user][nCheckpoints - 1].fromBlock == blockNumber
        ) {
            checkpoints[user][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[user][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[user] = nCheckpoints + 1;
        }

        emit VotesBalanceChanged(user, oldVotes, newVotes);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        _voteTransfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"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":"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"VotesBalanceChanged","type":"event"},{"inputs":[{"internalType":"address","name":"_miner","type":"address"}],"name":"addMiner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"checkpoints","outputs":[{"internalType":"uint256","name":"fromBlock","type":"uint256"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_miner","type":"address"}],"name":"removeMiner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600b81526020016a5368617264696e6744414f60a81b8152506040518060400160405280600381526020016214d21160ea1b81525081600390805190602001906200006a929190620000fc565b50805162000080906004906020840190620000fc565b50506005805460ff191660121790555060006200009c620000f8565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000198565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200013f57805160ff19168380011785556200016f565b828001600101855582156200016f579182015b828111156200016f57825182559160200191906001019062000152565b506200017d92915062000181565b5090565b5b808211156200017d576000815560010162000182565b6116eb80620001a86000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d714610400578063a9059cbb1461042c578063dd62ed3e14610458578063f2fde38b14610486578063f3982e5e146104ac578063f46eccc4146104d257610142565b806370a082311461037a578063715018a6146103a0578063782d6fe1146103a85780638da5cb5b146103d457806395d89b41146103f857610142565b806323b872dd1161010a57806323b872dd1461028b578063313ce567146102c157806339509351146102df57806340c10f191461030b57806342966c68146103375780636fcfff451461035457610142565b806306fdde0314610147578063095ea7b3146101c45780630cdfebfa14610204578063102425901461024957806318160ddd14610271575b600080fd5b61014f6104f8565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b03813516906020013561058e565b604080519115158252519081900360200190f35b6102306004803603604081101561021a57600080fd5b506001600160a01b0381351690602001356105ac565b6040805192835260208301919091528051918290030190f35b61026f6004803603602081101561025f57600080fd5b50356001600160a01b03166105d0565b005b610279610653565b60408051918252519081900360200190f35b6101f0600480360360608110156102a157600080fd5b506001600160a01b03813581169160208101359091169060400135610659565b6102c96106e0565b6040805160ff9092168252519081900360200190f35b6101f0600480360360408110156102f557600080fd5b506001600160a01b0381351690602001356106e9565b61026f6004803603604081101561032157600080fd5b506001600160a01b038135169060200135610737565b61026f6004803603602081101561034d57600080fd5b50356107ae565b6102796004803603602081101561036a57600080fd5b50356001600160a01b03166107bb565b6102796004803603602081101561039057600080fd5b50356001600160a01b03166107cd565b61026f6107e8565b610279600480360360408110156103be57600080fd5b506001600160a01b03813516906020013561089a565b6103dc610a5c565b604080516001600160a01b039092168252519081900360200190f35b61014f610a70565b6101f06004803603604081101561041657600080fd5b506001600160a01b038135169060200135610ad1565b6101f06004803603604081101561044257600080fd5b506001600160a01b038135169060200135610b39565b6102796004803603604081101561046e57600080fd5b506001600160a01b0381358116916020013516610b4d565b61026f6004803603602081101561049c57600080fd5b50356001600160a01b0316610b78565b61026f600480360360208110156104c257600080fd5b50356001600160a01b0316610c86565b6101f0600480360360208110156104e857600080fd5b50356001600160a01b0316610d0c565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105845780601f1061055957610100808354040283529160200191610584565b820191906000526020600020905b81548152906001019060200180831161056757829003601f168201915b5050505050905090565b60006105a261059b610d21565b8484610d25565b5060015b92915050565b60076020908152600092835260408084209091529082529020805460019091015482565b6105d8610d21565b6001600160a01b03166105e9610a5c565b6001600160a01b031614610632576040805162461bcd60e51b81526020600482018190526024820152600080516020611607833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b60025490565b6000610666848484610e11565b6106d684610672610d21565b6106d1856040518060600160405280602881526020016115df602891396001600160a01b038a166000908152600160205260408120906106b0610d21565b6001600160a01b031681526020810191909152604001600020549190610f6c565b610d25565b5060019392505050565b60055460ff1690565b60006105a26106f6610d21565b846106d18560016000610707610d21565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611003565b3360009081526006602052604090205460ff1615156001146107a0576040805162461bcd60e51b815260206004820152601b60248201527f534844203a20596f7520617265206e6f7420746865206d696e65720000000000604482015290519081900360640190fd5b6107aa8282611064565b5050565b6107b83382611154565b50565b60086020526000908152604090205481565b6001600160a01b031660009081526020819052604090205490565b6107f0610d21565b6001600160a01b0316610801610a5c565b6001600160a01b03161461084a576040805162461bcd60e51b81526020600482018190526024820152600080516020611607833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60004382106108da5760405162461bcd60e51b815260040180806020018281038252602181526020018061150b6021913960400191505060405180910390fd5b6001600160a01b038316600090815260086020526040902054806109025760009150506105a6565b6001600160a01b0384166000908152600760209081526040808320600019850184529091529020548310610962576001600160a01b03841660009081526007602090815260408083206000199094018352929052206001015490506105a6565b6001600160a01b03841660009081526007602090815260408083208380529091529020548310156109975760009150506105a6565b600060001982015b81811115610a2c5760028282030481036109b76114f0565b506001600160a01b03871660009081526007602090815260408083208484528252918290208251808401909352805480845260019091015491830191909152871415610a0d576020015194506105a69350505050565b8051871115610a1e57819350610a25565b6001820392505b505061099f565b506001600160a01b0385166000908152600760209081526040808320938352929052206001015491505092915050565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105845780601f1061055957610100808354040283529160200191610584565b60006105a2610ade610d21565b846106d1856040518060600160405280602581526020016116916025913960016000610b08610d21565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610f6c565b60006105a2610b46610d21565b8484610e11565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610b80610d21565b6001600160a01b0316610b91610a5c565b6001600160a01b031614610bda576040805162461bcd60e51b81526020600482018190526024820152600080516020611607833981519152604482015290519081900360640190fd5b6001600160a01b038116610c1f5760405162461bcd60e51b81526004018080602001828103825260268152602001806115716026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610c8e610d21565b6001600160a01b0316610c9f610a5c565b6001600160a01b031614610ce8576040805162461bcd60e51b81526020600482018190526024820152600080516020611607833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60066020526000908152604090205460ff1681565b3390565b6001600160a01b038316610d6a5760405162461bcd60e51b815260040180806020018281038252602481526020018061166d6024913960400191505060405180910390fd5b6001600160a01b038216610daf5760405162461bcd60e51b81526004018080602001828103825260228152602001806115976022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610e565760405162461bcd60e51b81526004018080602001828103825260258152602001806116486025913960400191505060405180910390fd5b6001600160a01b038216610e9b5760405162461bcd60e51b815260040180806020018281038252602381526020018061152c6023913960400191505060405180910390fd5b610ea6838383611250565b610ee3816040518060600160405280602681526020016115b9602691396001600160a01b0386166000908152602081905260409020549190610f6c565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610f129082611003565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610ffb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610fc0578181015183820152602001610fa8565b50505050905090810190601f168015610fed5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561105d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166110bf576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6110cb60008383611250565b6002546110d89082611003565b6002556001600160a01b0382166000908152602081905260409020546110fe9082611003565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166111995760405162461bcd60e51b81526004018080602001828103825260218152602001806116276021913960400191505060405180910390fd5b6111a582600083611250565b6111e28160405180606001604052806022815260200161154f602291396001600160a01b0385166000908152602081905260409020549190610f6c565b6001600160a01b0383166000908152602081905260409020556002546112089082611260565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b61125b8383836112bd565b505050565b6000828211156112b7576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b816001600160a01b0316836001600160a01b0316141580156112df5750600081115b1561125b576001600160a01b03831615611365576001600160a01b0383166000908152600860205260408120549081611319576000611345565b6001600160a01b0385166000908152600760209081526040808320600019860184529091529020600101545b905060006113538285611260565b9050611361868484846113ea565b5050505b6001600160a01b0382161561125b576001600160a01b038216600090815260086020526040812054908161139a5760006113c6565b6001600160a01b0384166000908152600760209081526040808320600019860184529091529020600101545b905060006113d48285611003565b90506113e2858484846113ea565b505050505050565b43831580159061142057506001600160a01b03851660009081526007602090815260408083206000198801845290915290205481145b15611457576001600160a01b03851660009081526007602090815260408083206000198801845290915290206001018290556114a6565b60408051808201825282815260208082018581526001600160a01b0389166000818152600784528581208a82528452858120945185559151600194850155815260089091529190912090850190555b604080518481526020810184905281516001600160a01b038816927f6ccddc06f2c8965011b39c0ab7dd59841ac61fadda03d5bd4e707d7102819ecd928290030190a25050505050565b60405180604001604052806000815260200160008152509056fe6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220afe4f706ce1ced62cd9ae602e89f98a706bc318a6a81e97f3b10b95da93ede9764736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d714610400578063a9059cbb1461042c578063dd62ed3e14610458578063f2fde38b14610486578063f3982e5e146104ac578063f46eccc4146104d257610142565b806370a082311461037a578063715018a6146103a0578063782d6fe1146103a85780638da5cb5b146103d457806395d89b41146103f857610142565b806323b872dd1161010a57806323b872dd1461028b578063313ce567146102c157806339509351146102df57806340c10f191461030b57806342966c68146103375780636fcfff451461035457610142565b806306fdde0314610147578063095ea7b3146101c45780630cdfebfa14610204578063102425901461024957806318160ddd14610271575b600080fd5b61014f6104f8565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b03813516906020013561058e565b604080519115158252519081900360200190f35b6102306004803603604081101561021a57600080fd5b506001600160a01b0381351690602001356105ac565b6040805192835260208301919091528051918290030190f35b61026f6004803603602081101561025f57600080fd5b50356001600160a01b03166105d0565b005b610279610653565b60408051918252519081900360200190f35b6101f0600480360360608110156102a157600080fd5b506001600160a01b03813581169160208101359091169060400135610659565b6102c96106e0565b6040805160ff9092168252519081900360200190f35b6101f0600480360360408110156102f557600080fd5b506001600160a01b0381351690602001356106e9565b61026f6004803603604081101561032157600080fd5b506001600160a01b038135169060200135610737565b61026f6004803603602081101561034d57600080fd5b50356107ae565b6102796004803603602081101561036a57600080fd5b50356001600160a01b03166107bb565b6102796004803603602081101561039057600080fd5b50356001600160a01b03166107cd565b61026f6107e8565b610279600480360360408110156103be57600080fd5b506001600160a01b03813516906020013561089a565b6103dc610a5c565b604080516001600160a01b039092168252519081900360200190f35b61014f610a70565b6101f06004803603604081101561041657600080fd5b506001600160a01b038135169060200135610ad1565b6101f06004803603604081101561044257600080fd5b506001600160a01b038135169060200135610b39565b6102796004803603604081101561046e57600080fd5b506001600160a01b0381358116916020013516610b4d565b61026f6004803603602081101561049c57600080fd5b50356001600160a01b0316610b78565b61026f600480360360208110156104c257600080fd5b50356001600160a01b0316610c86565b6101f0600480360360208110156104e857600080fd5b50356001600160a01b0316610d0c565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105845780601f1061055957610100808354040283529160200191610584565b820191906000526020600020905b81548152906001019060200180831161056757829003601f168201915b5050505050905090565b60006105a261059b610d21565b8484610d25565b5060015b92915050565b60076020908152600092835260408084209091529082529020805460019091015482565b6105d8610d21565b6001600160a01b03166105e9610a5c565b6001600160a01b031614610632576040805162461bcd60e51b81526020600482018190526024820152600080516020611607833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b60025490565b6000610666848484610e11565b6106d684610672610d21565b6106d1856040518060600160405280602881526020016115df602891396001600160a01b038a166000908152600160205260408120906106b0610d21565b6001600160a01b031681526020810191909152604001600020549190610f6c565b610d25565b5060019392505050565b60055460ff1690565b60006105a26106f6610d21565b846106d18560016000610707610d21565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611003565b3360009081526006602052604090205460ff1615156001146107a0576040805162461bcd60e51b815260206004820152601b60248201527f534844203a20596f7520617265206e6f7420746865206d696e65720000000000604482015290519081900360640190fd5b6107aa8282611064565b5050565b6107b83382611154565b50565b60086020526000908152604090205481565b6001600160a01b031660009081526020819052604090205490565b6107f0610d21565b6001600160a01b0316610801610a5c565b6001600160a01b03161461084a576040805162461bcd60e51b81526020600482018190526024820152600080516020611607833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60004382106108da5760405162461bcd60e51b815260040180806020018281038252602181526020018061150b6021913960400191505060405180910390fd5b6001600160a01b038316600090815260086020526040902054806109025760009150506105a6565b6001600160a01b0384166000908152600760209081526040808320600019850184529091529020548310610962576001600160a01b03841660009081526007602090815260408083206000199094018352929052206001015490506105a6565b6001600160a01b03841660009081526007602090815260408083208380529091529020548310156109975760009150506105a6565b600060001982015b81811115610a2c5760028282030481036109b76114f0565b506001600160a01b03871660009081526007602090815260408083208484528252918290208251808401909352805480845260019091015491830191909152871415610a0d576020015194506105a69350505050565b8051871115610a1e57819350610a25565b6001820392505b505061099f565b506001600160a01b0385166000908152600760209081526040808320938352929052206001015491505092915050565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105845780601f1061055957610100808354040283529160200191610584565b60006105a2610ade610d21565b846106d1856040518060600160405280602581526020016116916025913960016000610b08610d21565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610f6c565b60006105a2610b46610d21565b8484610e11565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610b80610d21565b6001600160a01b0316610b91610a5c565b6001600160a01b031614610bda576040805162461bcd60e51b81526020600482018190526024820152600080516020611607833981519152604482015290519081900360640190fd5b6001600160a01b038116610c1f5760405162461bcd60e51b81526004018080602001828103825260268152602001806115716026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610c8e610d21565b6001600160a01b0316610c9f610a5c565b6001600160a01b031614610ce8576040805162461bcd60e51b81526020600482018190526024820152600080516020611607833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60066020526000908152604090205460ff1681565b3390565b6001600160a01b038316610d6a5760405162461bcd60e51b815260040180806020018281038252602481526020018061166d6024913960400191505060405180910390fd5b6001600160a01b038216610daf5760405162461bcd60e51b81526004018080602001828103825260228152602001806115976022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610e565760405162461bcd60e51b81526004018080602001828103825260258152602001806116486025913960400191505060405180910390fd5b6001600160a01b038216610e9b5760405162461bcd60e51b815260040180806020018281038252602381526020018061152c6023913960400191505060405180910390fd5b610ea6838383611250565b610ee3816040518060600160405280602681526020016115b9602691396001600160a01b0386166000908152602081905260409020549190610f6c565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610f129082611003565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610ffb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610fc0578181015183820152602001610fa8565b50505050905090810190601f168015610fed5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561105d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166110bf576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6110cb60008383611250565b6002546110d89082611003565b6002556001600160a01b0382166000908152602081905260409020546110fe9082611003565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166111995760405162461bcd60e51b81526004018080602001828103825260218152602001806116276021913960400191505060405180910390fd5b6111a582600083611250565b6111e28160405180606001604052806022815260200161154f602291396001600160a01b0385166000908152602081905260409020549190610f6c565b6001600160a01b0383166000908152602081905260409020556002546112089082611260565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b61125b8383836112bd565b505050565b6000828211156112b7576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b816001600160a01b0316836001600160a01b0316141580156112df5750600081115b1561125b576001600160a01b03831615611365576001600160a01b0383166000908152600860205260408120549081611319576000611345565b6001600160a01b0385166000908152600760209081526040808320600019860184529091529020600101545b905060006113538285611260565b9050611361868484846113ea565b5050505b6001600160a01b0382161561125b576001600160a01b038216600090815260086020526040812054908161139a5760006113c6565b6001600160a01b0384166000908152600760209081526040808320600019860184529091529020600101545b905060006113d48285611003565b90506113e2858484846113ea565b505050505050565b43831580159061142057506001600160a01b03851660009081526007602090815260408083206000198801845290915290205481145b15611457576001600160a01b03851660009081526007602090815260408083206000198801845290915290206001018290556114a6565b60408051808201825282815260208082018581526001600160a01b0389166000818152600784528581208a82528452858120945185559151600194850155815260089091529190912090850190555b604080518481526020810184905281516001600160a01b038816927f6ccddc06f2c8965011b39c0ab7dd59841ac61fadda03d5bd4e707d7102819ecd928290030190a25050505050565b60405180604001604052806000815260200160008152509056fe6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220afe4f706ce1ced62cd9ae602e89f98a706bc318a6a81e97f3b10b95da93ede9764736f6c634300060c0033

Deployed Bytecode Sourcemap

24807:4152:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13516:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15662:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15662:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;25098:69;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25098:69:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25893:98;;;;;;;;;;;;;;;;-1:-1:-1;25893:98:0;-1:-1:-1;;;;;25893:98:0;;:::i;:::-;;14615:108;;;:::i;:::-;;;;;;;;;;;;;;;;16313:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16313:321:0;;;;;;;;;;;;;;;;;:::i;14459:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17043:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17043:218:0;;;;;;;;:::i;25525:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25525:167:0;;;;;;;;:::i;25700:83::-;;;;;;;;;;;;;;;;-1:-1:-1;25700:83:0;;:::i;25236:49::-;;;;;;;;;;;;;;;;-1:-1:-1;25236:49:0;-1:-1:-1;;;;;25236:49:0;;:::i;14786:127::-;;;;;;;;;;;;;;;;-1:-1:-1;14786:127:0;-1:-1:-1;;;;;14786:127:0;;:::i;24149:148::-;;;:::i;25999:1289::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25999:1289:0;;;;;;;;:::i;23498:87::-;;;:::i;:::-;;;;-1:-1:-1;;;;;23498:87:0;;;;;;;;;;;;;;13726:95;;;:::i;17764:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17764:269:0;;;;;;;;:::i;15126:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15126:175:0;;;;;;;;:::i;15364:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15364:151:0;;;;;;;;;;:::i;24452:244::-;;;;;;;;;;;;;;;;-1:-1:-1;24452:244:0;-1:-1:-1;;;;;24452:244:0;;:::i;25791:94::-;;;;;;;;;;;;;;;;-1:-1:-1;25791:94:0;-1:-1:-1;;;;;25791:94:0;;:::i;24892:39::-;;;;;;;;;;;;;;;;-1:-1:-1;24892:39:0;-1:-1:-1;;;;;24892:39:0;;:::i;13516:91::-;13594:5;13587:12;;;;;;;;-1:-1:-1;;13587:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13561:13;;13587:12;;13594:5;;13587:12;;13594:5;13587:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13516:91;:::o;15662:169::-;15745:4;15762:39;15771:12;:10;:12::i;:::-;15785:7;15794:6;15762:8;:39::i;:::-;-1:-1:-1;15819:4:0;15662:169;;;;;:::o;25098:69::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25893:98::-;23729:12;:10;:12::i;:::-;-1:-1:-1;;;;;23718:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23718:23:0;;23710:68;;;;;-1:-1:-1;;;23710:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23710:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25960:15:0::1;25978:5;25960:15:::0;;;:7:::1;:15;::::0;;;;:23;;-1:-1:-1;;25960:23:0::1;::::0;;25893:98::o;14615:108::-;14703:12;;14615:108;:::o;16313:321::-;16419:4;16436:36;16446:6;16454:9;16465:6;16436:9;:36::i;:::-;16483:121;16492:6;16500:12;:10;:12::i;:::-;16514:89;16552:6;16514:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16514:19:0;;;;;;:11;:19;;;;;;16534:12;:10;:12::i;:::-;-1:-1:-1;;;;;16514:33:0;;;;;;;;;;;;-1:-1:-1;16514:33:0;;;:89;:37;:89::i;:::-;16483:8;:121::i;:::-;-1:-1:-1;16622:4:0;16313:321;;;;;:::o;14459:91::-;14533:9;;;;14459:91;:::o;17043:218::-;17131:4;17148:83;17157:12;:10;:12::i;:::-;17171:7;17180:50;17219:10;17180:11;:25;17192:12;:10;:12::i;:::-;-1:-1:-1;;;;;17180:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17180:25:0;;;:34;;;;;;;;;;;:38;:50::i;25525:167::-;25603:10;25595:19;;;;:7;:19;;;;;;;;:27;;:19;:27;25587:67;;;;;-1:-1:-1;;;25587:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25665:19;25671:3;25676:7;25665:5;:19::i;:::-;25525:167;;:::o;25700:83::-;25749:26;25755:10;25767:7;25749:5;:26::i;:::-;25700:83;:::o;25236:49::-;;;;;;;;;;;;;:::o;14786:127::-;-1:-1:-1;;;;;14887:18:0;14860:7;14887:18;;;;;;;;;;;;14786:127::o;24149:148::-;23729:12;:10;:12::i;:::-;-1:-1:-1;;;;;23718:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23718:23:0;;23710:68;;;;;-1:-1:-1;;;23710:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23710:68:0;;;;;;;;;;;;;;;24240:6:::1;::::0;24219:40:::1;::::0;24256:1:::1;::::0;24240:6:::1;::::0;::::1;-1:-1:-1::0;;;;;24240:6:0::1;::::0;24219:40:::1;::::0;24256:1;;24219:40:::1;24270:6;:19:::0;;-1:-1:-1;;;;;;24270:19:0::1;::::0;;24149:148::o;25999:1289::-;26108:7;26169:12;26155:11;:26;26133:109;;;;-1:-1:-1;;;26133:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26278:23:0;;26255:20;26278:23;;;:14;:23;;;;;;26316:17;26312:58;;26357:1;26350:8;;;;;26312:58;-1:-1:-1;;;;;26430:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;26451:16:0;;26430:38;;;;;;;:48;:63;-1:-1:-1;26426:147:0;;-1:-1:-1;;;;;26517:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;26538:16:0;;;26517:38;;;;;;26553:1;26517:44;;;-1:-1:-1;26510:51:0;;26426:147;-1:-1:-1;;;;;26634:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:47;-1:-1:-1;26630:88:0;;;26705:1;26698:8;;;;;26630:88;26730:13;-1:-1:-1;;26774:16:0;;26801:429;26816:5;26808;:13;26801:429;;;26881:1;26864:13;;;26863:19;26855:27;;26924:20;;:::i;:::-;-1:-1:-1;;;;;;26947:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;26924:51;;;;;;;;;;;;;;;;;;;;;;;;;26994:27;;26990:229;;;27049:8;;;;-1:-1:-1;27042:15:0;;-1:-1:-1;;;;27042:15:0;26990:229;27083:12;;:26;-1:-1:-1;27079:140:0;;;27138:6;27130:14;;27079:140;;;27202:1;27193:6;:10;27185:18;;27079:140;26801:429;;;;;-1:-1:-1;;;;;;27247:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;:33;;;;-1:-1:-1;;25999:1289:0;;;;:::o;23498:87::-;23571:6;;;;;-1:-1:-1;;;;;23571:6:0;;23498:87::o;13726:95::-;13806:7;13799:14;;;;;;;;-1:-1:-1;;13799:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13773:13;;13799:14;;13806:7;;13799:14;;13806:7;13799:14;;;;;;;;;;;;;;;;;;;;;;;;17764:269;17857:4;17874:129;17883:12;:10;:12::i;:::-;17897:7;17906:96;17945:15;17906:96;;;;;;;;;;;;;;;;;:11;:25;17918:12;:10;:12::i;:::-;-1:-1:-1;;;;;17906:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17906:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;15126:175::-;15212:4;15229:42;15239:12;:10;:12::i;:::-;15253:9;15264:6;15229:9;:42::i;15364:151::-;-1:-1:-1;;;;;15480:18:0;;;15453:7;15480:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15364:151::o;24452:244::-;23729:12;:10;:12::i;:::-;-1:-1:-1;;;;;23718:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23718:23:0;;23710:68;;;;;-1:-1:-1;;;23710:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23710:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24541:22:0;::::1;24533:73;;;;-1:-1:-1::0;;;24533:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24643:6;::::0;24622:38:::1;::::0;-1:-1:-1;;;;;24622:38:0;;::::1;::::0;24643:6:::1;::::0;::::1;;::::0;24622:38:::1;::::0;;;::::1;24671:6;:17:::0;;-1:-1:-1;;;;;24671:17:0;;::::1;;;-1:-1:-1::0;;;;;;24671:17:0;;::::1;::::0;;;::::1;::::0;;24452:244::o;25791:94::-;23729:12;:10;:12::i;:::-;-1:-1:-1;;;;;23718:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23718:23:0;;23710:68;;;;;-1:-1:-1;;;23710:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23710:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25855:15:0::1;;::::0;;;:7:::1;:15;::::0;;;;:22;;-1:-1:-1;;25855:22:0::1;25873:4;25855:22;::::0;;25791:94::o;24892:39::-;;;;;;;;;;;;;;;:::o;634:106::-;722:10;634:106;:::o;20911:346::-;-1:-1:-1;;;;;21013:19:0;;21005:68;;;;-1:-1:-1;;;21005:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21092:21:0;;21084:68;;;;-1:-1:-1;;;21084:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21165:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21217:32;;;;;;;;;;;;;;;;;20911:346;;;:::o;18523:539::-;-1:-1:-1;;;;;18629:20:0;;18621:70;;;;-1:-1:-1;;;18621:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18710:23:0;;18702:71;;;;-1:-1:-1;;;18702:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18786:47;18807:6;18815:9;18826:6;18786:20;:47::i;:::-;18866:71;18888:6;18866:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18866:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18846:17:0;;;:9;:17;;;;;;;;;;;:91;;;;18971:20;;;;;;;:32;;18996:6;18971:24;:32::i;:::-;-1:-1:-1;;;;;18948:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;19019:35;;;;;;;18948:20;;19019:35;;;;;;;;;;;;;18523:539;;;:::o;9510:166::-;9596:7;9632:12;9624:6;;;;9616:29;;;;-1:-1:-1;;;9616:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9663:5:0;;;9510:166::o;6683:179::-;6741:7;6773:5;;;6797:6;;;;6789:46;;;;;-1:-1:-1;;;6789:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6853:1;6683:179;-1:-1:-1;;;6683:179:0:o;19344:378::-;-1:-1:-1;;;;;19428:21:0;;19420:65;;;;;-1:-1:-1;;;19420:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19498:49;19527:1;19531:7;19540:6;19498:20;:49::i;:::-;19575:12;;:24;;19592:6;19575:16;:24::i;:::-;19560:12;:39;-1:-1:-1;;;;;19631:18:0;;:9;:18;;;;;;;;;;;:30;;19654:6;19631:22;:30::i;:::-;-1:-1:-1;;;;;19610:18:0;;:9;:18;;;;;;;;;;;:51;;;;19677:37;;;;;;;19610:18;;:9;;19677:37;;;;;;;;;;19344:378;;:::o;20055:418::-;-1:-1:-1;;;;;20139:21:0;;20131:67;;;;-1:-1:-1;;;20131:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20211:49;20232:7;20249:1;20253:6;20211:20;:49::i;:::-;20294:68;20317:6;20294:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20294:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;20273:18:0;;:9;:18;;;;;;;;;;:89;20388:12;;:24;;20405:6;20388:16;:24::i;:::-;20373:12;:39;20428:37;;;;;;;;20454:1;;-1:-1:-1;;;;;20428:37:0;;;;;;;;;;;;20055:418;;:::o;28782:174::-;28917:31;28931:4;28937:2;28941:6;28917:13;:31::i;:::-;28782:174;;;:::o;7145:158::-;7203:7;7236:1;7231;:6;;7223:49;;;;;-1:-1:-1;;;7223:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7290:5:0;;;7145:158::o;27296:838::-;27427:2;-1:-1:-1;;;;;27419:10:0;:4;-1:-1:-1;;;;;27419:10:0;;;:24;;;;;27442:1;27433:6;:10;27419:24;27415:712;;;-1:-1:-1;;;;;27464:18:0;;;27460:333;;-1:-1:-1;;;;;27521:20:0;;27503:15;27521:20;;;:14;:20;;;;;;;27599:11;:54;;27652:1;27599:54;;;-1:-1:-1;;;;;27613:17:0;;;;;;:11;:17;;;;;;;;-1:-1:-1;;27631:11:0;;27613:30;;;;;;;27641:1;27613:36;;27599:54;27560:93;-1:-1:-1;27672:15:0;27690:19;27560:93;27702:6;27690:11;:19::i;:::-;27672:37;;27728:49;27745:4;27751:7;27760;27769;27728:16;:49::i;:::-;27460:333;;;;-1:-1:-1;;;;;27813:16:0;;;27809:307;;-1:-1:-1;;;;;27866:18:0;;27850:13;27866:18;;;:14;:18;;;;;;;27940:9;:48;;27987:1;27940:48;;;-1:-1:-1;;;;;27952:15:0;;;;;;:11;:15;;;;;;;;-1:-1:-1;;27968:9:0;;27952:26;;;;;;;27976:1;27952:32;;27940:48;27903:85;-1:-1:-1;28007:13:0;28023:17;27903:85;28033:6;28023:9;:17::i;:::-;28007:33;;28059:41;28076:2;28080:5;28087;28094;28059:16;:41::i;:::-;27809:307;;;27296:838;;;:::o;28142:632::-;28325:12;28366:16;;;;;:93;;-1:-1:-1;;;;;;28399:17:0;;;;;;:11;:17;;;;;;;;-1:-1:-1;;28417:16:0;;28399:35;;;;;;;:45;:60;;28366:93;28348:356;;;-1:-1:-1;;;;;28486:17:0;;;;;;:11;:17;;;;;;;;-1:-1:-1;;28504:16:0;;28486:35;;;;;;;28519:1;28486:41;:52;;;28348:356;;;28605:33;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28571:17:0;;-1:-1:-1;28571:17:0;;;:11;:17;;;;;:31;;;;;;;;:67;;;;;;;;;;;28653:20;;:14;:20;;;;;;;28676:16;;;28653:39;;28348:356;28721:45;;;;;;;;;;;;;;-1:-1:-1;;;;;28721:45:0;;;;;;;;;;;28142:632;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://afe4f706ce1ced62cd9ae602e89f98a706bc318a6a81e97f3b10b95da93ede97
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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.