ETH Price: $3,411.41 (-6.94%)

Token

Yum (YUM)
 

Overview

Max Total Supply

100,000,000 YUM

Holders

8 (0.00%)

Market

Price

$0.02 @ 0.000005 ETH (-1.20%)

Onchain Market Cap

$1,598,811.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Axelar: Gateway
Balance
42,456,122.11 YUM

Value
$678,793.15 ( ~198.9771 Eth) [42.4561%]
0x4f4495243837681061c4743b74b3eedf548d56a5
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

YUM is the Cacao Swap token, used to power the Cacao Swap user interface, with revenues being distributed amongst token holders.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Yum

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion, MIT license
File 1 of 9 : Yum.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC777/ERC777.sol";

// Author: Cacaoswap Team
contract Yum is ERC777 {
    constructor(
        uint256 initialSupply,
        address[] memory defaultOperators
    ) ERC777("Yum", "YUM", defaultOperators) {
        _mint(msg.sender, initialSupply * 10 ** 18, "", "");
    }
}

File 2 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

File 3 of 9 : ERC777.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC777/ERC777.sol)

pragma solidity ^0.8.0;

import "./IERC777.sol";
import "./IERC777Recipient.sol";
import "./IERC777Sender.sol";
import "../ERC20/IERC20.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/IERC1820Registry.sol";

/**
 * @dev Implementation of the {IERC777} 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}.
 *
 * Support for ERC20 is included in this contract, as specified by the EIP: both
 * the ERC777 and ERC20 interfaces can be safely used when interacting with it.
 * Both {IERC777-Sent} and {IERC20-Transfer} events are emitted on token
 * movements.
 *
 * Additionally, the {IERC777-granularity} value is hard-coded to `1`, meaning that there
 * are no special restrictions in the amount of tokens that created, moved, or
 * destroyed. This makes integration with ERC20 applications seamless.
 *
 * CAUTION: This file is deprecated as of v4.9 and will be removed in the next major release.
 */
