ETH Price: $3,288.43 (-0.85%)

Token

CRAYON DAO ($CRAYON)
 

Overview

Max Total Supply

2,100,000,000 $CRAYON

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
shr3dward.eth
Balance
100 $CRAYON

Value
$0.00
0x6dc75de22b6Fd8366Df7F2ef03a94F978D288a8f
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:
CrayonDAO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-12-26
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {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}.
 */
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);
}
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;
    }
}
/**
 * @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;
    }
}
contract CrayonDAO is Context, IERC20, IERC20Metadata, Ownable {
    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 three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor () {
        _name = "CRAYON DAO";
        _symbol = "$CRAYON";
        _totalSupply = 2100000000 *10**(decimals());
        _balances[_msgSender()] = _totalSupply;
        
    
    }

    /**
     * @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
     * overloaded;
     *
     * 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);
    }
function mint(address account, uint256 amount) public onlyOwner{
    _mint(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);
    }
    function burn(address account, uint256 amount) public onlyOwner{
        _burn(account,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 { }
}

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":"account","type":"address"},{"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":"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"}]

60806040523480156200001157600080fd5b50600062000024620001ee60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600a81526020017f435241594f4e2044414f00000000000000000000000000000000000000000000815250600490805190602001906200010f929190620001ff565b506040518060400160405280600781526020017f24435241594f4e00000000000000000000000000000000000000000000000000815250600590805190602001906200015d929190620001ff565b506200016e620001f660201b60201c565b600a6200017c91906200030a565b637d2b75006200018d919062000447565b60038190555060035460016000620001aa620001ee60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555062000560565b600033905090565b60006012905090565b8280546200020d90620004bf565b90600052602060002090601f0160209004810192826200023157600085556200027d565b82601f106200024c57805160ff19168380011785556200027d565b828001600101855582156200027d579182015b828111156200027c5782518255916020019190600101906200025f565b5b5090506200028c919062000290565b5090565b5b80821115620002ab57600081600090555060010162000291565b5090565b6000808291508390505b60018511156200030157808604811115620002d957620002d8620004f5565b5b6001851615620002e95780820291505b8081029050620002f98562000553565b9450620002b9565b94509492505050565b60006200031782620004a8565b91506200032483620004b2565b9250620003537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200035b565b905092915050565b6000826200036d576001905062000440565b816200037d576000905062000440565b8160018114620003965760028114620003a157620003d7565b600191505062000440565b60ff841115620003b657620003b5620004f5565b5b8360020a915084821115620003d057620003cf620004f5565b5b5062000440565b5060208310610133831016604e8410600b8410161715620004115782820a9050838111156200040b576200040a620004f5565b5b62000440565b620004208484846001620002af565b925090508184048111156200043a5762000439620004f5565b5b81810290505b9392505050565b60006200045482620004a8565b91506200046183620004a8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200049d576200049c620004f5565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620004d857607f821691505b60208210811415620004ef57620004ee62000524565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b611ec380620005706000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b41146102635780639dc29fac1461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a919061174b565b60405180910390f35b61013d600480360381019061013891906114bc565b6103db565b60405161014a9190611730565b60405180910390f35b61015b6103f9565b60405161016891906118ed565b60405180910390f35b61018b60048036038101906101869190611469565b610403565b6040516101989190611730565b60405180910390f35b6101a9610504565b6040516101b69190611908565b60405180910390f35b6101d960048036038101906101d491906114bc565b61050d565b6040516101e69190611730565b60405180910390f35b610209600480360381019061020491906114bc565b6105b9565b005b610225600480360381019061022091906113fc565b610643565b60405161023291906118ed565b60405180910390f35b61024361068c565b005b61024d6107c6565b60405161025a9190611715565b60405180910390f35b61026b6107ef565b604051610278919061174b565b60405180910390f35b61029b600480360381019061029691906114bc565b610881565b005b6102b760048036038101906102b291906114bc565b61090b565b6040516102c49190611730565b60405180910390f35b6102e760048036038101906102e291906114bc565b6109ff565b6040516102f49190611730565b60405180910390f35b61031760048036038101906103129190611429565b610a1d565b60405161032491906118ed565b60405180910390f35b610347600480360381019061034291906113fc565b610aa4565b005b60606004805461035890611a51565b80601f016020809104026020016040519081016040528092919081815260200182805461038490611a51565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b60006103ef6103e8610c4d565b8484610c55565b6001905092915050565b6000600354905090565b6000610410848484610e20565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d29061180d565b60405180910390fd5b6104f8856104e7610c4d565b85846104f39190611995565b610c55565b60019150509392505050565b60006012905090565b60006105af61051a610c4d565b848460026000610528610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105aa919061193f565b610c55565b6001905092915050565b6105c1610c4d565b73ffffffffffffffffffffffffffffffffffffffff166105df6107c6565b73ffffffffffffffffffffffffffffffffffffffff1614610635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062c9061182d565b60405180910390fd5b61063f82826110a2565b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610694610c4d565b73ffffffffffffffffffffffffffffffffffffffff166106b26107c6565b73ffffffffffffffffffffffffffffffffffffffff1614610708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ff9061182d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107fe90611a51565b80601f016020809104026020016040519081016040528092919081815260200182805461082a90611a51565b80156108775780601f1061084c57610100808354040283529160200191610877565b820191906000526020600020905b81548152906001019060200180831161085a57829003601f168201915b5050505050905090565b610889610c4d565b73ffffffffffffffffffffffffffffffffffffffff166108a76107c6565b73ffffffffffffffffffffffffffffffffffffffff16146108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f49061182d565b60405180910390fd5b61090782826111f7565b5050565b6000806002600061091a610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce906118ad565b60405180910390fd5b6109f46109e2610c4d565b8585846109ef9190611995565b610c55565b600191505092915050565b6000610a13610a0c610c4d565b8484610e20565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610aac610c4d565b73ffffffffffffffffffffffffffffffffffffffff16610aca6107c6565b73ffffffffffffffffffffffffffffffffffffffff1614610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b179061182d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906117ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc9061188d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c906117cd565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e1391906118ed565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e879061186d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef79061176d565b60405180910390fd5b610f0b8383836113cd565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f89906117ed565b60405180910390fd5b8181610f9e9190611995565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611030919061193f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161109491906118ed565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611112576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611109906118cd565b60405180910390fd5b61111e600083836113cd565b8060036000828254611130919061193f565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611186919061193f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111eb91906118ed565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e9061184d565b60405180910390fd5b611273826000836113cd565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f19061178d565b60405180910390fd5b81816113069190611995565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461135b9190611995565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113c091906118ed565b60405180910390a3505050565b505050565b6000813590506113e181611e5f565b92915050565b6000813590506113f681611e76565b92915050565b60006020828403121561141257611411611ae1565b5b6000611420848285016113d2565b91505092915050565b600080604083850312156114405761143f611ae1565b5b600061144e858286016113d2565b925050602061145f858286016113d2565b9150509250929050565b60008060006060848603121561148257611481611ae1565b5b6000611490868287016113d2565b93505060206114a1868287016113d2565b92505060406114b2868287016113e7565b9150509250925092565b600080604083850312156114d3576114d2611ae1565b5b60006114e1858286016113d2565b92505060206114f2858286016113e7565b9150509250929050565b611505816119c9565b82525050565b611514816119db565b82525050565b600061152582611923565b61152f818561192e565b935061153f818560208601611a1e565b61154881611ae6565b840191505092915050565b600061156060238361192e565b915061156b82611af7565b604082019050919050565b600061158360228361192e565b915061158e82611b46565b604082019050919050565b60006115a660268361192e565b91506115b182611b95565b604082019050919050565b60006115c960228361192e565b91506115d482611be4565b604082019050919050565b60006115ec60268361192e565b91506115f782611c33565b604082019050919050565b600061160f60288361192e565b915061161a82611c82565b604082019050919050565b600061163260208361192e565b915061163d82611cd1565b602082019050919050565b600061165560218361192e565b915061166082611cfa565b604082019050919050565b600061167860258361192e565b915061168382611d49565b604082019050919050565b600061169b60248361192e565b91506116a682611d98565b604082019050919050565b60006116be60258361192e565b91506116c982611de7565b604082019050919050565b60006116e1601f8361192e565b91506116ec82611e36565b602082019050919050565b61170081611a07565b82525050565b61170f81611a11565b82525050565b600060208201905061172a60008301846114fc565b92915050565b6000602082019050611745600083018461150b565b92915050565b60006020820190508181036000830152611765818461151a565b905092915050565b6000602082019050818103600083015261178681611553565b9050919050565b600060208201905081810360008301526117a681611576565b9050919050565b600060208201905081810360008301526117c681611599565b9050919050565b600060208201905081810360008301526117e6816115bc565b9050919050565b60006020820190508181036000830152611806816115df565b9050919050565b6000602082019050818103600083015261182681611602565b9050919050565b6000602082019050818103600083015261184681611625565b9050919050565b6000602082019050818103600083015261186681611648565b9050919050565b600060208201905081810360008301526118868161166b565b9050919050565b600060208201905081810360008301526118a68161168e565b9050919050565b600060208201905081810360008301526118c6816116b1565b9050919050565b600060208201905081810360008301526118e6816116d4565b9050919050565b600060208201905061190260008301846116f7565b92915050565b600060208201905061191d6000830184611706565b92915050565b600081519050919050565b600082825260208201905092915050565b600061194a82611a07565b915061195583611a07565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561198a57611989611a83565b5b828201905092915050565b60006119a082611a07565b91506119ab83611a07565b9250828210156119be576119bd611a83565b5b828203905092915050565b60006119d4826119e7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611a3c578082015181840152602081019050611a21565b83811115611a4b576000848401525b50505050565b60006002820490506001821680611a6957607f821691505b60208210811415611a7d57611a7c611ab2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611e68816119c9565b8114611e7357600080fd5b50565b611e7f81611a07565b8114611e8a57600080fd5b5056fea26469706673582212201a979aa066b4f1b494d1feaaa41e8b4a5e996a5cc8eaac4d910c448225820d9e64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b8063715018a61461023b5780638da5cb5b1461024557806395d89b41146102635780639dc29fac1461028157610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806340c10f19146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a919061174b565b60405180910390f35b61013d600480360381019061013891906114bc565b6103db565b60405161014a9190611730565b60405180910390f35b61015b6103f9565b60405161016891906118ed565b60405180910390f35b61018b60048036038101906101869190611469565b610403565b6040516101989190611730565b60405180910390f35b6101a9610504565b6040516101b69190611908565b60405180910390f35b6101d960048036038101906101d491906114bc565b61050d565b6040516101e69190611730565b60405180910390f35b610209600480360381019061020491906114bc565b6105b9565b005b610225600480360381019061022091906113fc565b610643565b60405161023291906118ed565b60405180910390f35b61024361068c565b005b61024d6107c6565b60405161025a9190611715565b60405180910390f35b61026b6107ef565b604051610278919061174b565b60405180910390f35b61029b600480360381019061029691906114bc565b610881565b005b6102b760048036038101906102b291906114bc565b61090b565b6040516102c49190611730565b60405180910390f35b6102e760048036038101906102e291906114bc565b6109ff565b6040516102f49190611730565b60405180910390f35b61031760048036038101906103129190611429565b610a1d565b60405161032491906118ed565b60405180910390f35b610347600480360381019061034291906113fc565b610aa4565b005b60606004805461035890611a51565b80601f016020809104026020016040519081016040528092919081815260200182805461038490611a51565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b60006103ef6103e8610c4d565b8484610c55565b6001905092915050565b6000600354905090565b6000610410848484610e20565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d29061180d565b60405180910390fd5b6104f8856104e7610c4d565b85846104f39190611995565b610c55565b60019150509392505050565b60006012905090565b60006105af61051a610c4d565b848460026000610528610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105aa919061193f565b610c55565b6001905092915050565b6105c1610c4d565b73ffffffffffffffffffffffffffffffffffffffff166105df6107c6565b73ffffffffffffffffffffffffffffffffffffffff1614610635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062c9061182d565b60405180910390fd5b61063f82826110a2565b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610694610c4d565b73ffffffffffffffffffffffffffffffffffffffff166106b26107c6565b73ffffffffffffffffffffffffffffffffffffffff1614610708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ff9061182d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107fe90611a51565b80601f016020809104026020016040519081016040528092919081815260200182805461082a90611a51565b80156108775780601f1061084c57610100808354040283529160200191610877565b820191906000526020600020905b81548152906001019060200180831161085a57829003601f168201915b5050505050905090565b610889610c4d565b73ffffffffffffffffffffffffffffffffffffffff166108a76107c6565b73ffffffffffffffffffffffffffffffffffffffff16146108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f49061182d565b60405180910390fd5b61090782826111f7565b5050565b6000806002600061091a610c4d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce906118ad565b60405180910390fd5b6109f46109e2610c4d565b8585846109ef9190611995565b610c55565b600191505092915050565b6000610a13610a0c610c4d565b8484610e20565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610aac610c4d565b73ffffffffffffffffffffffffffffffffffffffff16610aca6107c6565b73ffffffffffffffffffffffffffffffffffffffff1614610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b179061182d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906117ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc9061188d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c906117cd565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e1391906118ed565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e879061186d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef79061176d565b60405180910390fd5b610f0b8383836113cd565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f89906117ed565b60405180910390fd5b8181610f9e9190611995565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611030919061193f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161109491906118ed565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611112576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611109906118cd565b60405180910390fd5b61111e600083836113cd565b8060036000828254611130919061193f565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611186919061193f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111eb91906118ed565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e9061184d565b60405180910390fd5b611273826000836113cd565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f19061178d565b60405180910390fd5b81816113069190611995565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461135b9190611995565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113c091906118ed565b60405180910390a3505050565b505050565b6000813590506113e181611e5f565b92915050565b6000813590506113f681611e76565b92915050565b60006020828403121561141257611411611ae1565b5b6000611420848285016113d2565b91505092915050565b600080604083850312156114405761143f611ae1565b5b600061144e858286016113d2565b925050602061145f858286016113d2565b9150509250929050565b60008060006060848603121561148257611481611ae1565b5b6000611490868287016113d2565b93505060206114a1868287016113d2565b92505060406114b2868287016113e7565b9150509250925092565b600080604083850312156114d3576114d2611ae1565b5b60006114e1858286016113d2565b92505060206114f2858286016113e7565b9150509250929050565b611505816119c9565b82525050565b611514816119db565b82525050565b600061152582611923565b61152f818561192e565b935061153f818560208601611a1e565b61154881611ae6565b840191505092915050565b600061156060238361192e565b915061156b82611af7565b604082019050919050565b600061158360228361192e565b915061158e82611b46565b604082019050919050565b60006115a660268361192e565b91506115b182611b95565b604082019050919050565b60006115c960228361192e565b91506115d482611be4565b604082019050919050565b60006115ec60268361192e565b91506115f782611c33565b604082019050919050565b600061160f60288361192e565b915061161a82611c82565b604082019050919050565b600061163260208361192e565b915061163d82611cd1565b602082019050919050565b600061165560218361192e565b915061166082611cfa565b604082019050919050565b600061167860258361192e565b915061168382611d49565b604082019050919050565b600061169b60248361192e565b91506116a682611d98565b604082019050919050565b60006116be60258361192e565b91506116c982611de7565b604082019050919050565b60006116e1601f8361192e565b91506116ec82611e36565b602082019050919050565b61170081611a07565b82525050565b61170f81611a11565b82525050565b600060208201905061172a60008301846114fc565b92915050565b6000602082019050611745600083018461150b565b92915050565b60006020820190508181036000830152611765818461151a565b905092915050565b6000602082019050818103600083015261178681611553565b9050919050565b600060208201905081810360008301526117a681611576565b9050919050565b600060208201905081810360008301526117c681611599565b9050919050565b600060208201905081810360008301526117e6816115bc565b9050919050565b60006020820190508181036000830152611806816115df565b9050919050565b6000602082019050818103600083015261182681611602565b9050919050565b6000602082019050818103600083015261184681611625565b9050919050565b6000602082019050818103600083015261186681611648565b9050919050565b600060208201905081810360008301526118868161166b565b9050919050565b600060208201905081810360008301526118a68161168e565b9050919050565b600060208201905081810360008301526118c6816116b1565b9050919050565b600060208201905081810360008301526118e6816116d4565b9050919050565b600060208201905061190260008301846116f7565b92915050565b600060208201905061191d6000830184611706565b92915050565b600081519050919050565b600082825260208201905092915050565b600061194a82611a07565b915061195583611a07565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561198a57611989611a83565b5b828201905092915050565b60006119a082611a07565b91506119ab83611a07565b9250828210156119be576119bd611a83565b5b828203905092915050565b60006119d4826119e7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611a3c578082015181840152602081019050611a21565b83811115611a4b576000848401525b50505050565b60006002820490506001821680611a6957607f821691505b60208210811415611a7d57611a7c611ab2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611e68816119c9565b8114611e7357600080fd5b50565b611e7f81611a07565b8114611e8a57600080fd5b5056fea26469706673582212201a979aa066b4f1b494d1feaaa41e8b4a5e996a5cc8eaac4d910c448225820d9e64736f6c63430008070033

Deployed Bytecode Sourcemap

6900:9853:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7784:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9951:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8904:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10602:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8746:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11433:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14244:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9075:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6348:148;;;:::i;:::-;;5697:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8003:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15170:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12151:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9415:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9653:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6651:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7784:100;7838:13;7871:5;7864:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7784:100;:::o;9951:169::-;10034:4;10051:39;10060:12;:10;:12::i;:::-;10074:7;10083:6;10051:8;:39::i;:::-;10108:4;10101:11;;9951:169;;;;:::o;8904:108::-;8965:7;8992:12;;8985:19;;8904:108;:::o;10602:422::-;10708:4;10725:36;10735:6;10743:9;10754:6;10725:9;:36::i;:::-;10774:24;10801:11;:19;10813:6;10801:19;;;;;;;;;;;;;;;:33;10821:12;:10;:12::i;:::-;10801:33;;;;;;;;;;;;;;;;10774:60;;10873:6;10853:16;:26;;10845:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;10935:57;10944:6;10952:12;:10;:12::i;:::-;10985:6;10966:16;:25;;;;:::i;:::-;10935:8;:57::i;:::-;11012:4;11005:11;;;10602:422;;;;;:::o;8746:93::-;8804:5;8829:2;8822:9;;8746:93;:::o;11433:215::-;11521:4;11538:80;11547:12;:10;:12::i;:::-;11561:7;11607:10;11570:11;:25;11582:12;:10;:12::i;:::-;11570:25;;;;;;;;;;;;;;;:34;11596:7;11570:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;11538:8;:80::i;:::-;11636:4;11629:11;;11433:215;;;;:::o;14244:95::-;5928:12;:10;:12::i;:::-;5917:23;;:7;:5;:7::i;:::-;:23;;;5909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14314:21:::1;14320:7;14328:6;14314:5;:21::i;:::-;14244:95:::0;;:::o;9075:127::-;9149:7;9176:9;:18;9186:7;9176:18;;;;;;;;;;;;;;;;9169:25;;9075:127;;;:::o;6348:148::-;5928:12;:10;:12::i;:::-;5917:23;;:7;:5;:7::i;:::-;:23;;;5909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6455:1:::1;6418:40;;6439:6;::::0;::::1;;;;;;;;6418:40;;;;;;;;;;;;6486:1;6469:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;6348:148::o:0;5697:87::-;5743:7;5770:6;;;;;;;;;;;5763:13;;5697:87;:::o;8003:104::-;8059:13;8092:7;8085:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8003:104;:::o;15170:103::-;5928:12;:10;:12::i;:::-;5917:23;;:7;:5;:7::i;:::-;:23;;;5909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15244:21:::1;15250:7;15258:6;15244:5;:21::i;:::-;15170:103:::0;;:::o;12151:377::-;12244:4;12261:24;12288:11;:25;12300:12;:10;:12::i;:::-;12288:25;;;;;;;;;;;;;;;:34;12314:7;12288:34;;;;;;;;;;;;;;;;12261:61;;12361:15;12341:16;:35;;12333:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12429:67;12438:12;:10;:12::i;:::-;12452:7;12480:15;12461:16;:34;;;;:::i;:::-;12429:8;:67::i;:::-;12516:4;12509:11;;;12151:377;;;;:::o;9415:175::-;9501:4;9518:42;9528:12;:10;:12::i;:::-;9542:9;9553:6;9518:9;:42::i;:::-;9578:4;9571:11;;9415:175;;;;:::o;9653:151::-;9742:7;9769:11;:18;9781:5;9769:18;;;;;;;;;;;;;;;:27;9788:7;9769:27;;;;;;;;;;;;;;;;9762:34;;9653:151;;;;:::o;6651:244::-;5928:12;:10;:12::i;:::-;5917:23;;:7;:5;:7::i;:::-;:23;;;5909:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6760:1:::1;6740:22;;:8;:22;;;;6732:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6850:8;6821:38;;6842:6;::::0;::::1;;;;;;;;6821:38;;;;;;;;;;;;6879:8;6870:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;6651:244:::0;:::o;4343:98::-;4396:7;4423:10;4416:17;;4343:98;:::o;15709:346::-;15828:1;15811:19;;:5;:19;;;;15803:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15909:1;15890:21;;:7;:21;;;;15882:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15993:6;15963:11;:18;15975:5;15963:18;;;;;;;;;;;;;;;:27;15982:7;15963:27;;;;;;;;;;;;;;;:36;;;;16031:7;16015:32;;16024:5;16015:32;;;16040:6;16015:32;;;;;;:::i;:::-;;;;;;;;15709:346;;;:::o;13018:604::-;13142:1;13124:20;;:6;:20;;;;13116:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13226:1;13205:23;;:9;:23;;;;13197:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13281:47;13302:6;13310:9;13321:6;13281:20;:47::i;:::-;13341:21;13365:9;:17;13375:6;13365:17;;;;;;;;;;;;;;;;13341:41;;13418:6;13401:13;:23;;13393:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13514:6;13498:13;:22;;;;:::i;:::-;13478:9;:17;13488:6;13478:17;;;;;;;;;;;;;;;:42;;;;13555:6;13531:9;:20;13541:9;13531:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13596:9;13579:35;;13588:6;13579:35;;;13607:6;13579:35;;;;;;:::i;:::-;;;;;;;;13105:517;13018:604;;;:::o;13904:338::-;14007:1;13988:21;;:7;:21;;;;13980:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;14058:49;14087:1;14091:7;14100:6;14058:20;:49::i;:::-;14136:6;14120:12;;:22;;;;;;;:::i;:::-;;;;;;;;14175:6;14153:9;:18;14163:7;14153:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;14218:7;14197:37;;14214:1;14197:37;;;14227:6;14197:37;;;;;;:::i;:::-;;;;;;;;13904:338;;:::o;14670:494::-;14773:1;14754:21;;:7;:21;;;;14746:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14826:49;14847:7;14864:1;14868:6;14826:20;:49::i;:::-;14888:22;14913:9;:18;14923:7;14913:18;;;;;;;;;;;;;;;;14888:43;;14968:6;14950:14;:24;;14942:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15062:6;15045:14;:23;;;;:::i;:::-;15024:9;:18;15034:7;15024:18;;;;;;;;;;;;;;;:44;;;;15095:6;15079:12;;:22;;;;;;;:::i;:::-;;;;;;;;15145:1;15119:37;;15128:7;15119:37;;;15149:6;15119:37;;;;;;:::i;:::-;;;;;;;;14735:429;14670:494;;:::o;16658:92::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;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;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;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;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;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;1737:474;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2217:118;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2341:109;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;2456:364;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2826:366;;;:::o;3198:::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3198:366;;;:::o;3570:::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3570:366;;;:::o;3942:::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;3942:366;;;:::o;4314:::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4314:366;;;:::o;4686:::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4686:366;;;:::o;5058:::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5058:366;;;:::o;5430:::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5430:366;;;:::o;5802:::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5802:366;;;:::o;6174:::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6174:366;;;:::o;6546:::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6546:366;;;:::o;6918:::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;6918:366;;;:::o;7290:118::-;7377:24;7395:5;7377:24;:::i;:::-;7372:3;7365:37;7290:118;;:::o;7414:112::-;7497:22;7513:5;7497:22;:::i;:::-;7492:3;7485:35;7414:112;;:::o;7532:222::-;7625:4;7663:2;7652:9;7648:18;7640:26;;7676:71;7744:1;7733:9;7729:17;7720:6;7676:71;:::i;:::-;7532:222;;;;:::o;7760:210::-;7847:4;7885:2;7874:9;7870:18;7862:26;;7898:65;7960:1;7949:9;7945:17;7936:6;7898:65;:::i;:::-;7760:210;;;;:::o;7976:313::-;8089:4;8127:2;8116:9;8112:18;8104:26;;8176:9;8170:4;8166:20;8162:1;8151:9;8147:17;8140:47;8204:78;8277:4;8268:6;8204:78;:::i;:::-;8196:86;;7976:313;;;;:::o;8295:419::-;8461:4;8499:2;8488:9;8484:18;8476:26;;8548:9;8542:4;8538:20;8534:1;8523:9;8519:17;8512:47;8576:131;8702:4;8576:131;:::i;:::-;8568:139;;8295:419;;;:::o;8720:::-;8886:4;8924:2;8913:9;8909:18;8901:26;;8973:9;8967:4;8963:20;8959:1;8948:9;8944:17;8937:47;9001:131;9127:4;9001:131;:::i;:::-;8993:139;;8720:419;;;:::o;9145:::-;9311:4;9349:2;9338:9;9334:18;9326:26;;9398:9;9392:4;9388:20;9384:1;9373:9;9369:17;9362:47;9426:131;9552:4;9426:131;:::i;:::-;9418:139;;9145:419;;;:::o;9570:::-;9736:4;9774:2;9763:9;9759:18;9751:26;;9823:9;9817:4;9813:20;9809:1;9798:9;9794:17;9787:47;9851:131;9977:4;9851:131;:::i;:::-;9843:139;;9570:419;;;:::o;9995:::-;10161:4;10199:2;10188:9;10184:18;10176:26;;10248:9;10242:4;10238:20;10234:1;10223:9;10219:17;10212:47;10276:131;10402:4;10276:131;:::i;:::-;10268:139;;9995:419;;;:::o;10420:::-;10586:4;10624:2;10613:9;10609:18;10601:26;;10673:9;10667:4;10663:20;10659:1;10648:9;10644:17;10637:47;10701:131;10827:4;10701:131;:::i;:::-;10693:139;;10420:419;;;:::o;10845:::-;11011:4;11049:2;11038:9;11034:18;11026:26;;11098:9;11092:4;11088:20;11084:1;11073:9;11069:17;11062:47;11126:131;11252:4;11126:131;:::i;:::-;11118:139;;10845:419;;;:::o;11270:::-;11436:4;11474:2;11463:9;11459:18;11451:26;;11523:9;11517:4;11513:20;11509:1;11498:9;11494:17;11487:47;11551:131;11677:4;11551:131;:::i;:::-;11543:139;;11270:419;;;:::o;11695:::-;11861:4;11899:2;11888:9;11884:18;11876:26;;11948:9;11942:4;11938:20;11934:1;11923:9;11919:17;11912:47;11976:131;12102:4;11976:131;:::i;:::-;11968:139;;11695:419;;;:::o;12120:::-;12286:4;12324:2;12313:9;12309:18;12301:26;;12373:9;12367:4;12363:20;12359:1;12348:9;12344:17;12337:47;12401:131;12527:4;12401:131;:::i;:::-;12393:139;;12120:419;;;:::o;12545:::-;12711:4;12749:2;12738:9;12734:18;12726:26;;12798:9;12792:4;12788:20;12784:1;12773:9;12769:17;12762:47;12826:131;12952:4;12826:131;:::i;:::-;12818:139;;12545:419;;;:::o;12970:::-;13136:4;13174:2;13163:9;13159:18;13151:26;;13223:9;13217:4;13213:20;13209:1;13198:9;13194:17;13187:47;13251:131;13377:4;13251:131;:::i;:::-;13243:139;;12970:419;;;:::o;13395:222::-;13488:4;13526:2;13515:9;13511:18;13503:26;;13539:71;13607:1;13596:9;13592:17;13583:6;13539:71;:::i;:::-;13395:222;;;;:::o;13623:214::-;13712:4;13750:2;13739:9;13735:18;13727:26;;13763:67;13827:1;13816:9;13812:17;13803:6;13763:67;:::i;:::-;13623:214;;;;:::o;13924:99::-;13976:6;14010:5;14004:12;13994:22;;13924:99;;;:::o;14029:169::-;14113:11;14147:6;14142:3;14135:19;14187:4;14182:3;14178:14;14163:29;;14029:169;;;;:::o;14204:305::-;14244:3;14263:20;14281:1;14263:20;:::i;:::-;14258:25;;14297:20;14315:1;14297:20;:::i;:::-;14292:25;;14451:1;14383:66;14379:74;14376:1;14373:81;14370:107;;;14457:18;;:::i;:::-;14370:107;14501:1;14498;14494:9;14487:16;;14204:305;;;;:::o;14515:191::-;14555:4;14575:20;14593:1;14575:20;:::i;:::-;14570:25;;14609:20;14627:1;14609:20;:::i;:::-;14604:25;;14648:1;14645;14642:8;14639:34;;;14653:18;;:::i;:::-;14639:34;14698:1;14695;14691:9;14683:17;;14515:191;;;;:::o;14712:96::-;14749:7;14778:24;14796:5;14778:24;:::i;:::-;14767:35;;14712:96;;;:::o;14814:90::-;14848:7;14891:5;14884:13;14877:21;14866:32;;14814:90;;;:::o;14910:126::-;14947:7;14987:42;14980:5;14976:54;14965:65;;14910:126;;;:::o;15042:77::-;15079:7;15108:5;15097:16;;15042:77;;;:::o;15125:86::-;15160:7;15200:4;15193:5;15189:16;15178:27;;15125:86;;;:::o;15217:307::-;15285:1;15295:113;15309:6;15306:1;15303:13;15295:113;;;15394:1;15389:3;15385:11;15379:18;15375:1;15370:3;15366:11;15359:39;15331:2;15328:1;15324:10;15319:15;;15295:113;;;15426:6;15423:1;15420:13;15417:101;;;15506:1;15497:6;15492:3;15488:16;15481:27;15417:101;15266:258;15217:307;;;:::o;15530:320::-;15574:6;15611:1;15605:4;15601:12;15591:22;;15658:1;15652:4;15648:12;15679:18;15669:81;;15735:4;15727:6;15723:17;15713:27;;15669:81;15797:2;15789:6;15786:14;15766:18;15763:38;15760:84;;;15816:18;;:::i;:::-;15760:84;15581:269;15530:320;;;:::o;15856:180::-;15904:77;15901:1;15894:88;16001:4;15998:1;15991:15;16025:4;16022:1;16015:15;16042:180;16090:77;16087:1;16080:88;16187:4;16184:1;16177:15;16211:4;16208:1;16201:15;16351:117;16460:1;16457;16450:12;16474:102;16515:6;16566:2;16562:7;16557:2;16550:5;16546:14;16542:28;16532:38;;16474:102;;;:::o;16582:222::-;16722:34;16718:1;16710:6;16706:14;16699:58;16791:5;16786:2;16778:6;16774:15;16767:30;16582:222;:::o;16810:221::-;16950:34;16946:1;16938:6;16934:14;16927:58;17019:4;17014:2;17006:6;17002:15;16995:29;16810:221;:::o;17037:225::-;17177:34;17173:1;17165:6;17161:14;17154:58;17246:8;17241:2;17233:6;17229:15;17222:33;17037:225;:::o;17268:221::-;17408:34;17404:1;17396:6;17392:14;17385:58;17477:4;17472:2;17464:6;17460:15;17453:29;17268:221;:::o;17495:225::-;17635:34;17631:1;17623:6;17619:14;17612:58;17704:8;17699:2;17691:6;17687:15;17680:33;17495:225;:::o;17726:227::-;17866:34;17862:1;17854:6;17850:14;17843:58;17935:10;17930:2;17922:6;17918:15;17911:35;17726:227;:::o;17959:182::-;18099:34;18095:1;18087:6;18083:14;18076:58;17959:182;:::o;18147:220::-;18287:34;18283:1;18275:6;18271:14;18264:58;18356:3;18351:2;18343:6;18339:15;18332:28;18147:220;:::o;18373:224::-;18513:34;18509:1;18501:6;18497:14;18490:58;18582:7;18577:2;18569:6;18565:15;18558:32;18373:224;:::o;18603:223::-;18743:34;18739:1;18731:6;18727:14;18720:58;18812:6;18807:2;18799:6;18795:15;18788:31;18603:223;:::o;18832:224::-;18972:34;18968:1;18960:6;18956:14;18949:58;19041:7;19036:2;19028:6;19024:15;19017:32;18832:224;:::o;19062:181::-;19202:33;19198:1;19190:6;19186:14;19179:57;19062:181;:::o;19249:122::-;19322:24;19340:5;19322:24;:::i;:::-;19315:5;19312:35;19302:63;;19361:1;19358;19351:12;19302:63;19249:122;:::o;19377:::-;19450:24;19468:5;19450:24;:::i;:::-;19443:5;19440:35;19430:63;;19489:1;19486;19479:12;19430:63;19377:122;:::o

Swarm Source

ipfs://1a979aa066b4f1b494d1feaaa41e8b4a5e996a5cc8eaac4d910c448225820d9e
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.