BNB Price: $611.62 (-0.98%)
 

Overview

Max Total Supply

500,000,000ROCK

Holders

1,019

Market

Price

$0.0012 @ 0.000002 BNB

Onchain Market Cap

-

Circulating Supply Market Cap

$120,313.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
697,294.325581651938972246 ROCK

Value
$816.63 ( ~1.3352 BNB) [0.1395%]
0xEa3493fbf7D5Fb110F3D4e056547F3905350Fe17
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bedrock is a Decentralized Finance Project designed to facilitate crowdfunding of peer to peer experiments through smart contracts.


Update? Click here to update the token ICO / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Bedrock

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at BscScan.com on 2021-08-09
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

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

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

/**
 * @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}.
 *
 * 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][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)
    {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `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;
        _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;
        }
        _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 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 {}
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
/**
 * @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.
 */

abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

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

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

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

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

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

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

contract Bedrock is ERC20, Ownable, Pausable {
    constructor() ERC20("Bedrock", "ROCK") {
        _mint(_msgSender(), 1 * 10**9 * 10**18);
    }

    function burn(uint256 amount) public onlyOwner {
        _burn(_msgSender(), amount);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override whenNotPaused {
        super._beforeTokenTransfer(from, to, amount);
    }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600781526020017f426564726f636b000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f524f434b00000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620003f8565b508060049080519060200190620000af929190620003f8565b505050620000d2620000c66200012060201b60201c565b6200012860201b60201c565b6000600560146101000a81548160ff0219169083151502179055506200011a620001016200012060201b60201c565b6b033b2e3c9fd0803ce8000000620001ee60201b60201c565b620006c6565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002589062000529565b60405180910390fd5b62000275600083836200036760201b60201c565b806002600082825462000289919062000579565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002e0919062000579565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200034791906200054b565b60405180910390a36200036360008383620003d760201b60201c565b5050565b62000377620003dc60201b60201c565b15620003ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b19062000507565b60405180910390fd5b620003d2838383620003f360201b62000ba31760201c565b505050565b505050565b6000600560149054906101000a900460ff16905090565b505050565b8280546200040690620005e0565b90600052602060002090601f0160209004810192826200042a576000855562000476565b82601f106200044557805160ff191683800117855562000476565b8280016001018555821562000476579182015b828111156200047557825182559160200191906001019062000458565b5b50905062000485919062000489565b5090565b5b80821115620004a45760008160009055506001016200048a565b5090565b6000620004b760108362000568565b9150620004c48262000674565b602082019050919050565b6000620004de601f8362000568565b9150620004eb826200069d565b602082019050919050565b6200050181620005d6565b82525050565b600060208201905081810360008301526200052281620004a8565b9050919050565b600060208201905081810360008301526200054481620004cf565b9050919050565b6000602082019050620005626000830184620004f6565b92915050565b600082825260208201905092915050565b60006200058682620005d6565b91506200059383620005d6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005cb57620005ca62000616565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620005f957607f821691505b6020821081141562000610576200060f62000645565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611fc580620006d66000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102ab578063a457c2d7146102c9578063a9059cbb146102f9578063dd62ed3e14610329578063f2fde38b1461035957610116565b806370a0823114610249578063715018a6146102795780638456cb59146102835780638da5cb5b1461028d57610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633f4ba83a1461020557806342966c681461020f5780635c975abb1461022b57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610375565b6040516101309190611804565b60405180910390f35b610153600480360381019061014e9190611525565b610407565b60405161016091906117e9565b60405180910390f35b610171610425565b60405161017e91906119c6565b60405180910390f35b6101a1600480360381019061019c91906114d2565b61042f565b6040516101ae91906117e9565b60405180910390f35b6101bf610527565b6040516101cc91906119e1565b60405180910390f35b6101ef60048036038101906101ea9190611525565b610530565b6040516101fc91906117e9565b60405180910390f35b61020d6105dc565b005b61022960048036038101906102249190611565565b610662565b005b6102336106f2565b60405161024091906117e9565b60405180910390f35b610263600480360381019061025e9190611465565b610709565b60405161027091906119c6565b60405180910390f35b610281610751565b005b61028b6107d9565b005b61029561085f565b6040516102a291906117ce565b60405180910390f35b6102b3610889565b6040516102c09190611804565b60405180910390f35b6102e360048036038101906102de9190611525565b61091b565b6040516102f091906117e9565b60405180910390f35b610313600480360381019061030e9190611525565b610a06565b60405161032091906117e9565b60405180910390f35b610343600480360381019061033e9190611492565b610a24565b60405161035091906119c6565b60405180910390f35b610373600480360381019061036e9190611465565b610aab565b005b60606003805461038490611b2a565b80601f01602080910402602001604051908101604052809291908181526020018280546103b090611b2a565b80156103fd5780601f106103d2576101008083540402835291602001916103fd565b820191906000526020600020905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b600061041b610414610ba8565b8484610bb0565b6001905092915050565b6000600254905090565b600061043c848484610d7b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610487610ba8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fe90611906565b60405180910390fd5b61051b85610513610ba8565b858403610bb0565b60019150509392505050565b60006012905090565b60006105d261053d610ba8565b84846001600061054b610ba8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105cd9190611a18565b610bb0565b6001905092915050565b6105e4610ba8565b73ffffffffffffffffffffffffffffffffffffffff1661060261085f565b73ffffffffffffffffffffffffffffffffffffffff1614610658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064f90611926565b60405180910390fd5b610660610ffc565b565b61066a610ba8565b73ffffffffffffffffffffffffffffffffffffffff1661068861085f565b73ffffffffffffffffffffffffffffffffffffffff16146106de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d590611926565b60405180910390fd5b6106ef6106e9610ba8565b8261109e565b50565b6000600560149054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610759610ba8565b73ffffffffffffffffffffffffffffffffffffffff1661077761085f565b73ffffffffffffffffffffffffffffffffffffffff16146107cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c490611926565b60405180910390fd5b6107d76000611275565b565b6107e1610ba8565b73ffffffffffffffffffffffffffffffffffffffff166107ff61085f565b73ffffffffffffffffffffffffffffffffffffffff1614610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c90611926565b60405180910390fd5b61085d61133b565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461089890611b2a565b80601f01602080910402602001604051908101604052809291908181526020018280546108c490611b2a565b80156109115780601f106108e657610100808354040283529160200191610911565b820191906000526020600020905b8154815290600101906020018083116108f457829003601f168201915b5050505050905090565b6000806001600061092a610ba8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de906119a6565b60405180910390fd5b6109fb6109f2610ba8565b85858403610bb0565b600191505092915050565b6000610a1a610a13610ba8565b8484610d7b565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ab3610ba8565b73ffffffffffffffffffffffffffffffffffffffff16610ad161085f565b73ffffffffffffffffffffffffffffffffffffffff1614610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e90611926565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e90611886565b60405180910390fd5b610ba081611275565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790611986565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c87906118a6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d6e91906119c6565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290611966565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290611826565b60405180910390fd5b610e668383836113de565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee3906118c6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7f9190611a18565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fe391906119c6565b60405180910390a3610ff6848484611436565b50505050565b6110046106f2565b611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90611846565b60405180910390fd5b6000600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611087610ba8565b60405161109491906117ce565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561110e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110590611946565b60405180910390fd5b61111a826000836113de565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119790611866565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546111f79190611a6e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161125c91906119c6565b60405180910390a361127083600084611436565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6113436106f2565b15611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a906118e6565b60405180910390fd5b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113c7610ba8565b6040516113d491906117ce565b60405180910390a1565b6113e66106f2565b15611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d906118e6565b60405180910390fd5b611431838383610ba3565b505050565b505050565b60008135905061144a81611f61565b92915050565b60008135905061145f81611f78565b92915050565b60006020828403121561147b5761147a611bba565b5b60006114898482850161143b565b91505092915050565b600080604083850312156114a9576114a8611bba565b5b60006114b78582860161143b565b92505060206114c88582860161143b565b9150509250929050565b6000806000606084860312156114eb576114ea611bba565b5b60006114f98682870161143b565b935050602061150a8682870161143b565b925050604061151b86828701611450565b9150509250925092565b6000806040838503121561153c5761153b611bba565b5b600061154a8582860161143b565b925050602061155b85828601611450565b9150509250929050565b60006020828403121561157b5761157a611bba565b5b600061158984828501611450565b91505092915050565b61159b81611aa2565b82525050565b6115aa81611ab4565b82525050565b60006115bb826119fc565b6115c58185611a07565b93506115d5818560208601611af7565b6115de81611bbf565b840191505092915050565b60006115f6602383611a07565b915061160182611bd0565b604082019050919050565b6000611619601483611a07565b915061162482611c1f565b602082019050919050565b600061163c602283611a07565b915061164782611c48565b604082019050919050565b600061165f602683611a07565b915061166a82611c97565b604082019050919050565b6000611682602283611a07565b915061168d82611ce6565b604082019050919050565b60006116a5602683611a07565b91506116b082611d35565b604082019050919050565b60006116c8601083611a07565b91506116d382611d84565b602082019050919050565b60006116eb602883611a07565b91506116f682611dad565b604082019050919050565b600061170e602083611a07565b915061171982611dfc565b602082019050919050565b6000611731602183611a07565b915061173c82611e25565b604082019050919050565b6000611754602583611a07565b915061175f82611e74565b604082019050919050565b6000611777602483611a07565b915061178282611ec3565b604082019050919050565b600061179a602583611a07565b91506117a582611f12565b604082019050919050565b6117b981611ae0565b82525050565b6117c881611aea565b82525050565b60006020820190506117e36000830184611592565b92915050565b60006020820190506117fe60008301846115a1565b92915050565b6000602082019050818103600083015261181e81846115b0565b905092915050565b6000602082019050818103600083015261183f816115e9565b9050919050565b6000602082019050818103600083015261185f8161160c565b9050919050565b6000602082019050818103600083015261187f8161162f565b9050919050565b6000602082019050818103600083015261189f81611652565b9050919050565b600060208201905081810360008301526118bf81611675565b9050919050565b600060208201905081810360008301526118df81611698565b9050919050565b600060208201905081810360008301526118ff816116bb565b9050919050565b6000602082019050818103600083015261191f816116de565b9050919050565b6000602082019050818103600083015261193f81611701565b9050919050565b6000602082019050818103600083015261195f81611724565b9050919050565b6000602082019050818103600083015261197f81611747565b9050919050565b6000602082019050818103600083015261199f8161176a565b9050919050565b600060208201905081810360008301526119bf8161178d565b9050919050565b60006020820190506119db60008301846117b0565b92915050565b60006020820190506119f660008301846117bf565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a2382611ae0565b9150611a2e83611ae0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a6357611a62611b5c565b5b828201905092915050565b6000611a7982611ae0565b9150611a8483611ae0565b925082821015611a9757611a96611b5c565b5b828203905092915050565b6000611aad82611ac0565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b15578082015181840152602081019050611afa565b83811115611b24576000848401525b50505050565b60006002820490506001821680611b4257607f821691505b60208210811415611b5657611b55611b8b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611f6a81611aa2565b8114611f7557600080fd5b50565b611f8181611ae0565b8114611f8c57600080fd5b5056fea26469706673582212206e714d5a0ade4212c25d24598cf09986d201e66a342c3e4e18648f5d99b7447864736f6c63430008060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102ab578063a457c2d7146102c9578063a9059cbb146102f9578063dd62ed3e14610329578063f2fde38b1461035957610116565b806370a0823114610249578063715018a6146102795780638456cb59146102835780638da5cb5b1461028d57610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633f4ba83a1461020557806342966c681461020f5780635c975abb1461022b57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610375565b6040516101309190611804565b60405180910390f35b610153600480360381019061014e9190611525565b610407565b60405161016091906117e9565b60405180910390f35b610171610425565b60405161017e91906119c6565b60405180910390f35b6101a1600480360381019061019c91906114d2565b61042f565b6040516101ae91906117e9565b60405180910390f35b6101bf610527565b6040516101cc91906119e1565b60405180910390f35b6101ef60048036038101906101ea9190611525565b610530565b6040516101fc91906117e9565b60405180910390f35b61020d6105dc565b005b61022960048036038101906102249190611565565b610662565b005b6102336106f2565b60405161024091906117e9565b60405180910390f35b610263600480360381019061025e9190611465565b610709565b60405161027091906119c6565b60405180910390f35b610281610751565b005b61028b6107d9565b005b61029561085f565b6040516102a291906117ce565b60405180910390f35b6102b3610889565b6040516102c09190611804565b60405180910390f35b6102e360048036038101906102de9190611525565b61091b565b6040516102f091906117e9565b60405180910390f35b610313600480360381019061030e9190611525565b610a06565b60405161032091906117e9565b60405180910390f35b610343600480360381019061033e9190611492565b610a24565b60405161035091906119c6565b60405180910390f35b610373600480360381019061036e9190611465565b610aab565b005b60606003805461038490611b2a565b80601f01602080910402602001604051908101604052809291908181526020018280546103b090611b2a565b80156103fd5780601f106103d2576101008083540402835291602001916103fd565b820191906000526020600020905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b600061041b610414610ba8565b8484610bb0565b6001905092915050565b6000600254905090565b600061043c848484610d7b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610487610ba8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fe90611906565b60405180910390fd5b61051b85610513610ba8565b858403610bb0565b60019150509392505050565b60006012905090565b60006105d261053d610ba8565b84846001600061054b610ba8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105cd9190611a18565b610bb0565b6001905092915050565b6105e4610ba8565b73ffffffffffffffffffffffffffffffffffffffff1661060261085f565b73ffffffffffffffffffffffffffffffffffffffff1614610658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064f90611926565b60405180910390fd5b610660610ffc565b565b61066a610ba8565b73ffffffffffffffffffffffffffffffffffffffff1661068861085f565b73ffffffffffffffffffffffffffffffffffffffff16146106de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d590611926565b60405180910390fd5b6106ef6106e9610ba8565b8261109e565b50565b6000600560149054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610759610ba8565b73ffffffffffffffffffffffffffffffffffffffff1661077761085f565b73ffffffffffffffffffffffffffffffffffffffff16146107cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c490611926565b60405180910390fd5b6107d76000611275565b565b6107e1610ba8565b73ffffffffffffffffffffffffffffffffffffffff166107ff61085f565b73ffffffffffffffffffffffffffffffffffffffff1614610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c90611926565b60405180910390fd5b61085d61133b565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461089890611b2a565b80601f01602080910402602001604051908101604052809291908181526020018280546108c490611b2a565b80156109115780601f106108e657610100808354040283529160200191610911565b820191906000526020600020905b8154815290600101906020018083116108f457829003601f168201915b5050505050905090565b6000806001600061092a610ba8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de906119a6565b60405180910390fd5b6109fb6109f2610ba8565b85858403610bb0565b600191505092915050565b6000610a1a610a13610ba8565b8484610d7b565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ab3610ba8565b73ffffffffffffffffffffffffffffffffffffffff16610ad161085f565b73ffffffffffffffffffffffffffffffffffffffff1614610b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1e90611926565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e90611886565b60405180910390fd5b610ba081611275565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790611986565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c87906118a6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d6e91906119c6565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290611966565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290611826565b60405180910390fd5b610e668383836113de565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee3906118c6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f7f9190611a18565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fe391906119c6565b60405180910390a3610ff6848484611436565b50505050565b6110046106f2565b611043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103a90611846565b60405180910390fd5b6000600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611087610ba8565b60405161109491906117ce565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561110e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110590611946565b60405180910390fd5b61111a826000836113de565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119790611866565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546111f79190611a6e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161125c91906119c6565b60405180910390a361127083600084611436565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6113436106f2565b15611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a906118e6565b60405180910390fd5b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113c7610ba8565b6040516113d491906117ce565b60405180910390a1565b6113e66106f2565b15611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d906118e6565b60405180910390fd5b611431838383610ba3565b505050565b505050565b60008135905061144a81611f61565b92915050565b60008135905061145f81611f78565b92915050565b60006020828403121561147b5761147a611bba565b5b60006114898482850161143b565b91505092915050565b600080604083850312156114a9576114a8611bba565b5b60006114b78582860161143b565b92505060206114c88582860161143b565b9150509250929050565b6000806000606084860312156114eb576114ea611bba565b5b60006114f98682870161143b565b935050602061150a8682870161143b565b925050604061151b86828701611450565b9150509250925092565b6000806040838503121561153c5761153b611bba565b5b600061154a8582860161143b565b925050602061155b85828601611450565b9150509250929050565b60006020828403121561157b5761157a611bba565b5b600061158984828501611450565b91505092915050565b61159b81611aa2565b82525050565b6115aa81611ab4565b82525050565b60006115bb826119fc565b6115c58185611a07565b93506115d5818560208601611af7565b6115de81611bbf565b840191505092915050565b60006115f6602383611a07565b915061160182611bd0565b604082019050919050565b6000611619601483611a07565b915061162482611c1f565b602082019050919050565b600061163c602283611a07565b915061164782611c48565b604082019050919050565b600061165f602683611a07565b915061166a82611c97565b604082019050919050565b6000611682602283611a07565b915061168d82611ce6565b604082019050919050565b60006116a5602683611a07565b91506116b082611d35565b604082019050919050565b60006116c8601083611a07565b91506116d382611d84565b602082019050919050565b60006116eb602883611a07565b91506116f682611dad565b604082019050919050565b600061170e602083611a07565b915061171982611dfc565b602082019050919050565b6000611731602183611a07565b915061173c82611e25565b604082019050919050565b6000611754602583611a07565b915061175f82611e74565b604082019050919050565b6000611777602483611a07565b915061178282611ec3565b604082019050919050565b600061179a602583611a07565b91506117a582611f12565b604082019050919050565b6117b981611ae0565b82525050565b6117c881611aea565b82525050565b60006020820190506117e36000830184611592565b92915050565b60006020820190506117fe60008301846115a1565b92915050565b6000602082019050818103600083015261181e81846115b0565b905092915050565b6000602082019050818103600083015261183f816115e9565b9050919050565b6000602082019050818103600083015261185f8161160c565b9050919050565b6000602082019050818103600083015261187f8161162f565b9050919050565b6000602082019050818103600083015261189f81611652565b9050919050565b600060208201905081810360008301526118bf81611675565b9050919050565b600060208201905081810360008301526118df81611698565b9050919050565b600060208201905081810360008301526118ff816116bb565b9050919050565b6000602082019050818103600083015261191f816116de565b9050919050565b6000602082019050818103600083015261193f81611701565b9050919050565b6000602082019050818103600083015261195f81611724565b9050919050565b6000602082019050818103600083015261197f81611747565b9050919050565b6000602082019050818103600083015261199f8161176a565b9050919050565b600060208201905081810360008301526119bf8161178d565b9050919050565b60006020820190506119db60008301846117b0565b92915050565b60006020820190506119f660008301846117bf565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a2382611ae0565b9150611a2e83611ae0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a6357611a62611b5c565b5b828201905092915050565b6000611a7982611ae0565b9150611a8483611ae0565b925082821015611a9757611a96611b5c565b5b828203905092915050565b6000611aad82611ac0565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b15578082015181840152602081019050611afa565b83811115611b24576000848401525b50505050565b60006002820490506001821680611b4257607f821691505b60208210811415611b5657611b55611b8b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611f6a81611aa2565b8114611f7557600080fd5b50565b611f8181611ae0565b8114611f8c57600080fd5b5056fea26469706673582212206e714d5a0ade4212c25d24598cf09986d201e66a342c3e4e18648f5d99b7447864736f6c63430008060033

Deployed Bytecode Sourcemap

20778:604:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5989:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8297:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7109:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8989:529;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6951:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9927:297;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21105:65;;;:::i;:::-;;20935:93;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19592:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7280:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17943:94;;;:::i;:::-;;21036:61;;;:::i;:::-;;17292:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6208:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10727:482;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7670:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7949:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18192:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5989:100;6043:13;6076:5;6069:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5989:100;:::o;8297:210::-;8416:4;8438:39;8447:12;:10;:12::i;:::-;8461:7;8470:6;8438:8;:39::i;:::-;8495:4;8488:11;;8297:210;;;;:::o;7109:108::-;7170:7;7197:12;;7190:19;;7109:108;:::o;8989:529::-;9129:4;9146:36;9156:6;9164:9;9175:6;9146:9;:36::i;:::-;9195:24;9222:11;:19;9234:6;9222:19;;;;;;;;;;;;;;;:33;9242:12;:10;:12::i;:::-;9222:33;;;;;;;;;;;;;;;;9195:60;;9308:6;9288:16;:26;;9266:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;9418:57;9427:6;9435:12;:10;:12::i;:::-;9468:6;9449:16;:25;9418:8;:57::i;:::-;9506:4;9499:11;;;8989:529;;;;;:::o;6951:93::-;7009:5;7034:2;7027:9;;6951:93;:::o;9927:297::-;10042:4;10064:130;10087:12;:10;:12::i;:::-;10114:7;10173:10;10136:11;:25;10148:12;:10;:12::i;:::-;10136:25;;;;;;;;;;;;;;;:34;10162:7;10136:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10064:8;:130::i;:::-;10212:4;10205:11;;9927:297;;;;:::o;21105:65::-;17523:12;:10;:12::i;:::-;17512:23;;:7;:5;:7::i;:::-;:23;;;17504:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21152:10:::1;:8;:10::i;:::-;21105:65::o:0;20935:93::-;17523:12;:10;:12::i;:::-;17512:23;;:7;:5;:7::i;:::-;:23;;;17504:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20993:27:::1;20999:12;:10;:12::i;:::-;21013:6;20993:5;:27::i;:::-;20935:93:::0;:::o;19592:86::-;19639:4;19663:7;;;;;;;;;;;19656:14;;19592:86;:::o;7280:177::-;7399:7;7431:9;:18;7441:7;7431:18;;;;;;;;;;;;;;;;7424:25;;7280:177;;;:::o;17943:94::-;17523:12;:10;:12::i;:::-;17512:23;;:7;:5;:7::i;:::-;:23;;;17504:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18008:21:::1;18026:1;18008:9;:21::i;:::-;17943:94::o:0;21036:61::-;17523:12;:10;:12::i;:::-;17512:23;;:7;:5;:7::i;:::-;:23;;;17504:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21081:8:::1;:6;:8::i;:::-;21036:61::o:0;17292:87::-;17338:7;17365:6;;;;;;;;;;;17358:13;;17292:87;:::o;6208:104::-;6264:13;6297:7;6290:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6208:104;:::o;10727:482::-;10847:4;10869:24;10896:11;:25;10908:12;:10;:12::i;:::-;10896:25;;;;;;;;;;;;;;;:34;10922:7;10896:34;;;;;;;;;;;;;;;;10869:61;;10983:15;10963:16;:35;;10941:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;11099:67;11108:12;:10;:12::i;:::-;11122:7;11150:15;11131:16;:34;11099:8;:67::i;:::-;11197:4;11190:11;;;10727:482;;;;:::o;7670:216::-;7792:4;7814:42;7824:12;:10;:12::i;:::-;7838:9;7849:6;7814:9;:42::i;:::-;7874:4;7867:11;;7670:216;;;;:::o;7949:201::-;8083:7;8115:11;:18;8127:5;8115:18;;;;;;;;;;;;;;;:27;8134:7;8115:27;;;;;;;;;;;;;;;;8108:34;;7949:201;;;;:::o;18192:229::-;17523:12;:10;:12::i;:::-;17512:23;;:7;:5;:7::i;:::-;:23;;;17504:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18315:1:::1;18295:22;;:8;:22;;;;18273:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;18394:19;18404:8;18394:9;:19::i;:::-;18192:229:::0;:::o;15497:125::-;;;;:::o;3972:98::-;4025:7;4052:10;4045:17;;3972:98;:::o;14517:380::-;14670:1;14653:19;;:5;:19;;;;14645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14751:1;14732:21;;:7;:21;;;;14724:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14835:6;14805:11;:18;14817:5;14805:18;;;;;;;;;;;;;;;:27;14824:7;14805:27;;;;;;;;;;;;;;;:36;;;;14873:7;14857:32;;14866:5;14857:32;;;14882:6;14857:32;;;;;;:::i;:::-;;;;;;;;14517:380;;;:::o;11699:770::-;11857:1;11839:20;;:6;:20;;;;11831:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11941:1;11920:23;;:9;:23;;;;11912:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11996:47;12017:6;12025:9;12036:6;11996:20;:47::i;:::-;12056:21;12080:9;:17;12090:6;12080:17;;;;;;;;;;;;;;;;12056:41;;12147:6;12130:13;:23;;12108:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;12291:6;12275:13;:22;12255:9;:17;12265:6;12255:17;;;;;;;;;;;;;;;:42;;;;12343:6;12319:9;:20;12329:9;12319:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12384:9;12367:35;;12376:6;12367:35;;;12395:6;12367:35;;;;;;:::i;:::-;;;;;;;;12415:46;12435:6;12443:9;12454:6;12415:19;:46::i;:::-;11820:649;11699:770;;;:::o;20651:120::-;20195:8;:6;:8::i;:::-;20187:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;20720:5:::1;20710:7;;:15;;;;;;;;;;;;;;;;;;20741:22;20750:12;:10;:12::i;:::-;20741:22;;;;;;:::i;:::-;;;;;;;;20651:120::o:0;13488:591::-;13591:1;13572:21;;:7;:21;;;;13564:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13644:49;13665:7;13682:1;13686:6;13644:20;:49::i;:::-;13706:22;13731:9;:18;13741:7;13731:18;;;;;;;;;;;;;;;;13706:43;;13786:6;13768:14;:24;;13760:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13905:6;13888:14;:23;13867:9;:18;13877:7;13867:18;;;;;;;;;;;;;;;:44;;;;13949:6;13933:12;;:22;;;;;;;:::i;:::-;;;;;;;;13999:1;13973:37;;13982:7;13973:37;;;14003:6;13973:37;;;;;;:::i;:::-;;;;;;;;14023:48;14043:7;14060:1;14064:6;14023:19;:48::i;:::-;13553:526;13488:591;;:::o;18429:173::-;18485:16;18504:6;;;;;;;;;;;18485:25;;18530:8;18521:6;;:17;;;;;;;;;;;;;;;;;;18585:8;18554:40;;18575:8;18554:40;;;;;;;;;;;;18474:128;18429:173;:::o;20392:118::-;19918:8;:6;:8::i;:::-;19917:9;19909:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;20462:4:::1;20452:7;;:14;;;;;;;;;;;;;;;;;;20482:20;20489:12;:10;:12::i;:::-;20482:20;;;;;;:::i;:::-;;;;;;;;20392:118::o:0;21178:201::-;19918:8;:6;:8::i;:::-;19917:9;19909:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;21327:44:::1;21354:4;21360:2;21364:6;21327:26;:44::i;:::-;21178:201:::0;;;:::o;16226:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;411:79;;:::i;:::-;373:2;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;363:263;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:2;;;763:79;;:::i;:::-;725:2;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;715:391;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:2;;;1260:79;;:::i;:::-;1222:2;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1212:519;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:2;;;1868:79;;:::i;:::-;1830:2;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1820:391;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2331:79;;:::i;:::-;2293:2;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2283:263;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2617:53;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2735:50;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3307:220;;;:::o;3533:366::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3679:220;;;:::o;3905:366::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;4051:220;;;:::o;4277:366::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4423:220;;;:::o;4649:366::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4795:220;;;:::o;5021:366::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5167:220;;;:::o;5393:366::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5539:220;;;:::o;5765:366::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5911:220;;;:::o;6137:366::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6283:220;;;:::o;6509:366::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6655:220;;;:::o;6881:366::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;7027:220;;;:::o;7253:366::-;7395:3;7416:67;7480:2;7475:3;7416:67;:::i;:::-;7409:74;;7492:93;7581:3;7492:93;:::i;:::-;7610:2;7605:3;7601:12;7594:19;;7399:220;;;:::o;7625:366::-;7767:3;7788:67;7852:2;7847:3;7788:67;:::i;:::-;7781:74;;7864:93;7953:3;7864:93;:::i;:::-;7982:2;7977:3;7973:12;7966:19;;7771:220;;;:::o;7997:118::-;8084:24;8102:5;8084:24;:::i;:::-;8079:3;8072:37;8062:53;;:::o;8121:112::-;8204:22;8220:5;8204:22;:::i;:::-;8199:3;8192:35;8182:51;;:::o;8239:222::-;8332:4;8370:2;8359:9;8355:18;8347:26;;8383:71;8451:1;8440:9;8436:17;8427:6;8383:71;:::i;:::-;8337:124;;;;:::o;8467:210::-;8554:4;8592:2;8581:9;8577:18;8569:26;;8605:65;8667:1;8656:9;8652:17;8643:6;8605:65;:::i;:::-;8559:118;;;;:::o;8683:313::-;8796:4;8834:2;8823:9;8819:18;8811:26;;8883:9;8877:4;8873:20;8869:1;8858:9;8854:17;8847:47;8911:78;8984:4;8975:6;8911:78;:::i;:::-;8903:86;;8801:195;;;;:::o;9002:419::-;9168:4;9206:2;9195:9;9191:18;9183:26;;9255:9;9249:4;9245:20;9241:1;9230:9;9226:17;9219:47;9283:131;9409:4;9283:131;:::i;:::-;9275:139;;9173:248;;;:::o;9427:419::-;9593:4;9631:2;9620:9;9616:18;9608:26;;9680:9;9674:4;9670:20;9666:1;9655:9;9651:17;9644:47;9708:131;9834:4;9708:131;:::i;:::-;9700:139;;9598:248;;;:::o;9852:419::-;10018:4;10056:2;10045:9;10041:18;10033:26;;10105:9;10099:4;10095:20;10091:1;10080:9;10076:17;10069:47;10133:131;10259:4;10133:131;:::i;:::-;10125:139;;10023:248;;;:::o;10277:419::-;10443:4;10481:2;10470:9;10466:18;10458:26;;10530:9;10524:4;10520:20;10516:1;10505:9;10501:17;10494:47;10558:131;10684:4;10558:131;:::i;:::-;10550:139;;10448:248;;;:::o;10702:419::-;10868:4;10906:2;10895:9;10891:18;10883:26;;10955:9;10949:4;10945:20;10941:1;10930:9;10926:17;10919:47;10983:131;11109:4;10983:131;:::i;:::-;10975:139;;10873:248;;;:::o;11127:419::-;11293:4;11331:2;11320:9;11316:18;11308:26;;11380:9;11374:4;11370:20;11366:1;11355:9;11351:17;11344:47;11408:131;11534:4;11408:131;:::i;:::-;11400:139;;11298:248;;;:::o;11552:419::-;11718:4;11756:2;11745:9;11741:18;11733:26;;11805:9;11799:4;11795:20;11791:1;11780:9;11776:17;11769:47;11833:131;11959:4;11833:131;:::i;:::-;11825:139;;11723:248;;;:::o;11977:419::-;12143:4;12181:2;12170:9;12166:18;12158:26;;12230:9;12224:4;12220:20;12216:1;12205:9;12201:17;12194:47;12258:131;12384:4;12258:131;:::i;:::-;12250:139;;12148:248;;;:::o;12402:419::-;12568:4;12606:2;12595:9;12591:18;12583:26;;12655:9;12649:4;12645:20;12641:1;12630:9;12626:17;12619:47;12683:131;12809:4;12683:131;:::i;:::-;12675:139;;12573:248;;;:::o;12827:419::-;12993:4;13031:2;13020:9;13016:18;13008:26;;13080:9;13074:4;13070:20;13066:1;13055:9;13051:17;13044:47;13108:131;13234:4;13108:131;:::i;:::-;13100:139;;12998:248;;;:::o;13252:419::-;13418:4;13456:2;13445:9;13441:18;13433:26;;13505:9;13499:4;13495:20;13491:1;13480:9;13476:17;13469:47;13533:131;13659:4;13533:131;:::i;:::-;13525:139;;13423:248;;;:::o;13677:419::-;13843:4;13881:2;13870:9;13866:18;13858:26;;13930:9;13924:4;13920:20;13916:1;13905:9;13901:17;13894:47;13958:131;14084:4;13958:131;:::i;:::-;13950:139;;13848:248;;;:::o;14102:419::-;14268:4;14306:2;14295:9;14291:18;14283:26;;14355:9;14349:4;14345:20;14341:1;14330:9;14326:17;14319:47;14383:131;14509:4;14383:131;:::i;:::-;14375:139;;14273:248;;;:::o;14527:222::-;14620:4;14658:2;14647:9;14643:18;14635:26;;14671:71;14739:1;14728:9;14724:17;14715:6;14671:71;:::i;:::-;14625:124;;;;:::o;14755:214::-;14844:4;14882:2;14871:9;14867:18;14859:26;;14895:67;14959:1;14948:9;14944:17;14935:6;14895:67;:::i;:::-;14849:120;;;;:::o;15056:99::-;15108:6;15142:5;15136:12;15126:22;;15115:40;;;:::o;15161:169::-;15245:11;15279:6;15274:3;15267:19;15319:4;15314:3;15310:14;15295:29;;15257:73;;;;:::o;15336:305::-;15376:3;15395:20;15413:1;15395:20;:::i;:::-;15390:25;;15429:20;15447:1;15429:20;:::i;:::-;15424:25;;15583:1;15515:66;15511:74;15508:1;15505:81;15502:2;;;15589:18;;:::i;:::-;15502:2;15633:1;15630;15626:9;15619:16;;15380:261;;;;:::o;15647:191::-;15687:4;15707:20;15725:1;15707:20;:::i;:::-;15702:25;;15741:20;15759:1;15741:20;:::i;:::-;15736:25;;15780:1;15777;15774:8;15771:2;;;15785:18;;:::i;:::-;15771:2;15830:1;15827;15823:9;15815:17;;15692:146;;;;:::o;15844:96::-;15881:7;15910:24;15928:5;15910:24;:::i;:::-;15899:35;;15889:51;;;:::o;15946:90::-;15980:7;16023:5;16016:13;16009:21;15998:32;;15988:48;;;:::o;16042:126::-;16079:7;16119:42;16112:5;16108:54;16097:65;;16087:81;;;:::o;16174:77::-;16211:7;16240:5;16229:16;;16219:32;;;:::o;16257:86::-;16292:7;16332:4;16325:5;16321:16;16310:27;;16300:43;;;:::o;16349:307::-;16417:1;16427:113;16441:6;16438:1;16435:13;16427:113;;;16526:1;16521:3;16517:11;16511:18;16507:1;16502:3;16498:11;16491:39;16463:2;16460:1;16456:10;16451:15;;16427:113;;;16558:6;16555:1;16552:13;16549:2;;;16638:1;16629:6;16624:3;16620:16;16613:27;16549:2;16398:258;;;;:::o;16662:320::-;16706:6;16743:1;16737:4;16733:12;16723:22;;16790:1;16784:4;16780:12;16811:18;16801:2;;16867:4;16859:6;16855:17;16845:27;;16801:2;16929;16921:6;16918:14;16898:18;16895:38;16892:2;;;16948:18;;:::i;:::-;16892:2;16713:269;;;;:::o;16988:180::-;17036:77;17033:1;17026:88;17133:4;17130:1;17123:15;17157:4;17154:1;17147:15;17174:180;17222:77;17219:1;17212:88;17319:4;17316:1;17309:15;17343:4;17340:1;17333:15;17483:117;17592:1;17589;17582:12;17606:102;17647:6;17698:2;17694:7;17689:2;17682:5;17678:14;17674:28;17664:38;;17654:54;;;:::o;17714:222::-;17854:34;17850:1;17842:6;17838:14;17831:58;17923:5;17918:2;17910:6;17906:15;17899:30;17820:116;:::o;17942:170::-;18082:22;18078:1;18070:6;18066:14;18059:46;18048:64;:::o;18118:221::-;18258:34;18254:1;18246:6;18242:14;18235:58;18327:4;18322:2;18314:6;18310:15;18303:29;18224:115;:::o;18345:225::-;18485:34;18481:1;18473:6;18469:14;18462:58;18554:8;18549:2;18541:6;18537:15;18530:33;18451:119;:::o;18576:221::-;18716:34;18712:1;18704:6;18700:14;18693:58;18785:4;18780:2;18772:6;18768:15;18761:29;18682:115;:::o;18803:225::-;18943:34;18939:1;18931:6;18927:14;18920:58;19012:8;19007:2;18999:6;18995:15;18988:33;18909:119;:::o;19034:166::-;19174:18;19170:1;19162:6;19158:14;19151:42;19140:60;:::o;19206:227::-;19346:34;19342:1;19334:6;19330:14;19323:58;19415:10;19410:2;19402:6;19398:15;19391:35;19312:121;:::o;19439:182::-;19579:34;19575:1;19567:6;19563:14;19556:58;19545:76;:::o;19627:220::-;19767:34;19763:1;19755:6;19751:14;19744:58;19836:3;19831:2;19823:6;19819:15;19812:28;19733:114;:::o;19853:224::-;19993:34;19989:1;19981:6;19977:14;19970:58;20062:7;20057:2;20049:6;20045:15;20038:32;19959:118;:::o;20083:223::-;20223:34;20219:1;20211:6;20207:14;20200:58;20292:6;20287:2;20279:6;20275:15;20268:31;20189:117;:::o;20312:224::-;20452:34;20448:1;20440:6;20436:14;20429:58;20521:7;20516:2;20508:6;20504:15;20497:32;20418:118;:::o;20542:122::-;20615:24;20633:5;20615:24;:::i;:::-;20608:5;20605:35;20595:2;;20654:1;20651;20644:12;20595:2;20585:79;:::o;20670:122::-;20743:24;20761:5;20743:24;:::i;:::-;20736:5;20733:35;20723:2;;20782:1;20779;20772:12;20723:2;20713:79;:::o

Swarm Source

ipfs://6e714d5a0ade4212c25d24598cf09986d201e66a342c3e4e18648f5d99b74478
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.