contract ERC777 is Context, IERC777, IERC20 {
    using Address for address;

    IERC1820Registry internal constant _ERC1820_REGISTRY = IERC1820Registry(0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24);

    mapping(address => uint256) private _balances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    bytes32 private constant _TOKENS_SENDER_INTERFACE_HASH = keccak256("ERC777TokensSender");
    bytes32 private constant _TOKENS_RECIPIENT_INTERFACE_HASH = keccak256("ERC777TokensRecipient");

    // This isn't ever read from - it's only used to respond to the defaultOperators query.
    address[] private _defaultOperatorsArray;

    // Immutable, but accounts may revoke them (tracked in __revokedDefaultOperators).
    mapping(address => bool) private _defaultOperators;

    // For each account, a mapping of its operators and revoked default operators.
    mapping(address => mapping(address => bool)) private _operators;
    mapping(address => mapping(address => bool)) private _revokedDefaultOperators;

    // ERC20-allowances
    mapping(address => mapping(address => uint256)) private _allowances;

    /**
     * @dev `defaultOperators` may be an empty array.
     */
    constructor(string memory name_, string memory symbol_, address[] memory defaultOperators_) {
        _name = name_;
        _symbol = symbol_;

        _defaultOperatorsArray = defaultOperators_;
        for (uint256 i = 0; i < defaultOperators_.length; i++) {
            _defaultOperators[defaultOperators_[i]] = true;
        }

        // register interfaces
        _ERC1820_REGISTRY.setInterfaceImplementer(address(this), keccak256("ERC777Token"), address(this));
        _ERC1820_REGISTRY.setInterfaceImplementer(address(this), keccak256("ERC20Token"), address(this));
    }

    /**
     * @dev See {IERC777-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC777-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {ERC20-decimals}.
     *
     * Always returns 18, as per the
     * [ERC777 EIP](https://eips.ethereum.org/EIPS/eip-777#backward-compatibility).
     */
    function decimals() public pure virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC777-granularity}.
     *
     * This implementation always returns `1`.
     */
    function granularity() public view virtual override returns (uint256) {
        return 1;
    }

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

    /**
     * @dev Returns the amount of tokens owned by an account (`tokenHolder`).
     */
    function balanceOf(address tokenHolder) public view virtual override(IERC20, IERC777) returns (uint256) {
        return _balances[tokenHolder];
    }

    /**
     * @dev See {IERC777-send}.
     *
     * Also emits a {IERC20-Transfer} event for ERC20 compatibility.
     */
    function send(address recipient, uint256 amount, bytes memory data) public virtual override {
        _send(_msgSender(), recipient, amount, data, "", true);
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Unlike `send`, `recipient` is _not_ required to implement the {IERC777Recipient}
     * interface if it is a contract.
     *
     * Also emits a {Sent} event.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _send(_msgSender(), recipient, amount, "", "", false);
        return true;
    }

    /**
     * @dev See {IERC777-burn}.
     *
     * Also emits a {IERC20-Transfer} event for ERC20 compatibility.
     */
    function burn(uint256 amount, bytes memory data) public virtual override {
        _burn(_msgSender(), amount, data, "");
    }

    /**
     * @dev See {IERC777-isOperatorFor}.
     */
    function isOperatorFor(address operator, address tokenHolder) public view virtual override returns (bool) {
        return
            operator == tokenHolder ||
            (_defaultOperators[operator] && !_revokedDefaultOperators[tokenHolder][operator]) ||
            _operators[tokenHolder][operator];
    }

    /**
     * @dev See {IERC777-authorizeOperator}.
     */
    function authorizeOperator(address operator) public virtual override {
        require(_msgSender() != operator, "ERC777: authorizing self as operator");

        if (_defaultOperators[operator]) {
            delete _revokedDefaultOperators[_msgSender()][operator];
        } else {
            _operators[_msgSender()][operator] = true;
        }

        emit AuthorizedOperator(operator, _msgSender());
    }

    /**
     * @dev See {IERC777-revokeOperator}.
     */
    function revokeOperator(address operator) public virtual override {
        require(operator != _msgSender(), "ERC777: revoking self as operator");

        if (_defaultOperators[operator]) {
            _revokedDefaultOperators[_msgSender()][operator] = true;
        } else {
            delete _operators[_msgSender()][operator];
        }

        emit RevokedOperator(operator, _msgSender());
    }

    /**
     * @dev See {IERC777-defaultOperators}.
     */
    function defaultOperators() public view virtual override returns (address[] memory) {
        return _defaultOperatorsArray;
    }

    /**
     * @dev See {IERC777-operatorSend}.
     *
     * Emits {Sent} and {IERC20-Transfer} events.
     */
    function operatorSend(
        address sender,
        address recipient,
        uint256 amount,
        bytes memory data,
        bytes memory operatorData
    ) public virtual override {
        require(isOperatorFor(_msgSender(), sender), "ERC777: caller is not an operator for holder");
        _send(sender, recipient, amount, data, operatorData, true);
    }

    /**
     * @dev See {IERC777-operatorBurn}.
     *
     * Emits {Burned} and {IERC20-Transfer} events.
     */
    function operatorBurn(
        address account,
        uint256 amount,
        bytes memory data,
        bytes memory operatorData
    ) public virtual override {
        require(isOperatorFor(_msgSender(), account), "ERC777: caller is not an operator for holder");
        _burn(account, amount, data, operatorData);
    }

    /**
     * @dev See {IERC20-allowance}.
     *
     * Note that operator and allowance concepts are orthogonal: operators may
     * not have allowance, and accounts with allowance may not be operators
     * themselves.
     */
    function allowance(address holder, address spender) public view virtual override returns (uint256) {
        return _allowances[holder][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Note that accounts cannot have allowance issued by their operators.
     */
    function approve(address spender, uint256 value) public virtual override returns (bool) {
        address holder = _msgSender();
        _approve(holder, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Note that operator and allowance concepts are orthogonal: operators cannot
     * call `transferFrom` (unless they have allowance), and accounts with
     * allowance cannot call `operatorSend` (unless they are operators).
     *
     * Emits {Sent}, {IERC20-Transfer} and {IERC20-Approval} events.
     */
    function transferFrom(address holder, address recipient, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(holder, spender, amount);
        _send(holder, recipient, amount, "", "", false);
        return true;
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * If a send hook is registered for `account`, the corresponding function
     * will be called with the caller address as the `operator` and with
     * `userData` and `operatorData`.
     *
     * See {IERC777Sender} and {IERC777Recipient}.
     *
     * Emits {Minted} and {IERC20-Transfer} events.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - if `account` is a contract, it must implement the {IERC777Recipient}
     * interface.
     */
    function _mint(address account, uint256 amount, bytes memory userData, bytes memory operatorData) internal virtual {
        _mint(account, amount, userData, operatorData, true);
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * If `requireReceptionAck` is set to true, and if a send hook is
     * registered for `account`, the corresponding function will be called with
     * `operator`, `data` and `operatorData`.
     *
     * See {IERC777Sender} and {IERC777Recipient}.
     *
     * Emits {Minted} and {IERC20-Transfer} events.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - if `account` is a contract, it must implement the {IERC777Recipient}
     * interface.
     */
    function _mint(
        address account,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    ) internal virtual {
        require(account != address(0), "ERC777: mint to the zero address");

        address operator = _msgSender();

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

        // Update state variables
        _totalSupply += amount;
        _balances[account] += amount;

        _callTokensReceived(operator, address(0), account, amount, userData, operatorData, requireReceptionAck);

        emit Minted(operator, account, amount, userData, operatorData);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Send tokens
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient
     */
    function _send(
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    ) internal virtual {
        require(from != address(0), "ERC777: transfer from the zero address");
        require(to != address(0), "ERC777: transfer to the zero address");

        address operator = _msgSender();

        _callTokensToSend(operator, from, to, amount, userData, operatorData);

        _move(operator, from, to, amount, userData, operatorData);

        _callTokensReceived(operator, from, to, amount, userData, operatorData, requireReceptionAck);
    }

    /**
     * @dev Burn tokens
     * @param from address token holder address
     * @param amount uint256 amount of tokens to burn
     * @param data bytes extra information provided by the token holder
     * @param operatorData bytes extra information provided by the operator (if any)
     */
    function _burn(address from, uint256 amount, bytes memory data, bytes memory operatorData) internal virtual {
        require(from != address(0), "ERC777: burn from the zero address");

        address operator = _msgSender();

        _callTokensToSend(operator, from, address(0), amount, data, operatorData);

        _beforeTokenTransfer(operator, from, address(0), amount);

        // Update state variables
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC777: burn amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _totalSupply -= amount;

        emit Burned(operator, from, amount, data, operatorData);
        emit Transfer(from, address(0), amount);
    }

    function _move(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    ) private {
        _beforeTokenTransfer(operator, from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC777: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Sent(operator, from, to, amount, userData, operatorData);
        emit Transfer(from, to, amount);
    }

    /**
     * @dev See {ERC20-_approve}.
     *
     * Note that accounts cannot have allowance issued by their operators.
     */
    function _approve(address holder, address spender, uint256 value) internal virtual {
        require(holder != address(0), "ERC777: approve from the zero address");
        require(spender != address(0), "ERC777: approve to the zero address");

        _allowances[holder][spender] = value;
        emit Approval(holder, spender, value);
    }

    /**
     * @dev Call from.tokensToSend() if the interface is registered
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     */
    function _callTokensToSend(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    ) private {
        address implementer = _ERC1820_REGISTRY.getInterfaceImplementer(from, _TOKENS_SENDER_INTERFACE_HASH);
        if (implementer != address(0)) {
            IERC777Sender(implementer).tokensToSend(operator, from, to, amount, userData, operatorData);
        }
    }

    /**
     * @dev Call to.tokensReceived() if the interface is registered. Reverts if the recipient is a contract but
     * tokensReceived() was not registered for the recipient
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient
     */
    function _callTokensReceived(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    ) private {
        address implementer = _ERC1820_REGISTRY.getInterfaceImplementer(to, _TOKENS_RECIPIENT_INTERFACE_HASH);
        if (implementer != address(0)) {
            IERC777Recipient(implementer).tokensReceived(operator, from, to, amount, userData, operatorData);
        } else if (requireReceptionAck) {
            require(!to.isContract(), "ERC777: token recipient contract has no implementer for ERC777TokensRecipient");
        }
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes
     * calls to {send}, {transfer}, {operatorSend}, {transferFrom}, 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 operator, address from, address to, uint256 amount) internal virtual {}
}

File 4 of 9 : IERC777.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC777/IERC777.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC777Token standard as defined in the EIP.
 *
 * This contract uses the
 * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 registry standard] to let
 * token holders and recipients react to token movements by using setting implementers
 * for the associated interfaces in said registry. See {IERC1820Registry} and
 * {ERC1820Implementer}.
 */
interface IERC777 {
    /**
     * @dev Emitted when `amount` tokens are created by `operator` and assigned to `to`.
     *
     * Note that some additional user `data` and `operatorData` can be logged in the event.
     */
    event Minted(address indexed operator, address indexed to, uint256 amount, bytes data, bytes operatorData);

    /**
     * @dev Emitted when `operator` destroys `amount` tokens from `account`.
     *
     * Note that some additional user `data` and `operatorData` can be logged in the event.
     */
    event Burned(address indexed operator, address indexed from, uint256 amount, bytes data, bytes operatorData);

    /**
     * @dev Emitted when `operator` is made operator for `tokenHolder`.
     */
    event AuthorizedOperator(address indexed operator, address indexed tokenHolder);

    /**
     * @dev Emitted when `operator` is revoked its operator status for `tokenHolder`.
     */
    event RevokedOperator(address indexed operator, address indexed tokenHolder);

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the smallest part of the token that is not divisible. This
     * means all token operations (creation, movement and destruction) must have
     * amounts that are a multiple of this number.
     *
     * For most token contracts, this value will equal 1.
     */
    function granularity() external view returns (uint256);

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * If send or receive hooks are registered for the caller and `recipient`,
     * the corresponding functions will be called with `data` and empty
     * `operatorData`. See {IERC777Sender} and {IERC777Recipient}.
     *
     * Emits a {Sent} event.
     *
     * Requirements
     *
     * - the caller must have at least `amount` tokens.
     * - `recipient` cannot be the zero address.
     * - if `recipient` is a contract, it must implement the {IERC777Recipient}
     * interface.
     */
    function send(address recipient, uint256 amount, bytes calldata data) external;

    /**
     * @dev Destroys `amount` tokens from the caller's account, reducing the
     * total supply.
     *
     * If a send hook is registered for the caller, the corresponding function
     * will be called with `data` and empty `operatorData`. See {IERC777Sender}.
     *
     * Emits a {Burned} event.
     *
     * Requirements
     *
     * - the caller must have at least `amount` tokens.
     */
    function burn(uint256 amount, bytes calldata data) external;

    /**
     * @dev Returns true if an account is an operator of `tokenHolder`.
     * Operators can send and burn tokens on behalf of their owners. All
     * accounts are their own operator.
     *
     * See {operatorSend} and {operatorBurn}.
     */
    function isOperatorFor(address operator, address tokenHolder) external view returns (bool);

    /**
     * @dev Make an account an operator of the caller.
     *
     * See {isOperatorFor}.
     *
     * Emits an {AuthorizedOperator} event.
     *
     * Requirements
     *
     * - `operator` cannot be calling address.
     */
    function authorizeOperator(address operator) external;

    /**
     * @dev Revoke an account's operator status for the caller.
     *
     * See {isOperatorFor} and {defaultOperators}.
     *
     * Emits a {RevokedOperator} event.
     *
     * Requirements
     *
     * - `operator` cannot be calling address.
     */
    function revokeOperator(address operator) external;

    /**
     * @dev Returns the list of default operators. These accounts are operators
     * for all token holders, even if {authorizeOperator} was never called on
     * them.
     *
     * This list is immutable, but individual holders may revoke these via
     * {revokeOperator}, in which case {isOperatorFor} will return false.
     */
    function defaultOperators() external view returns (address[] memory);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient`. The caller must
     * be an operator of `sender`.
     *
     * If send or receive hooks are registered for `sender` and `recipient`,
     * the corresponding functions will be called with `data` and
     * `operatorData`. See {IERC777Sender} and {IERC777Recipient}.
     *
     * Emits a {Sent} event.
     *
     * Requirements
     *
     * - `sender` cannot be the zero address.
     * - `sender` must have at least `amount` tokens.
     * - the caller must be an operator for `sender`.
     * - `recipient` cannot be the zero address.
     * - if `recipient` is a contract, it must implement the {IERC777Recipient}
     * interface.
     */
    function operatorSend(
        address sender,
        address recipient,
        uint256 amount,
        bytes calldata data,
        bytes calldata operatorData
    ) external;

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the total supply.
     * The caller must be an operator of `account`.
     *
     * If a send hook is registered for `account`, the corresponding function
     * will be called with `data` and `operatorData`. See {IERC777Sender}.
     *
     * Emits a {Burned} event.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     * - the caller must be an operator for `account`.
     */
    function operatorBurn(address account, uint256 amount, bytes calldata data, bytes calldata operatorData) external;

    event Sent(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256 amount,
        bytes data,
        bytes operatorData
    );
}

File 5 of 9 : IERC777Recipient.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC777/IERC777Recipient.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC777TokensRecipient standard as defined in the EIP.
 *
 * Accounts can be notified of {IERC777} tokens being sent to them by having a
 * contract implement this interface (contract holders can be their own
 * implementer) and registering it on the
 * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 global registry].
 *
 * See {IERC1820Registry} and {ERC1820Implementer}.
 */
interface IERC777Recipient {
    /**
     * @dev Called by an {IERC777} token contract whenever tokens are being
     * moved or created into a registered account (`to`). The type of operation
     * is conveyed by `from` being the zero address or not.
     *
     * This call occurs _after_ the token contract's state is updated, so
     * {IERC777-balanceOf}, etc., can be used to query the post-operation state.
     *
     * This function may revert to prevent the operation from being executed.
     */
    function tokensReceived(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes calldata userData,
        bytes calldata operatorData
    ) external;
}

File 6 of 9 : IERC777Sender.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC777/IERC777Sender.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC777TokensSender standard as defined in the EIP.
 *
 * {IERC777} Token holders can be notified of operations performed on their
 * tokens by having a contract implement this interface (contract holders can be
 * their own implementer) and registering it on the
 * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 global registry].
 *
 * See {IERC1820Registry} and {ERC1820Implementer}.
 */
interface IERC777Sender {
    /**
     * @dev Called by an {IERC777} token contract whenever a registered holder's
     * (`from`) tokens are about to be moved or destroyed. The type of operation
     * is conveyed by `to` being the zero address or not.
     *
     * This call occurs _before_ the token contract's state is updated, so
     * {IERC777-balanceOf}, etc., can be used to query the pre-operation state.
     *
     * This function may revert to prevent the operation from being executed.
     */
    function tokensToSend(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes calldata userData,
        bytes calldata operatorData
    ) external;
}

File 7 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 8 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 9 of 9 : IERC1820Registry.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/introspection/IERC1820Registry.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the global ERC1820 Registry, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1820[EIP]. Accounts may register
 * implementers for interfaces in this registry, as well as query support.
 *
 * Implementers may be shared by multiple accounts, and can also implement more
 * than a single interface for each account. Contracts can implement interfaces
 * for themselves, but externally-owned accounts (EOA) must delegate this to a
 * contract.
 *
 * {IERC165} interfaces can also be queried via the registry.
 *
 * For an in-depth explanation and source code analysis, see the EIP text.
 */
interface IERC1820Registry {
    event InterfaceImplementerSet(address indexed account, bytes32 indexed interfaceHash, address indexed implementer);

    event ManagerChanged(address indexed account, address indexed newManager);

    /**
     * @dev Sets `newManager` as the manager for `account`. A manager of an
     * account is able to set interface implementers for it.
     *
     * By default, each account is its own manager. Passing a value of `0x0` in
     * `newManager` will reset the manager to this initial state.
     *
     * Emits a {ManagerChanged} event.
     *
     * Requirements:
     *
     * - the caller must be the current manager for `account`.
     */
    function setManager(address account, address newManager) external;

    /**
     * @dev Returns the manager for `account`.
     *
     * See {setManager}.
     */
    function getManager(address account) external view returns (address);

    /**
     * @dev Sets the `implementer` contract as ``account``'s implementer for
     * `interfaceHash`.
     *
     * `account` being the zero address is an alias for the caller's address.
     * The zero address can also be used in `implementer` to remove an old one.
     *
     * See {interfaceHash} to learn how these are created.
     *
     * Emits an {InterfaceImplementerSet} event.
     *
     * Requirements:
     *
     * - the caller must be the current manager for `account`.
     * - `interfaceHash` must not be an {IERC165} interface id (i.e. it must not
     * end in 28 zeroes).
     * - `implementer` must implement {IERC1820Implementer} and return true when
     * queried for support, unless `implementer` is the caller. See
     * {IERC1820Implementer-canImplementInterfaceForAddress}.
     */
    function setInterfaceImplementer(address account, bytes32 _interfaceHash, address implementer) external;

    /**
     * @dev Returns the implementer of `interfaceHash` for `account`. If no such
     * implementer is registered, returns the zero address.
     *
     * If `interfaceHash` is an {IERC165} interface id (i.e. it ends with 28
     * zeroes), `account` will be queried for support of it.
     *
     * `account` being the zero address is an alias for the caller's address.
     */
    function getInterfaceImplementer(address account, bytes32 _interfaceHash) external view returns (address);

    /**
     * @dev Returns the interface hash for an `interfaceName`, as defined in the
     * corresponding
     * https://eips.ethereum.org/EIPS/eip-1820#interface-name[section of the EIP].
     */
    function interfaceHash(string calldata interfaceName) external pure returns (bytes32);

    /**
     * @notice Updates the cache with whether the contract implements an ERC165 interface or not.
     * @param account Address of the contract for which to update the cache.
     * @param interfaceId ERC165 interface for which to update the cache.
     */
    function updateERC165Cache(address account, bytes4 interfaceId) external;

    /**
     * @notice Checks whether a contract implements an ERC165 interface or not.
     * If the result is not cached a direct lookup on the contract address is performed.
     * If the result is not cached or the cached value is out-of-date, the cache MUST be updated manually by calling
     * {updateERC165Cache} with the contract address.
     * @param account Address of the contract to check.
     * @param interfaceId ERC165 interface to check.
     * @return True if `account` implements `interfaceId`, false otherwise.
     */
    function implementsERC165Interface(address account, bytes4 interfaceId) external view returns (bool);

    /**
     * @notice Checks whether a contract implements an ERC165 interface or not without using or updating the cache.
     * @param account Address of the contract to check.
     * @param interfaceId ERC165 interface to check.
     * @return True if `account` implements `interfaceId`, false otherwise.
     */
    function implementsERC165InterfaceNoCache(address account, bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address[]","name":"defaultOperators","type":"address[]"}],"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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"tokenHolder","type":"address"}],"name":"AuthorizedOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"tokenHolder","type":"address"}],"name":"RevokedOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Sent","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":"holder","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"authorizeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenHolder","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"defaultOperators","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"granularity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"tokenHolder","type":"address"}],"name":"isOperatorFor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"operatorBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"operatorSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"revokeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"send","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":"holder","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"}]

60806040523480156200001157600080fd5b5060405162003ca538038062003ca5833981810160405281019062000037919062000a1f565b6040518060400160405280600381526020017f59756d00000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f59554d0000000000000000000000000000000000000000000000000000000000815250828260029081620000b5919062000cc6565b508160039081620000c7919062000cc6565b508060049080519060200190620000e092919062000748565b5060005b815181101562000171576001600560008484815181106200010a576200010962000dad565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080600101915050620000e4565b50731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff166329965a1d307fac7fbab5f54a3ca8194167523c6753bfeb96a445279294b6125b68cce2177054306040518463ffffffff1660e01b8152600401620001e59392919062000e08565b600060405180830381600087803b1580156200020057600080fd5b505af115801562000215573d6000803e3d6000fd5b50505050731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff166329965a1d307faea199e31a596269b42cdafd93407f14436db6e4cad65417994c2eb37381e05a306040518463ffffffff1660e01b81526004016200028c9392919062000e08565b600060405180830381600087803b158015620002a757600080fd5b505af1158015620002bc573d6000803e3d6000fd5b505050505050506200030a33670de0b6b3a764000084620002de919062000e74565b60405180602001604052806000815250604051806020016040528060008152506200031260201b60201c565b505062001217565b620003288484848460016200032e60201b60201c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603620003a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003979062000f20565b60405180910390fd5b6000620003b26200052e60201b60201c565b9050620003c981600088886200053660201b60201c565b8460016000828254620003dd919062000f42565b92505081905550846000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000434919062000f42565b925050819055506200045381600088888888886200053c60201b60201c565b8573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d878787604051620004b69392919062001017565b60405180910390a38573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516200051e919062001062565b60405180910390a3505050505050565b600033905090565b50505050565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca877fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b6040518363ffffffff1660e01b8152600401620005af9291906200107f565b602060405180830381865afa158015620005cd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005f39190620010ac565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614620006a8578073ffffffffffffffffffffffffffffffffffffffff166223de298989898989896040518763ffffffff1660e01b81526004016200066e96959493929190620010de565b600060405180830381600087803b1580156200068957600080fd5b505af11580156200069e573d6000803e3d6000fd5b505050506200071b565b81156200071a57620006d68673ffffffffffffffffffffffffffffffffffffffff166200072560201b60201c565b1562000719576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071090620011f5565b60405180910390fd5b5b5b5050505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054828255906000526020600020908101928215620007c4579160200282015b82811115620007c35782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000769565b5b509050620007d39190620007d7565b5090565b5b80821115620007f2576000816000905550600101620007d8565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6200081f816200080a565b81146200082b57600080fd5b50565b6000815190506200083f8162000814565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000895826200084a565b810181811067ffffffffffffffff82111715620008b757620008b66200085b565b5b80604052505050565b6000620008cc620007f6565b9050620008da82826200088a565b919050565b600067ffffffffffffffff821115620008fd57620008fc6200085b565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009408262000913565b9050919050565b620009528162000933565b81146200095e57600080fd5b50565b600081519050620009728162000947565b92915050565b60006200098f6200098984620008df565b620008c0565b90508083825260208201905060208402830185811115620009b557620009b46200090e565b5b835b81811015620009e25780620009cd888262000961565b845260208401935050602081019050620009b7565b5050509392505050565b600082601f83011262000a045762000a0362000845565b5b815162000a1684826020860162000978565b91505092915050565b6000806040838503121562000a395762000a3862000800565b5b600062000a49858286016200082e565b925050602083015167ffffffffffffffff81111562000a6d5762000a6c62000805565b5b62000a7b85828601620009ec565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ad857607f821691505b60208210810362000aee5762000aed62000a90565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b587fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b19565b62000b64868362000b19565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000ba762000ba162000b9b846200080a565b62000b7c565b6200080a565b9050919050565b6000819050919050565b62000bc38362000b86565b62000bdb62000bd28262000bae565b84845462000b26565b825550505050565b600090565b62000bf262000be3565b62000bff81848462000bb8565b505050565b5b8181101562000c275762000c1b60008262000be8565b60018101905062000c05565b5050565b601f82111562000c765762000c408162000af4565b62000c4b8462000b09565b8101602085101562000c5b578190505b62000c7362000c6a8562000b09565b83018262000c04565b50505b505050565b600082821c905092915050565b600062000c9b6000198460080262000c7b565b1980831691505092915050565b600062000cb6838362000c88565b9150826002028217905092915050565b62000cd18262000a85565b67ffffffffffffffff81111562000ced5762000cec6200085b565b5b62000cf9825462000abf565b62000d0682828562000c2b565b600060209050601f83116001811462000d3e576000841562000d29578287015190505b62000d35858262000ca8565b86555062000da5565b601f19841662000d4e8662000af4565b60005b8281101562000d785784890151825560018201915060208501945060208101905062000d51565b8683101562000d98578489015162000d94601f89168262000c88565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b62000de78162000933565b82525050565b6000819050919050565b62000e028162000ded565b82525050565b600060608201905062000e1f600083018662000ddc565b62000e2e602083018562000df7565b62000e3d604083018462000ddc565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e81826200080a565b915062000e8e836200080a565b925082820262000e9e816200080a565b9150828204841483151762000eb85762000eb762000e45565b5b5092915050565b600082825260208201905092915050565b7f4552433737373a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000f0860208362000ebf565b915062000f158262000ed0565b602082019050919050565b6000602082019050818103600083015262000f3b8162000ef9565b9050919050565b600062000f4f826200080a565b915062000f5c836200080a565b925082820190508082111562000f775762000f7662000e45565b5b92915050565b62000f88816200080a565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000fca57808201518184015260208101905062000fad565b60008484015250505050565b600062000fe38262000f8e565b62000fef818562000f99565b93506200100181856020860162000faa565b6200100c816200084a565b840191505092915050565b60006060820190506200102e600083018662000f7d565b818103602083015262001042818562000fd6565b9050818103604083015262001058818462000fd6565b9050949350505050565b600060208201905062001079600083018462000f7d565b92915050565b600060408201905062001096600083018562000ddc565b620010a5602083018462000df7565b9392505050565b600060208284031215620010c557620010c462000800565b5b6000620010d58482850162000961565b91505092915050565b600060c082019050620010f5600083018962000ddc565b62001104602083018862000ddc565b62001113604083018762000ddc565b62001122606083018662000f7d565b818103608083015262001136818562000fd6565b905081810360a08301526200114c818462000fd6565b9050979650505050505050565b7f4552433737373a20746f6b656e20726563697069656e7420636f6e747261637460008201527f20686173206e6f20696d706c656d656e74657220666f7220455243373737546f60208201527f6b656e73526563697069656e7400000000000000000000000000000000000000604082015250565b6000620011dd604d8362000ebf565b9150620011ea8262001159565b606082019050919050565b600060208201905081810360008301526200121081620011ce565b9050919050565b612a7e80620012276000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063959b8c3f116100a2578063d95b637111610071578063d95b6371146102e3578063dd62ed3e14610313578063fad8b32a14610343578063fc673c4f1461035f578063fe9d93031461037b57610116565b8063959b8c3f1461025d57806395d89b41146102795780639bd9bbc614610297578063a9059cbb146102b357610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d5578063556f0dc7146101f357806362ad1b831461021157806370a082311461022d57610116565b806306e485381461011b57806306fdde0314610139578063095ea7b31461015757806318160ddd14610187575b600080fd5b610123610397565b6040516101309190611aaa565b60405180910390f35b610141610425565b60405161014e9190611b5c565b60405180910390f35b610171600480360381019061016c9190611bf4565b6104b7565b60405161017e9190611c4f565b60405180910390f35b61018f6104da565b60405161019c9190611c79565b60405180910390f35b6101bf60048036038101906101ba9190611c94565b6104e4565b6040516101cc9190611c4f565b60405180910390f35b6101dd610535565b6040516101ea9190611d03565b60405180910390f35b6101fb61053e565b6040516102089190611c79565b60405180910390f35b61022b60048036038101906102269190611e53565b610547565b005b61024760048036038101906102429190611f06565b6105ad565b6040516102549190611c79565b60405180910390f35b61027760048036038101906102729190611f06565b6105f5565b005b610281610855565b60405161028e9190611b5c565b60405180910390f35b6102b160048036038101906102ac9190611f33565b6108e7565b005b6102cd60048036038101906102c89190611bf4565b610911565b6040516102da9190611c4f565b60405180910390f35b6102fd60048036038101906102f89190611fa2565b610951565b60405161030a9190611c4f565b60405180910390f35b61032d60048036038101906103289190611fa2565b610b02565b60405161033a9190611c79565b60405180910390f35b61035d60048036038101906103589190611f06565b610b89565b005b61037960048036038101906103749190611fe2565b610de9565b005b61039560048036038101906103909190612081565b610e4b565b005b6060600480548060200260200160405190810160405280929190818152602001828054801561041b57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116103d1575b5050505050905090565b6060600280546104349061210c565b80601f01602080910402602001604051908101604052809291908181526020018280546104609061210c565b80156104ad5780601f10610482576101008083540402835291602001916104ad565b820191906000526020600020905b81548152906001019060200180831161049057829003601f168201915b5050505050905090565b6000806104c2610e71565b90506104cf818585610e79565b600191505092915050565b6000600154905090565b6000806104ef610e71565b90506104fc858285611042565b610529858585604051806020016040528060008152506040518060200160405280600081525060006110ce565b60019150509392505050565b60006012905090565b60006001905090565b610558610552610e71565b86610951565b610597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058e906121af565b60405180910390fd5b6105a6858585858560016110ce565b5050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b8073ffffffffffffffffffffffffffffffffffffffff16610614610e71565b73ffffffffffffffffffffffffffffffffffffffff160361066a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066190612241565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561075457600760006106c8610e71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690556107f1565b600160066000610762610e71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6107f9610e71565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f960405160405180910390a350565b6060600380546108649061210c565b80601f01602080910402602001604051908101604052809291908181526020018280546108909061210c565b80156108dd5780601f106108b2576101008083540402835291602001916108dd565b820191906000526020600020905b8154815290600101906020018083116108c057829003601f168201915b5050505050905090565b61090c6108f2610e71565b8484846040518060200160405280600081525060016110ce565b505050565b600061094761091e610e71565b8484604051806020016040528060008152506040518060200160405280600081525060006110ce565b6001905092915050565b60008173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610a695750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015610a685750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b80610afa5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b905092915050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b91610e71565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf5906122d3565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610cf157600160076000610c5e610e71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610d85565b60066000610cfd610e71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690555b610d8d610e71565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa160405160405180910390a350565b610dfa610df4610e71565b85610951565b610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e30906121af565b60405180910390fd5b610e45848484846111ec565b50505050565b610e6d610e56610e71565b8383604051806020016040528060008152506111ec565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90612365565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e906123f7565b60405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110359190611c79565b60405180910390a3505050565b600061104e8484610b02565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110c857818110156110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190612463565b60405180910390fd5b6110c78484848403610e79565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff160361113d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611134906124f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390612587565b60405180910390fd5b60006111b6610e71565b90506111c681888888888861143e565b6111d48188888888886115a5565b6111e3818888888888886117bf565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290612619565b60405180910390fd5b6000611265610e71565b90506112768186600087878761143e565b6112838186600087611991565b60008060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611300906126ab565b60405180910390fd5b8481036000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550846001600082825461136091906126fa565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a40988787876040516113c893929190612783565b60405180910390a3600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161142e9190611c79565b60405180910390a3505050505050565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca877f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe8956040518363ffffffff1660e01b81526004016114af9291906127f0565b602060405180830381865afa1580156114cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f0919061282e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461159c578073ffffffffffffffffffffffffffffffffffffffff166375ab97828888888888886040518763ffffffff1660e01b81526004016115699695949392919061285b565b600060405180830381600087803b15801561158357600080fd5b505af1158015611597573d6000803e3d6000fd5b505050505b50505050505050565b6115b186868686611991565b60008060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e9061293c565b60405180910390fd5b8381036000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ca919061295c565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc8261467798787878760405161174993929190612783565b60405180910390a48473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516117ae9190611c79565b60405180910390a350505050505050565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca877fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b6040518363ffffffff1660e01b81526004016118309291906127f0565b602060405180830381865afa15801561184d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611871919061282e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611920578073ffffffffffffffffffffffffffffffffffffffff166223de298989898989896040518763ffffffff1660e01b81526004016118e99695949392919061285b565b600060405180830381600087803b15801561190357600080fd5b505af1158015611917573d6000803e3d6000fd5b50505050611987565b8115611986576119458673ffffffffffffffffffffffffffffffffffffffff16611997565b15611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90612a28565b60405180910390fd5b5b5b5050505050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a11826119e6565b9050919050565b611a2181611a06565b82525050565b6000611a338383611a18565b60208301905092915050565b6000602082019050919050565b6000611a57826119ba565b611a6181856119c5565b9350611a6c836119d6565b8060005b83811015611a9d578151611a848882611a27565b9750611a8f83611a3f565b925050600181019050611a70565b5085935050505092915050565b60006020820190508181036000830152611ac48184611a4c565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b06578082015181840152602081019050611aeb565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b2e82611acc565b611b388185611ad7565b9350611b48818560208601611ae8565b611b5181611b12565b840191505092915050565b60006020820190508181036000830152611b768184611b23565b905092915050565b6000604051905090565b600080fd5b600080fd5b611b9b81611a06565b8114611ba657600080fd5b50565b600081359050611bb881611b92565b92915050565b6000819050919050565b611bd181611bbe565b8114611bdc57600080fd5b50565b600081359050611bee81611bc8565b92915050565b60008060408385031215611c0b57611c0a611b88565b5b6000611c1985828601611ba9565b9250506020611c2a85828601611bdf565b9150509250929050565b60008115159050919050565b611c4981611c34565b82525050565b6000602082019050611c646000830184611c40565b92915050565b611c7381611bbe565b82525050565b6000602082019050611c8e6000830184611c6a565b92915050565b600080600060608486031215611cad57611cac611b88565b5b6000611cbb86828701611ba9565b9350506020611ccc86828701611ba9565b9250506040611cdd86828701611bdf565b9150509250925092565b600060ff82169050919050565b611cfd81611ce7565b82525050565b6000602082019050611d186000830184611cf4565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d6082611b12565b810181811067ffffffffffffffff82111715611d7f57611d7e611d28565b5b80604052505050565b6000611d92611b7e565b9050611d9e8282611d57565b919050565b600067ffffffffffffffff821115611dbe57611dbd611d28565b5b611dc782611b12565b9050602081019050919050565b82818337600083830152505050565b6000611df6611df184611da3565b611d88565b905082815260208101848484011115611e1257611e11611d23565b5b611e1d848285611dd4565b509392505050565b600082601f830112611e3a57611e39611d1e565b5b8135611e4a848260208601611de3565b91505092915050565b600080600080600060a08688031215611e6f57611e6e611b88565b5b6000611e7d88828901611ba9565b9550506020611e8e88828901611ba9565b9450506040611e9f88828901611bdf565b935050606086013567ffffffffffffffff811115611ec057611ebf611b8d565b5b611ecc88828901611e25565b925050608086013567ffffffffffffffff811115611eed57611eec611b8d565b5b611ef988828901611e25565b9150509295509295909350565b600060208284031215611f1c57611f1b611b88565b5b6000611f2a84828501611ba9565b91505092915050565b600080600060608486031215611f4c57611f4b611b88565b5b6000611f5a86828701611ba9565b9350506020611f6b86828701611bdf565b925050604084013567ffffffffffffffff811115611f8c57611f8b611b8d565b5b611f9886828701611e25565b9150509250925092565b60008060408385031215611fb957611fb8611b88565b5b6000611fc785828601611ba9565b9250506020611fd885828601611ba9565b9150509250929050565b60008060008060808587031215611ffc57611ffb611b88565b5b600061200a87828801611ba9565b945050602061201b87828801611bdf565b935050604085013567ffffffffffffffff81111561203c5761203b611b8d565b5b61204887828801611e25565b925050606085013567ffffffffffffffff81111561206957612068611b8d565b5b61207587828801611e25565b91505092959194509250565b6000806040838503121561209857612097611b88565b5b60006120a685828601611bdf565b925050602083013567ffffffffffffffff8111156120c7576120c6611b8d565b5b6120d385828601611e25565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061212457607f821691505b602082108103612137576121366120dd565b5b50919050565b7f4552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f60008201527f7220666f7220686f6c6465720000000000000000000000000000000000000000602082015250565b6000612199602c83611ad7565b91506121a48261213d565b604082019050919050565b600060208201905081810360008301526121c88161218c565b9050919050565b7f4552433737373a20617574686f72697a696e672073656c66206173206f70657260008201527f61746f7200000000000000000000000000000000000000000000000000000000602082015250565b600061222b602483611ad7565b9150612236826121cf565b604082019050919050565b6000602082019050818103600083015261225a8161221e565b9050919050565b7f4552433737373a207265766f6b696e672073656c66206173206f70657261746f60008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006122bd602183611ad7565b91506122c882612261565b604082019050919050565b600060208201905081810360008301526122ec816122b0565b9050919050565b7f4552433737373a20617070726f76652066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061234f602583611ad7565b915061235a826122f3565b604082019050919050565b6000602082019050818103600083015261237e81612342565b9050919050565b7f4552433737373a20617070726f766520746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006123e1602383611ad7565b91506123ec82612385565b604082019050919050565b60006020820190508181036000830152612410816123d4565b9050919050565b7f4552433737373a20696e73756666696369656e7420616c6c6f77616e63650000600082015250565b600061244d601e83611ad7565b915061245882612417565b602082019050919050565b6000602082019050818103600083015261247c81612440565b9050919050565b7f4552433737373a207472616e736665722066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006124df602683611ad7565b91506124ea82612483565b604082019050919050565b6000602082019050818103600083015261250e816124d2565b9050919050565b7f4552433737373a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612571602483611ad7565b915061257c82612515565b604082019050919050565b600060208201905081810360008301526125a081612564565b9050919050565b7f4552433737373a206275726e2066726f6d20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612603602283611ad7565b915061260e826125a7565b604082019050919050565b60006020820190508181036000830152612632816125f6565b9050919050565b7f4552433737373a206275726e20616d6f756e7420657863656564732062616c6160008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612695602383611ad7565b91506126a082612639565b604082019050919050565b600060208201905081810360008301526126c481612688565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061270582611bbe565b915061271083611bbe565b9250828203905081811115612728576127276126cb565b5b92915050565b600081519050919050565b600082825260208201905092915050565b60006127558261272e565b61275f8185612739565b935061276f818560208601611ae8565b61277881611b12565b840191505092915050565b60006060820190506127986000830186611c6a565b81810360208301526127aa818561274a565b905081810360408301526127be818461274a565b9050949350505050565b6127d181611a06565b82525050565b6000819050919050565b6127ea816127d7565b82525050565b600060408201905061280560008301856127c8565b61281260208301846127e1565b9392505050565b60008151905061282881611b92565b92915050565b60006020828403121561284457612843611b88565b5b600061285284828501612819565b91505092915050565b600060c08201905061287060008301896127c8565b61287d60208301886127c8565b61288a60408301876127c8565b6128976060830186611c6a565b81810360808301526128a9818561274a565b905081810360a08301526128bd818461274a565b9050979650505050505050565b7f4552433737373a207472616e7366657220616d6f756e7420657863656564732060008201527f62616c616e636500000000000000000000000000000000000000000000000000602082015250565b6000612926602783611ad7565b9150612931826128ca565b604082019050919050565b6000602082019050818103600083015261295581612919565b9050919050565b600061296782611bbe565b915061297283611bbe565b925082820190508082111561298a576129896126cb565b5b92915050565b7f4552433737373a20746f6b656e20726563697069656e7420636f6e747261637460008201527f20686173206e6f20696d706c656d656e74657220666f7220455243373737546f60208201527f6b656e73526563697069656e7400000000000000000000000000000000000000604082015250565b6000612a12604d83611ad7565b9150612a1d82612990565b606082019050919050565b60006020820190508181036000830152612a4181612a05565b905091905056fea2646970667358221220754d6bd422bbdcd5c2b2a1688f0bb88fdbdd1a751cb599b68032986428dbe5ee64736f6c634300081800330000000000000000000000000000000000000000000000000000000005f5e10000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063959b8c3f116100a2578063d95b637111610071578063d95b6371146102e3578063dd62ed3e14610313578063fad8b32a14610343578063fc673c4f1461035f578063fe9d93031461037b57610116565b8063959b8c3f1461025d57806395d89b41146102795780639bd9bbc614610297578063a9059cbb146102b357610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d5578063556f0dc7146101f357806362ad1b831461021157806370a082311461022d57610116565b806306e485381461011b57806306fdde0314610139578063095ea7b31461015757806318160ddd14610187575b600080fd5b610123610397565b6040516101309190611aaa565b60405180910390f35b610141610425565b60405161014e9190611b5c565b60405180910390f35b610171600480360381019061016c9190611bf4565b6104b7565b60405161017e9190611c4f565b60405180910390f35b61018f6104da565b60405161019c9190611c79565b60405180910390f35b6101bf60048036038101906101ba9190611c94565b6104e4565b6040516101cc9190611c4f565b60405180910390f35b6101dd610535565b6040516101ea9190611d03565b60405180910390f35b6101fb61053e565b6040516102089190611c79565b60405180910390f35b61022b60048036038101906102269190611e53565b610547565b005b61024760048036038101906102429190611f06565b6105ad565b6040516102549190611c79565b60405180910390f35b61027760048036038101906102729190611f06565b6105f5565b005b610281610855565b60405161028e9190611b5c565b60405180910390f35b6102b160048036038101906102ac9190611f33565b6108e7565b005b6102cd60048036038101906102c89190611bf4565b610911565b6040516102da9190611c4f565b60405180910390f35b6102fd60048036038101906102f89190611fa2565b610951565b60405161030a9190611c4f565b60405180910390f35b61032d60048036038101906103289190611fa2565b610b02565b60405161033a9190611c79565b60405180910390f35b61035d60048036038101906103589190611f06565b610b89565b005b61037960048036038101906103749190611fe2565b610de9565b005b61039560048036038101906103909190612081565b610e4b565b005b6060600480548060200260200160405190810160405280929190818152602001828054801561041b57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116103d1575b5050505050905090565b6060600280546104349061210c565b80601f01602080910402602001604051908101604052809291908181526020018280546104609061210c565b80156104ad5780601f10610482576101008083540402835291602001916104ad565b820191906000526020600020905b81548152906001019060200180831161049057829003601f168201915b5050505050905090565b6000806104c2610e71565b90506104cf818585610e79565b600191505092915050565b6000600154905090565b6000806104ef610e71565b90506104fc858285611042565b610529858585604051806020016040528060008152506040518060200160405280600081525060006110ce565b60019150509392505050565b60006012905090565b60006001905090565b610558610552610e71565b86610951565b610597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058e906121af565b60405180910390fd5b6105a6858585858560016110ce565b5050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b8073ffffffffffffffffffffffffffffffffffffffff16610614610e71565b73ffffffffffffffffffffffffffffffffffffffff160361066a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066190612241565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561075457600760006106c8610e71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690556107f1565b600160066000610762610e71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6107f9610e71565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f960405160405180910390a350565b6060600380546108649061210c565b80601f01602080910402602001604051908101604052809291908181526020018280546108909061210c565b80156108dd5780601f106108b2576101008083540402835291602001916108dd565b820191906000526020600020905b8154815290600101906020018083116108c057829003601f168201915b5050505050905090565b61090c6108f2610e71565b8484846040518060200160405280600081525060016110ce565b505050565b600061094761091e610e71565b8484604051806020016040528060008152506040518060200160405280600081525060006110ce565b6001905092915050565b60008173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610a695750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015610a685750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b80610afa5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b905092915050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b91610e71565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf5906122d3565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610cf157600160076000610c5e610e71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610d85565b60066000610cfd610e71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690555b610d8d610e71565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa160405160405180910390a350565b610dfa610df4610e71565b85610951565b610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e30906121af565b60405180910390fd5b610e45848484846111ec565b50505050565b610e6d610e56610e71565b8383604051806020016040528060008152506111ec565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90612365565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e906123f7565b60405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110359190611c79565b60405180910390a3505050565b600061104e8484610b02565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110c857818110156110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190612463565b60405180910390fd5b6110c78484848403610e79565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff160361113d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611134906124f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390612587565b60405180910390fd5b60006111b6610e71565b90506111c681888888888861143e565b6111d48188888888886115a5565b6111e3818888888888886117bf565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290612619565b60405180910390fd5b6000611265610e71565b90506112768186600087878761143e565b6112838186600087611991565b60008060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611300906126ab565b60405180910390fd5b8481036000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550846001600082825461136091906126fa565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a40988787876040516113c893929190612783565b60405180910390a3600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405161142e9190611c79565b60405180910390a3505050505050565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca877f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe8956040518363ffffffff1660e01b81526004016114af9291906127f0565b602060405180830381865afa1580156114cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f0919061282e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461159c578073ffffffffffffffffffffffffffffffffffffffff166375ab97828888888888886040518763ffffffff1660e01b81526004016115699695949392919061285b565b600060405180830381600087803b15801561158357600080fd5b505af1158015611597573d6000803e3d6000fd5b505050505b50505050505050565b6115b186868686611991565b60008060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e9061293c565b60405180910390fd5b8381036000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ca919061295c565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc8261467798787878760405161174993929190612783565b60405180910390a48473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516117ae9190611c79565b60405180910390a350505050505050565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca877fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b6040518363ffffffff1660e01b81526004016118309291906127f0565b602060405180830381865afa15801561184d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611871919061282e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611920578073ffffffffffffffffffffffffffffffffffffffff166223de298989898989896040518763ffffffff1660e01b81526004016118e99695949392919061285b565b600060405180830381600087803b15801561190357600080fd5b505af1158015611917573d6000803e3d6000fd5b50505050611987565b8115611986576119458673ffffffffffffffffffffffffffffffffffffffff16611997565b15611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c90612a28565b60405180910390fd5b5b5b5050505050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a11826119e6565b9050919050565b611a2181611a06565b82525050565b6000611a338383611a18565b60208301905092915050565b6000602082019050919050565b6000611a57826119ba565b611a6181856119c5565b9350611a6c836119d6565b8060005b83811015611a9d578151611a848882611a27565b9750611a8f83611a3f565b925050600181019050611a70565b5085935050505092915050565b60006020820190508181036000830152611ac48184611a4c565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b06578082015181840152602081019050611aeb565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b2e82611acc565b611b388185611ad7565b9350611b48818560208601611ae8565b611b5181611b12565b840191505092915050565b60006020820190508181036000830152611b768184611b23565b905092915050565b6000604051905090565b600080fd5b600080fd5b611b9b81611a06565b8114611ba657600080fd5b50565b600081359050611bb881611b92565b92915050565b6000819050919050565b611bd181611bbe565b8114611bdc57600080fd5b50565b600081359050611bee81611bc8565b92915050565b60008060408385031215611c0b57611c0a611b88565b5b6000611c1985828601611ba9565b9250506020611c2a85828601611bdf565b9150509250929050565b60008115159050919050565b611c4981611c34565b82525050565b6000602082019050611c646000830184611c40565b92915050565b611c7381611bbe565b82525050565b6000602082019050611c8e6000830184611c6a565b92915050565b600080600060608486031215611cad57611cac611b88565b5b6000611cbb86828701611ba9565b9350506020611ccc86828701611ba9565b9250506040611cdd86828701611bdf565b9150509250925092565b600060ff82169050919050565b611cfd81611ce7565b82525050565b6000602082019050611d186000830184611cf4565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d6082611b12565b810181811067ffffffffffffffff82111715611d7f57611d7e611d28565b5b80604052505050565b6000611d92611b7e565b9050611d9e8282611d57565b919050565b600067ffffffffffffffff821115611dbe57611dbd611d28565b5b611dc782611b12565b9050602081019050919050565b82818337600083830152505050565b6000611df6611df184611da3565b611d88565b905082815260208101848484011115611e1257611e11611d23565b5b611e1d848285611dd4565b509392505050565b600082601f830112611e3a57611e39611d1e565b5b8135611e4a848260208601611de3565b91505092915050565b600080600080600060a08688031215611e6f57611e6e611b88565b5b6000611e7d88828901611ba9565b9550506020611e8e88828901611ba9565b9450506040611e9f88828901611bdf565b935050606086013567ffffffffffffffff811115611ec057611ebf611b8d565b5b611ecc88828901611e25565b925050608086013567ffffffffffffffff811115611eed57611eec611b8d565b5b611ef988828901611e25565b9150509295509295909350565b600060208284031215611f1c57611f1b611b88565b5b6000611f2a84828501611ba9565b91505092915050565b600080600060608486031215611f4c57611f4b611b88565b5b6000611f5a86828701611ba9565b9350506020611f6b86828701611bdf565b925050604084013567ffffffffffffffff811115611f8c57611f8b611b8d565b5b611f9886828701611e25565b9150509250925092565b60008060408385031215611fb957611fb8611b88565b5b6000611fc785828601611ba9565b9250506020611fd885828601611ba9565b9150509250929050565b60008060008060808587031215611ffc57611ffb611b88565b5b600061200a87828801611ba9565b945050602061201b87828801611bdf565b935050604085013567ffffffffffffffff81111561203c5761203b611b8d565b5b61204887828801611e25565b925050606085013567ffffffffffffffff81111561206957612068611b8d565b5b61207587828801611e25565b91505092959194509250565b6000806040838503121561209857612097611b88565b5b60006120a685828601611bdf565b925050602083013567ffffffffffffffff8111156120c7576120c6611b8d565b5b6120d385828601611e25565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061212457607f821691505b602082108103612137576121366120dd565b5b50919050565b7f4552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f60008201527f7220666f7220686f6c6465720000000000000000000000000000000000000000602082015250565b6000612199602c83611ad7565b91506121a48261213d565b604082019050919050565b600060208201905081810360008301526121c88161218c565b9050919050565b7f4552433737373a20617574686f72697a696e672073656c66206173206f70657260008201527f61746f7200000000000000000000000000000000000000000000000000000000602082015250565b600061222b602483611ad7565b9150612236826121cf565b604082019050919050565b6000602082019050818103600083015261225a8161221e565b9050919050565b7f4552433737373a207265766f6b696e672073656c66206173206f70657261746f60008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006122bd602183611ad7565b91506122c882612261565b604082019050919050565b600060208201905081810360008301526122ec816122b0565b9050919050565b7f4552433737373a20617070726f76652066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061234f602583611ad7565b915061235a826122f3565b604082019050919050565b6000602082019050818103600083015261237e81612342565b9050919050565b7f4552433737373a20617070726f766520746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006123e1602383611ad7565b91506123ec82612385565b604082019050919050565b60006020820190508181036000830152612410816123d4565b9050919050565b7f4552433737373a20696e73756666696369656e7420616c6c6f77616e63650000600082015250565b600061244d601e83611ad7565b915061245882612417565b602082019050919050565b6000602082019050818103600083015261247c81612440565b9050919050565b7f4552433737373a207472616e736665722066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006124df602683611ad7565b91506124ea82612483565b604082019050919050565b6000602082019050818103600083015261250e816124d2565b9050919050565b7f4552433737373a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612571602483611ad7565b915061257c82612515565b604082019050919050565b600060208201905081810360008301526125a081612564565b9050919050565b7f4552433737373a206275726e2066726f6d20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612603602283611ad7565b915061260e826125a7565b604082019050919050565b60006020820190508181036000830152612632816125f6565b9050919050565b7f4552433737373a206275726e20616d6f756e7420657863656564732062616c6160008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612695602383611ad7565b91506126a082612639565b604082019050919050565b600060208201905081810360008301526126c481612688565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061270582611bbe565b915061271083611bbe565b9250828203905081811115612728576127276126cb565b5b92915050565b600081519050919050565b600082825260208201905092915050565b60006127558261272e565b61275f8185612739565b935061276f818560208601611ae8565b61277881611b12565b840191505092915050565b60006060820190506127986000830186611c6a565b81810360208301526127aa818561274a565b905081810360408301526127be818461274a565b9050949350505050565b6127d181611a06565b82525050565b6000819050919050565b6127ea816127d7565b82525050565b600060408201905061280560008301856127c8565b61281260208301846127e1565b9392505050565b60008151905061282881611b92565b92915050565b60006020828403121561284457612843611b88565b5b600061285284828501612819565b91505092915050565b600060c08201905061287060008301896127c8565b61287d60208301886127c8565b61288a60408301876127c8565b6128976060830186611c6a565b81810360808301526128a9818561274a565b905081810360a08301526128bd818461274a565b9050979650505050505050565b7f4552433737373a207472616e7366657220616d6f756e7420657863656564732060008201527f62616c616e636500000000000000000000000000000000000000000000000000602082015250565b6000612926602783611ad7565b9150612931826128ca565b604082019050919050565b6000602082019050818103600083015261295581612919565b9050919050565b600061296782611bbe565b915061297283611bbe565b925082820190508082111561298a576129896126cb565b5b92915050565b7f4552433737373a20746f6b656e20726563697069656e7420636f6e747261637460008201527f20686173206e6f20696d706c656d656e74657220666f7220455243373737546f60208201527f6b656e73526563697069656e7400000000000000000000000000000000000000604082015250565b6000612a12604d83611ad7565b9150612a1d82612990565b606082019050919050565b60006020820190508181036000830152612a4181612a05565b905091905056fea2646970667358221220754d6bd422bbdcd5c2b2a1688f0bb88fdbdd1a751cb599b68032986428dbe5ee64736f6c63430008180033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000005f5e10000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 100000000

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000005f5e100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

142:230:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6565:130:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3049:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8323:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3842:123;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9002:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3489:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3686:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6814:366;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4065:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5620:412;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3203:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4345:163;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4739:183;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5242:311;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7865:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6096:403;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7301:325;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5052:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6565:130;6631:16;6666:22;6659:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6565:130;:::o;3049:98::-;3103:13;3135:5;3128:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3049:98;:::o;8323:197::-;8405:4;8421:14;8438:12;:10;:12::i;:::-;8421:29;;8460:32;8469:6;8477:7;8486:5;8460:8;:32::i;:::-;8509:4;8502:11;;;8323:197;;;;:::o;3842:123::-;3920:7;3946:12;;3939:19;;3842:123;:::o;9002:287::-;9108:4;9124:15;9142:12;:10;:12::i;:::-;9124:30;;9164:40;9180:6;9188:7;9197:6;9164:15;:40::i;:::-;9214:47;9220:6;9228:9;9239:6;9214:47;;;;;;;;;;;;;;;;;;;;;;;;9255:5;9214;:47::i;:::-;9278:4;9271:11;;;9002:287;;;;;:::o;3489:82::-;3538:5;3562:2;3555:9;;3489:82;:::o;3686:95::-;3747:7;3773:1;3766:8;;3686:95;:::o;6814:366::-;7021:35;7035:12;:10;:12::i;:::-;7049:6;7021:13;:35::i;:::-;7013:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;7115:58;7121:6;7129:9;7140:6;7148:4;7154:12;7168:4;7115:5;:58::i;:::-;6814:366;;;;;:::o;4065:150::-;4160:7;4186:9;:22;4196:11;4186:22;;;;;;;;;;;;;;;;4179:29;;4065:150;;;:::o;5620:412::-;5723:8;5707:24;;:12;:10;:12::i;:::-;:24;;;5699:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5787:17;:27;5805:8;5787:27;;;;;;;;;;;;;;;;;;;;;;;;;5783:185;;;5837:24;:38;5862:12;:10;:12::i;:::-;5837:38;;;;;;;;;;;;;;;:48;5876:8;5837:48;;;;;;;;;;;;;;;;5830:55;;;;;;;;;;;5783:185;;;5953:4;5916:10;:24;5927:12;:10;:12::i;:::-;5916:24;;;;;;;;;;;;;;;:34;5941:8;5916:34;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;5783:185;6012:12;:10;:12::i;:::-;5983:42;;6002:8;5983:42;;;;;;;;;;;;5620:412;:::o;3203:102::-;3259:13;3291:7;3284:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3203:102;:::o;4345:163::-;4447:54;4453:12;:10;:12::i;:::-;4467:9;4478:6;4486:4;4447:54;;;;;;;;;;;;4496:4;4447:5;:54::i;:::-;4345:163;;;:::o;4739:183::-;4825:4;4841:53;4847:12;:10;:12::i;:::-;4861:9;4872:6;4841:53;;;;;;;;;;;;;;;;;;;;;;;;4888:5;4841;:53::i;:::-;4911:4;4904:11;;4739:183;;;;:::o;5242:311::-;5342:4;5389:11;5377:23;;:8;:23;;;:120;;;;5417:17;:27;5435:8;5417:27;;;;;;;;;;;;;;;;;;;;;;;;;:79;;;;;5449:24;:37;5474:11;5449:37;;;;;;;;;;;;;;;:47;5487:8;5449:47;;;;;;;;;;;;;;;;;;;;;;;;;5448:48;5417:79;5377:120;:169;;;;5513:10;:23;5524:11;5513:23;;;;;;;;;;;;;;;:33;5537:8;5513:33;;;;;;;;;;;;;;;;;;;;;;;;;5377:169;5358:188;;5242:311;;;;:::o;7865:151::-;7955:7;7981:11;:19;7993:6;7981:19;;;;;;;;;;;;;;;:28;8001:7;7981:28;;;;;;;;;;;;;;;;7974:35;;7865:151;;;;:::o;6096:403::-;6192:12;:10;:12::i;:::-;6180:24;;:8;:24;;;6172:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;6257:17;:27;6275:8;6257:27;;;;;;;;;;;;;;;;;;;;;;;;;6253:185;;;6351:4;6300:24;:38;6325:12;:10;:12::i;:::-;6300:38;;;;;;;;;;;;;;;:48;6339:8;6300:48;;;;;;;;;;;;;;;;:55;;;;;;;;;;;;;;;;;;6253:185;;;6393:10;:24;6404:12;:10;:12::i;:::-;6393:24;;;;;;;;;;;;;;;:34;6418:8;6393:34;;;;;;;;;;;;;;;;6386:41;;;;;;;;;;;6253:185;6479:12;:10;:12::i;:::-;6453:39;;6469:8;6453:39;;;;;;;;;;;;6096:403;:::o;7301:325::-;7482:36;7496:12;:10;:12::i;:::-;7510:7;7482:13;:36::i;:::-;7474:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;7577:42;7583:7;7592:6;7600:4;7606:12;7577:5;:42::i;:::-;7301:325;;;;:::o;5052:127::-;5135:37;5141:12;:10;:12::i;:::-;5155:6;5163:4;5135:37;;;;;;;;;;;;:5;:37::i;:::-;5052:127;;:::o;655:96:6:-;708:7;734:10;727:17;;655:96;:::o;14403:343:1:-;14522:1;14504:20;;:6;:20;;;14496:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14603:1;14584:21;;:7;:21;;;14576:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;14687:5;14656:11;:19;14668:6;14656:19;;;;;;;;;;;;;;;:28;14676:7;14656:28;;;;;;;;;;;;;;;:36;;;;14724:7;14707:32;;14716:6;14707:32;;;14733:5;14707:32;;;;;;:::i;:::-;;;;;;;;14403:343;;;:::o;17344:412::-;17444:24;17471:25;17481:5;17488:7;17471:9;:25::i;:::-;17444:52;;17530:17;17510:16;:37;17506:244;;17591:6;17571:16;:26;;17563:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;17674:51;17683:5;17690:7;17718:6;17699:16;:25;17674:8;:51::i;:::-;17506:244;17434:322;17344:412;;;:::o;11912:658::-;12150:1;12134:18;;:4;:18;;;12126:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;12227:1;12213:16;;:2;:16;;;12205:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12281:16;12300:12;:10;:12::i;:::-;12281:31;;12323:69;12341:8;12351:4;12357:2;12361:6;12369:8;12379:12;12323:17;:69::i;:::-;12403:57;12409:8;12419:4;12425:2;12429:6;12437:8;12447:12;12403:5;:57::i;:::-;12471:92;12491:8;12501:4;12507:2;12511:6;12519:8;12529:12;12543:19;12471;:92::i;:::-;12116:454;11912:658;;;;;;:::o;12875:773::-;13017:1;13001:18;;:4;:18;;;12993:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13069:16;13088:12;:10;:12::i;:::-;13069:31;;13111:73;13129:8;13139:4;13153:1;13157:6;13165:4;13171:12;13111:17;:73::i;:::-;13195:56;13216:8;13226:4;13240:1;13244:6;13195:20;:56::i;:::-;13296:19;13318:9;:15;13328:4;13318:15;;;;;;;;;;;;;;;;13296:37;;13366:6;13351:11;:21;;13343:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;13478:6;13464:11;:20;13446:9;:15;13456:4;13446:15;;;;;;;;;;;;;;;:38;;;;13520:6;13504:12;;:22;;;;;;;:::i;:::-;;;;;;;;13559:4;13542:50;;13549:8;13542:50;;;13565:6;13573:4;13579:12;13542:50;;;;;;;;:::i;:::-;;;;;;;;13630:1;13607:34;;13616:4;13607:34;;;13634:6;13607:34;;;;;;:::i;:::-;;;;;;;;12983:665;;12875:773;;;;:::o;15219:472::-;15428:19;1339:42;15450:41;;;15492:4;1588:31;15450:78;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15428:100;;15565:1;15542:25;;:11;:25;;;15538:147;;15597:11;15583:39;;;15623:8;15633:4;15639:2;15643:6;15651:8;15661:12;15583:91;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15538:147;15418:273;15219:472;;;;;;:::o;13654:611::-;13851:48;13872:8;13882:4;13888:2;13892:6;13851:20;:48::i;:::-;13910:19;13932:9;:15;13942:4;13932:15;;;;;;;;;;;;;;;;13910:37;;13980:6;13965:11;:21;;13957:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14096:6;14082:11;:20;14064:9;:15;14074:4;14064:15;;;;;;;;;;;;;;;:38;;;;14139:6;14122:9;:13;14132:2;14122:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;14182:2;14161:56;;14176:4;14161:56;;14166:8;14161:56;;;14186:6;14194:8;14204:12;14161:56;;;;;;;;:::i;:::-;;;;;;;;14247:2;14232:26;;14241:4;14232:26;;;14251:6;14232:26;;;;;;:::i;:::-;;;;;;;;13841:424;13654:611;;;;;;:::o;16380:676::-;16625:19;1339:42;16647:41;;;16689:2;1685:34;16647:79;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16625:101;;16763:1;16740:25;;:11;:25;;;16736:314;;16798:11;16781:44;;;16826:8;16836:4;16842:2;16846:6;16854:8;16864:12;16781:96;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16736:314;;;16898:19;16894:156;;;16942:15;:2;:13;;;:15::i;:::-;16941:16;16933:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;16894:156;16736:314;16615:441;16380:676;;;;;;;:::o;18400:109::-;;;;;:::o;1412:320:5:-;1472:4;1724:1;1702:7;:19;;;:23;1695:30;;1412:320;;;:::o;7:114:9:-;74:6;108:5;102:12;92:22;;7:114;;;:::o;127:184::-;226:11;260:6;255:3;248:19;300:4;295:3;291:14;276:29;;127:184;;;;:::o;317:132::-;384:4;407:3;399:11;;437:4;432:3;428:14;420:22;;317:132;;;:::o;455:126::-;492:7;532:42;525:5;521:54;510:65;;455:126;;;:::o;587:96::-;624:7;653:24;671:5;653:24;:::i;:::-;642:35;;587:96;;;:::o;689:108::-;766:24;784:5;766:24;:::i;:::-;761:3;754:37;689:108;;:::o;803:179::-;872:10;893:46;935:3;927:6;893:46;:::i;:::-;971:4;966:3;962:14;948:28;;803:179;;;;:::o;988:113::-;1058:4;1090;1085:3;1081:14;1073:22;;988:113;;;:::o;1137:732::-;1256:3;1285:54;1333:5;1285:54;:::i;:::-;1355:86;1434:6;1429:3;1355:86;:::i;:::-;1348:93;;1465:56;1515:5;1465:56;:::i;:::-;1544:7;1575:1;1560:284;1585:6;1582:1;1579:13;1560:284;;;1661:6;1655:13;1688:63;1747:3;1732:13;1688:63;:::i;:::-;1681:70;;1774:60;1827:6;1774:60;:::i;:::-;1764:70;;1620:224;1607:1;1604;1600:9;1595:14;;1560:284;;;1564:14;1860:3;1853:10;;1261:608;;;1137:732;;;;:::o;1875:373::-;2018:4;2056:2;2045:9;2041:18;2033:26;;2105:9;2099:4;2095:20;2091:1;2080:9;2076:17;2069:47;2133:108;2236:4;2227:6;2133:108;:::i;:::-;2125:116;;1875:373;;;;:::o;2254:99::-;2306:6;2340:5;2334:12;2324:22;;2254:99;;;:::o;2359:169::-;2443:11;2477:6;2472:3;2465:19;2517:4;2512:3;2508:14;2493:29;;2359:169;;;;:::o;2534:246::-;2615:1;2625:113;2639:6;2636:1;2633:13;2625:113;;;2724:1;2719:3;2715:11;2709:18;2705:1;2700:3;2696:11;2689:39;2661:2;2658:1;2654:10;2649:15;;2625:113;;;2772:1;2763:6;2758:3;2754:16;2747:27;2596:184;2534:246;;;:::o;2786:102::-;2827:6;2878:2;2874:7;2869:2;2862:5;2858:14;2854:28;2844:38;;2786:102;;;:::o;2894:377::-;2982:3;3010:39;3043:5;3010:39;:::i;:::-;3065:71;3129:6;3124:3;3065:71;:::i;:::-;3058:78;;3145:65;3203:6;3198:3;3191:4;3184:5;3180:16;3145:65;:::i;:::-;3235:29;3257:6;3235:29;:::i;:::-;3230:3;3226:39;3219:46;;2986:285;2894:377;;;;:::o;3277:313::-;3390:4;3428:2;3417:9;3413:18;3405:26;;3477:9;3471:4;3467:20;3463:1;3452:9;3448:17;3441:47;3505:78;3578:4;3569:6;3505:78;:::i;:::-;3497:86;;3277:313;;;;:::o;3596:75::-;3629:6;3662:2;3656:9;3646:19;;3596:75;:::o;3677:117::-;3786:1;3783;3776:12;3800:117;3909:1;3906;3899:12;3923:122;3996:24;4014:5;3996:24;:::i;:::-;3989:5;3986:35;3976:63;;4035:1;4032;4025:12;3976:63;3923:122;:::o;4051:139::-;4097:5;4135:6;4122:20;4113:29;;4151:33;4178:5;4151:33;:::i;:::-;4051:139;;;;:::o;4196:77::-;4233:7;4262:5;4251:16;;4196:77;;;:::o;4279:122::-;4352:24;4370:5;4352:24;:::i;:::-;4345:5;4342:35;4332:63;;4391:1;4388;4381:12;4332:63;4279:122;:::o;4407:139::-;4453:5;4491:6;4478:20;4469:29;;4507:33;4534:5;4507:33;:::i;:::-;4407:139;;;;:::o;4552:474::-;4620:6;4628;4677:2;4665:9;4656:7;4652:23;4648:32;4645:119;;;4683:79;;:::i;:::-;4645:119;4803:1;4828:53;4873:7;4864:6;4853:9;4849:22;4828:53;:::i;:::-;4818:63;;4774:117;4930:2;4956:53;5001:7;4992:6;4981:9;4977:22;4956:53;:::i;:::-;4946:63;;4901:118;4552:474;;;;;:::o;5032:90::-;5066:7;5109:5;5102:13;5095:21;5084:32;;5032:90;;;:::o;5128:109::-;5209:21;5224:5;5209:21;:::i;:::-;5204:3;5197:34;5128:109;;:::o;5243:210::-;5330:4;5368:2;5357:9;5353:18;5345:26;;5381:65;5443:1;5432:9;5428:17;5419:6;5381:65;:::i;:::-;5243:210;;;;:::o;5459:118::-;5546:24;5564:5;5546:24;:::i;:::-;5541:3;5534:37;5459:118;;:::o;5583:222::-;5676:4;5714:2;5703:9;5699:18;5691:26;;5727:71;5795:1;5784:9;5780:17;5771:6;5727:71;:::i;:::-;5583:222;;;;:::o;5811:619::-;5888:6;5896;5904;5953:2;5941:9;5932:7;5928:23;5924:32;5921:119;;;5959:79;;:::i;:::-;5921:119;6079:1;6104:53;6149:7;6140:6;6129:9;6125:22;6104:53;:::i;:::-;6094:63;;6050:117;6206:2;6232:53;6277:7;6268:6;6257:9;6253:22;6232:53;:::i;:::-;6222:63;;6177:118;6334:2;6360:53;6405:7;6396:6;6385:9;6381:22;6360:53;:::i;:::-;6350:63;;6305:118;5811:619;;;;;:::o;6436:86::-;6471:7;6511:4;6504:5;6500:16;6489:27;;6436:86;;;:::o;6528:112::-;6611:22;6627:5;6611:22;:::i;:::-;6606:3;6599:35;6528:112;;:::o;6646:214::-;6735:4;6773:2;6762:9;6758:18;6750:26;;6786:67;6850:1;6839:9;6835:17;6826:6;6786:67;:::i;:::-;6646:214;;;;:::o;6866:117::-;6975:1;6972;6965:12;6989:117;7098:1;7095;7088:12;7112:180;7160:77;7157:1;7150:88;7257:4;7254:1;7247:15;7281:4;7278:1;7271:15;7298:281;7381:27;7403:4;7381:27;:::i;:::-;7373:6;7369:40;7511:6;7499:10;7496:22;7475:18;7463:10;7460:34;7457:62;7454:88;;;7522:18;;:::i;:::-;7454:88;7562:10;7558:2;7551:22;7341:238;7298:281;;:::o;7585:129::-;7619:6;7646:20;;:::i;:::-;7636:30;;7675:33;7703:4;7695:6;7675:33;:::i;:::-;7585:129;;;:::o;7720:307::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7720:307;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:423::-;8262:5;8287:65;8303:48;8344:6;8303:48;:::i;:::-;8287:65;:::i;:::-;8278:74;;8375:6;8368:5;8361:21;8413:4;8406:5;8402:16;8451:3;8442:6;8437:3;8433:16;8430:25;8427:112;;;8458:79;;:::i;:::-;8427:112;8548:54;8595:6;8590:3;8585;8548:54;:::i;:::-;8268:340;8185:423;;;;;:::o;8627:338::-;8682:5;8731:3;8724:4;8716:6;8712:17;8708:27;8698:122;;8739:79;;:::i;:::-;8698:122;8856:6;8843:20;8881:78;8955:3;8947:6;8940:4;8932:6;8928:17;8881:78;:::i;:::-;8872:87;;8688:277;8627:338;;;;:::o;8971:1267::-;9084:6;9092;9100;9108;9116;9165:3;9153:9;9144:7;9140:23;9136:33;9133:120;;;9172:79;;:::i;:::-;9133:120;9292:1;9317:53;9362:7;9353:6;9342:9;9338:22;9317:53;:::i;:::-;9307:63;;9263:117;9419:2;9445:53;9490:7;9481:6;9470:9;9466:22;9445:53;:::i;:::-;9435:63;;9390:118;9547:2;9573:53;9618:7;9609:6;9598:9;9594:22;9573:53;:::i;:::-;9563:63;;9518:118;9703:2;9692:9;9688:18;9675:32;9734:18;9726:6;9723:30;9720:117;;;9756:79;;:::i;:::-;9720:117;9861:62;9915:7;9906:6;9895:9;9891:22;9861:62;:::i;:::-;9851:72;;9646:287;10000:3;9989:9;9985:19;9972:33;10032:18;10024:6;10021:30;10018:117;;;10054:79;;:::i;:::-;10018:117;10159:62;10213:7;10204:6;10193:9;10189:22;10159:62;:::i;:::-;10149:72;;9943:288;8971:1267;;;;;;;;:::o;10244:329::-;10303:6;10352:2;10340:9;10331:7;10327:23;10323:32;10320:119;;;10358:79;;:::i;:::-;10320:119;10478:1;10503:53;10548:7;10539:6;10528:9;10524:22;10503:53;:::i;:::-;10493:63;;10449:117;10244:329;;;;:::o;10579:797::-;10665:6;10673;10681;10730:2;10718:9;10709:7;10705:23;10701:32;10698:119;;;10736:79;;:::i;:::-;10698:119;10856:1;10881:53;10926:7;10917:6;10906:9;10902:22;10881:53;:::i;:::-;10871:63;;10827:117;10983:2;11009:53;11054:7;11045:6;11034:9;11030:22;11009:53;:::i;:::-;10999:63;;10954:118;11139:2;11128:9;11124:18;11111:32;11170:18;11162:6;11159:30;11156:117;;;11192:79;;:::i;:::-;11156:117;11297:62;11351:7;11342:6;11331:9;11327:22;11297:62;:::i;:::-;11287:72;;11082:287;10579:797;;;;;:::o;11382:474::-;11450:6;11458;11507:2;11495:9;11486:7;11482:23;11478:32;11475:119;;;11513:79;;:::i;:::-;11475:119;11633:1;11658:53;11703:7;11694:6;11683:9;11679:22;11658:53;:::i;:::-;11648:63;;11604:117;11760:2;11786:53;11831:7;11822:6;11811:9;11807:22;11786:53;:::i;:::-;11776:63;;11731:118;11382:474;;;;;:::o;11862:1121::-;11966:6;11974;11982;11990;12039:3;12027:9;12018:7;12014:23;12010:33;12007:120;;;12046:79;;:::i;:::-;12007:120;12166:1;12191:53;12236:7;12227:6;12216:9;12212:22;12191:53;:::i;:::-;12181:63;;12137:117;12293:2;12319:53;12364:7;12355:6;12344:9;12340:22;12319:53;:::i;:::-;12309:63;;12264:118;12449:2;12438:9;12434:18;12421:32;12480:18;12472:6;12469:30;12466:117;;;12502:79;;:::i;:::-;12466:117;12607:62;12661:7;12652:6;12641:9;12637:22;12607:62;:::i;:::-;12597:72;;12392:287;12746:2;12735:9;12731:18;12718:32;12777:18;12769:6;12766:30;12763:117;;;12799:79;;:::i;:::-;12763:117;12904:62;12958:7;12949:6;12938:9;12934:22;12904:62;:::i;:::-;12894:72;;12689:287;11862:1121;;;;;;;:::o;12989:652::-;13066:6;13074;13123:2;13111:9;13102:7;13098:23;13094:32;13091:119;;;13129:79;;:::i;:::-;13091:119;13249:1;13274:53;13319:7;13310:6;13299:9;13295:22;13274:53;:::i;:::-;13264:63;;13220:117;13404:2;13393:9;13389:18;13376:32;13435:18;13427:6;13424:30;13421:117;;;13457:79;;:::i;:::-;13421:117;13562:62;13616:7;13607:6;13596:9;13592:22;13562:62;:::i;:::-;13552:72;;13347:287;12989:652;;;;;:::o;13647:180::-;13695:77;13692:1;13685:88;13792:4;13789:1;13782:15;13816:4;13813:1;13806:15;13833:320;13877:6;13914:1;13908:4;13904:12;13894:22;;13961:1;13955:4;13951:12;13982:18;13972:81;;14038:4;14030:6;14026:17;14016:27;;13972:81;14100:2;14092:6;14089:14;14069:18;14066:38;14063:84;;14119:18;;:::i;:::-;14063:84;13884:269;13833:320;;;:::o;14159:231::-;14299:34;14295:1;14287:6;14283:14;14276:58;14368:14;14363:2;14355:6;14351:15;14344:39;14159:231;:::o;14396:366::-;14538:3;14559:67;14623:2;14618:3;14559:67;:::i;:::-;14552:74;;14635:93;14724:3;14635:93;:::i;:::-;14753:2;14748:3;14744:12;14737:19;;14396:366;;;:::o;14768:419::-;14934:4;14972:2;14961:9;14957:18;14949:26;;15021:9;15015:4;15011:20;15007:1;14996:9;14992:17;14985:47;15049:131;15175:4;15049:131;:::i;:::-;15041:139;;14768:419;;;:::o;15193:223::-;15333:34;15329:1;15321:6;15317:14;15310:58;15402:6;15397:2;15389:6;15385:15;15378:31;15193:223;:::o;15422:366::-;15564:3;15585:67;15649:2;15644:3;15585:67;:::i;:::-;15578:74;;15661:93;15750:3;15661:93;:::i;:::-;15779:2;15774:3;15770:12;15763:19;;15422:366;;;:::o;15794:419::-;15960:4;15998:2;15987:9;15983:18;15975:26;;16047:9;16041:4;16037:20;16033:1;16022:9;16018:17;16011:47;16075:131;16201:4;16075:131;:::i;:::-;16067:139;;15794:419;;;:::o;16219:220::-;16359:34;16355:1;16347:6;16343:14;16336:58;16428:3;16423:2;16415:6;16411:15;16404:28;16219:220;:::o;16445:366::-;16587:3;16608:67;16672:2;16667:3;16608:67;:::i;:::-;16601:74;;16684:93;16773:3;16684:93;:::i;:::-;16802:2;16797:3;16793:12;16786:19;;16445:366;;;:::o;16817:419::-;16983:4;17021:2;17010:9;17006:18;16998:26;;17070:9;17064:4;17060:20;17056:1;17045:9;17041:17;17034:47;17098:131;17224:4;17098:131;:::i;:::-;17090:139;;16817:419;;;:::o;17242:224::-;17382:34;17378:1;17370:6;17366:14;17359:58;17451:7;17446:2;17438:6;17434:15;17427:32;17242:224;:::o;17472:366::-;17614:3;17635:67;17699:2;17694:3;17635:67;:::i;:::-;17628:74;;17711:93;17800:3;17711:93;:::i;:::-;17829:2;17824:3;17820:12;17813:19;;17472:366;;;:::o;17844:419::-;18010:4;18048:2;18037:9;18033:18;18025:26;;18097:9;18091:4;18087:20;18083:1;18072:9;18068:17;18061:47;18125:131;18251:4;18125:131;:::i;:::-;18117:139;;17844:419;;;:::o;18269:222::-;18409:34;18405:1;18397:6;18393:14;18386:58;18478:5;18473:2;18465:6;18461:15;18454:30;18269:222;:::o;18497:366::-;18639:3;18660:67;18724:2;18719:3;18660:67;:::i;:::-;18653:74;;18736:93;18825:3;18736:93;:::i;:::-;18854:2;18849:3;18845:12;18838:19;;18497:366;;;:::o;18869:419::-;19035:4;19073:2;19062:9;19058:18;19050:26;;19122:9;19116:4;19112:20;19108:1;19097:9;19093:17;19086:47;19150:131;19276:4;19150:131;:::i;:::-;19142:139;;18869:419;;;:::o;19294:180::-;19434:32;19430:1;19422:6;19418:14;19411:56;19294:180;:::o;19480:366::-;19622:3;19643:67;19707:2;19702:3;19643:67;:::i;:::-;19636:74;;19719:93;19808:3;19719:93;:::i;:::-;19837:2;19832:3;19828:12;19821:19;;19480:366;;;:::o;19852:419::-;20018:4;20056:2;20045:9;20041:18;20033:26;;20105:9;20099:4;20095:20;20091:1;20080:9;20076:17;20069:47;20133:131;20259:4;20133:131;:::i;:::-;20125:139;;19852:419;;;:::o;20277:225::-;20417:34;20413:1;20405:6;20401:14;20394:58;20486:8;20481:2;20473:6;20469:15;20462:33;20277:225;:::o;20508:366::-;20650:3;20671:67;20735:2;20730:3;20671:67;:::i;:::-;20664:74;;20747:93;20836:3;20747:93;:::i;:::-;20865:2;20860:3;20856:12;20849:19;;20508:366;;;:::o;20880:419::-;21046:4;21084:2;21073:9;21069:18;21061:26;;21133:9;21127:4;21123:20;21119:1;21108:9;21104:17;21097:47;21161:131;21287:4;21161:131;:::i;:::-;21153:139;;20880:419;;;:::o;21305:223::-;21445:34;21441:1;21433:6;21429:14;21422:58;21514:6;21509:2;21501:6;21497:15;21490:31;21305:223;:::o;21534:366::-;21676:3;21697:67;21761:2;21756:3;21697:67;:::i;:::-;21690:74;;21773:93;21862:3;21773:93;:::i;:::-;21891:2;21886:3;21882:12;21875:19;;21534:366;;;:::o;21906:419::-;22072:4;22110:2;22099:9;22095:18;22087:26;;22159:9;22153:4;22149:20;22145:1;22134:9;22130:17;22123:47;22187:131;22313:4;22187:131;:::i;:::-;22179:139;;21906:419;;;:::o;22331:221::-;22471:34;22467:1;22459:6;22455:14;22448:58;22540:4;22535:2;22527:6;22523:15;22516:29;22331:221;:::o;22558:366::-;22700:3;22721:67;22785:2;22780:3;22721:67;:::i;:::-;22714:74;;22797:93;22886:3;22797:93;:::i;:::-;22915:2;22910:3;22906:12;22899:19;;22558:366;;;:::o;22930:419::-;23096:4;23134:2;23123:9;23119:18;23111:26;;23183:9;23177:4;23173:20;23169:1;23158:9;23154:17;23147:47;23211:131;23337:4;23211:131;:::i;:::-;23203:139;;22930:419;;;:::o;23355:222::-;23495:34;23491:1;23483:6;23479:14;23472:58;23564:5;23559:2;23551:6;23547:15;23540:30;23355:222;:::o;23583:366::-;23725:3;23746:67;23810:2;23805:3;23746:67;:::i;:::-;23739:74;;23822:93;23911:3;23822:93;:::i;:::-;23940:2;23935:3;23931:12;23924:19;;23583:366;;;:::o;23955:419::-;24121:4;24159:2;24148:9;24144:18;24136:26;;24208:9;24202:4;24198:20;24194:1;24183:9;24179:17;24172:47;24236:131;24362:4;24236:131;:::i;:::-;24228:139;;23955:419;;;:::o;24380:180::-;24428:77;24425:1;24418:88;24525:4;24522:1;24515:15;24549:4;24546:1;24539:15;24566:194;24606:4;24626:20;24644:1;24626:20;:::i;:::-;24621:25;;24660:20;24678:1;24660:20;:::i;:::-;24655:25;;24704:1;24701;24697:9;24689:17;;24728:1;24722:4;24719:11;24716:37;;;24733:18;;:::i;:::-;24716:37;24566:194;;;;:::o;24766:98::-;24817:6;24851:5;24845:12;24835:22;;24766:98;;;:::o;24870:168::-;24953:11;24987:6;24982:3;24975:19;25027:4;25022:3;25018:14;25003:29;;24870:168;;;;:::o;25044:373::-;25130:3;25158:38;25190:5;25158:38;:::i;:::-;25212:70;25275:6;25270:3;25212:70;:::i;:::-;25205:77;;25291:65;25349:6;25344:3;25337:4;25330:5;25326:16;25291:65;:::i;:::-;25381:29;25403:6;25381:29;:::i;:::-;25376:3;25372:39;25365:46;;25134:283;25044:373;;;;:::o;25423:616::-;25608:4;25646:2;25635:9;25631:18;25623:26;;25659:71;25727:1;25716:9;25712:17;25703:6;25659:71;:::i;:::-;25777:9;25771:4;25767:20;25762:2;25751:9;25747:18;25740:48;25805:76;25876:4;25867:6;25805:76;:::i;:::-;25797:84;;25928:9;25922:4;25918:20;25913:2;25902:9;25898:18;25891:48;25956:76;26027:4;26018:6;25956:76;:::i;:::-;25948:84;;25423:616;;;;;;:::o;26045:118::-;26132:24;26150:5;26132:24;:::i;:::-;26127:3;26120:37;26045:118;;:::o;26169:77::-;26206:7;26235:5;26224:16;;26169:77;;;:::o;26252:118::-;26339:24;26357:5;26339:24;:::i;:::-;26334:3;26327:37;26252:118;;:::o;26376:332::-;26497:4;26535:2;26524:9;26520:18;26512:26;;26548:71;26616:1;26605:9;26601:17;26592:6;26548:71;:::i;:::-;26629:72;26697:2;26686:9;26682:18;26673:6;26629:72;:::i;:::-;26376:332;;;;;:::o;26714:143::-;26771:5;26802:6;26796:13;26787:22;;26818:33;26845:5;26818:33;:::i;:::-;26714:143;;;;:::o;26863:351::-;26933:6;26982:2;26970:9;26961:7;26957:23;26953:32;26950:119;;;26988:79;;:::i;:::-;26950:119;27108:1;27133:64;27189:7;27180:6;27169:9;27165:22;27133:64;:::i;:::-;27123:74;;27079:128;26863:351;;;;:::o;27220:949::-;27489:4;27527:3;27516:9;27512:19;27504:27;;27541:71;27609:1;27598:9;27594:17;27585:6;27541:71;:::i;:::-;27622:72;27690:2;27679:9;27675:18;27666:6;27622:72;:::i;:::-;27704;27772:2;27761:9;27757:18;27748:6;27704:72;:::i;:::-;27786;27854:2;27843:9;27839:18;27830:6;27786:72;:::i;:::-;27906:9;27900:4;27896:20;27890:3;27879:9;27875:19;27868:49;27934:76;28005:4;27996:6;27934:76;:::i;:::-;27926:84;;28058:9;28052:4;28048:20;28042:3;28031:9;28027:19;28020:49;28086:76;28157:4;28148:6;28086:76;:::i;:::-;28078:84;;27220:949;;;;;;;;;:::o;28175:226::-;28315:34;28311:1;28303:6;28299:14;28292:58;28384:9;28379:2;28371:6;28367:15;28360:34;28175:226;:::o;28407:366::-;28549:3;28570:67;28634:2;28629:3;28570:67;:::i;:::-;28563:74;;28646:93;28735:3;28646:93;:::i;:::-;28764:2;28759:3;28755:12;28748:19;;28407:366;;;:::o;28779:419::-;28945:4;28983:2;28972:9;28968:18;28960:26;;29032:9;29026:4;29022:20;29018:1;29007:9;29003:17;28996:47;29060:131;29186:4;29060:131;:::i;:::-;29052:139;;28779:419;;;:::o;29204:191::-;29244:3;29263:20;29281:1;29263:20;:::i;:::-;29258:25;;29297:20;29315:1;29297:20;:::i;:::-;29292:25;;29340:1;29337;29333:9;29326:16;;29361:3;29358:1;29355:10;29352:36;;;29368:18;;:::i;:::-;29352:36;29204:191;;;;:::o;29401:301::-;29541:34;29537:1;29529:6;29525:14;29518:58;29610:34;29605:2;29597:6;29593:15;29586:59;29679:15;29674:2;29666:6;29662:15;29655:40;29401:301;:::o;29708:366::-;29850:3;29871:67;29935:2;29930:3;29871:67;:::i;:::-;29864:74;;29947:93;30036:3;29947:93;:::i;:::-;30065:2;30060:3;30056:12;30049:19;;29708:366;;;:::o;30080:419::-;30246:4;30284:2;30273:9;30269:18;30261:26;;30333:9;30327:4;30323:20;30319:1;30308:9;30304:17;30297:47;30361:131;30487:4;30361:131;:::i;:::-;30353:139;;30080:419;;;:::o

Swarm Source

ipfs://754d6bd422bbdcd5c2b2a1688f0bb88fdbdd1a751cb599b68032986428dbe5ee
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.