ETH Price: $3,107.28 (+1.27%)
Gas: 11 Gwei

Token

Chester Coin (Chester Coin)
 

Overview

Max Total Supply

10,000,000,000 Chester Coin

Holders

48

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.16481288301715695 Chester Coin

Value
$0.00
0x52ec9c6398cb57a8eb431cc2a55f811d3dc449c9
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:
ChesterCoin

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-09-18
*/

/**
Chester Coin
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity ^0.8.18;

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

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

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

// File: @openzeppelin/contracts/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

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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, 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 defaut 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"
        );
        _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"
        );
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

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

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

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

// File: contracts/ERC20.sol

pragma solidity ^0.8.4;

contract ChesterCoin is ERC20, Ownable {
    uint256 public maxHoldingAmount;
    uint256 public maxTxAmount;
    mapping(address => bool) public blacklists;

    constructor() ERC20("Chester Coin", "Chester Coin") {
        _mint(msg.sender, 10000000000 * 10 ** decimals());
        maxTxAmount = 1000000 * 10 ** decimals();
        maxHoldingAmount = 50000000 * 10 ** decimals();
    }

    function setRule(
        uint256 _maxHoldingAmount,
        uint256 _maxTxAmount
    ) external onlyOwner {
        maxHoldingAmount = _maxHoldingAmount;
        maxTxAmount = _maxTxAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (from != owner() && to != owner()) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount, "Forbid");
        }

        if (maxTxAmount > 0 && from != owner() && to != owner()) {
            require(amount <= maxTxAmount, "Exceeds max transaction amount");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"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":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":[{"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":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","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":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"setRule","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"}]

60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f4368657374657220436f696e00000000000000000000000000000000000000008152506040518060400160405280600c81526020017f4368657374657220436f696e000000000000000000000000000000000000000081525081600390816200008f91906200092f565b508060049081620000a191906200092f565b5050506000620000b66200020560201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000196336200016a6200020d60201b60201c565b600a62000178919062000ba6565b6402540be4006200018a919062000bf7565b6200021660201b60201c565b620001a66200020d60201b60201c565b600a620001b4919062000ba6565b620f4240620001c4919062000bf7565b600781905550620001da6200020d60201b60201c565b600a620001e8919062000ba6565b6302faf080620001f9919062000bf7565b60068190555062000e84565b600033905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000288576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027f9062000ca3565b60405180910390fd5b6200029c600083836200037a60201b60201c565b8060026000828254620002b0919062000cc5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000307919062000cc5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200036e919062000d11565b60405180910390a35050565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156200041f5750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000461576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004589062000d7e565b60405180910390fd5b620004716200064360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015620004e85750620004b86200064360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562000559576006548162000508846200066d60201b620007011760201c565b62000514919062000cc5565b111562000558576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054f9062000df0565b60405180910390fd5b5b6000600754118015620005a75750620005776200064360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015620005ef5750620005bf6200064360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156200063e576007548111156200063d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006349062000e62565b60405180910390fd5b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200073757607f821691505b6020821081036200074d576200074c620006ef565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007b77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000778565b620007c3868362000778565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008106200080a6200080484620007db565b620007e5565b620007db565b9050919050565b6000819050919050565b6200082c83620007ef565b620008446200083b8262000817565b84845462000785565b825550505050565b600090565b6200085b6200084c565b6200086881848462000821565b505050565b5b8181101562000890576200088460008262000851565b6001810190506200086e565b5050565b601f821115620008df57620008a98162000753565b620008b48462000768565b81016020851015620008c4578190505b620008dc620008d38562000768565b8301826200086d565b50505b505050565b600082821c905092915050565b60006200090460001984600802620008e4565b1980831691505092915050565b60006200091f8383620008f1565b9150826002028217905092915050565b6200093a82620006b5565b67ffffffffffffffff811115620009565762000955620006c0565b5b6200096282546200071e565b6200096f82828562000894565b600060209050601f831160018114620009a7576000841562000992578287015190505b6200099e858262000911565b86555062000a0e565b601f198416620009b78662000753565b60005b82811015620009e157848901518255600182019150602085019450602081019050620009ba565b8683101562000a015784890151620009fd601f891682620008f1565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000aa45780860481111562000a7c5762000a7b62000a16565b5b600185161562000a8c5780820291505b808102905062000a9c8562000a45565b945062000a5c565b94509492505050565b60008262000abf576001905062000b92565b8162000acf576000905062000b92565b816001811462000ae8576002811462000af35762000b29565b600191505062000b92565b60ff84111562000b085762000b0762000a16565b5b8360020a91508482111562000b225762000b2162000a16565b5b5062000b92565b5060208310610133831016604e8410600b841016171562000b635782820a90508381111562000b5d5762000b5c62000a16565b5b62000b92565b62000b72848484600162000a52565b9250905081840481111562000b8c5762000b8b62000a16565b5b81810290505b9392505050565b600060ff82169050919050565b600062000bb382620007db565b915062000bc08362000b99565b925062000bef7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000aad565b905092915050565b600062000c0482620007db565b915062000c1183620007db565b925082820262000c2181620007db565b9150828204841483151762000c3b5762000c3a62000a16565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c8b601f8362000c42565b915062000c988262000c53565b602082019050919050565b6000602082019050818103600083015262000cbe8162000c7c565b9050919050565b600062000cd282620007db565b915062000cdf83620007db565b925082820190508082111562000cfa5762000cf962000a16565b5b92915050565b62000d0b81620007db565b82525050565b600060208201905062000d28600083018462000d00565b92915050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600062000d66600b8362000c42565b915062000d738262000d2e565b602082019050919050565b6000602082019050818103600083015262000d998162000d57565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600062000dd860068362000c42565b915062000de58262000da0565b602082019050919050565b6000602082019050818103600083015262000e0b8162000dc9565b9050919050565b7f45786365656473206d6178207472616e73616374696f6e20616d6f756e740000600082015250565b600062000e4a601e8362000c42565b915062000e578262000e12565b602082019050919050565b6000602082019050818103600083015262000e7d8162000e3b565b9050919050565b6121488062000e946000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b411461030c578063a457c2d71461032a578063a9059cbb1461035a578063dd62ed3e1461038a578063f2fde38b146103ba57610121565b806370a0823114610278578063715018a6146102a857806389f9a1d3146102b25780638c0b5e22146102d05780638da5cb5b146102ee57610121565b806322b28da9116100f457806322b28da9146101c257806323b872dd146101de578063313ce5671461020e578063395093511461022c57806342966c681461025c57610121565b806306fdde0314610126578063095ea7b31461014457806316c021291461017457806318160ddd146101a4575b600080fd5b61012e6103d6565b60405161013b91906115ce565b60405180910390f35b61015e60048036038101906101599190611689565b610468565b60405161016b91906116e4565b60405180910390f35b61018e600480360381019061018991906116ff565b610486565b60405161019b91906116e4565b60405180910390f35b6101ac6104a6565b6040516101b9919061173b565b60405180910390f35b6101dc60048036038101906101d79190611756565b6104b0565b005b6101f860048036038101906101f39190611796565b61053e565b60405161020591906116e4565b60405180910390f35b61021661063f565b6040516102239190611805565b60405180910390f35b61024660048036038101906102419190611689565b610648565b60405161025391906116e4565b60405180910390f35b61027660048036038101906102719190611820565b6106f4565b005b610292600480360381019061028d91906116ff565b610701565b60405161029f919061173b565b60405180910390f35b6102b0610749565b005b6102ba610886565b6040516102c7919061173b565b60405180910390f35b6102d861088c565b6040516102e5919061173b565b60405180910390f35b6102f6610892565b604051610303919061185c565b60405180910390f35b6103146108bc565b60405161032191906115ce565b60405180910390f35b610344600480360381019061033f9190611689565b61094e565b60405161035191906116e4565b60405180910390f35b610374600480360381019061036f9190611689565b610a42565b60405161038191906116e4565b60405180910390f35b6103a4600480360381019061039f9190611877565b610a60565b6040516103b1919061173b565b60405180910390f35b6103d460048036038101906103cf91906116ff565b610ae7565b005b6060600380546103e5906118e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610411906118e6565b801561045e5780601f106104335761010080835404028352916020019161045e565b820191906000526020600020905b81548152906001019060200180831161044157829003601f168201915b5050505050905090565b600061047c610475610c92565b8484610c9a565b6001905092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6104b8610c92565b73ffffffffffffffffffffffffffffffffffffffff166104d6610892565b73ffffffffffffffffffffffffffffffffffffffff161461052c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052390611963565b60405180910390fd5b81600681905550806007819055505050565b600061054b848484610e63565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610596610c92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060d906119f5565b60405180910390fd5b61063385610622610c92565b858461062e9190611a44565b610c9a565b60019150509392505050565b60006012905090565b60006106ea610655610c92565b848460016000610663610c92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106e59190611a78565b610c9a565b6001905092915050565b6106fe33826110e0565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610751610c92565b73ffffffffffffffffffffffffffffffffffffffff1661076f610892565b73ffffffffffffffffffffffffffffffffffffffff16146107c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bc90611963565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60065481565b60075481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108cb906118e6565b80601f01602080910402602001604051908101604052809291908181526020018280546108f7906118e6565b80156109445780601f1061091957610100808354040283529160200191610944565b820191906000526020600020905b81548152906001019060200180831161092757829003601f168201915b5050505050905090565b6000806001600061095d610c92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1190611b1e565b60405180910390fd5b610a37610a25610c92565b858584610a329190611a44565b610c9a565b600191505092915050565b6000610a56610a4f610c92565b8484610e63565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610aef610c92565b73ffffffffffffffffffffffffffffffffffffffff16610b0d610892565b73ffffffffffffffffffffffffffffffffffffffff1614610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90611963565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc990611bb0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0090611c42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f90611cd4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e56919061173b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec990611d66565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890611df8565b60405180910390fd5b610f4c8383836112b3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990611e8a565b60405180910390fd5b8181610fde9190611a44565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461106e9190611a78565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110d2919061173b565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361114f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114690611f1c565b60405180910390fd5b61115b826000836112b3565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890611fae565b60405180910390fd5b81816111ed9190611a44565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112419190611a44565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112a6919061173b565b60405180910390a3505050565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113575750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d9061201a565b60405180910390fd5b61139e610892565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561140c57506113dc610892565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561146a576006548161141e84610701565b6114289190611a78565b1115611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090612086565b60405180910390fd5b5b60006007541180156114af575061147f610892565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156114ee57506114be610892565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561153957600754811115611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f906120f2565b60405180910390fd5b5b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561157857808201518184015260208101905061155d565b60008484015250505050565b6000601f19601f8301169050919050565b60006115a08261153e565b6115aa8185611549565b93506115ba81856020860161155a565b6115c381611584565b840191505092915050565b600060208201905081810360008301526115e88184611595565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611620826115f5565b9050919050565b61163081611615565b811461163b57600080fd5b50565b60008135905061164d81611627565b92915050565b6000819050919050565b61166681611653565b811461167157600080fd5b50565b6000813590506116838161165d565b92915050565b600080604083850312156116a05761169f6115f0565b5b60006116ae8582860161163e565b92505060206116bf85828601611674565b9150509250929050565b60008115159050919050565b6116de816116c9565b82525050565b60006020820190506116f960008301846116d5565b92915050565b600060208284031215611715576117146115f0565b5b60006117238482850161163e565b91505092915050565b61173581611653565b82525050565b6000602082019050611750600083018461172c565b92915050565b6000806040838503121561176d5761176c6115f0565b5b600061177b85828601611674565b925050602061178c85828601611674565b9150509250929050565b6000806000606084860312156117af576117ae6115f0565b5b60006117bd8682870161163e565b93505060206117ce8682870161163e565b92505060406117df86828701611674565b9150509250925092565b600060ff82169050919050565b6117ff816117e9565b82525050565b600060208201905061181a60008301846117f6565b92915050565b600060208284031215611836576118356115f0565b5b600061184484828501611674565b91505092915050565b61185681611615565b82525050565b6000602082019050611871600083018461184d565b92915050565b6000806040838503121561188e5761188d6115f0565b5b600061189c8582860161163e565b92505060206118ad8582860161163e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118fe57607f821691505b602082108103611911576119106118b7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061194d602083611549565b915061195882611917565b602082019050919050565b6000602082019050818103600083015261197c81611940565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006119df602883611549565b91506119ea82611983565b604082019050919050565b60006020820190508181036000830152611a0e816119d2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a4f82611653565b9150611a5a83611653565b9250828203905081811115611a7257611a71611a15565b5b92915050565b6000611a8382611653565b9150611a8e83611653565b9250828201905080821115611aa657611aa5611a15565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b08602583611549565b9150611b1382611aac565b604082019050919050565b60006020820190508181036000830152611b3781611afb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b9a602683611549565b9150611ba582611b3e565b604082019050919050565b60006020820190508181036000830152611bc981611b8d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c2c602483611549565b9150611c3782611bd0565b604082019050919050565b60006020820190508181036000830152611c5b81611c1f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cbe602283611549565b9150611cc982611c62565b604082019050919050565b60006020820190508181036000830152611ced81611cb1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d50602583611549565b9150611d5b82611cf4565b604082019050919050565b60006020820190508181036000830152611d7f81611d43565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611de2602383611549565b9150611ded82611d86565b604082019050919050565b60006020820190508181036000830152611e1181611dd5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e74602683611549565b9150611e7f82611e18565b604082019050919050565b60006020820190508181036000830152611ea381611e67565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f06602183611549565b9150611f1182611eaa565b604082019050919050565b60006020820190508181036000830152611f3581611ef9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f98602283611549565b9150611fa382611f3c565b604082019050919050565b60006020820190508181036000830152611fc781611f8b565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000612004600b83611549565b915061200f82611fce565b602082019050919050565b6000602082019050818103600083015261203381611ff7565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612070600683611549565b915061207b8261203a565b602082019050919050565b6000602082019050818103600083015261209f81612063565b9050919050565b7f45786365656473206d6178207472616e73616374696f6e20616d6f756e740000600082015250565b60006120dc601e83611549565b91506120e7826120a6565b602082019050919050565b6000602082019050818103600083015261210b816120cf565b905091905056fea2646970667358221220531af8c054d51be31c00e15a045bb34f2076627c781d356e34fecea0b64ab89364736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b411461030c578063a457c2d71461032a578063a9059cbb1461035a578063dd62ed3e1461038a578063f2fde38b146103ba57610121565b806370a0823114610278578063715018a6146102a857806389f9a1d3146102b25780638c0b5e22146102d05780638da5cb5b146102ee57610121565b806322b28da9116100f457806322b28da9146101c257806323b872dd146101de578063313ce5671461020e578063395093511461022c57806342966c681461025c57610121565b806306fdde0314610126578063095ea7b31461014457806316c021291461017457806318160ddd146101a4575b600080fd5b61012e6103d6565b60405161013b91906115ce565b60405180910390f35b61015e60048036038101906101599190611689565b610468565b60405161016b91906116e4565b60405180910390f35b61018e600480360381019061018991906116ff565b610486565b60405161019b91906116e4565b60405180910390f35b6101ac6104a6565b6040516101b9919061173b565b60405180910390f35b6101dc60048036038101906101d79190611756565b6104b0565b005b6101f860048036038101906101f39190611796565b61053e565b60405161020591906116e4565b60405180910390f35b61021661063f565b6040516102239190611805565b60405180910390f35b61024660048036038101906102419190611689565b610648565b60405161025391906116e4565b60405180910390f35b61027660048036038101906102719190611820565b6106f4565b005b610292600480360381019061028d91906116ff565b610701565b60405161029f919061173b565b60405180910390f35b6102b0610749565b005b6102ba610886565b6040516102c7919061173b565b60405180910390f35b6102d861088c565b6040516102e5919061173b565b60405180910390f35b6102f6610892565b604051610303919061185c565b60405180910390f35b6103146108bc565b60405161032191906115ce565b60405180910390f35b610344600480360381019061033f9190611689565b61094e565b60405161035191906116e4565b60405180910390f35b610374600480360381019061036f9190611689565b610a42565b60405161038191906116e4565b60405180910390f35b6103a4600480360381019061039f9190611877565b610a60565b6040516103b1919061173b565b60405180910390f35b6103d460048036038101906103cf91906116ff565b610ae7565b005b6060600380546103e5906118e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610411906118e6565b801561045e5780601f106104335761010080835404028352916020019161045e565b820191906000526020600020905b81548152906001019060200180831161044157829003601f168201915b5050505050905090565b600061047c610475610c92565b8484610c9a565b6001905092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6104b8610c92565b73ffffffffffffffffffffffffffffffffffffffff166104d6610892565b73ffffffffffffffffffffffffffffffffffffffff161461052c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052390611963565b60405180910390fd5b81600681905550806007819055505050565b600061054b848484610e63565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610596610c92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060d906119f5565b60405180910390fd5b61063385610622610c92565b858461062e9190611a44565b610c9a565b60019150509392505050565b60006012905090565b60006106ea610655610c92565b848460016000610663610c92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106e59190611a78565b610c9a565b6001905092915050565b6106fe33826110e0565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610751610c92565b73ffffffffffffffffffffffffffffffffffffffff1661076f610892565b73ffffffffffffffffffffffffffffffffffffffff16146107c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bc90611963565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60065481565b60075481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108cb906118e6565b80601f01602080910402602001604051908101604052809291908181526020018280546108f7906118e6565b80156109445780601f1061091957610100808354040283529160200191610944565b820191906000526020600020905b81548152906001019060200180831161092757829003601f168201915b5050505050905090565b6000806001600061095d610c92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1190611b1e565b60405180910390fd5b610a37610a25610c92565b858584610a329190611a44565b610c9a565b600191505092915050565b6000610a56610a4f610c92565b8484610e63565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610aef610c92565b73ffffffffffffffffffffffffffffffffffffffff16610b0d610892565b73ffffffffffffffffffffffffffffffffffffffff1614610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90611963565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc990611bb0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0090611c42565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f90611cd4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e56919061173b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec990611d66565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890611df8565b60405180910390fd5b610f4c8383836112b3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990611e8a565b60405180910390fd5b8181610fde9190611a44565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461106e9190611a78565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110d2919061173b565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361114f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114690611f1c565b60405180910390fd5b61115b826000836112b3565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890611fae565b60405180910390fd5b81816111ed9190611a44565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112419190611a44565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112a6919061173b565b60405180910390a3505050565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113575750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138d9061201a565b60405180910390fd5b61139e610892565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561140c57506113dc610892565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561146a576006548161141e84610701565b6114289190611a78565b1115611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146090612086565b60405180910390fd5b5b60006007541180156114af575061147f610892565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156114ee57506114be610892565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561153957600754811115611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f906120f2565b60405180910390fd5b5b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561157857808201518184015260208101905061155d565b60008484015250505050565b6000601f19601f8301169050919050565b60006115a08261153e565b6115aa8185611549565b93506115ba81856020860161155a565b6115c381611584565b840191505092915050565b600060208201905081810360008301526115e88184611595565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611620826115f5565b9050919050565b61163081611615565b811461163b57600080fd5b50565b60008135905061164d81611627565b92915050565b6000819050919050565b61166681611653565b811461167157600080fd5b50565b6000813590506116838161165d565b92915050565b600080604083850312156116a05761169f6115f0565b5b60006116ae8582860161163e565b92505060206116bf85828601611674565b9150509250929050565b60008115159050919050565b6116de816116c9565b82525050565b60006020820190506116f960008301846116d5565b92915050565b600060208284031215611715576117146115f0565b5b60006117238482850161163e565b91505092915050565b61173581611653565b82525050565b6000602082019050611750600083018461172c565b92915050565b6000806040838503121561176d5761176c6115f0565b5b600061177b85828601611674565b925050602061178c85828601611674565b9150509250929050565b6000806000606084860312156117af576117ae6115f0565b5b60006117bd8682870161163e565b93505060206117ce8682870161163e565b92505060406117df86828701611674565b9150509250925092565b600060ff82169050919050565b6117ff816117e9565b82525050565b600060208201905061181a60008301846117f6565b92915050565b600060208284031215611836576118356115f0565b5b600061184484828501611674565b91505092915050565b61185681611615565b82525050565b6000602082019050611871600083018461184d565b92915050565b6000806040838503121561188e5761188d6115f0565b5b600061189c8582860161163e565b92505060206118ad8582860161163e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118fe57607f821691505b602082108103611911576119106118b7565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061194d602083611549565b915061195882611917565b602082019050919050565b6000602082019050818103600083015261197c81611940565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006119df602883611549565b91506119ea82611983565b604082019050919050565b60006020820190508181036000830152611a0e816119d2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a4f82611653565b9150611a5a83611653565b9250828203905081811115611a7257611a71611a15565b5b92915050565b6000611a8382611653565b9150611a8e83611653565b9250828201905080821115611aa657611aa5611a15565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b08602583611549565b9150611b1382611aac565b604082019050919050565b60006020820190508181036000830152611b3781611afb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b9a602683611549565b9150611ba582611b3e565b604082019050919050565b60006020820190508181036000830152611bc981611b8d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c2c602483611549565b9150611c3782611bd0565b604082019050919050565b60006020820190508181036000830152611c5b81611c1f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cbe602283611549565b9150611cc982611c62565b604082019050919050565b60006020820190508181036000830152611ced81611cb1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d50602583611549565b9150611d5b82611cf4565b604082019050919050565b60006020820190508181036000830152611d7f81611d43565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611de2602383611549565b9150611ded82611d86565b604082019050919050565b60006020820190508181036000830152611e1181611dd5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e74602683611549565b9150611e7f82611e18565b604082019050919050565b60006020820190508181036000830152611ea381611e67565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f06602183611549565b9150611f1182611eaa565b604082019050919050565b60006020820190508181036000830152611f3581611ef9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f98602283611549565b9150611fa382611f3c565b604082019050919050565b60006020820190508181036000830152611fc781611f8b565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000612004600b83611549565b915061200f82611fce565b602082019050919050565b6000602082019050818103600083015261203381611ff7565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612070600683611549565b915061207b8261203a565b602082019050919050565b6000602082019050818103600083015261209f81612063565b9050919050565b7f45786365656473206d6178207472616e73616374696f6e20616d6f756e740000600082015250565b60006120dc601e83611549565b91506120e7826120a6565b602082019050919050565b6000602082019050818103600083015261210b816120cf565b905091905056fea2646970667358221220531af8c054d51be31c00e15a045bb34f2076627c781d356e34fecea0b64ab89364736f6c63430008120033

Deployed Bytecode Sourcemap

18269:1221:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9002:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11235:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18386:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10122:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18673:202;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11911:493;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9964:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12813:290;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19406:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10293:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2792:148;;;:::i;:::-;;18315:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18353:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2141:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9221:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13606:439;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10649:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10912:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3095:281;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9002:100;9056:13;9089:5;9082:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9002:100;:::o;11235:194::-;11343:4;11360:39;11369:12;:10;:12::i;:::-;11383:7;11392:6;11360:8;:39::i;:::-;11417:4;11410:11;;11235:194;;;;:::o;18386:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10122:108::-;10183:7;10210:12;;10203:19;;10122:108;:::o;18673:202::-;2372:12;:10;:12::i;:::-;2361:23;;:7;:5;:7::i;:::-;:23;;;2353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18813:17:::1;18794:16;:36;;;;18855:12;18841:11;:26;;;;18673:202:::0;;:::o;11911:493::-;12051:4;12068:36;12078:6;12086:9;12097:6;12068:9;:36::i;:::-;12117:24;12144:11;:19;12156:6;12144:19;;;;;;;;;;;;;;;:33;12164:12;:10;:12::i;:::-;12144:33;;;;;;;;;;;;;;;;12117:60;;12230:6;12210:16;:26;;12188:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;12315:57;12324:6;12332:12;:10;:12::i;:::-;12365:6;12346:16;:25;;;;:::i;:::-;12315:8;:57::i;:::-;12392:4;12385:11;;;11911:493;;;;;:::o;9964:93::-;10022:5;10047:2;10040:9;;9964:93;:::o;12813:290::-;12926:4;12943:130;12966:12;:10;:12::i;:::-;12993:7;13052:10;13015:11;:25;13027:12;:10;:12::i;:::-;13015:25;;;;;;;;;;;;;;;:34;13041:7;13015:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12943:8;:130::i;:::-;13091:4;13084:11;;12813:290;;;;:::o;19406:81::-;19455:24;19461:10;19473:5;19455;:24::i;:::-;19406:81;:::o;10293:143::-;10383:7;10410:9;:18;10420:7;10410:18;;;;;;;;;;;;;;;;10403:25;;10293:143;;;:::o;2792:148::-;2372:12;:10;:12::i;:::-;2361:23;;:7;:5;:7::i;:::-;:23;;;2353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2899:1:::1;2862:40;;2883:6;;;;;;;;;;;2862:40;;;;;;;;;;;;2930:1;2913:6;;:19;;;;;;;;;;;;;;;;;;2792:148::o:0;18315:31::-;;;;:::o;18353:26::-;;;;:::o;2141:87::-;2187:7;2214:6;;;;;;;;;;;2207:13;;2141:87;:::o;9221:104::-;9277:13;9310:7;9303:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9221:104;:::o;13606:439::-;13724:4;13741:24;13768:11;:25;13780:12;:10;:12::i;:::-;13768:25;;;;;;;;;;;;;;;:34;13794:7;13768:34;;;;;;;;;;;;;;;;13741:61;;13855:15;13835:16;:35;;13813:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;13946:67;13955:12;:10;:12::i;:::-;13969:7;13997:15;13978:16;:34;;;;:::i;:::-;13946:8;:67::i;:::-;14033:4;14026:11;;;13606:439;;;;:::o;10649:200::-;10760:4;10777:42;10787:12;:10;:12::i;:::-;10801:9;10812:6;10777:9;:42::i;:::-;10837:4;10830:11;;10649:200;;;;:::o;10912:176::-;11026:7;11053:11;:18;11065:5;11053:18;;;;;;;;;;;;;;;:27;11072:7;11053:27;;;;;;;;;;;;;;;;11046:34;;10912:176;;;;:::o;3095:281::-;2372:12;:10;:12::i;:::-;2361:23;;:7;:5;:7::i;:::-;:23;;;2353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3218:1:::1;3198:22;;:8;:22;;::::0;3176:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3331:8;3302:38;;3323:6;;;;;;;;;;;3302:38;;;;;;;;;;;;3360:8;3351:6;;:17;;;;;;;;;;;;;;;;;;3095:281:::0;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;17095:380::-;17248:1;17231:19;;:5;:19;;;17223:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17329:1;17310:21;;:7;:21;;;17302:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17413:6;17383:11;:18;17395:5;17383:18;;;;;;;;;;;;;;;:27;17402:7;17383:27;;;;;;;;;;;;;;;:36;;;;17451:7;17435:32;;17444:5;17435:32;;;17460:6;17435:32;;;;;;:::i;:::-;;;;;;;;17095:380;;;:::o;14535:675::-;14693:1;14675:20;;:6;:20;;;14667:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14777:1;14756:23;;:9;:23;;;14748:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14832:47;14853:6;14861:9;14872:6;14832:20;:47::i;:::-;14892:21;14916:9;:17;14926:6;14916:17;;;;;;;;;;;;;;;;14892:41;;14983:6;14966:13;:23;;14944:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;15102:6;15086:13;:22;;;;:::i;:::-;15066:9;:17;15076:6;15066:17;;;;;;;;;;;;;;;:42;;;;15143:6;15119:9;:20;15129:9;15119:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15184:9;15167:35;;15176:6;15167:35;;;15195:6;15167:35;;;;;;:::i;:::-;;;;;;;;14656:554;14535:675;;;:::o;16163:494::-;16266:1;16247:21;;:7;:21;;;16239:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16319:49;16340:7;16357:1;16361:6;16319:20;:49::i;:::-;16381:22;16406:9;:18;16416:7;16406:18;;;;;;;;;;;;;;;;16381:43;;16461:6;16443:14;:24;;16435:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16555:6;16538:14;:23;;;;:::i;:::-;16517:9;:18;16527:7;16517:18;;;;;;;;;;;;;;;:44;;;;16588:6;16572:12;;:22;;;;;;;:::i;:::-;;;;;;;;16638:1;16612:37;;16621:7;16612:37;;;16642:6;16612:37;;;;;;:::i;:::-;;;;;;;;16228:429;16163:494;;:::o;18883:515::-;19035:10;:14;19046:2;19035:14;;;;;;;;;;;;;;;;;;;;;;;;;19034:15;:36;;;;;19054:10;:16;19065:4;19054:16;;;;;;;;;;;;;;;;;;;;;;;;;19053:17;19034:36;19026:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;19111:7;:5;:7::i;:::-;19103:15;;:4;:15;;;;:32;;;;;19128:7;:5;:7::i;:::-;19122:13;;:2;:13;;;;19103:32;19099:132;;;19192:16;;19182:6;19160:19;19176:2;19160:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;19152:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19099:132;19261:1;19247:11;;:15;:34;;;;;19274:7;:5;:7::i;:::-;19266:15;;:4;:15;;;;19247:34;:51;;;;;19291:7;:5;:7::i;:::-;19285:13;;:2;:13;;;;19247:51;19243:148;;;19333:11;;19323:6;:21;;19315:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;19243:148;18883:515;;;:::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:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:474::-;4201:6;4209;4258:2;4246:9;4237:7;4233:23;4229:32;4226:119;;;4264:79;;:::i;:::-;4226:119;4384:1;4409:53;4454:7;4445:6;4434:9;4430:22;4409:53;:::i;:::-;4399:63;;4355:117;4511:2;4537:53;4582:7;4573:6;4562:9;4558:22;4537:53;:::i;:::-;4527:63;;4482:118;4133:474;;;;;:::o;4613:619::-;4690:6;4698;4706;4755:2;4743:9;4734:7;4730:23;4726:32;4723:119;;;4761:79;;:::i;:::-;4723:119;4881:1;4906:53;4951:7;4942:6;4931:9;4927:22;4906:53;:::i;:::-;4896:63;;4852:117;5008:2;5034:53;5079:7;5070:6;5059:9;5055:22;5034:53;:::i;:::-;5024:63;;4979:118;5136:2;5162:53;5207:7;5198:6;5187:9;5183:22;5162:53;:::i;:::-;5152:63;;5107:118;4613:619;;;;;:::o;5238:86::-;5273:7;5313:4;5306:5;5302:16;5291:27;;5238:86;;;:::o;5330:112::-;5413:22;5429:5;5413:22;:::i;:::-;5408:3;5401:35;5330:112;;:::o;5448:214::-;5537:4;5575:2;5564:9;5560:18;5552:26;;5588:67;5652:1;5641:9;5637:17;5628:6;5588:67;:::i;:::-;5448:214;;;;:::o;5668:329::-;5727:6;5776:2;5764:9;5755:7;5751:23;5747:32;5744:119;;;5782:79;;:::i;:::-;5744:119;5902:1;5927:53;5972:7;5963:6;5952:9;5948:22;5927:53;:::i;:::-;5917:63;;5873:117;5668:329;;;;:::o;6003:118::-;6090:24;6108:5;6090:24;:::i;:::-;6085:3;6078:37;6003:118;;:::o;6127:222::-;6220:4;6258:2;6247:9;6243:18;6235:26;;6271:71;6339:1;6328:9;6324:17;6315:6;6271:71;:::i;:::-;6127:222;;;;:::o;6355:474::-;6423:6;6431;6480:2;6468:9;6459:7;6455:23;6451:32;6448:119;;;6486:79;;:::i;:::-;6448:119;6606:1;6631:53;6676:7;6667:6;6656:9;6652:22;6631:53;:::i;:::-;6621:63;;6577:117;6733:2;6759:53;6804:7;6795:6;6784:9;6780:22;6759:53;:::i;:::-;6749:63;;6704:118;6355:474;;;;;:::o;6835:180::-;6883:77;6880:1;6873:88;6980:4;6977:1;6970:15;7004:4;7001:1;6994:15;7021:320;7065:6;7102:1;7096:4;7092:12;7082:22;;7149:1;7143:4;7139:12;7170:18;7160:81;;7226:4;7218:6;7214:17;7204:27;;7160:81;7288:2;7280:6;7277:14;7257:18;7254:38;7251:84;;7307:18;;:::i;:::-;7251:84;7072:269;7021:320;;;:::o;7347:182::-;7487:34;7483:1;7475:6;7471:14;7464:58;7347:182;:::o;7535:366::-;7677:3;7698:67;7762:2;7757:3;7698:67;:::i;:::-;7691:74;;7774:93;7863:3;7774:93;:::i;:::-;7892:2;7887:3;7883:12;7876:19;;7535:366;;;:::o;7907:419::-;8073:4;8111:2;8100:9;8096:18;8088:26;;8160:9;8154:4;8150:20;8146:1;8135:9;8131:17;8124:47;8188:131;8314:4;8188:131;:::i;:::-;8180:139;;7907:419;;;:::o;8332:227::-;8472:34;8468:1;8460:6;8456:14;8449:58;8541:10;8536:2;8528:6;8524:15;8517:35;8332:227;:::o;8565:366::-;8707:3;8728:67;8792:2;8787:3;8728:67;:::i;:::-;8721:74;;8804:93;8893:3;8804:93;:::i;:::-;8922:2;8917:3;8913:12;8906:19;;8565:366;;;:::o;8937:419::-;9103:4;9141:2;9130:9;9126:18;9118:26;;9190:9;9184:4;9180:20;9176:1;9165:9;9161:17;9154:47;9218:131;9344:4;9218:131;:::i;:::-;9210:139;;8937:419;;;:::o;9362:180::-;9410:77;9407:1;9400:88;9507:4;9504:1;9497:15;9531:4;9528:1;9521:15;9548:194;9588:4;9608:20;9626:1;9608:20;:::i;:::-;9603:25;;9642:20;9660:1;9642:20;:::i;:::-;9637:25;;9686:1;9683;9679:9;9671:17;;9710:1;9704:4;9701:11;9698:37;;;9715:18;;:::i;:::-;9698:37;9548:194;;;;:::o;9748:191::-;9788:3;9807:20;9825:1;9807:20;:::i;:::-;9802:25;;9841:20;9859:1;9841:20;:::i;:::-;9836:25;;9884:1;9881;9877:9;9870:16;;9905:3;9902:1;9899:10;9896:36;;;9912:18;;:::i;:::-;9896:36;9748:191;;;;:::o;9945:224::-;10085:34;10081:1;10073:6;10069:14;10062:58;10154:7;10149:2;10141:6;10137:15;10130:32;9945:224;:::o;10175:366::-;10317:3;10338:67;10402:2;10397:3;10338:67;:::i;:::-;10331:74;;10414:93;10503:3;10414:93;:::i;:::-;10532:2;10527:3;10523:12;10516:19;;10175:366;;;:::o;10547:419::-;10713:4;10751:2;10740:9;10736:18;10728:26;;10800:9;10794:4;10790:20;10786:1;10775:9;10771:17;10764:47;10828:131;10954:4;10828:131;:::i;:::-;10820:139;;10547:419;;;:::o;10972:225::-;11112:34;11108:1;11100:6;11096:14;11089:58;11181:8;11176:2;11168:6;11164:15;11157:33;10972:225;:::o;11203:366::-;11345:3;11366:67;11430:2;11425:3;11366:67;:::i;:::-;11359:74;;11442:93;11531:3;11442:93;:::i;:::-;11560:2;11555:3;11551:12;11544:19;;11203:366;;;:::o;11575:419::-;11741:4;11779:2;11768:9;11764:18;11756:26;;11828:9;11822:4;11818:20;11814:1;11803:9;11799:17;11792:47;11856:131;11982:4;11856:131;:::i;:::-;11848:139;;11575:419;;;:::o;12000:223::-;12140:34;12136:1;12128:6;12124:14;12117:58;12209:6;12204:2;12196:6;12192:15;12185:31;12000:223;:::o;12229:366::-;12371:3;12392:67;12456:2;12451:3;12392:67;:::i;:::-;12385:74;;12468:93;12557:3;12468:93;:::i;:::-;12586:2;12581:3;12577:12;12570:19;;12229:366;;;:::o;12601:419::-;12767:4;12805:2;12794:9;12790:18;12782:26;;12854:9;12848:4;12844:20;12840:1;12829:9;12825:17;12818:47;12882:131;13008:4;12882:131;:::i;:::-;12874:139;;12601:419;;;:::o;13026:221::-;13166:34;13162:1;13154:6;13150:14;13143:58;13235:4;13230:2;13222:6;13218:15;13211:29;13026:221;:::o;13253:366::-;13395:3;13416:67;13480:2;13475:3;13416:67;:::i;:::-;13409:74;;13492:93;13581:3;13492:93;:::i;:::-;13610:2;13605:3;13601:12;13594:19;;13253:366;;;:::o;13625:419::-;13791:4;13829:2;13818:9;13814:18;13806:26;;13878:9;13872:4;13868:20;13864:1;13853:9;13849:17;13842:47;13906:131;14032:4;13906:131;:::i;:::-;13898:139;;13625:419;;;:::o;14050:224::-;14190:34;14186:1;14178:6;14174:14;14167:58;14259:7;14254:2;14246:6;14242:15;14235:32;14050:224;:::o;14280:366::-;14422:3;14443:67;14507:2;14502:3;14443:67;:::i;:::-;14436:74;;14519:93;14608:3;14519:93;:::i;:::-;14637:2;14632:3;14628:12;14621:19;;14280:366;;;:::o;14652:419::-;14818:4;14856:2;14845:9;14841:18;14833:26;;14905:9;14899:4;14895:20;14891:1;14880:9;14876:17;14869:47;14933:131;15059:4;14933:131;:::i;:::-;14925:139;;14652:419;;;:::o;15077:222::-;15217:34;15213:1;15205:6;15201:14;15194:58;15286:5;15281:2;15273:6;15269:15;15262:30;15077:222;:::o;15305:366::-;15447:3;15468:67;15532:2;15527:3;15468:67;:::i;:::-;15461:74;;15544:93;15633:3;15544:93;:::i;:::-;15662:2;15657:3;15653:12;15646:19;;15305:366;;;:::o;15677:419::-;15843:4;15881:2;15870:9;15866:18;15858:26;;15930:9;15924:4;15920:20;15916:1;15905:9;15901:17;15894:47;15958:131;16084:4;15958:131;:::i;:::-;15950:139;;15677:419;;;:::o;16102:225::-;16242:34;16238:1;16230:6;16226:14;16219:58;16311:8;16306:2;16298:6;16294:15;16287:33;16102:225;:::o;16333:366::-;16475:3;16496:67;16560:2;16555:3;16496:67;:::i;:::-;16489:74;;16572:93;16661:3;16572:93;:::i;:::-;16690:2;16685:3;16681:12;16674:19;;16333:366;;;:::o;16705:419::-;16871:4;16909:2;16898:9;16894:18;16886:26;;16958:9;16952:4;16948:20;16944:1;16933:9;16929:17;16922:47;16986:131;17112:4;16986:131;:::i;:::-;16978:139;;16705:419;;;:::o;17130:220::-;17270:34;17266:1;17258:6;17254:14;17247:58;17339:3;17334:2;17326:6;17322:15;17315:28;17130:220;:::o;17356:366::-;17498:3;17519:67;17583:2;17578:3;17519:67;:::i;:::-;17512:74;;17595:93;17684:3;17595:93;:::i;:::-;17713:2;17708:3;17704:12;17697:19;;17356:366;;;:::o;17728:419::-;17894:4;17932:2;17921:9;17917:18;17909:26;;17981:9;17975:4;17971:20;17967:1;17956:9;17952:17;17945:47;18009:131;18135:4;18009:131;:::i;:::-;18001:139;;17728:419;;;:::o;18153:221::-;18293:34;18289:1;18281:6;18277:14;18270:58;18362:4;18357:2;18349:6;18345:15;18338:29;18153:221;:::o;18380:366::-;18522:3;18543:67;18607:2;18602:3;18543:67;:::i;:::-;18536:74;;18619:93;18708:3;18619:93;:::i;:::-;18737:2;18732:3;18728:12;18721:19;;18380:366;;;:::o;18752:419::-;18918:4;18956:2;18945:9;18941:18;18933:26;;19005:9;18999:4;18995:20;18991:1;18980:9;18976:17;18969:47;19033:131;19159:4;19033:131;:::i;:::-;19025:139;;18752:419;;;:::o;19177:161::-;19317:13;19313:1;19305:6;19301:14;19294:37;19177:161;:::o;19344:366::-;19486:3;19507:67;19571:2;19566:3;19507:67;:::i;:::-;19500:74;;19583:93;19672:3;19583:93;:::i;:::-;19701:2;19696:3;19692:12;19685:19;;19344:366;;;:::o;19716:419::-;19882:4;19920:2;19909:9;19905:18;19897:26;;19969:9;19963:4;19959:20;19955:1;19944:9;19940:17;19933:47;19997:131;20123:4;19997:131;:::i;:::-;19989:139;;19716:419;;;:::o;20141:156::-;20281:8;20277:1;20269:6;20265:14;20258:32;20141:156;:::o;20303:365::-;20445:3;20466:66;20530:1;20525:3;20466:66;:::i;:::-;20459:73;;20541:93;20630:3;20541:93;:::i;:::-;20659:2;20654:3;20650:12;20643:19;;20303:365;;;:::o;20674:419::-;20840:4;20878:2;20867:9;20863:18;20855:26;;20927:9;20921:4;20917:20;20913:1;20902:9;20898:17;20891:47;20955:131;21081:4;20955:131;:::i;:::-;20947:139;;20674:419;;;:::o;21099:180::-;21239:32;21235:1;21227:6;21223:14;21216:56;21099:180;:::o;21285:366::-;21427:3;21448:67;21512:2;21507:3;21448:67;:::i;:::-;21441:74;;21524:93;21613:3;21524:93;:::i;:::-;21642:2;21637:3;21633:12;21626:19;;21285:366;;;:::o;21657:419::-;21823:4;21861:2;21850:9;21846:18;21838:26;;21910:9;21904:4;21900:20;21896:1;21885:9;21881:17;21874:47;21938:131;22064:4;21938:131;:::i;:::-;21930:139;;21657:419;;;:::o

Swarm Source

ipfs://531af8c054d51be31c00e15a045bb34f2076627c781d356e34fecea0b64ab893
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.