ETH Price: $2,082.12 (-2.15%)

Token

Deed Token (DEED)
 

Overview

Max Total Supply

9,030,000 DEED

Holders

10

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Deed

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-11-08
*/

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @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 transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

// File: Deed.sol


/**
 * Deed Token (DEED)
 * @deedprotocol
 * deedapp.io
 *
 * Deed Token is an utility token that powers the Deed Protocol. 
 *
 * A decentralized world where properties are owned and transferred via the blockchain.
 * 
 */
pragma solidity ^0.8.17;




contract Deed is ERC20Capped {
    address payable public owner;
    address payable public supporterAddress;
    address payable public airDropAddress;
    address payable public mintRewardsContract;
    uint256 private maxSupply = 21000000;
    uint256 private toDev = maxSupply * 3/10;
    uint256 private unlockedToDevEachYear = toDev * 1/10;
    uint256 private toSupporters = maxSupply * 1/4;
    uint256 private toAirdrops = maxSupply * 3/20;
    uint256 private toMint = maxSupply * 3/10;
    uint256 private timeStampMint;
    uint256 private noOfMints;

    constructor() ERC20("Deed Token", "DEED") ERC20Capped(maxSupply * (10 ** decimals())) {
        owner = payable(msg.sender);
        timeStampMint = block.timestamp;
        noOfMints = 0;
        supporterAddress = payable(0xC55B8024B927D6D0749F436d6a037000d9e5539E);
        airDropAddress = payable(0x7D258CD68D763d401522AEF7c3679191a4be2DBE);
        mintRewardsContract = payable(0xC8C7e5Ef940d314A69F0566A62a85944369B8e05);
        _mint(owner, unlockedToDevEachYear * (10 ** decimals()));
        _mint(supporterAddress, toSupporters * (10 ** decimals()));
        _mint(airDropAddress, toAirdrops * (10 ** decimals()));
    }

    /**
    * @dev Anyone can call this after one year, once per year, for 20 years.
    */
    function mintRestOfTokens() external {
        require(block.timestamp - timeStampMint > 365 days, 'Can only be minted after one year.');
        require(noOfMints < 20, 'Can only mint 20 times.');
        noOfMints += 1;
        timeStampMint = block.timestamp;
        toMint = toMint * 1/2;
        _mint(owner, toMint * 1/4 * (10 ** decimals())); 
        _mint(supporterAddress, toMint * 1/4 * (10 ** decimals())); 
        _mint(mintRewardsContract, toMint * 1/2 * (10 ** decimals())); 
        if (noOfMints < 10) {
            _mint(owner, unlockedToDevEachYear * (10 ** decimals()));
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"airDropAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintRestOfTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintRewardsContract","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supporterAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a06040526301406f40600955600a60036009546200001f9190620006a5565b6200002b91906200071f565b600a55600a6001600a54620000419190620006a5565b6200004d91906200071f565b600b5560046001600954620000639190620006a5565b6200006f91906200071f565b600c5560146003600954620000859190620006a5565b6200009191906200071f565b600d55600a6003600954620000a79190620006a5565b620000b391906200071f565b600e55348015620000c357600080fd5b50620000d46200044760201b60201c565b600a620000e29190620008b8565b600954620000f19190620006a5565b6040518060400160405280600a81526020017f4465656420546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f444545440000000000000000000000000000000000000000000000000000000081525081600390816200016e919062000b79565b50806004908162000180919062000b79565b50505060008111620001c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001c09062000cc1565b60405180910390fd5b80608081815250505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555042600f81905550600060108190555073c55b8024b927d6d0749f436d6a037000d9e5539e600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737d258cd68d763d401522aef7c3679191a4be2dbe600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c8c7e5ef940d314a69f0566a62a85944369b8e05600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000381600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620003586200044760201b60201c565b600a620003669190620008b8565b600b54620003759190620006a5565b6200045060201b60201c565b620003e1600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620003b86200044760201b60201c565b600a620003c69190620008b8565b600c54620003d59190620006a5565b6200045060201b60201c565b62000441600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620004186200044760201b60201c565b600a620004269190620008b8565b600d54620004359190620006a5565b6200045060201b60201c565b62000e30565b60006012905090565b62000460620004e160201b60201c565b8162000476620004eb60201b6200042d1760201c565b62000482919062000ce3565b1115620004c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004bd9062000d6e565b60405180910390fd5b620004dd8282620004f560201b620009c11760201c565b5050565b6000608051905090565b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000567576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055e9062000de0565b60405180910390fd5b6200057b600083836200066260201b60201c565b80600260008282546200058f919062000ce3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000642919062000e13565b60405180910390a36200065e600083836200066760201b60201c565b5050565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620006b2826200066c565b9150620006bf836200066c565b9250828202620006cf816200066c565b91508282048414831517620006e957620006e862000676565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200072c826200066c565b915062000739836200066c565b9250826200074c576200074b620006f0565b5b828204905092915050565b60008160011c9050919050565b6000808291508390505b6001851115620007b6578086048111156200078e576200078d62000676565b5b60018516156200079e5780820291505b8081029050620007ae8562000757565b94506200076e565b94509492505050565b600082620007d15760019050620008a4565b81620007e15760009050620008a4565b8160018114620007fa576002811462000805576200083b565b6001915050620008a4565b60ff8411156200081a576200081962000676565b5b8360020a91508482111562000834576200083362000676565b5b50620008a4565b5060208310610133831016604e8410600b8410161715620008755782820a9050838111156200086f576200086e62000676565b5b620008a4565b62000884848484600162000764565b925090508184048111156200089e576200089d62000676565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008c5826200066c565b9150620008d283620008ab565b9250620009017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007bf565b905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200098b57607f821691505b602082108103620009a157620009a062000943565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a0b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009cc565b62000a178683620009cc565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000a5a62000a5462000a4e846200066c565b62000a2f565b6200066c565b9050919050565b6000819050919050565b62000a768362000a39565b62000a8e62000a858262000a61565b848454620009d9565b825550505050565b600090565b62000aa562000a96565b62000ab281848462000a6b565b505050565b5b8181101562000ada5762000ace60008262000a9b565b60018101905062000ab8565b5050565b601f82111562000b295762000af381620009a7565b62000afe84620009bc565b8101602085101562000b0e578190505b62000b2662000b1d85620009bc565b83018262000ab7565b50505b505050565b600082821c905092915050565b600062000b4e6000198460080262000b2e565b1980831691505092915050565b600062000b69838362000b3b565b9150826002028217905092915050565b62000b848262000909565b67ffffffffffffffff81111562000ba05762000b9f62000914565b5b62000bac825462000972565b62000bb982828562000ade565b600060209050601f83116001811462000bf1576000841562000bdc578287015190505b62000be8858262000b5b565b86555062000c58565b601f19841662000c0186620009a7565b60005b8281101562000c2b5784890151825560018201915060208501945060208101905062000c04565b8683101562000c4b578489015162000c47601f89168262000b3b565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b600062000ca960158362000c60565b915062000cb68262000c71565b602082019050919050565b6000602082019050818103600083015262000cdc8162000c9a565b9050919050565b600062000cf0826200066c565b915062000cfd836200066c565b925082820190508082111562000d185762000d1762000676565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062000d5660198362000c60565b915062000d638262000d1e565b602082019050919050565b6000602082019050818103600083015262000d898162000d47565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000dc8601f8362000c60565b915062000dd58262000d90565b602082019050919050565b6000602082019050818103600083015262000dfb8162000db9565b9050919050565b62000e0d816200066c565b82525050565b600060208201905062000e2a600083018462000e02565b92915050565b608051611c7762000e4c60003960006104990152611c776000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063429c48cc116100a257806395d89b411161007157806395d89b41146102c0578063a457c2d7146102de578063a9059cbb1461030e578063c695dc611461033e578063dd62ed3e146103485761010b565b8063429c48cc146102365780634a8a9f4f1461025457806370a08231146102725780638da5cb5b146102a25761010b565b806329688c0f116100de57806329688c0f146101ac578063313ce567146101ca578063355274ea146101e857806339509351146102065761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610378565b60405161012591906110ee565b60405180910390f35b610148600480360381019061014391906111a9565b61040a565b6040516101559190611204565b60405180910390f35b61016661042d565b604051610173919061122e565b60405180910390f35b61019660048036038101906101919190611249565b610437565b6040516101a39190611204565b60405180910390f35b6101b4610466565b6040516101c191906112bd565b60405180910390f35b6101d261048c565b6040516101df91906112f4565b60405180910390f35b6101f0610495565b6040516101fd919061122e565b60405180910390f35b610220600480360381019061021b91906111a9565b6104bd565b60405161022d9190611204565b60405180910390f35b61023e6104f4565b60405161024b91906112bd565b60405180910390f35b61025c61051a565b60405161026991906112bd565b60405180910390f35b61028c6004803603810190610287919061130f565b610540565b604051610299919061122e565b60405180910390f35b6102aa610588565b6040516102b791906112bd565b60405180910390f35b6102c86105ae565b6040516102d591906110ee565b60405180910390f35b6102f860048036038101906102f391906111a9565b610640565b6040516103059190611204565b60405180910390f35b610328600480360381019061032391906111a9565b6106b7565b6040516103359190611204565b60405180910390f35b6103466106da565b005b610362600480360381019061035d919061133c565b61093a565b60405161036f919061122e565b60405180910390f35b606060038054610387906113ab565b80601f01602080910402602001604051908101604052809291908181526020018280546103b3906113ab565b80156104005780601f106103d557610100808354040283529160200191610400565b820191906000526020600020905b8154815290600101906020018083116103e357829003601f168201915b5050505050905090565b600080610415610b17565b9050610422818585610b1f565b600191505092915050565b6000600254905090565b600080610442610b17565b905061044f858285610ce8565b61045a858585610d74565b60019150509392505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000806104c8610b17565b90506104e98185856104da858961093a565b6104e4919061140b565b610b1f565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546105bd906113ab565b80601f01602080910402602001604051908101604052809291908181526020018280546105e9906113ab565b80156106365780601f1061060b57610100808354040283529160200191610636565b820191906000526020600020905b81548152906001019060200180831161061957829003601f168201915b5050505050905090565b60008061064b610b17565b90506000610659828661093a565b90508381101561069e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610695906114b1565b60405180910390fd5b6106ab8286868403610b1f565b60019250505092915050565b6000806106c2610b17565b90506106cf818585610d74565b600191505092915050565b6301e13380600f54426106ed91906114d1565b1161072d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072490611577565b60405180910390fd5b601460105410610772576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610769906115e3565b60405180910390fd5b600160106000828254610785919061140b565b9250508190555042600f8190555060026001600e546107a49190611603565b6107ae9190611674565b600e81905550610818600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166107e261048c565b600a6107ee91906117d8565b60046001600e546107ff9190611603565b6108099190611674565b6108139190611603565b610fea565b61087c600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661084661048c565b600a61085291906117d8565b60046001600e546108639190611603565b61086d9190611674565b6108779190611603565b610fea565b6108e0600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166108aa61048c565b600a6108b691906117d8565b60026001600e546108c79190611603565b6108d19190611674565b6108db9190611603565b610fea565b600a601054101561093857610937600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661091961048c565b600a61092591906117d8565b600b546109329190611603565b610fea565b5b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a279061186f565b60405180910390fd5b610a3c60008383611054565b8060026000828254610a4e919061140b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610aff919061122e565b60405180910390a3610b1360008383611059565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590611901565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf490611993565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cdb919061122e565b60405180910390a3505050565b6000610cf4848461093a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d6e5781811015610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d57906119ff565b60405180910390fd5b610d6d8484848403610b1f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda90611a91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4990611b23565b60405180910390fd5b610e5d838383611054565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90611bb5565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fd1919061122e565b60405180910390a3610fe4848484611059565b50505050565b610ff2610495565b81610ffb61042d565b611005919061140b565b1115611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90611c21565b60405180910390fd5b61105082826109c1565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561109857808201518184015260208101905061107d565b60008484015250505050565b6000601f19601f8301169050919050565b60006110c08261105e565b6110ca8185611069565b93506110da81856020860161107a565b6110e3816110a4565b840191505092915050565b6000602082019050818103600083015261110881846110b5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061114082611115565b9050919050565b61115081611135565b811461115b57600080fd5b50565b60008135905061116d81611147565b92915050565b6000819050919050565b61118681611173565b811461119157600080fd5b50565b6000813590506111a38161117d565b92915050565b600080604083850312156111c0576111bf611110565b5b60006111ce8582860161115e565b92505060206111df85828601611194565b9150509250929050565b60008115159050919050565b6111fe816111e9565b82525050565b600060208201905061121960008301846111f5565b92915050565b61122881611173565b82525050565b6000602082019050611243600083018461121f565b92915050565b60008060006060848603121561126257611261611110565b5b60006112708682870161115e565b93505060206112818682870161115e565b925050604061129286828701611194565b9150509250925092565b60006112a782611115565b9050919050565b6112b78161129c565b82525050565b60006020820190506112d260008301846112ae565b92915050565b600060ff82169050919050565b6112ee816112d8565b82525050565b600060208201905061130960008301846112e5565b92915050565b60006020828403121561132557611324611110565b5b60006113338482850161115e565b91505092915050565b6000806040838503121561135357611352611110565b5b60006113618582860161115e565b92505060206113728582860161115e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113c357607f821691505b6020821081036113d6576113d561137c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061141682611173565b915061142183611173565b9250828201905080821115611439576114386113dc565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061149b602583611069565b91506114a68261143f565b604082019050919050565b600060208201905081810360008301526114ca8161148e565b9050919050565b60006114dc82611173565b91506114e783611173565b92508282039050818111156114ff576114fe6113dc565b5b92915050565b7f43616e206f6e6c79206265206d696e746564206166746572206f6e652079656160008201527f722e000000000000000000000000000000000000000000000000000000000000602082015250565b6000611561602283611069565b915061156c82611505565b604082019050919050565b6000602082019050818103600083015261159081611554565b9050919050565b7f43616e206f6e6c79206d696e742032302074696d65732e000000000000000000600082015250565b60006115cd601783611069565b91506115d882611597565b602082019050919050565b600060208201905081810360008301526115fc816115c0565b9050919050565b600061160e82611173565b915061161983611173565b925082820261162781611173565b9150828204841483151761163e5761163d6113dc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061167f82611173565b915061168a83611173565b92508261169a57611699611645565b5b828204905092915050565b60008160011c9050919050565b6000808291508390505b60018511156116fc578086048111156116d8576116d76113dc565b5b60018516156116e75780820291505b80810290506116f5856116a5565b94506116bc565b94509492505050565b60008261171557600190506117d1565b8161172357600090506117d1565b8160018114611739576002811461174357611772565b60019150506117d1565b60ff841115611755576117546113dc565b5b8360020a91508482111561176c5761176b6113dc565b5b506117d1565b5060208310610133831016604e8410600b84101617156117a75782820a9050838111156117a2576117a16113dc565b5b6117d1565b6117b484848460016116b2565b925090508184048111156117cb576117ca6113dc565b5b81810290505b9392505050565b60006117e382611173565b91506117ee836112d8565b925061181b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611705565b905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611859601f83611069565b915061186482611823565b602082019050919050565b600060208201905081810360008301526118888161184c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118eb602483611069565b91506118f68261188f565b604082019050919050565b6000602082019050818103600083015261191a816118de565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061197d602283611069565b915061198882611921565b604082019050919050565b600060208201905081810360008301526119ac81611970565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006119e9601d83611069565b91506119f4826119b3565b602082019050919050565b60006020820190508181036000830152611a18816119dc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a7b602583611069565b9150611a8682611a1f565b604082019050919050565b60006020820190508181036000830152611aaa81611a6e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b0d602383611069565b9150611b1882611ab1565b604082019050919050565b60006020820190508181036000830152611b3c81611b00565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b9f602683611069565b9150611baa82611b43565b604082019050919050565b60006020820190508181036000830152611bce81611b92565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611c0b601983611069565b9150611c1682611bd5565b602082019050919050565b60006020820190508181036000830152611c3a81611bfe565b905091905056fea26469706673582212202cf5992f03412e8f8dd7f69d08e3bfe16863a2b0a2f0fe0690c330cf5101056764736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063429c48cc116100a257806395d89b411161007157806395d89b41146102c0578063a457c2d7146102de578063a9059cbb1461030e578063c695dc611461033e578063dd62ed3e146103485761010b565b8063429c48cc146102365780634a8a9f4f1461025457806370a08231146102725780638da5cb5b146102a25761010b565b806329688c0f116100de57806329688c0f146101ac578063313ce567146101ca578063355274ea146101e857806339509351146102065761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610378565b60405161012591906110ee565b60405180910390f35b610148600480360381019061014391906111a9565b61040a565b6040516101559190611204565b60405180910390f35b61016661042d565b604051610173919061122e565b60405180910390f35b61019660048036038101906101919190611249565b610437565b6040516101a39190611204565b60405180910390f35b6101b4610466565b6040516101c191906112bd565b60405180910390f35b6101d261048c565b6040516101df91906112f4565b60405180910390f35b6101f0610495565b6040516101fd919061122e565b60405180910390f35b610220600480360381019061021b91906111a9565b6104bd565b60405161022d9190611204565b60405180910390f35b61023e6104f4565b60405161024b91906112bd565b60405180910390f35b61025c61051a565b60405161026991906112bd565b60405180910390f35b61028c6004803603810190610287919061130f565b610540565b604051610299919061122e565b60405180910390f35b6102aa610588565b6040516102b791906112bd565b60405180910390f35b6102c86105ae565b6040516102d591906110ee565b60405180910390f35b6102f860048036038101906102f391906111a9565b610640565b6040516103059190611204565b60405180910390f35b610328600480360381019061032391906111a9565b6106b7565b6040516103359190611204565b60405180910390f35b6103466106da565b005b610362600480360381019061035d919061133c565b61093a565b60405161036f919061122e565b60405180910390f35b606060038054610387906113ab565b80601f01602080910402602001604051908101604052809291908181526020018280546103b3906113ab565b80156104005780601f106103d557610100808354040283529160200191610400565b820191906000526020600020905b8154815290600101906020018083116103e357829003601f168201915b5050505050905090565b600080610415610b17565b9050610422818585610b1f565b600191505092915050565b6000600254905090565b600080610442610b17565b905061044f858285610ce8565b61045a858585610d74565b60019150509392505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b60007f000000000000000000000000000000000000000000115eec47f6cf7e35000000905090565b6000806104c8610b17565b90506104e98185856104da858961093a565b6104e4919061140b565b610b1f565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546105bd906113ab565b80601f01602080910402602001604051908101604052809291908181526020018280546105e9906113ab565b80156106365780601f1061060b57610100808354040283529160200191610636565b820191906000526020600020905b81548152906001019060200180831161061957829003601f168201915b5050505050905090565b60008061064b610b17565b90506000610659828661093a565b90508381101561069e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610695906114b1565b60405180910390fd5b6106ab8286868403610b1f565b60019250505092915050565b6000806106c2610b17565b90506106cf818585610d74565b600191505092915050565b6301e13380600f54426106ed91906114d1565b1161072d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072490611577565b60405180910390fd5b601460105410610772576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610769906115e3565b60405180910390fd5b600160106000828254610785919061140b565b9250508190555042600f8190555060026001600e546107a49190611603565b6107ae9190611674565b600e81905550610818600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166107e261048c565b600a6107ee91906117d8565b60046001600e546107ff9190611603565b6108099190611674565b6108139190611603565b610fea565b61087c600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661084661048c565b600a61085291906117d8565b60046001600e546108639190611603565b61086d9190611674565b6108779190611603565b610fea565b6108e0600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166108aa61048c565b600a6108b691906117d8565b60026001600e546108c79190611603565b6108d19190611674565b6108db9190611603565b610fea565b600a601054101561093857610937600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661091961048c565b600a61092591906117d8565b600b546109329190611603565b610fea565b5b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a279061186f565b60405180910390fd5b610a3c60008383611054565b8060026000828254610a4e919061140b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610aff919061122e565b60405180910390a3610b1360008383611059565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590611901565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf490611993565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cdb919061122e565b60405180910390a3505050565b6000610cf4848461093a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d6e5781811015610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d57906119ff565b60405180910390fd5b610d6d8484848403610b1f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda90611a91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4990611b23565b60405180910390fd5b610e5d838383611054565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90611bb5565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fd1919061122e565b60405180910390a3610fe4848484611059565b50505050565b610ff2610495565b81610ffb61042d565b611005919061140b565b1115611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90611c21565b60405180910390fd5b61105082826109c1565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561109857808201518184015260208101905061107d565b60008484015250505050565b6000601f19601f8301169050919050565b60006110c08261105e565b6110ca8185611069565b93506110da81856020860161107a565b6110e3816110a4565b840191505092915050565b6000602082019050818103600083015261110881846110b5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061114082611115565b9050919050565b61115081611135565b811461115b57600080fd5b50565b60008135905061116d81611147565b92915050565b6000819050919050565b61118681611173565b811461119157600080fd5b50565b6000813590506111a38161117d565b92915050565b600080604083850312156111c0576111bf611110565b5b60006111ce8582860161115e565b92505060206111df85828601611194565b9150509250929050565b60008115159050919050565b6111fe816111e9565b82525050565b600060208201905061121960008301846111f5565b92915050565b61122881611173565b82525050565b6000602082019050611243600083018461121f565b92915050565b60008060006060848603121561126257611261611110565b5b60006112708682870161115e565b93505060206112818682870161115e565b925050604061129286828701611194565b9150509250925092565b60006112a782611115565b9050919050565b6112b78161129c565b82525050565b60006020820190506112d260008301846112ae565b92915050565b600060ff82169050919050565b6112ee816112d8565b82525050565b600060208201905061130960008301846112e5565b92915050565b60006020828403121561132557611324611110565b5b60006113338482850161115e565b91505092915050565b6000806040838503121561135357611352611110565b5b60006113618582860161115e565b92505060206113728582860161115e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113c357607f821691505b6020821081036113d6576113d561137c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061141682611173565b915061142183611173565b9250828201905080821115611439576114386113dc565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061149b602583611069565b91506114a68261143f565b604082019050919050565b600060208201905081810360008301526114ca8161148e565b9050919050565b60006114dc82611173565b91506114e783611173565b92508282039050818111156114ff576114fe6113dc565b5b92915050565b7f43616e206f6e6c79206265206d696e746564206166746572206f6e652079656160008201527f722e000000000000000000000000000000000000000000000000000000000000602082015250565b6000611561602283611069565b915061156c82611505565b604082019050919050565b6000602082019050818103600083015261159081611554565b9050919050565b7f43616e206f6e6c79206d696e742032302074696d65732e000000000000000000600082015250565b60006115cd601783611069565b91506115d882611597565b602082019050919050565b600060208201905081810360008301526115fc816115c0565b9050919050565b600061160e82611173565b915061161983611173565b925082820261162781611173565b9150828204841483151761163e5761163d6113dc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061167f82611173565b915061168a83611173565b92508261169a57611699611645565b5b828204905092915050565b60008160011c9050919050565b6000808291508390505b60018511156116fc578086048111156116d8576116d76113dc565b5b60018516156116e75780820291505b80810290506116f5856116a5565b94506116bc565b94509492505050565b60008261171557600190506117d1565b8161172357600090506117d1565b8160018114611739576002811461174357611772565b60019150506117d1565b60ff841115611755576117546113dc565b5b8360020a91508482111561176c5761176b6113dc565b5b506117d1565b5060208310610133831016604e8410600b84101617156117a75782820a9050838111156117a2576117a16113dc565b5b6117d1565b6117b484848460016116b2565b925090508184048111156117cb576117ca6113dc565b5b81810290505b9392505050565b60006117e382611173565b91506117ee836112d8565b925061181b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611705565b905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611859601f83611069565b915061186482611823565b602082019050919050565b600060208201905081810360008301526118888161184c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118eb602483611069565b91506118f68261188f565b604082019050919050565b6000602082019050818103600083015261191a816118de565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061197d602283611069565b915061198882611921565b604082019050919050565b600060208201905081810360008301526119ac81611970565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006119e9601d83611069565b91506119f4826119b3565b602082019050919050565b60006020820190508181036000830152611a18816119dc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a7b602583611069565b9150611a8682611a1f565b604082019050919050565b60006020820190508181036000830152611aaa81611a6e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b0d602383611069565b9150611b1882611ab1565b604082019050919050565b60006020820190508181036000830152611b3c81611b00565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b9f602683611069565b9150611baa82611b43565b604082019050919050565b60006020820190508181036000830152611bce81611b92565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611c0b601983611069565b9150611c1682611bd5565b602082019050919050565b60006020820190508181036000830152611c3a81611bfe565b905091905056fea26469706673582212202cf5992f03412e8f8dd7f69d08e3bfe16863a2b0a2f0fe0690c330cf5101056764736f6c63430008110033

Deployed Bytecode Sourcemap

19165:1951:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6651:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9002:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7771:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9783:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19236:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7613:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18519:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10487:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19282:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19326:42;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7942:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19201:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6870:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11228:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8275:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20493:620;;;:::i;:::-;;8531:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6651:100;6705:13;6738:5;6731:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6651:100;:::o;9002:201::-;9085:4;9102:13;9118:12;:10;:12::i;:::-;9102:28;;9141:32;9150:5;9157:7;9166:6;9141:8;:32::i;:::-;9191:4;9184:11;;;9002:201;;;;:::o;7771:108::-;7832:7;7859:12;;7852:19;;7771:108;:::o;9783:295::-;9914:4;9931:15;9949:12;:10;:12::i;:::-;9931:30;;9972:38;9988:4;9994:7;10003:6;9972:15;:38::i;:::-;10021:27;10031:4;10037:2;10041:6;10021:9;:27::i;:::-;10066:4;10059:11;;;9783:295;;;;;:::o;19236:39::-;;;;;;;;;;;;;:::o;7613:93::-;7671:5;7696:2;7689:9;;7613:93;:::o;18519:83::-;18563:7;18590:4;18583:11;;18519:83;:::o;10487:238::-;10575:4;10592:13;10608:12;:10;:12::i;:::-;10592:28;;10631:64;10640:5;10647:7;10684:10;10656:25;10666:5;10673:7;10656:9;:25::i;:::-;:38;;;;:::i;:::-;10631:8;:64::i;:::-;10713:4;10706:11;;;10487:238;;;;:::o;19282:37::-;;;;;;;;;;;;;:::o;19326:42::-;;;;;;;;;;;;;:::o;7942:127::-;8016:7;8043:9;:18;8053:7;8043:18;;;;;;;;;;;;;;;;8036:25;;7942:127;;;:::o;19201:28::-;;;;;;;;;;;;;:::o;6870:104::-;6926:13;6959:7;6952:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6870:104;:::o;11228:436::-;11321:4;11338:13;11354:12;:10;:12::i;:::-;11338:28;;11377:24;11404:25;11414:5;11421:7;11404:9;:25::i;:::-;11377:52;;11468:15;11448:16;:35;;11440:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11561:60;11570:5;11577:7;11605:15;11586:16;:34;11561:8;:60::i;:::-;11652:4;11645:11;;;;11228:436;;;;:::o;8275:193::-;8354:4;8371:13;8387:12;:10;:12::i;:::-;8371:28;;8410;8420:5;8427:2;8431:6;8410:9;:28::i;:::-;8456:4;8449:11;;;8275:193;;;;:::o;20493:620::-;20583:8;20567:13;;20549:15;:31;;;;:::i;:::-;:42;20541:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;20661:2;20649:9;;:14;20641:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;20715:1;20702:9;;:14;;;;;;;:::i;:::-;;;;;;;;20743:15;20727:13;:31;;;;20789:1;20787;20778:6;;:10;;;;:::i;:::-;:12;;;;:::i;:::-;20769:6;:21;;;;20801:47;20807:5;;;;;;;;;;;20836:10;:8;:10::i;:::-;20830:2;:16;;;;:::i;:::-;20825:1;20823;20814:6;;:10;;;;:::i;:::-;:12;;;;:::i;:::-;:33;;;;:::i;:::-;20801:5;:47::i;:::-;20860:58;20866:16;;;;;;;;;;;20906:10;:8;:10::i;:::-;20900:2;:16;;;;:::i;:::-;20895:1;20893;20884:6;;:10;;;;:::i;:::-;:12;;;;:::i;:::-;:33;;;;:::i;:::-;20860:5;:58::i;:::-;20930:61;20936:19;;;;;;;;;;;20979:10;:8;:10::i;:::-;20973:2;:16;;;;:::i;:::-;20968:1;20966;20957:6;;:10;;;;:::i;:::-;:12;;;;:::i;:::-;:33;;;;:::i;:::-;20930:5;:61::i;:::-;21019:2;21007:9;;:14;21003:103;;;21038:56;21044:5;;;;;;;;;;;21082:10;:8;:10::i;:::-;21076:2;:16;;;;:::i;:::-;21051:21;;:42;;;;:::i;:::-;21038:5;:56::i;:::-;21003:103;20493:620::o;8531:151::-;8620:7;8647:11;:18;8659:5;8647:18;;;;;;;;;;;;;;;:27;8666:7;8647:27;;;;;;;;;;;;;;;;8640:34;;8531:151;;;;:::o;13261:548::-;13364:1;13345:21;;:7;:21;;;13337:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13415:49;13444:1;13448:7;13457:6;13415:20;:49::i;:::-;13493:6;13477:12;;:22;;;;;;;:::i;:::-;;;;;;;;13670:6;13648:9;:18;13658:7;13648:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;13724:7;13703:37;;13720:1;13703:37;;;13733:6;13703:37;;;;;;:::i;:::-;;;;;;;;13753:48;13781:1;13785:7;13794:6;13753:19;:48::i;:::-;13261:548;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;15255:380::-;15408:1;15391:19;;:5;:19;;;15383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15489:1;15470:21;;:7;:21;;;15462:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15573:6;15543:11;:18;15555:5;15543:18;;;;;;;;;;;;;;;:27;15562:7;15543:27;;;;;;;;;;;;;;;:36;;;;15611:7;15595:32;;15604:5;15595:32;;;15620:6;15595:32;;;;;;:::i;:::-;;;;;;;;15255:380;;;:::o;15926:453::-;16061:24;16088:25;16098:5;16105:7;16088:9;:25::i;:::-;16061:52;;16148:17;16128:16;:37;16124:248;;16210:6;16190:16;:26;;16182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16294:51;16303:5;16310:7;16338:6;16319:16;:25;16294:8;:51::i;:::-;16124:248;16050:329;15926:453;;;:::o;12134:840::-;12281:1;12265:18;;:4;:18;;;12257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12358:1;12344:16;;:2;:16;;;12336:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12413:38;12434:4;12440:2;12444:6;12413:20;:38::i;:::-;12464:19;12486:9;:15;12496:4;12486:15;;;;;;;;;;;;;;;;12464:37;;12535:6;12520:11;:21;;12512:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12652:6;12638:11;:20;12620:9;:15;12630:4;12620:15;;;;;;;;;;;;;;;:38;;;;12855:6;12838:9;:13;12848:2;12838:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12905:2;12890:26;;12899:4;12890:26;;;12909:6;12890:26;;;;;;:::i;:::-;;;;;;;;12929:37;12949:4;12955:2;12959:6;12929:19;:37::i;:::-;12246:728;12134:840;;;:::o;18660:207::-;18785:5;:3;:5::i;:::-;18775:6;18753:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;18745:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;18831:28;18843:7;18852:6;18831:11;:28::i;:::-;18660:207;;:::o;16979:125::-;;;;:::o;17708:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:104::-;4468:7;4497:24;4515:5;4497:24;:::i;:::-;4486:35;;4423:104;;;:::o;4533:142::-;4636:32;4662:5;4636:32;:::i;:::-;4631:3;4624:45;4533:142;;:::o;4681:254::-;4790:4;4828:2;4817:9;4813:18;4805:26;;4841:87;4925:1;4914:9;4910:17;4901:6;4841:87;:::i;:::-;4681:254;;;;:::o;4941:86::-;4976:7;5016:4;5009:5;5005:16;4994:27;;4941:86;;;:::o;5033:112::-;5116:22;5132:5;5116:22;:::i;:::-;5111:3;5104:35;5033:112;;:::o;5151:214::-;5240:4;5278:2;5267:9;5263:18;5255:26;;5291:67;5355:1;5344:9;5340:17;5331:6;5291:67;:::i;:::-;5151:214;;;;:::o;5371:329::-;5430:6;5479:2;5467:9;5458:7;5454:23;5450:32;5447:119;;;5485:79;;:::i;:::-;5447:119;5605:1;5630:53;5675:7;5666:6;5655:9;5651:22;5630:53;:::i;:::-;5620:63;;5576:117;5371:329;;;;:::o;5706:474::-;5774:6;5782;5831:2;5819:9;5810:7;5806:23;5802:32;5799:119;;;5837:79;;:::i;:::-;5799:119;5957:1;5982:53;6027:7;6018:6;6007:9;6003:22;5982:53;:::i;:::-;5972:63;;5928:117;6084:2;6110:53;6155:7;6146:6;6135:9;6131:22;6110:53;:::i;:::-;6100:63;;6055:118;5706:474;;;;;:::o;6186:180::-;6234:77;6231:1;6224:88;6331:4;6328:1;6321:15;6355:4;6352:1;6345:15;6372:320;6416:6;6453:1;6447:4;6443:12;6433:22;;6500:1;6494:4;6490:12;6521:18;6511:81;;6577:4;6569:6;6565:17;6555:27;;6511:81;6639:2;6631:6;6628:14;6608:18;6605:38;6602:84;;6658:18;;:::i;:::-;6602:84;6423:269;6372:320;;;:::o;6698:180::-;6746:77;6743:1;6736:88;6843:4;6840:1;6833:15;6867:4;6864:1;6857:15;6884:191;6924:3;6943:20;6961:1;6943:20;:::i;:::-;6938:25;;6977:20;6995:1;6977:20;:::i;:::-;6972:25;;7020:1;7017;7013:9;7006:16;;7041:3;7038:1;7035:10;7032:36;;;7048:18;;:::i;:::-;7032:36;6884:191;;;;:::o;7081:224::-;7221:34;7217:1;7209:6;7205:14;7198:58;7290:7;7285:2;7277:6;7273:15;7266:32;7081:224;:::o;7311:366::-;7453:3;7474:67;7538:2;7533:3;7474:67;:::i;:::-;7467:74;;7550:93;7639:3;7550:93;:::i;:::-;7668:2;7663:3;7659:12;7652:19;;7311:366;;;:::o;7683:419::-;7849:4;7887:2;7876:9;7872:18;7864:26;;7936:9;7930:4;7926:20;7922:1;7911:9;7907:17;7900:47;7964:131;8090:4;7964:131;:::i;:::-;7956:139;;7683:419;;;:::o;8108:194::-;8148:4;8168:20;8186:1;8168:20;:::i;:::-;8163:25;;8202:20;8220:1;8202:20;:::i;:::-;8197:25;;8246:1;8243;8239:9;8231:17;;8270:1;8264:4;8261:11;8258:37;;;8275:18;;:::i;:::-;8258:37;8108:194;;;;:::o;8308:221::-;8448:34;8444:1;8436:6;8432:14;8425:58;8517:4;8512:2;8504:6;8500:15;8493:29;8308:221;:::o;8535:366::-;8677:3;8698:67;8762:2;8757:3;8698:67;:::i;:::-;8691:74;;8774:93;8863:3;8774:93;:::i;:::-;8892:2;8887:3;8883:12;8876:19;;8535:366;;;:::o;8907:419::-;9073:4;9111:2;9100:9;9096:18;9088:26;;9160:9;9154:4;9150:20;9146:1;9135:9;9131:17;9124:47;9188:131;9314:4;9188:131;:::i;:::-;9180:139;;8907:419;;;:::o;9332:173::-;9472:25;9468:1;9460:6;9456:14;9449:49;9332:173;:::o;9511:366::-;9653:3;9674:67;9738:2;9733:3;9674:67;:::i;:::-;9667:74;;9750:93;9839:3;9750:93;:::i;:::-;9868:2;9863:3;9859:12;9852:19;;9511:366;;;:::o;9883:419::-;10049:4;10087:2;10076:9;10072:18;10064:26;;10136:9;10130:4;10126:20;10122:1;10111:9;10107:17;10100:47;10164:131;10290:4;10164:131;:::i;:::-;10156:139;;9883:419;;;:::o;10308:410::-;10348:7;10371:20;10389:1;10371:20;:::i;:::-;10366:25;;10405:20;10423:1;10405:20;:::i;:::-;10400:25;;10460:1;10457;10453:9;10482:30;10500:11;10482:30;:::i;:::-;10471:41;;10661:1;10652:7;10648:15;10645:1;10642:22;10622:1;10615:9;10595:83;10572:139;;10691:18;;:::i;:::-;10572:139;10356:362;10308:410;;;;:::o;10724:180::-;10772:77;10769:1;10762:88;10869:4;10866:1;10859:15;10893:4;10890:1;10883:15;10910:185;10950:1;10967:20;10985:1;10967:20;:::i;:::-;10962:25;;11001:20;11019:1;11001:20;:::i;:::-;10996:25;;11040:1;11030:35;;11045:18;;:::i;:::-;11030:35;11087:1;11084;11080:9;11075:14;;10910:185;;;;:::o;11101:102::-;11143:8;11190:5;11187:1;11183:13;11162:34;;11101:102;;;:::o;11209:848::-;11270:5;11277:4;11301:6;11292:15;;11325:5;11316:14;;11339:712;11360:1;11350:8;11347:15;11339:712;;;11455:4;11450:3;11446:14;11440:4;11437:24;11434:50;;;11464:18;;:::i;:::-;11434:50;11514:1;11504:8;11500:16;11497:451;;;11929:4;11922:5;11918:16;11909:25;;11497:451;11979:4;11973;11969:15;11961:23;;12009:32;12032:8;12009:32;:::i;:::-;11997:44;;11339:712;;;11209:848;;;;;;;:::o;12063:1073::-;12117:5;12308:8;12298:40;;12329:1;12320:10;;12331:5;;12298:40;12357:4;12347:36;;12374:1;12365:10;;12376:5;;12347:36;12443:4;12491:1;12486:27;;;;12527:1;12522:191;;;;12436:277;;12486:27;12504:1;12495:10;;12506:5;;;12522:191;12567:3;12557:8;12554:17;12551:43;;;12574:18;;:::i;:::-;12551:43;12623:8;12620:1;12616:16;12607:25;;12658:3;12651:5;12648:14;12645:40;;;12665:18;;:::i;:::-;12645:40;12698:5;;;12436:277;;12822:2;12812:8;12809:16;12803:3;12797:4;12794:13;12790:36;12772:2;12762:8;12759:16;12754:2;12748:4;12745:12;12741:35;12725:111;12722:246;;;12878:8;12872:4;12868:19;12859:28;;12913:3;12906:5;12903:14;12900:40;;;12920:18;;:::i;:::-;12900:40;12953:5;;12722:246;12993:42;13031:3;13021:8;13015:4;13012:1;12993:42;:::i;:::-;12978:57;;;;13067:4;13062:3;13058:14;13051:5;13048:25;13045:51;;;13076:18;;:::i;:::-;13045:51;13125:4;13118:5;13114:16;13105:25;;12063:1073;;;;;;:::o;13142:281::-;13200:5;13224:23;13242:4;13224:23;:::i;:::-;13216:31;;13268:25;13284:8;13268:25;:::i;:::-;13256:37;;13312:104;13349:66;13339:8;13333:4;13312:104;:::i;:::-;13303:113;;13142:281;;;;:::o;13429:181::-;13569:33;13565:1;13557:6;13553:14;13546:57;13429:181;:::o;13616:366::-;13758:3;13779:67;13843:2;13838:3;13779:67;:::i;:::-;13772:74;;13855:93;13944:3;13855:93;:::i;:::-;13973:2;13968:3;13964:12;13957:19;;13616:366;;;:::o;13988:419::-;14154:4;14192:2;14181:9;14177:18;14169:26;;14241:9;14235:4;14231:20;14227:1;14216:9;14212:17;14205:47;14269:131;14395:4;14269:131;:::i;:::-;14261:139;;13988:419;;;:::o;14413:223::-;14553:34;14549:1;14541:6;14537:14;14530:58;14622:6;14617:2;14609:6;14605:15;14598:31;14413:223;:::o;14642:366::-;14784:3;14805:67;14869:2;14864:3;14805:67;:::i;:::-;14798:74;;14881:93;14970:3;14881:93;:::i;:::-;14999:2;14994:3;14990:12;14983:19;;14642:366;;;:::o;15014:419::-;15180:4;15218:2;15207:9;15203:18;15195:26;;15267:9;15261:4;15257:20;15253:1;15242:9;15238:17;15231:47;15295:131;15421:4;15295:131;:::i;:::-;15287:139;;15014:419;;;:::o;15439:221::-;15579:34;15575:1;15567:6;15563:14;15556:58;15648:4;15643:2;15635:6;15631:15;15624:29;15439:221;:::o;15666:366::-;15808:3;15829:67;15893:2;15888:3;15829:67;:::i;:::-;15822:74;;15905:93;15994:3;15905:93;:::i;:::-;16023:2;16018:3;16014:12;16007:19;;15666:366;;;:::o;16038:419::-;16204:4;16242:2;16231:9;16227:18;16219:26;;16291:9;16285:4;16281:20;16277:1;16266:9;16262:17;16255:47;16319:131;16445:4;16319:131;:::i;:::-;16311:139;;16038:419;;;:::o;16463:179::-;16603:31;16599:1;16591:6;16587:14;16580:55;16463:179;:::o;16648:366::-;16790:3;16811:67;16875:2;16870:3;16811:67;:::i;:::-;16804:74;;16887:93;16976:3;16887:93;:::i;:::-;17005:2;17000:3;16996:12;16989:19;;16648:366;;;:::o;17020:419::-;17186:4;17224:2;17213:9;17209:18;17201:26;;17273:9;17267:4;17263:20;17259:1;17248:9;17244:17;17237:47;17301:131;17427:4;17301:131;:::i;:::-;17293:139;;17020:419;;;:::o;17445:224::-;17585:34;17581:1;17573:6;17569:14;17562:58;17654:7;17649:2;17641:6;17637:15;17630:32;17445:224;:::o;17675:366::-;17817:3;17838:67;17902:2;17897:3;17838:67;:::i;:::-;17831:74;;17914:93;18003:3;17914:93;:::i;:::-;18032:2;18027:3;18023:12;18016:19;;17675:366;;;:::o;18047:419::-;18213:4;18251:2;18240:9;18236:18;18228:26;;18300:9;18294:4;18290:20;18286:1;18275:9;18271:17;18264:47;18328:131;18454:4;18328:131;:::i;:::-;18320:139;;18047:419;;;:::o;18472:222::-;18612:34;18608:1;18600:6;18596:14;18589:58;18681:5;18676:2;18668:6;18664:15;18657:30;18472:222;:::o;18700:366::-;18842:3;18863:67;18927:2;18922:3;18863:67;:::i;:::-;18856:74;;18939:93;19028:3;18939:93;:::i;:::-;19057:2;19052:3;19048:12;19041:19;;18700:366;;;:::o;19072:419::-;19238:4;19276:2;19265:9;19261:18;19253:26;;19325:9;19319:4;19315:20;19311:1;19300:9;19296:17;19289:47;19353:131;19479:4;19353:131;:::i;:::-;19345:139;;19072:419;;;:::o;19497:225::-;19637:34;19633:1;19625:6;19621:14;19614:58;19706:8;19701:2;19693:6;19689:15;19682:33;19497:225;:::o;19728:366::-;19870:3;19891:67;19955:2;19950:3;19891:67;:::i;:::-;19884:74;;19967:93;20056:3;19967:93;:::i;:::-;20085:2;20080:3;20076:12;20069:19;;19728:366;;;:::o;20100:419::-;20266:4;20304:2;20293:9;20289:18;20281:26;;20353:9;20347:4;20343:20;20339:1;20328:9;20324:17;20317:47;20381:131;20507:4;20381:131;:::i;:::-;20373:139;;20100:419;;;:::o;20525:175::-;20665:27;20661:1;20653:6;20649:14;20642:51;20525:175;:::o;20706:366::-;20848:3;20869:67;20933:2;20928:3;20869:67;:::i;:::-;20862:74;;20945:93;21034:3;20945:93;:::i;:::-;21063:2;21058:3;21054:12;21047:19;;20706:366;;;:::o;21078:419::-;21244:4;21282:2;21271:9;21267:18;21259:26;;21331:9;21325:4;21321:20;21317:1;21306:9;21302:17;21295:47;21359:131;21485:4;21359:131;:::i;:::-;21351:139;;21078:419;;;:::o

Swarm Source

ipfs://2cf5992f03412e8f8dd7f69d08e3bfe16863a2b0a2f0fe0690c330cf51010567
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.