ETH Price: $3,024.14 (+3.17%)
Gas: 1 Gwei

Token

Victor Ginelli (VRG)
 

Overview

Max Total Supply

100,000 VRG

Holders

2

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
yalor.eth
Balance
333.33 VRG

Value
$0.00
0x66b1De0f14a0ce971F7f248415063D44CAF19398
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x5b8E815C...B19687c93
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
LexToken

Compiler Version
v0.5.14+commit.1f1aaa4

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-04-27
*/

pragma solidity 0.5.14;

/*
 * @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 { }

    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;
    }
}

/**
 * @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];
    }
}

contract LexDAORole is Context {
    using Roles for Roles.Role;

    event LexDAOAdded(address indexed account);
    event LexDAORemoved(address indexed account);

    Roles.Role private _lexDAOs;

    modifier onlyLexDAO() {
        require(isLexDAO(_msgSender()), "LexDAORole: caller does not have the LexDAO role");
        _;
    }
    
    function isLexDAO(address account) public view returns (bool) {
        return _lexDAOs.has(account);
    }

    function addLexDAO(address account) public onlyLexDAO {
        _addLexDAO(account);
    }

    function renounceLexDAO() public {
        _removeLexDAO(_msgSender());
    }

    function _addLexDAO(address account) internal {
        _lexDAOs.add(account);
        emit LexDAOAdded(account);
    }

    function _removeLexDAO(address account) internal {
        _lexDAOs.remove(account);
        emit LexDAORemoved(account);
    }
}

contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

contract PauserRole is Context {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    modifier onlyPauser() {
        require(isPauser(_msgSender()), "PauserRole: caller does not have the Pauser role");
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(_msgSender());
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract Pausable is PauserRole {
    /**
     * @dev Emitted when the pause is triggered by a pauser (`account`).
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by a pauser (`account`).
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state. Assigns the Pauser role
     * to the deployer.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

/**
 * @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.
     */
    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.
     */
    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.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call.value(amount)("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}

/**
 * @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);
}

/**
 * @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 {ERC20MinterPauser}.
 *
 * 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;
    using Address for address;

    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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @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");

        _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 {
        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 {
        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 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 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 {
        _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 { }
}

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
contract ERC20Burnable is ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
contract ERC20Capped is ERC20 {
    uint256 private _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor (uint256 cap) public {
        require(cap > 0, "ERC20Capped: cap is 0");
        _cap = cap;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - minted tokens must not cause the total supply to go over the cap.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) { // When minting tokens
            require(totalSupply().add(amount) <= _cap, "ERC20Capped: cap exceeded");
        }
    }
}

/**
 * @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.
 *
 */
contract ERC20Mintable is MinterRole, ERC20 {
    /**
     * @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;
    }
}

/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
contract ERC20Pausable is Pausable, ERC20 {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

interface IUniswap { // brief interface to call Uniswap exchange protocol ( . . . )
    function createExchange(address token) external returns (address payable);
    function getExchange(address token) external view returns (address payable);
}

/**
 * @dev Implementation of ERC20 standard designed for detailed tokenization with lexDAO governance.
 */
contract LexToken is LexDAORole, ERC20Burnable, ERC20Capped, ERC20Mintable, ERC20Pausable {
    // contextualizes token deployment and offered terms, if any
    string public stamp;
    bool public certified; 
    
   	// Uniswap exchange protocol references
	IUniswap private uniswapFactory = IUniswap(0xc0a47dFe034B400B47bDaD5FecDa2621de6c4d95);
    address public uniswapExchange;

    constructor (
        string memory name, 
        string memory symbol, 
        string memory _stamp, 
        uint8 decimals,
        uint256 cap,
        uint256 initialSupply,
        address owner,
        address _lexDAO,
        bool _certified) public 
        ERC20(name, symbol)
        ERC20Capped(cap) {
        stamp = _stamp;
        certified = _certified;
        
        uniswapFactory.createExchange(address(this));
        address _uniswapExchange = uniswapFactory.getExchange(address(this));
        uniswapExchange = _uniswapExchange;

		_addLexDAO(_lexDAO);
        _addMinter(owner);
        _addPauser(owner);
        _mint(owner, initialSupply);
        _setupDecimals(decimals);
    }

    /***************
    LEXDAO FUNCTIONS
    ***************/
    function lexDAOburn(address account, uint256 amount) public onlyLexDAO {
        _burn(account, amount); // lexDAO governance reduces token balance
    }
    
    function lexDAOcertify(bool _certified) public onlyLexDAO {
        certified = _certified; // lexDAO governance maintains token contract certification
    }

    function lexDAOmint(address account, uint256 amount) public onlyLexDAO {
        _mint(account, amount); // lexDAO governance increases token balance
    }
    
    function lexDAOtransfer(address from, address to, uint256 amount) public onlyLexDAO {
        _transfer(from, to, amount); // lexDAO governance transfers token balance
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"_stamp","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"_lexDAO","type":"address"},{"internalType":"bool","name":"_certified","type":"bool"}],"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":"LexDAOAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"LexDAORemoved","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addLexDAO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","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":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"certified","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isLexDAO","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"lexDAOburn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"_certified","type":"bool"}],"name":"lexDAOcertify","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"lexDAOmint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"lexDAOtransfer","outputs":[],"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":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceLexDAO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stamp","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"uniswapExchange","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405273c0a47dfe034b400b47bdad5fecda2621de6c4d95600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b50604051620039ee380380620039ee83398181016040526101208110156200008d57600080fd5b8101908080516040519392919084640100000000821115620000ae57600080fd5b83820191506020820185811115620000c557600080fd5b8251866001820283011164010000000082111715620000e357600080fd5b8083526020830192505050908051906020019080838360005b8381101562000119578082015181840152602081019050620000fc565b50505050905090810190601f168015620001475780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200016b57600080fd5b838201915060208201858111156200018257600080fd5b8251866001820283011164010000000082111715620001a057600080fd5b8083526020830192505050908051906020019080838360005b83811015620001d6578082015181840152602081019050620001b9565b50505050905090810190601f168015620002045780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200022857600080fd5b838201915060208201858111156200023f57600080fd5b82518660018202830111640100000000821117156200025d57600080fd5b8083526020830192505050908051906020019080838360005b838110156200029357808201518184015260208101905062000276565b50505050905090810190601f168015620002c15780820380516001836020036101000a031916815260200191505b506040526020018051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291905050508489896000600360006101000a81548160ff02191690831515021790555081600790805190602001906200033d92919062000d9d565b5080600890805190602001906200035692919062000d9d565b506012600960006101000a81548160ff021916908360ff160217905550505060008111620003ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f45524332304361707065643a206361702069732030000000000000000000000081525060200191505060405180910390fd5b80600a819055505086600b90805190602001906200040c92919062000d9d565b5080600c60006101000a81548160ff021916908315150217905550600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631648f38e306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b158015620004c957600080fd5b505af1158015620004de573d6000803e3d6000fd5b505050506040513d6020811015620004f557600080fd5b8101908080519060200190929190505050506000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166306f2bf62306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015620005a957600080fd5b505afa158015620005be573d6000803e3d6000fd5b505050506040513d6020811015620005d557600080fd5b8101908080519060200190929190505050905080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200063a836200068f60201b60201c565b6200064b84620006f060201b60201c565b6200065c846200075160201b60201c565b6200066e8486620007b260201b60201c565b6200067f876200099260201b60201c565b5050505050505050505062000e4c565b620006aa816000620009b060201b620025ee1790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167fb537fbf973bf8146ca1abf8643286224ae97cb1c3dd29c9c95ee8682ff1c0ac360405160405180910390a250565b6200070b816001620009b060201b620025ee1790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6200076c816002620009b060201b620025ee1790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200086a6000838362000a9460201b60201c565b620008868160065462000b1960201b62001fa71790919060201c565b600681905550620008e581600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b1960201b62001fa71790919060201c565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b80600960006101000a81548160ff021916908360ff16021790555050565b620009c2828262000ba260201b60201c565b1562000a36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b62000aac83838362000c8260201b620027d01760201c565b62000abc62000d7760201b60201c565b1562000b14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180620039c4602a913960400191505060405180910390fd5b505050565b60008082840190508381101562000b98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620039a26022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b62000c9a83838362000d8e60201b620028a71760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000d7257600a5462000cfc8262000ce862000d9360201b60201c565b62000b1960201b62001fa71790919060201c565b111562000d71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b5b505050565b6000600360009054906101000a900460ff16905090565b505050565b6000600654905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000de057805160ff191683800117855562000e11565b8280016001018555821562000e11579182015b8281111562000e1057825182559160200191906001019062000df3565b5b50905062000e20919062000e24565b5090565b62000e4991905b8082111562000e4557600081600090555060010162000e2b565b5090565b90565b612b468062000e5c6000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a5780639def2d89116100ad578063bb56849a1161007c578063bb56849a146109dd578063bef2570014610a4b578063c85e07b914610a99578063d731f8f514610b1c578063dd62ed3e14610b2657610206565b80639def2d8914610893578063a457c2d7146108b5578063a9059cbb1461091b578063aa271e1a1461098157610206565b806395d89b41116100e957806395d89b4114610774578063983b2d56146107f7578063986502751461083b5780639bcb7fa11461084557610206565b806370a082311461068057806379cc6790146106d857806382dc1ec4146107265780638456cb591461076a57610206565b806338d401351161019d57806342966c681161016c57806342966c681461058057806346fbf68e146105ae5780635c975abb1461060a57806362b856b51461062c5780636ef8d66d1461067657610206565b806338d401351461046657806339509351146104aa5780633f4ba83a1461051057806340c10f191461051a57610206565b806323b872dd116101d957806323b872dd146103425780632ed1f6cc146103c8578063313ce56714610424578063355274ea1461044857610206565b806306fdde031461020b578063080953c91461028e578063095ea7b3146102be57806318160ddd14610324575b600080fd5b610213610b9e565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610253578082015181840152602081019050610238565b50505050905090810190601f1680156102805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102bc600480360360208110156102a457600080fd5b81019080803515159060200190929190505050610c40565b005b61030a600480360360408110156102d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cc2565b604051808215151515815260200191505060405180910390f35b61032c610ce0565b6040518082815260200191505060405180910390f35b6103ae6004803603606081101561035857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cea565b604051808215151515815260200191505060405180910390f35b61040a600480360360208110156103de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dc3565b604051808215151515815260200191505060405180910390f35b61042c610de0565b604051808260ff1660ff16815260200191505060405180910390f35b610450610df7565b6040518082815260200191505060405180910390f35b6104a86004803603602081101561047c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e01565b005b6104f6600480360360408110156104c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e72565b604051808215151515815260200191505060405180910390f35b610518610f25565b005b6105666004803603604081101561053057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611093565b604051808215151515815260200191505060405180910390f35b6105ac6004803603602081101561059657600080fd5b810190808035906020019092919050505061110e565b005b6105f0600480360360208110156105c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611122565b604051808215151515815260200191505060405180910390f35b61061261113f565b604051808215151515815260200191505060405180910390f35b610634611156565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61067e61117c565b005b6106c26004803603602081101561069657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061118e565b6040518082815260200191505060405180910390f35b610724600480360360408110156106ee57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111d7565b005b6107686004803603602081101561073c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611239565b005b6107726112aa565b005b61077c611419565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107bc5780820151818401526020810190506107a1565b50505050905090810190601f1680156107e95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6108396004803603602081101561080d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114bb565b005b61084361152c565b005b6108916004803603604081101561085b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061153e565b005b61089b6115b1565b604051808215151515815260200191505060405180910390f35b610901600480360360408110156108cb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115c4565b604051808215151515815260200191505060405180910390f35b6109676004803603604081101561093157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611691565b604051808215151515815260200191505060405180910390f35b6109c36004803603602081101561099757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116af565b604051808215151515815260200191505060405180910390f35b610a49600480360360608110156109f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116cc565b005b610a9760048036036040811015610a6157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611741565b005b610aa16117b4565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ae1578082015181840152602081019050610ac6565b50505050905090810190601f168015610b0e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b24611852565b005b610b8860048036036040811015610b3c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611864565b6040518082815260200191505060405180910390f35b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c365780601f10610c0b57610100808354040283529160200191610c36565b820191906000526020600020905b815481529060010190602001808311610c1957829003601f168201915b5050505050905090565b610c50610c4b6118eb565b610dc3565b610ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612a6f6030913960400191505060405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6000610cd6610ccf6118eb565b84846118f3565b6001905092915050565b6000600654905090565b6000610cf7848484611aea565b610db884610d036118eb565b610db3856040518060600160405280602881526020016129bb60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d696118eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611daf9092919063ffffffff16565b6118f3565b600190509392505050565b6000610dd9826000611e6f90919063ffffffff16565b9050919050565b6000600960009054906101000a900460ff16905090565b6000600a54905090565b610e11610e0c6118eb565b610dc3565b610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612a6f6030913960400191505060405180910390fd5b610e6f81611f4d565b50565b6000610f1b610e7f6118eb565b84610f168560056000610e906118eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fa790919063ffffffff16565b6118f3565b6001905092915050565b610f35610f306118eb565b611122565b610f8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806128f26030913960400191505060405180910390fd5b600360009054906101000a900460ff1661100c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600360006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6110506118eb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60006110a56110a06118eb565b6116af565b6110fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061296a6030913960400191505060405180910390fd5b611104838361202f565b6001905092915050565b61111f6111196118eb565b826121f8565b50565b6000611138826002611e6f90919063ffffffff16565b9050919050565b6000600360009054906101000a900460ff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61118c6111876118eb565b6123be565b565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061121682604051806060016040528060248152602001612a0560249139611207866112026118eb565b611864565b611daf9092919063ffffffff16565b905061122a836112246118eb565b836118f3565b61123483836121f8565b505050565b6112496112446118eb565b611122565b61129e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806128f26030913960400191505060405180910390fd5b6112a781612418565b50565b6112ba6112b56118eb565b611122565b61130f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806128f26030913960400191505060405180910390fd5b600360009054906101000a900460ff1615611392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600360006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113d66118eb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114b15780601f10611486576101008083540402835291602001916114b1565b820191906000526020600020905b81548152906001019060200180831161149457829003601f168201915b5050505050905090565b6114cb6114c66118eb565b6116af565b611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061296a6030913960400191505060405180910390fd5b61152981612472565b50565b61153c6115376118eb565b6124cc565b565b61154e6115496118eb565b610dc3565b6115a3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612a6f6030913960400191505060405180910390fd5b6115ad828261202f565b5050565b600c60009054906101000a900460ff1681565b60006116876115d16118eb565b8461168285604051806060016040528060258152602001612ac360259139600560006115fb6118eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611daf9092919063ffffffff16565b6118f3565b6001905092915050565b60006116a561169e6118eb565b8484611aea565b6001905092915050565b60006116c5826001611e6f90919063ffffffff16565b9050919050565b6116dc6116d76118eb565b610dc3565b611731576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612a6f6030913960400191505060405180910390fd5b61173c838383611aea565b505050565b61175161174c6118eb565b610dc3565b6117a6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612a6f6030913960400191505060405180910390fd5b6117b082826121f8565b5050565b600b8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561184a5780601f1061181f5761010080835404028352916020019161184a565b820191906000526020600020905b81548152906001019060200180831161182d57829003601f168201915b505050505081565b61186261185d6118eb565b612526565b565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612a9f6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806129226022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612a4a6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806128ad6023913960400191505060405180910390fd5b611c01838383612580565b611c6d8160405180606001604052806026815260200161294460269139600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611daf9092919063ffffffff16565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d0281600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fa790919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290611e5c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e21578082015181840152602081019050611e06565b50505050905090810190601f168015611e4e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ef6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806129e36022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f618160006125ee90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fb537fbf973bf8146ca1abf8643286224ae97cb1c3dd29c9c95ee8682ff1c0ac360405160405180910390a250565b600080828401905083811015612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6120de60008383612580565b6120f381600654611fa790919063ffffffff16565b60068190555061214b81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fa790919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561227e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612a296021913960400191505060405180910390fd5b61228a82600083612580565b6122f6816040518060600160405280602281526020016128d060229139600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611daf9092919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061234e816006546126c990919063ffffffff16565b600681905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6123d281600261271390919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b61242c8160026125ee90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6124868160016125ee90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6124e081600161271390919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b61253a81600061271390919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f3d1b0de3d4e88d51f64563b4babc2eff600d632b83f28fb8321dde9c7dd4e97d60405160405180910390a250565b61258b8383836127d0565b61259361113f565b156125e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612ae8602a913960400191505060405180910390fd5b505050565b6125f88282611e6f565b1561266b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061270b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611daf565b905092915050565b61271d8282611e6f565b612772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061299a6021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6127db8383836128a7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128a257600a5461282d8261281f610ce0565b611fa790919063ffffffff16565b11156128a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b5b505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734c657844414f526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204c657844414f20726f6c6545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a265627a7a7231582099daae98fdd7ca58d6cd35337bca61181fc499b698c95eb9dcfe6a29262043f464736f6c634300050e0032526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332305061757361626c653a20746f6b656e207472616e73666572207768696c65207061757365640000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000084595161401484a00000000000000000000000000000000000000000000000000003635c9adc5dea0000000000000000000000000000097103fda00a2b47eac669568063c00e65866a63300000000000000000000000097103fda00a2b47eac669568063c00e65866a6330000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4c657844414f204b61726d61000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c584b4d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e486f6c64657273206f66204c657844414f204b61726d6120646973706c61792066696e65204c657844414f69736d000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a5780639def2d89116100ad578063bb56849a1161007c578063bb56849a146109dd578063bef2570014610a4b578063c85e07b914610a99578063d731f8f514610b1c578063dd62ed3e14610b2657610206565b80639def2d8914610893578063a457c2d7146108b5578063a9059cbb1461091b578063aa271e1a1461098157610206565b806395d89b41116100e957806395d89b4114610774578063983b2d56146107f7578063986502751461083b5780639bcb7fa11461084557610206565b806370a082311461068057806379cc6790146106d857806382dc1ec4146107265780638456cb591461076a57610206565b806338d401351161019d57806342966c681161016c57806342966c681461058057806346fbf68e146105ae5780635c975abb1461060a57806362b856b51461062c5780636ef8d66d1461067657610206565b806338d401351461046657806339509351146104aa5780633f4ba83a1461051057806340c10f191461051a57610206565b806323b872dd116101d957806323b872dd146103425780632ed1f6cc146103c8578063313ce56714610424578063355274ea1461044857610206565b806306fdde031461020b578063080953c91461028e578063095ea7b3146102be57806318160ddd14610324575b600080fd5b610213610b9e565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610253578082015181840152602081019050610238565b50505050905090810190601f1680156102805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102bc600480360360208110156102a457600080fd5b81019080803515159060200190929190505050610c40565b005b61030a600480360360408110156102d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cc2565b604051808215151515815260200191505060405180910390f35b61032c610ce0565b6040518082815260200191505060405180910390f35b6103ae6004803603606081101561035857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610cea565b604051808215151515815260200191505060405180910390f35b61040a600480360360208110156103de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dc3565b604051808215151515815260200191505060405180910390f35b61042c610de0565b604051808260ff1660ff16815260200191505060405180910390f35b610450610df7565b6040518082815260200191505060405180910390f35b6104a86004803603602081101561047c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e01565b005b6104f6600480360360408110156104c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e72565b604051808215151515815260200191505060405180910390f35b610518610f25565b005b6105666004803603604081101561053057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611093565b604051808215151515815260200191505060405180910390f35b6105ac6004803603602081101561059657600080fd5b810190808035906020019092919050505061110e565b005b6105f0600480360360208110156105c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611122565b604051808215151515815260200191505060405180910390f35b61061261113f565b604051808215151515815260200191505060405180910390f35b610634611156565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61067e61117c565b005b6106c26004803603602081101561069657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061118e565b6040518082815260200191505060405180910390f35b610724600480360360408110156106ee57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111d7565b005b6107686004803603602081101561073c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611239565b005b6107726112aa565b005b61077c611419565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107bc5780820151818401526020810190506107a1565b50505050905090810190601f1680156107e95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6108396004803603602081101561080d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114bb565b005b61084361152c565b005b6108916004803603604081101561085b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061153e565b005b61089b6115b1565b604051808215151515815260200191505060405180910390f35b610901600480360360408110156108cb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115c4565b604051808215151515815260200191505060405180910390f35b6109676004803603604081101561093157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611691565b604051808215151515815260200191505060405180910390f35b6109c36004803603602081101561099757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116af565b604051808215151515815260200191505060405180910390f35b610a49600480360360608110156109f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116cc565b005b610a9760048036036040811015610a6157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611741565b005b610aa16117b4565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ae1578082015181840152602081019050610ac6565b50505050905090810190601f168015610b0e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b24611852565b005b610b8860048036036040811015610b3c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611864565b6040518082815260200191505060405180910390f35b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c365780601f10610c0b57610100808354040283529160200191610c36565b820191906000526020600020905b815481529060010190602001808311610c1957829003601f168201915b5050505050905090565b610c50610c4b6118eb565b610dc3565b610ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612a6f6030913960400191505060405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6000610cd6610ccf6118eb565b84846118f3565b6001905092915050565b6000600654905090565b6000610cf7848484611aea565b610db884610d036118eb565b610db3856040518060600160405280602881526020016129bb60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d696118eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611daf9092919063ffffffff16565b6118f3565b600190509392505050565b6000610dd9826000611e6f90919063ffffffff16565b9050919050565b6000600960009054906101000a900460ff16905090565b6000600a54905090565b610e11610e0c6118eb565b610dc3565b610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612a6f6030913960400191505060405180910390fd5b610e6f81611f4d565b50565b6000610f1b610e7f6118eb565b84610f168560056000610e906118eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fa790919063ffffffff16565b6118f3565b6001905092915050565b610f35610f306118eb565b611122565b610f8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806128f26030913960400191505060405180910390fd5b600360009054906101000a900460ff1661100c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600360006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6110506118eb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60006110a56110a06118eb565b6116af565b6110fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061296a6030913960400191505060405180910390fd5b611104838361202f565b6001905092915050565b61111f6111196118eb565b826121f8565b50565b6000611138826002611e6f90919063ffffffff16565b9050919050565b6000600360009054906101000a900460ff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61118c6111876118eb565b6123be565b565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600061121682604051806060016040528060248152602001612a0560249139611207866112026118eb565b611864565b611daf9092919063ffffffff16565b905061122a836112246118eb565b836118f3565b61123483836121f8565b505050565b6112496112446118eb565b611122565b61129e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806128f26030913960400191505060405180910390fd5b6112a781612418565b50565b6112ba6112b56118eb565b611122565b61130f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806128f26030913960400191505060405180910390fd5b600360009054906101000a900460ff1615611392576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600360006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113d66118eb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b606060088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114b15780601f10611486576101008083540402835291602001916114b1565b820191906000526020600020905b81548152906001019060200180831161149457829003601f168201915b5050505050905090565b6114cb6114c66118eb565b6116af565b611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061296a6030913960400191505060405180910390fd5b61152981612472565b50565b61153c6115376118eb565b6124cc565b565b61154e6115496118eb565b610dc3565b6115a3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612a6f6030913960400191505060405180910390fd5b6115ad828261202f565b5050565b600c60009054906101000a900460ff1681565b60006116876115d16118eb565b8461168285604051806060016040528060258152602001612ac360259139600560006115fb6118eb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611daf9092919063ffffffff16565b6118f3565b6001905092915050565b60006116a561169e6118eb565b8484611aea565b6001905092915050565b60006116c5826001611e6f90919063ffffffff16565b9050919050565b6116dc6116d76118eb565b610dc3565b611731576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612a6f6030913960400191505060405180910390fd5b61173c838383611aea565b505050565b61175161174c6118eb565b610dc3565b6117a6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180612a6f6030913960400191505060405180910390fd5b6117b082826121f8565b5050565b600b8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561184a5780601f1061181f5761010080835404028352916020019161184a565b820191906000526020600020905b81548152906001019060200180831161182d57829003601f168201915b505050505081565b61186261185d6118eb565b612526565b565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180612a9f6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806129226022913960400191505060405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180612a4a6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806128ad6023913960400191505060405180910390fd5b611c01838383612580565b611c6d8160405180606001604052806026815260200161294460269139600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611daf9092919063ffffffff16565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d0281600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fa790919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290611e5c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e21578082015181840152602081019050611e06565b50505050905090810190601f168015611e4e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ef6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806129e36022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f618160006125ee90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fb537fbf973bf8146ca1abf8643286224ae97cb1c3dd29c9c95ee8682ff1c0ac360405160405180910390a250565b600080828401905083811015612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6120de60008383612580565b6120f381600654611fa790919063ffffffff16565b60068190555061214b81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611fa790919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561227e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180612a296021913960400191505060405180910390fd5b61228a82600083612580565b6122f6816040518060600160405280602281526020016128d060229139600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611daf9092919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061234e816006546126c990919063ffffffff16565b600681905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6123d281600261271390919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b61242c8160026125ee90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6124868160016125ee90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6124e081600161271390919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b61253a81600061271390919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f3d1b0de3d4e88d51f64563b4babc2eff600d632b83f28fb8321dde9c7dd4e97d60405160405180910390a250565b61258b8383836127d0565b61259361113f565b156125e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612ae8602a913960400191505060405180910390fd5b505050565b6125f88282611e6f565b1561266b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600061270b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611daf565b905092915050565b61271d8282611e6f565b612772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061299a6021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6127db8383836128a7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128a257600a5461282d8261281f610ce0565b611fa790919063ffffffff16565b11156128a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b5b505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c6545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734c657844414f526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204c657844414f20726f6c6545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a265627a7a7231582099daae98fdd7ca58d6cd35337bca61181fc499b698c95eb9dcfe6a29262043f464736f6c634300050e0032

Deployed Bytecode Sourcemap

31934:1889:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31934:1889:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19582:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;19582:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33309:159;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33309:159:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;21636:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21636:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20657:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22262:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22262:304:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;2442:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2442:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20509:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29797:75;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2559:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;2559:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;22975:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22975:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;6716:120;;;:::i;:::-;;30721:143;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30721:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28618:83;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28618:83:0;;;;;;;;;;;;;;;;;:::i;:::-;;4294:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4294:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5923:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32293:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;4511:79;;;:::i;:::-;;20811:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20811:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29020:287;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29020:287:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4411:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4411:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;6503:118;;;:::i;:::-;;19784:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;19784:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3485:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3485:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;3585:79;;;:::i;:::-;;33476:157;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33476:157:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32123:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23688:261;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23688:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21134:158;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21134:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3368:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3368:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33645:175;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33645:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33142:155;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33142:155:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32097:19;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;32097:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2659:79;;;:::i;:::-;;21355:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21355:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19582:83;19619:13;19652:5;19645:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19582:83;:::o;33309:159::-;2335:22;2344:12;:10;:12::i;:::-;2335:8;:22::i;:::-;2327:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33390:10;33378:9;;:22;;;;;;;;;;;;;;;;;;33309:159;:::o;21636:152::-;21702:4;21719:39;21728:12;:10;:12::i;:::-;21742:7;21751:6;21719:8;:39::i;:::-;21776:4;21769:11;;21636:152;;;;:::o;20657:91::-;20701:7;20728:12;;20721:19;;20657:91;:::o;22262:304::-;22351:4;22368:36;22378:6;22386:9;22397:6;22368:9;:36::i;:::-;22415:121;22424:6;22432:12;:10;:12::i;:::-;22446:89;22484:6;22446:89;;;;;;;;;;;;;;;;;:11;:19;22458:6;22446:19;;;;;;;;;;;;;;;:33;22466:12;:10;:12::i;:::-;22446:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;22415:8;:121::i;:::-;22554:4;22547:11;;22262:304;;;;;:::o;2442:109::-;2498:4;2522:21;2535:7;2522:8;:12;;:21;;;;:::i;:::-;2515:28;;2442:109;;;:::o;20509:83::-;20550:5;20575:9;;;;;;;;;;;20568:16;;20509:83;:::o;29797:75::-;29833:7;29860:4;;29853:11;;29797:75;:::o;2559:92::-;2335:22;2344:12;:10;:12::i;:::-;2335:8;:22::i;:::-;2327:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2624:19;2635:7;2624:10;:19::i;:::-;2559:92;:::o;22975:210::-;23055:4;23072:83;23081:12;:10;:12::i;:::-;23095:7;23104:50;23143:10;23104:11;:25;23116:12;:10;:12::i;:::-;23104:25;;;;;;;;;;;;;;;:34;23130:7;23104:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;23072:8;:83::i;:::-;23173:4;23166:11;;22975:210;;;;:::o;6716:120::-;4191:22;4200:12;:10;:12::i;:::-;4191:8;:22::i;:::-;4183:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6359:7;;;;;;;;;;;6351:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6785:5;6775:7;;:15;;;;;;;;;;;;;;;;;;6806:22;6815:12;:10;:12::i;:::-;6806:22;;;;;;;;;;;;;;;;;;;;;;6716:120::o;30721:143::-;30795:4;3265:22;3274:12;:10;:12::i;:::-;3265:8;:22::i;:::-;3257:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30812:22;30818:7;30827:6;30812:5;:22::i;:::-;30852:4;30845:11;;30721:143;;;;:::o;28618:83::-;28666:27;28672:12;:10;:12::i;:::-;28686:6;28666:5;:27::i;:::-;28618:83;:::o;4294:109::-;4350:4;4374:21;4387:7;4374:8;:12;;:21;;;;:::i;:::-;4367:28;;4294:109;;;:::o;5923:78::-;5962:4;5986:7;;;;;;;;;;;5979:14;;5923:78;:::o;32293:30::-;;;;;;;;;;;;;:::o;4511:79::-;4555:27;4569:12;:10;:12::i;:::-;4555:13;:27::i;:::-;4511:79::o;20811:110::-;20868:7;20895:9;:18;20905:7;20895:18;;;;;;;;;;;;;;;;20888:25;;20811:110;;;:::o;29020:287::-;29089:26;29118:84;29155:6;29118:84;;;;;;;;;;;;;;;;;:32;29128:7;29137:12;:10;:12::i;:::-;29118:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;29089:113;;29215:51;29224:7;29233:12;:10;:12::i;:::-;29247:18;29215:8;:51::i;:::-;29277:22;29283:7;29292:6;29277:5;:22::i;:::-;29020:287;;;:::o;4411:92::-;4191:22;4200:12;:10;:12::i;:::-;4191:8;:22::i;:::-;4183:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4476:19;4487:7;4476:10;:19::i;:::-;4411:92;:::o;6503:118::-;4191:22;4200:12;:10;:12::i;:::-;4191:8;:22::i;:::-;4183:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6160:7;;;;;;;;;;;6159:8;6151:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6573:4;6563:7;;:14;;;;;;;;;;;;;;;;;;6593:20;6600:12;:10;:12::i;:::-;6593:20;;;;;;;;;;;;;;;;;;;;;;6503:118::o;19784:87::-;19823:13;19856:7;19849:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19784:87;:::o;3485:92::-;3265:22;3274:12;:10;:12::i;:::-;3265:8;:22::i;:::-;3257:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3550:19;3561:7;3550:10;:19::i;:::-;3485:92;:::o;3585:79::-;3629:27;3643:12;:10;:12::i;:::-;3629:13;:27::i;:::-;3585:79::o;33476:157::-;2335:22;2344:12;:10;:12::i;:::-;2335:8;:22::i;:::-;2327:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33558:22;33564:7;33573:6;33558:5;:22::i;:::-;33476:157;;:::o;32123:21::-;;;;;;;;;;;;;:::o;23688:261::-;23773:4;23790:129;23799:12;:10;:12::i;:::-;23813:7;23822:96;23861:15;23822:96;;;;;;;;;;;;;;;;;:11;:25;23834:12;:10;:12::i;:::-;23822:25;;;;;;;;;;;;;;;:34;23848:7;23822:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;23790:8;:129::i;:::-;23937:4;23930:11;;23688:261;;;;:::o;21134:158::-;21203:4;21220:42;21230:12;:10;:12::i;:::-;21244:9;21255:6;21220:9;:42::i;:::-;21280:4;21273:11;;21134:158;;;;:::o;3368:109::-;3424:4;3448:21;3461:7;3448:8;:12;;:21;;;;:::i;:::-;3441:28;;3368:109;;;:::o;33645:175::-;2335:22;2344:12;:10;:12::i;:::-;2335:8;:22::i;:::-;2327:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33740:27;33750:4;33756:2;33760:6;33740:9;:27::i;:::-;33645:175;;;:::o;33142:155::-;2335:22;2344:12;:10;:12::i;:::-;2335:8;:22::i;:::-;2327:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33224:22;33230:7;33239:6;33224:5;:22::i;:::-;33142:155;;:::o;32097:19::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2659:79::-;2703:27;2717:12;:10;:12::i;:::-;2703:13;:27::i;:::-;2659:79::o;21355:134::-;21427:7;21454:11;:18;21466:5;21454:18;;;;;;;;;;;;;;;:27;21473:7;21454:27;;;;;;;;;;;;;;;;21447:34;;21355:134;;;;:::o;752:98::-;797:15;832:10;825:17;;752:98;:::o;26803:338::-;26914:1;26897:19;;:5;:19;;;;26889:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26995:1;26976:21;;:7;:21;;;;26968:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27079:6;27049:11;:18;27061:5;27049:18;;;;;;;;;;;;;;;:27;27068:7;27049:27;;;;;;;;;;;;;;;:36;;;;27117:7;27101:32;;27110:5;27101:32;;;27126:6;27101:32;;;;;;;;;;;;;;;;;;26803:338;;;:::o;24439:531::-;24555:1;24537:20;;:6;:20;;;;24529:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24639:1;24618:23;;:9;:23;;;;24610:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24694:47;24715:6;24723:9;24734:6;24694:20;:47::i;:::-;24774:71;24796:6;24774:71;;;;;;;;;;;;;;;;;:9;:17;24784:6;24774:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;24754:9;:17;24764:6;24754:17;;;;;;;;;;;;;;;:91;;;;24879:32;24904:6;24879:9;:20;24889:9;24879:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;24856:9;:20;24866:9;24856:20;;;;;;;;;;;;;;;:55;;;;24944:9;24927:35;;24936:6;24927:35;;;24955:6;24927:35;;;;;;;;;;;;;;;;;;24439:531;;;:::o;8562:192::-;8648:7;8681:1;8676;:6;;8684:12;8668:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;8668:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8708:9;8724:1;8720;:5;8708:17;;8745:1;8738:8;;;8562:192;;;;;:::o;1873:203::-;1945:4;1989:1;1970:21;;:7;:21;;;;1962:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2048:4;:11;;:20;2060:7;2048:20;;;;;;;;;;;;;;;;;;;;;;;;;2041:27;;1873:203;;;;:::o;2746:122::-;2803:21;2816:7;2803:8;:12;;:21;;;;:::i;:::-;2852:7;2840:20;;;;;;;;;;;;2746:122;:::o;7675:181::-;7733:7;7753:9;7769:1;7765;:5;7753:17;;7794:1;7789;:6;;7781:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7847:1;7840:8;;;7675:181;;;;:::o;25251:370::-;25346:1;25327:21;;:7;:21;;;;25319:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25397:49;25426:1;25430:7;25439:6;25397:20;:49::i;:::-;25474:24;25491:6;25474:12;;:16;;:24;;;;:::i;:::-;25459:12;:39;;;;25530:30;25553:6;25530:9;:18;25540:7;25530:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;25509:9;:18;25519:7;25509:18;;;;;;;;;;;;;;;:51;;;;25597:7;25576:37;;25593:1;25576:37;;;25606:6;25576:37;;;;;;;;;;;;;;;;;;25251:370;;:::o;25953:410::-;26048:1;26029:21;;:7;:21;;;;26021:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26101:49;26122:7;26139:1;26143:6;26101:20;:49::i;:::-;26184:68;26207:6;26184:68;;;;;;;;;;;;;;;;;:9;:18;26194:7;26184:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;26163:9;:18;26173:7;26163:18;;;;;;;;;;;;;;;:89;;;;26278:24;26295:6;26278:12;;:16;;:24;;;;:::i;:::-;26263:12;:39;;;;26344:1;26318:37;;26327:7;26318:37;;;26348:6;26318:37;;;;;;;;;;;;;;;;;;25953:410;;:::o;4728:130::-;4788:24;4804:7;4788:8;:15;;:24;;;;:::i;:::-;4842:7;4828:22;;;;;;;;;;;;4728:130;:::o;4598:122::-;4655:21;4668:7;4655:8;:12;;:21;;;;:::i;:::-;4704:7;4692:20;;;;;;;;;;;;4598:122;:::o;3672:::-;3729:21;3742:7;3729:8;:12;;:21;;;;:::i;:::-;3778:7;3766:20;;;;;;;;;;;;3672:122;:::o;3802:130::-;3862:24;3878:7;3862:8;:15;;:24;;;;:::i;:::-;3916:7;3902:22;;;;;;;;;;;;3802:130;:::o;2876:::-;2936:24;2952:7;2936:8;:15;;:24;;;;:::i;:::-;2990:7;2976:22;;;;;;;;;;;;2876:130;:::o;31343:221::-;31435:44;31462:4;31468:2;31472:6;31435:26;:44::i;:::-;31501:8;:6;:8::i;:::-;31500:9;31492:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31343:221;;;:::o;1337:178::-;1415:18;1419:4;1425:7;1415:3;:18::i;:::-;1414:19;1406:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1503:4;1480;:11;;:20;1492:7;1480:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;1337:178;;:::o;8131:136::-;8189:7;8216:43;8220:1;8223;8216:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;8209:50;;8131:136;;;;:::o;1595:183::-;1675:18;1679:4;1685:7;1675:3;:18::i;:::-;1667:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1765:5;1742:4;:11;;:20;1754:7;1742:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;1595:183;;:::o;30059:301::-;30151:44;30178:4;30184:2;30188:6;30151:26;:44::i;:::-;30228:1;30212:18;;:4;:18;;;30208:145;;;30307:4;;30278:25;30296:6;30278:13;:11;:13::i;:::-;:17;;:25;;;;:::i;:::-;:33;;30270:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30208:145;30059:301;;;:::o;28166:84::-;;;;:::o

Swarm Source

bzzr://99daae98fdd7ca58d6cd35337bca61181fc499b698c95eb9dcfe6a29262043f4
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.