ETH Price: $3,642.78 (+18.39%)
Gas: 33 Gwei

Token

DMCCOIN (DMCC)
 

Overview

Max Total Supply

2,000,000,000 DMCC

Holders

333

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
DMCCOIN

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 3 of 9: DMCCOIN.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "ERC777.sol";

contract DMCCOIN is ERC777 {
    constructor(uint256 initialSupply, address[] memory defaultOperators)
        ERC777("DMCCOIN", "DMCC", defaultOperators)
    {
        _mint(msg.sender, initialSupply, "", "");
    }
}

File 1 of 9: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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
     * ====
     *
     * [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://diligence.consensys.net/posts/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.5.11/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 2 of 9: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "IERC777.sol";
import "IERC777Recipient.sol";
import "IERC777Sender.sol";
import "IERC20.sol";
import "Address.sol";
import "Context.sol";
import "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.
 */
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}, 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 5 of 9: IERC1820Registry.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 7 of 9: IERC777.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 8 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 9 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;
}

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"}]

60806040523480156200001157600080fd5b5060405162003c9f38038062003c9f833981810160405281019062000037919062000a17565b6040518060400160405280600781526020017f444d43434f494e000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f444d434300000000000000000000000000000000000000000000000000000000815250828260029081620000b5919062000cbe565b508160039081620000c7919062000cbe565b508060049080519060200190620000e092919062000740565b5060005b815181101562000179576001600560008484815181106200010a576200010962000da5565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080620001709062000e03565b915050620000e4565b50731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff166329965a1d307fac7fbab5f54a3ca8194167523c6753bfeb96a445279294b6125b68cce2177054306040518463ffffffff1660e01b8152600401620001ed9392919062000e7c565b600060405180830381600087803b1580156200020857600080fd5b505af11580156200021d573d6000803e3d6000fd5b50505050731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff166329965a1d307faea199e31a596269b42cdafd93407f14436db6e4cad65417994c2eb37381e05a306040518463ffffffff1660e01b8152600401620002949392919062000e7c565b600060405180830381600087803b158015620002af57600080fd5b505af1158015620002c4573d6000803e3d6000fd5b50505050505050620002fd338360405180602001604052806000815250604051806020016040528060008152506200030560201b60201c565b505062001211565b6200031b8484848460016200032160201b60201c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160362000393576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038a9062000f1a565b60405180910390fd5b6000620003a56200052160201b60201c565b9050620003bc81600088886200052960201b60201c565b8460016000828254620003d0919062000f3c565b92505081905550846000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000427919062000f3c565b925050819055506200044681600088888888886200052f60201b60201c565b8573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d878787604051620004a99392919062001011565b60405180910390a38573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516200051191906200105c565b60405180910390a3505050505050565b600033905090565b50505050565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca877fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b6040518363ffffffff1660e01b8152600401620005a292919062001079565b602060405180830381865afa158015620005c0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005e69190620010a6565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146200069b578073ffffffffffffffffffffffffffffffffffffffff166223de298989898989896040518763ffffffff1660e01b81526004016200066196959493929190620010d8565b600060405180830381600087803b1580156200067c57600080fd5b505af115801562000691573d6000803e3d6000fd5b5050505062000713565b81156200071257620006ce8673ffffffffffffffffffffffffffffffffffffffff166200071d60201b62000e711760201c565b1562000711576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070890620011ef565b60405180910390fd5b5b5b5050505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054828255906000526020600020908101928215620007bc579160200282015b82811115620007bb5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000761565b5b509050620007cb9190620007cf565b5090565b5b80821115620007ea576000816000905550600101620007d0565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b620008178162000802565b81146200082357600080fd5b50565b60008151905062000837816200080c565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200088d8262000842565b810181811067ffffffffffffffff82111715620008af57620008ae62000853565b5b80604052505050565b6000620008c4620007ee565b9050620008d2828262000882565b919050565b600067ffffffffffffffff821115620008f557620008f462000853565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000938826200090b565b9050919050565b6200094a816200092b565b81146200095657600080fd5b50565b6000815190506200096a816200093f565b92915050565b6000620009876200098184620008d7565b620008b8565b90508083825260208201905060208402830185811115620009ad57620009ac62000906565b5b835b81811015620009da5780620009c5888262000959565b845260208401935050602081019050620009af565b5050509392505050565b600082601f830112620009fc57620009fb6200083d565b5b815162000a0e84826020860162000970565b91505092915050565b6000806040838503121562000a315762000a30620007f8565b5b600062000a418582860162000826565b925050602083015167ffffffffffffffff81111562000a655762000a64620007fd565b5b62000a7385828601620009e4565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ad057607f821691505b60208210810362000ae65762000ae562000a88565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b11565b62000b5c868362000b11565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000b9f62000b9962000b938462000802565b62000b74565b62000802565b9050919050565b6000819050919050565b62000bbb8362000b7e565b62000bd362000bca8262000ba6565b84845462000b1e565b825550505050565b600090565b62000bea62000bdb565b62000bf781848462000bb0565b505050565b5b8181101562000c1f5762000c1360008262000be0565b60018101905062000bfd565b5050565b601f82111562000c6e5762000c388162000aec565b62000c438462000b01565b8101602085101562000c53578190505b62000c6b62000c628562000b01565b83018262000bfc565b50505b505050565b600082821c905092915050565b600062000c936000198460080262000c73565b1980831691505092915050565b600062000cae838362000c80565b9150826002028217905092915050565b62000cc98262000a7d565b67ffffffffffffffff81111562000ce55762000ce462000853565b5b62000cf1825462000ab7565b62000cfe82828562000c23565b600060209050601f83116001811462000d36576000841562000d21578287015190505b62000d2d858262000ca0565b86555062000d9d565b601f19841662000d468662000aec565b60005b8281101562000d705784890151825560018201915060208501945060208101905062000d49565b8683101562000d90578489015162000d8c601f89168262000c80565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e108262000802565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000e455762000e4462000dd4565b5b600182019050919050565b62000e5b816200092b565b82525050565b6000819050919050565b62000e768162000e61565b82525050565b600060608201905062000e93600083018662000e50565b62000ea2602083018562000e6b565b62000eb1604083018462000e50565b949350505050565b600082825260208201905092915050565b7f4552433737373a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000f0260208362000eb9565b915062000f0f8262000eca565b602082019050919050565b6000602082019050818103600083015262000f358162000ef3565b9050919050565b600062000f498262000802565b915062000f568362000802565b925082820190508082111562000f715762000f7062000dd4565b5b92915050565b62000f828162000802565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000fc457808201518184015260208101905062000fa7565b60008484015250505050565b600062000fdd8262000f88565b62000fe9818562000f93565b935062000ffb81856020860162000fa4565b620010068162000842565b840191505092915050565b600060608201905062001028600083018662000f77565b81810360208301526200103c818562000fd0565b9050818103604083015262001052818462000fd0565b9050949350505050565b600060208201905062001073600083018462000f77565b92915050565b600060408201905062001090600083018562000e50565b6200109f602083018462000e6b565b9392505050565b600060208284031215620010bf57620010be620007f8565b5b6000620010cf8482850162000959565b91505092915050565b600060c082019050620010ef600083018962000e50565b620010fe602083018862000e50565b6200110d604083018762000e50565b6200111c606083018662000f77565b818103608083015262001130818562000fd0565b905081810360a083015262001146818462000fd0565b9050979650505050505050565b7f4552433737373a20746f6b656e20726563697069656e7420636f6e747261637460008201527f20686173206e6f20696d706c656d656e74657220666f7220455243373737546f60208201527f6b656e73526563697069656e7400000000000000000000000000000000000000604082015250565b6000620011d7604d8362000eb9565b9150620011e48262001153565b606082019050919050565b600060208201905081810360008301526200120a81620011c8565b9050919050565b612a7e80620012216000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063959b8c3f116100a2578063d95b637111610071578063d95b6371146102e3578063dd62ed3e14610313578063fad8b32a14610343578063fc673c4f1461035f578063fe9d93031461037b57610116565b8063959b8c3f1461025d57806395d89b41146102795780639bd9bbc614610297578063a9059cbb146102b357610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d5578063556f0dc7146101f357806362ad1b831461021157806370a082311461022d57610116565b806306e485381461011b57806306fdde0314610139578063095ea7b31461015757806318160ddd14610187575b600080fd5b610123610397565b6040516101309190611aaa565b60405180910390f35b610141610425565b60405161014e9190611b5c565b60405180910390f35b610171600480360381019061016c9190611bf4565b6104b7565b60405161017e9190611c4f565b60405180910390f35b61018f6104da565b60405161019c9190611c79565b60405180910390f35b6101bf60048036038101906101ba9190611c94565b6104e4565b6040516101cc9190611c4f565b60405180910390f35b6101dd610535565b6040516101ea9190611d03565b60405180910390f35b6101fb61053e565b6040516102089190611c79565b60405180910390f35b61022b60048036038101906102269190611e53565b610547565b005b61024760048036038101906102429190611f06565b6105ad565b6040516102549190611c79565b60405180910390f35b61027760048036038101906102729190611f06565b6105f5565b005b610281610855565b60405161028e9190611b5c565b60405180910390f35b6102b160048036038101906102ac9190611f33565b6108e7565b005b6102cd60048036038101906102c89190611bf4565b610911565b6040516102da9190611c4f565b60405180910390f35b6102fd60048036038101906102f89190611fa2565b610951565b60405161030a9190611c4f565b60405180910390f35b61032d60048036038101906103289190611fa2565b610b02565b60405161033a9190611c79565b60405180910390f35b61035d60048036038101906103589190611f06565b610b89565b005b61037960048036038101906103749190611fe2565b610de9565b005b61039560048036038101906103909190612081565b610e4b565b005b6060600480548060200260200160405190810160405280929190818152602001828054801561041b57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116103d1575b5050505050905090565b6060600280546104349061210c565b80601f01602080910402602001604051908101604052809291908181526020018280546104609061210c565b80156104ad5780601f10610482576101008083540402835291602001916104ad565b820191906000526020600020905b81548152906001019060200180831161049057829003601f168201915b5050505050905090565b6000806104c2610e94565b90506104cf818585610e9c565b600191505092915050565b6000600154905090565b6000806104ef610e94565b90506104fc858285611065565b610529858585604051806020016040528060008152506040518060200160405280600081525060006110f1565b60019150509392505050565b60006012905090565b60006001905090565b610558610552610e94565b86610951565b610597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058e906121af565b60405180910390fd5b6105a6858585858560016110f1565b5050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b8073ffffffffffffffffffffffffffffffffffffffff16610614610e94565b73ffffffffffffffffffffffffffffffffffffffff160361066a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066190612241565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561075457600760006106c8610e94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690556107f1565b600160066000610762610e94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6107f9610e94565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f960405160405180910390a350565b6060600380546108649061210c565b80601f01602080910402602001604051908101604052809291908181526020018280546108909061210c565b80156108dd5780601f106108b2576101008083540402835291602001916108dd565b820191906000526020600020905b8154815290600101906020018083116108c057829003601f168201915b5050505050905090565b61090c6108f2610e94565b8484846040518060200160405280600081525060016110f1565b505050565b600061094761091e610e94565b8484604051806020016040528060008152506040518060200160405280600081525060006110f1565b6001905092915050565b60008173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610a695750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015610a685750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b80610afa5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b905092915050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b91610e94565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf5906122d3565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610cf157600160076000610c5e610e94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610d85565b60066000610cfd610e94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690555b610d8d610e94565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa160405160405180910390a350565b610dfa610df4610e94565b85610951565b610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e30906121af565b60405180910390fd5b610e458484848461120f565b50505050565b610e6d610e56610e94565b83836040518060200160405280600081525061120f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290612365565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f71906123f7565b60405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110589190611c79565b60405180910390a3505050565b60006110718484610b02565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110eb57818110156110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490612463565b60405180910390fd5b6110ea8484848403610e9c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603611160576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611157906124f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690612587565b60405180910390fd5b60006111d9610e94565b90506111e9818888888888611461565b6111f78188888888886115c8565b611206818888888888886117e2565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127590612619565b60405180910390fd5b6000611288610e94565b905061129981866000878787611461565b6112a681866000876119b4565b60008060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508481101561132c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611323906126ab565b60405180910390fd5b8481036000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550846001600082825461138391906126fa565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a40988787876040516113eb93929190612783565b60405180910390a3600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516114519190611c79565b60405180910390a3505050505050565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca877f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe8956040518363ffffffff1660e01b81526004016114d29291906127f0565b602060405180830381865afa1580156114ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611513919061282e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115bf578073ffffffffffffffffffffffffffffffffffffffff166375ab97828888888888886040518763ffffffff1660e01b815260040161158c9695949392919061285b565b600060405180830381600087803b1580156115a657600080fd5b505af11580156115ba573d6000803e3d6000fd5b505050505b50505050505050565b6115d4868686866119b4565b60008060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561165a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116519061293c565b60405180910390fd5b8381036000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ed919061295c565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc8261467798787878760405161176c93929190612783565b60405180910390a48473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516117d19190611c79565b60405180910390a350505050505050565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca877fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b6040518363ffffffff1660e01b81526004016118539291906127f0565b602060405180830381865afa158015611870573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611894919061282e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611943578073ffffffffffffffffffffffffffffffffffffffff166223de298989898989896040518763ffffffff1660e01b815260040161190c9695949392919061285b565b600060405180830381600087803b15801561192657600080fd5b505af115801561193a573d6000803e3d6000fd5b505050506119aa565b81156119a9576119688673ffffffffffffffffffffffffffffffffffffffff16610e71565b156119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f90612a28565b60405180910390fd5b5b5b5050505050505050565b50505050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a11826119e6565b9050919050565b611a2181611a06565b82525050565b6000611a338383611a18565b60208301905092915050565b6000602082019050919050565b6000611a57826119ba565b611a6181856119c5565b9350611a6c836119d6565b8060005b83811015611a9d578151611a848882611a27565b9750611a8f83611a3f565b925050600181019050611a70565b5085935050505092915050565b60006020820190508181036000830152611ac48184611a4c565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b06578082015181840152602081019050611aeb565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b2e82611acc565b611b388185611ad7565b9350611b48818560208601611ae8565b611b5181611b12565b840191505092915050565b60006020820190508181036000830152611b768184611b23565b905092915050565b6000604051905090565b600080fd5b600080fd5b611b9b81611a06565b8114611ba657600080fd5b50565b600081359050611bb881611b92565b92915050565b6000819050919050565b611bd181611bbe565b8114611bdc57600080fd5b50565b600081359050611bee81611bc8565b92915050565b60008060408385031215611c0b57611c0a611b88565b5b6000611c1985828601611ba9565b9250506020611c2a85828601611bdf565b9150509250929050565b60008115159050919050565b611c4981611c34565b82525050565b6000602082019050611c646000830184611c40565b92915050565b611c7381611bbe565b82525050565b6000602082019050611c8e6000830184611c6a565b92915050565b600080600060608486031215611cad57611cac611b88565b5b6000611cbb86828701611ba9565b9350506020611ccc86828701611ba9565b9250506040611cdd86828701611bdf565b9150509250925092565b600060ff82169050919050565b611cfd81611ce7565b82525050565b6000602082019050611d186000830184611cf4565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d6082611b12565b810181811067ffffffffffffffff82111715611d7f57611d7e611d28565b5b80604052505050565b6000611d92611b7e565b9050611d9e8282611d57565b919050565b600067ffffffffffffffff821115611dbe57611dbd611d28565b5b611dc782611b12565b9050602081019050919050565b82818337600083830152505050565b6000611df6611df184611da3565b611d88565b905082815260208101848484011115611e1257611e11611d23565b5b611e1d848285611dd4565b509392505050565b600082601f830112611e3a57611e39611d1e565b5b8135611e4a848260208601611de3565b91505092915050565b600080600080600060a08688031215611e6f57611e6e611b88565b5b6000611e7d88828901611ba9565b9550506020611e8e88828901611ba9565b9450506040611e9f88828901611bdf565b935050606086013567ffffffffffffffff811115611ec057611ebf611b8d565b5b611ecc88828901611e25565b925050608086013567ffffffffffffffff811115611eed57611eec611b8d565b5b611ef988828901611e25565b9150509295509295909350565b600060208284031215611f1c57611f1b611b88565b5b6000611f2a84828501611ba9565b91505092915050565b600080600060608486031215611f4c57611f4b611b88565b5b6000611f5a86828701611ba9565b9350506020611f6b86828701611bdf565b925050604084013567ffffffffffffffff811115611f8c57611f8b611b8d565b5b611f9886828701611e25565b9150509250925092565b60008060408385031215611fb957611fb8611b88565b5b6000611fc785828601611ba9565b9250506020611fd885828601611ba9565b9150509250929050565b60008060008060808587031215611ffc57611ffb611b88565b5b600061200a87828801611ba9565b945050602061201b87828801611bdf565b935050604085013567ffffffffffffffff81111561203c5761203b611b8d565b5b61204887828801611e25565b925050606085013567ffffffffffffffff81111561206957612068611b8d565b5b61207587828801611e25565b91505092959194509250565b6000806040838503121561209857612097611b88565b5b60006120a685828601611bdf565b925050602083013567ffffffffffffffff8111156120c7576120c6611b8d565b5b6120d385828601611e25565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061212457607f821691505b602082108103612137576121366120dd565b5b50919050565b7f4552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f60008201527f7220666f7220686f6c6465720000000000000000000000000000000000000000602082015250565b6000612199602c83611ad7565b91506121a48261213d565b604082019050919050565b600060208201905081810360008301526121c88161218c565b9050919050565b7f4552433737373a20617574686f72697a696e672073656c66206173206f70657260008201527f61746f7200000000000000000000000000000000000000000000000000000000602082015250565b600061222b602483611ad7565b9150612236826121cf565b604082019050919050565b6000602082019050818103600083015261225a8161221e565b9050919050565b7f4552433737373a207265766f6b696e672073656c66206173206f70657261746f60008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006122bd602183611ad7565b91506122c882612261565b604082019050919050565b600060208201905081810360008301526122ec816122b0565b9050919050565b7f4552433737373a20617070726f76652066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061234f602583611ad7565b915061235a826122f3565b604082019050919050565b6000602082019050818103600083015261237e81612342565b9050919050565b7f4552433737373a20617070726f766520746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006123e1602383611ad7565b91506123ec82612385565b604082019050919050565b60006020820190508181036000830152612410816123d4565b9050919050565b7f4552433737373a20696e73756666696369656e7420616c6c6f77616e63650000600082015250565b600061244d601e83611ad7565b915061245882612417565b602082019050919050565b6000602082019050818103600083015261247c81612440565b9050919050565b7f4552433737373a207472616e736665722066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006124df602683611ad7565b91506124ea82612483565b604082019050919050565b6000602082019050818103600083015261250e816124d2565b9050919050565b7f4552433737373a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612571602483611ad7565b915061257c82612515565b604082019050919050565b600060208201905081810360008301526125a081612564565b9050919050565b7f4552433737373a206275726e2066726f6d20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612603602283611ad7565b915061260e826125a7565b604082019050919050565b60006020820190508181036000830152612632816125f6565b9050919050565b7f4552433737373a206275726e20616d6f756e7420657863656564732062616c6160008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612695602383611ad7565b91506126a082612639565b604082019050919050565b600060208201905081810360008301526126c481612688565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061270582611bbe565b915061271083611bbe565b9250828203905081811115612728576127276126cb565b5b92915050565b600081519050919050565b600082825260208201905092915050565b60006127558261272e565b61275f8185612739565b935061276f818560208601611ae8565b61277881611b12565b840191505092915050565b60006060820190506127986000830186611c6a565b81810360208301526127aa818561274a565b905081810360408301526127be818461274a565b9050949350505050565b6127d181611a06565b82525050565b6000819050919050565b6127ea816127d7565b82525050565b600060408201905061280560008301856127c8565b61281260208301846127e1565b9392505050565b60008151905061282881611b92565b92915050565b60006020828403121561284457612843611b88565b5b600061285284828501612819565b91505092915050565b600060c08201905061287060008301896127c8565b61287d60208301886127c8565b61288a60408301876127c8565b6128976060830186611c6a565b81810360808301526128a9818561274a565b905081810360a08301526128bd818461274a565b9050979650505050505050565b7f4552433737373a207472616e7366657220616d6f756e7420657863656564732060008201527f62616c616e636500000000000000000000000000000000000000000000000000602082015250565b6000612926602783611ad7565b9150612931826128ca565b604082019050919050565b6000602082019050818103600083015261295581612919565b9050919050565b600061296782611bbe565b915061297283611bbe565b925082820190508082111561298a576129896126cb565b5b92915050565b7f4552433737373a20746f6b656e20726563697069656e7420636f6e747261637460008201527f20686173206e6f20696d706c656d656e74657220666f7220455243373737546f60208201527f6b656e73526563697069656e7400000000000000000000000000000000000000604082015250565b6000612a12604d83611ad7565b9150612a1d82612990565b606082019050919050565b60006020820190508181036000830152612a4181612a05565b905091905056fea2646970667358221220a9359bf6568503f430baef3e13ee92279ad315edb46ccab5c4776fbef791e5da64736f6c63430008110033000000000000000000000000000000000000000006765c793fa10079d000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000bdb9a24f039a314ebe3569f91fb10c38d2d76ad0

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063959b8c3f116100a2578063d95b637111610071578063d95b6371146102e3578063dd62ed3e14610313578063fad8b32a14610343578063fc673c4f1461035f578063fe9d93031461037b57610116565b8063959b8c3f1461025d57806395d89b41146102795780639bd9bbc614610297578063a9059cbb146102b357610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d5578063556f0dc7146101f357806362ad1b831461021157806370a082311461022d57610116565b806306e485381461011b57806306fdde0314610139578063095ea7b31461015757806318160ddd14610187575b600080fd5b610123610397565b6040516101309190611aaa565b60405180910390f35b610141610425565b60405161014e9190611b5c565b60405180910390f35b610171600480360381019061016c9190611bf4565b6104b7565b60405161017e9190611c4f565b60405180910390f35b61018f6104da565b60405161019c9190611c79565b60405180910390f35b6101bf60048036038101906101ba9190611c94565b6104e4565b6040516101cc9190611c4f565b60405180910390f35b6101dd610535565b6040516101ea9190611d03565b60405180910390f35b6101fb61053e565b6040516102089190611c79565b60405180910390f35b61022b60048036038101906102269190611e53565b610547565b005b61024760048036038101906102429190611f06565b6105ad565b6040516102549190611c79565b60405180910390f35b61027760048036038101906102729190611f06565b6105f5565b005b610281610855565b60405161028e9190611b5c565b60405180910390f35b6102b160048036038101906102ac9190611f33565b6108e7565b005b6102cd60048036038101906102c89190611bf4565b610911565b6040516102da9190611c4f565b60405180910390f35b6102fd60048036038101906102f89190611fa2565b610951565b60405161030a9190611c4f565b60405180910390f35b61032d60048036038101906103289190611fa2565b610b02565b60405161033a9190611c79565b60405180910390f35b61035d60048036038101906103589190611f06565b610b89565b005b61037960048036038101906103749190611fe2565b610de9565b005b61039560048036038101906103909190612081565b610e4b565b005b6060600480548060200260200160405190810160405280929190818152602001828054801561041b57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116103d1575b5050505050905090565b6060600280546104349061210c565b80601f01602080910402602001604051908101604052809291908181526020018280546104609061210c565b80156104ad5780601f10610482576101008083540402835291602001916104ad565b820191906000526020600020905b81548152906001019060200180831161049057829003601f168201915b5050505050905090565b6000806104c2610e94565b90506104cf818585610e9c565b600191505092915050565b6000600154905090565b6000806104ef610e94565b90506104fc858285611065565b610529858585604051806020016040528060008152506040518060200160405280600081525060006110f1565b60019150509392505050565b60006012905090565b60006001905090565b610558610552610e94565b86610951565b610597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058e906121af565b60405180910390fd5b6105a6858585858560016110f1565b5050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b8073ffffffffffffffffffffffffffffffffffffffff16610614610e94565b73ffffffffffffffffffffffffffffffffffffffff160361066a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066190612241565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561075457600760006106c8610e94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690556107f1565b600160066000610762610e94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6107f9610e94565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f960405160405180910390a350565b6060600380546108649061210c565b80601f01602080910402602001604051908101604052809291908181526020018280546108909061210c565b80156108dd5780601f106108b2576101008083540402835291602001916108dd565b820191906000526020600020905b8154815290600101906020018083116108c057829003601f168201915b5050505050905090565b61090c6108f2610e94565b8484846040518060200160405280600081525060016110f1565b505050565b600061094761091e610e94565b8484604051806020016040528060008152506040518060200160405280600081525060006110f1565b6001905092915050565b60008173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610a695750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015610a685750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b80610afa5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b905092915050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b91610e94565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf5906122d3565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610cf157600160076000610c5e610e94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610d85565b60066000610cfd610e94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690555b610d8d610e94565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa160405160405180910390a350565b610dfa610df4610e94565b85610951565b610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e30906121af565b60405180910390fd5b610e458484848461120f565b50505050565b610e6d610e56610e94565b83836040518060200160405280600081525061120f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290612365565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f71906123f7565b60405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110589190611c79565b60405180910390a3505050565b60006110718484610b02565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110eb57818110156110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490612463565b60405180910390fd5b6110ea8484848403610e9c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603611160576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611157906124f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690612587565b60405180910390fd5b60006111d9610e94565b90506111e9818888888888611461565b6111f78188888888886115c8565b611206818888888888886117e2565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361127e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127590612619565b60405180910390fd5b6000611288610e94565b905061129981866000878787611461565b6112a681866000876119b4565b60008060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508481101561132c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611323906126ab565b60405180910390fd5b8481036000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550846001600082825461138391906126fa565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a40988787876040516113eb93929190612783565b60405180910390a3600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516114519190611c79565b60405180910390a3505050505050565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca877f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe8956040518363ffffffff1660e01b81526004016114d29291906127f0565b602060405180830381865afa1580156114ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611513919061282e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115bf578073ffffffffffffffffffffffffffffffffffffffff166375ab97828888888888886040518763ffffffff1660e01b815260040161158c9695949392919061285b565b600060405180830381600087803b1580156115a657600080fd5b505af11580156115ba573d6000803e3d6000fd5b505050505b50505050505050565b6115d4868686866119b4565b60008060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561165a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116519061293c565b60405180910390fd5b8381036000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ed919061295c565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc8261467798787878760405161176c93929190612783565b60405180910390a48473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516117d19190611c79565b60405180910390a350505050505050565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca877fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b6040518363ffffffff1660e01b81526004016118539291906127f0565b602060405180830381865afa158015611870573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611894919061282e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611943578073ffffffffffffffffffffffffffffffffffffffff166223de298989898989896040518763ffffffff1660e01b815260040161190c9695949392919061285b565b600060405180830381600087803b15801561192657600080fd5b505af115801561193a573d6000803e3d6000fd5b505050506119aa565b81156119a9576119688673ffffffffffffffffffffffffffffffffffffffff16610e71565b156119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f90612a28565b60405180910390fd5b5b5b5050505050505050565b50505050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a11826119e6565b9050919050565b611a2181611a06565b82525050565b6000611a338383611a18565b60208301905092915050565b6000602082019050919050565b6000611a57826119ba565b611a6181856119c5565b9350611a6c836119d6565b8060005b83811015611a9d578151611a848882611a27565b9750611a8f83611a3f565b925050600181019050611a70565b5085935050505092915050565b60006020820190508181036000830152611ac48184611a4c565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b06578082015181840152602081019050611aeb565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b2e82611acc565b611b388185611ad7565b9350611b48818560208601611ae8565b611b5181611b12565b840191505092915050565b60006020820190508181036000830152611b768184611b23565b905092915050565b6000604051905090565b600080fd5b600080fd5b611b9b81611a06565b8114611ba657600080fd5b50565b600081359050611bb881611b92565b92915050565b6000819050919050565b611bd181611bbe565b8114611bdc57600080fd5b50565b600081359050611bee81611bc8565b92915050565b60008060408385031215611c0b57611c0a611b88565b5b6000611c1985828601611ba9565b9250506020611c2a85828601611bdf565b9150509250929050565b60008115159050919050565b611c4981611c34565b82525050565b6000602082019050611c646000830184611c40565b92915050565b611c7381611bbe565b82525050565b6000602082019050611c8e6000830184611c6a565b92915050565b600080600060608486031215611cad57611cac611b88565b5b6000611cbb86828701611ba9565b9350506020611ccc86828701611ba9565b9250506040611cdd86828701611bdf565b9150509250925092565b600060ff82169050919050565b611cfd81611ce7565b82525050565b6000602082019050611d186000830184611cf4565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611d6082611b12565b810181811067ffffffffffffffff82111715611d7f57611d7e611d28565b5b80604052505050565b6000611d92611b7e565b9050611d9e8282611d57565b919050565b600067ffffffffffffffff821115611dbe57611dbd611d28565b5b611dc782611b12565b9050602081019050919050565b82818337600083830152505050565b6000611df6611df184611da3565b611d88565b905082815260208101848484011115611e1257611e11611d23565b5b611e1d848285611dd4565b509392505050565b600082601f830112611e3a57611e39611d1e565b5b8135611e4a848260208601611de3565b91505092915050565b600080600080600060a08688031215611e6f57611e6e611b88565b5b6000611e7d88828901611ba9565b9550506020611e8e88828901611ba9565b9450506040611e9f88828901611bdf565b935050606086013567ffffffffffffffff811115611ec057611ebf611b8d565b5b611ecc88828901611e25565b925050608086013567ffffffffffffffff811115611eed57611eec611b8d565b5b611ef988828901611e25565b9150509295509295909350565b600060208284031215611f1c57611f1b611b88565b5b6000611f2a84828501611ba9565b91505092915050565b600080600060608486031215611f4c57611f4b611b88565b5b6000611f5a86828701611ba9565b9350506020611f6b86828701611bdf565b925050604084013567ffffffffffffffff811115611f8c57611f8b611b8d565b5b611f9886828701611e25565b9150509250925092565b60008060408385031215611fb957611fb8611b88565b5b6000611fc785828601611ba9565b9250506020611fd885828601611ba9565b9150509250929050565b60008060008060808587031215611ffc57611ffb611b88565b5b600061200a87828801611ba9565b945050602061201b87828801611bdf565b935050604085013567ffffffffffffffff81111561203c5761203b611b8d565b5b61204887828801611e25565b925050606085013567ffffffffffffffff81111561206957612068611b8d565b5b61207587828801611e25565b91505092959194509250565b6000806040838503121561209857612097611b88565b5b60006120a685828601611bdf565b925050602083013567ffffffffffffffff8111156120c7576120c6611b8d565b5b6120d385828601611e25565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061212457607f821691505b602082108103612137576121366120dd565b5b50919050565b7f4552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f60008201527f7220666f7220686f6c6465720000000000000000000000000000000000000000602082015250565b6000612199602c83611ad7565b91506121a48261213d565b604082019050919050565b600060208201905081810360008301526121c88161218c565b9050919050565b7f4552433737373a20617574686f72697a696e672073656c66206173206f70657260008201527f61746f7200000000000000000000000000000000000000000000000000000000602082015250565b600061222b602483611ad7565b9150612236826121cf565b604082019050919050565b6000602082019050818103600083015261225a8161221e565b9050919050565b7f4552433737373a207265766f6b696e672073656c66206173206f70657261746f60008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006122bd602183611ad7565b91506122c882612261565b604082019050919050565b600060208201905081810360008301526122ec816122b0565b9050919050565b7f4552433737373a20617070726f76652066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061234f602583611ad7565b915061235a826122f3565b604082019050919050565b6000602082019050818103600083015261237e81612342565b9050919050565b7f4552433737373a20617070726f766520746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006123e1602383611ad7565b91506123ec82612385565b604082019050919050565b60006020820190508181036000830152612410816123d4565b9050919050565b7f4552433737373a20696e73756666696369656e7420616c6c6f77616e63650000600082015250565b600061244d601e83611ad7565b915061245882612417565b602082019050919050565b6000602082019050818103600083015261247c81612440565b9050919050565b7f4552433737373a207472616e736665722066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006124df602683611ad7565b91506124ea82612483565b604082019050919050565b6000602082019050818103600083015261250e816124d2565b9050919050565b7f4552433737373a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612571602483611ad7565b915061257c82612515565b604082019050919050565b600060208201905081810360008301526125a081612564565b9050919050565b7f4552433737373a206275726e2066726f6d20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612603602283611ad7565b915061260e826125a7565b604082019050919050565b60006020820190508181036000830152612632816125f6565b9050919050565b7f4552433737373a206275726e20616d6f756e7420657863656564732062616c6160008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b6000612695602383611ad7565b91506126a082612639565b604082019050919050565b600060208201905081810360008301526126c481612688565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061270582611bbe565b915061271083611bbe565b9250828203905081811115612728576127276126cb565b5b92915050565b600081519050919050565b600082825260208201905092915050565b60006127558261272e565b61275f8185612739565b935061276f818560208601611ae8565b61277881611b12565b840191505092915050565b60006060820190506127986000830186611c6a565b81810360208301526127aa818561274a565b905081810360408301526127be818461274a565b9050949350505050565b6127d181611a06565b82525050565b6000819050919050565b6127ea816127d7565b82525050565b600060408201905061280560008301856127c8565b61281260208301846127e1565b9392505050565b60008151905061282881611b92565b92915050565b60006020828403121561284457612843611b88565b5b600061285284828501612819565b91505092915050565b600060c08201905061287060008301896127c8565b61287d60208301886127c8565b61288a60408301876127c8565b6128976060830186611c6a565b81810360808301526128a9818561274a565b905081810360a08301526128bd818461274a565b9050979650505050505050565b7f4552433737373a207472616e7366657220616d6f756e7420657863656564732060008201527f62616c616e636500000000000000000000000000000000000000000000000000602082015250565b6000612926602783611ad7565b9150612931826128ca565b604082019050919050565b6000602082019050818103600083015261295581612919565b9050919050565b600061296782611bbe565b915061297283611bbe565b925082820190508082111561298a576129896126cb565b5b92915050565b7f4552433737373a20746f6b656e20726563697069656e7420636f6e747261637460008201527f20686173206e6f20696d706c656d656e74657220666f7220455243373737546f60208201527f6b656e73526563697069656e7400000000000000000000000000000000000000604082015250565b6000612a12604d83611ad7565b9150612a1d82612990565b606082019050919050565b60006020820190508181036000830152612a4181612a05565b905091905056fea2646970667358221220a9359bf6568503f430baef3e13ee92279ad315edb46ccab5c4776fbef791e5da64736f6c63430008110033

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

000000000000000000000000000000000000000006765c793fa10079d000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000001000000000000000000000000bdb9a24f039a314ebe3569f91fb10c38d2d76ad0

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 2000000000000000000000000000
Arg [1] : defaultOperators (address[]): 0xBdB9a24F039a314EBE3569f91FB10C38d2D76aD0

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000006765c793fa10079d0000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 000000000000000000000000bdb9a24f039a314ebe3569f91fb10c38d2d76ad0


Deployed Bytecode Sourcemap

84:224:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6665:132:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2997:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8477:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3823:125;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9174:326;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3454:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3660:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6923:375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4053:152;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5690:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3158:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4342:199;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4782:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5302:316;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8007:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6181:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7426:333;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5105:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6665:132;6731:16;6767:22;6760:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6665:132;:::o;2997:100::-;3051:13;3084:5;3077:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2997:100;:::o;8477:201::-;8559:4;8576:14;8593:12;:10;:12::i;:::-;8576:29;;8616:32;8625:6;8633:7;8642:5;8616:8;:32::i;:::-;8666:4;8659:11;;;8477:201;;;;:::o;3823:125::-;3901:7;3928:12;;3921:19;;3823:125;:::o;9174:326::-;9314:4;9331:15;9349:12;:10;:12::i;:::-;9331:30;;9372:40;9388:6;9396:7;9405:6;9372:15;:40::i;:::-;9423:47;9429:6;9437:9;9448:6;9423:47;;;;;;;;;;;;;;;;;;;;;;;;9464:5;9423;:47::i;:::-;9488:4;9481:11;;;9174:326;;;;;:::o;3454:84::-;3503:5;3528:2;3521:9;;3454:84;:::o;3660:97::-;3721:7;3748:1;3741:8;;3660:97;:::o;6923:375::-;7137:35;7151:12;:10;:12::i;:::-;7165:6;7137:13;:35::i;:::-;7129:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;7232:58;7238:6;7246:9;7257:6;7265:4;7271:12;7285:4;7232:5;:58::i;:::-;6923:375;;;;;:::o;4053:152::-;4148:7;4175:9;:22;4185:11;4175:22;;;;;;;;;;;;;;;;4168:29;;4053:152;;;:::o;5690:422::-;5794:8;5778:24;;:12;:10;:12::i;:::-;:24;;;5770:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5860:17;:27;5878:8;5860:27;;;;;;;;;;;;;;;;;;;;;;;;;5856:189;;;5911:24;:38;5936:12;:10;:12::i;:::-;5911:38;;;;;;;;;;;;;;;:48;5950:8;5911:48;;;;;;;;;;;;;;;;5904:55;;;;;;;;;;;5856:189;;;6029:4;5992:10;:24;6003:12;:10;:12::i;:::-;5992:24;;;;;;;;;;;;;;;:34;6017:8;5992:34;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;5856:189;6091:12;:10;:12::i;:::-;6062:42;;6081:8;6062:42;;;;;;;;;;;;5690:422;:::o;3158:104::-;3214:13;3247:7;3240:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3158:104;:::o;4342:199::-;4479:54;4485:12;:10;:12::i;:::-;4499:9;4510:6;4518:4;4479:54;;;;;;;;;;;;4528:4;4479:5;:54::i;:::-;4342:199;;;:::o;4782:186::-;4868:4;4885:53;4891:12;:10;:12::i;:::-;4905:9;4916:6;4885:53;;;;;;;;;;;;;;;;;;;;;;;;4932:5;4885;:53::i;:::-;4956:4;4949:11;;4782:186;;;;:::o;5302:316::-;5402:4;5451:11;5439:23;;:8;:23;;;:121;;;;5480:17;:27;5498:8;5480:27;;;;;;;;;;;;;;;;;;;;;;;;;:79;;;;;5512:24;:37;5537:11;5512:37;;;;;;;;;;;;;;;:47;5550:8;5512:47;;;;;;;;;;;;;;;;;;;;;;;;;5511:48;5480:79;5439:121;:171;;;;5577:10;:23;5588:11;5577:23;;;;;;;;;;;;;;;:33;5601:8;5577:33;;;;;;;;;;;;;;;;;;;;;;;;;5439:171;5419:191;;5302:316;;;;:::o;8007:153::-;8097:7;8124:11;:19;8136:6;8124:19;;;;;;;;;;;;;;;:28;8144:7;8124:28;;;;;;;;;;;;;;;;8117:35;;8007:153;;;;:::o;6181:413::-;6278:12;:10;:12::i;:::-;6266:24;;:8;:24;;;6258:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;6345:17;:27;6363:8;6345:27;;;;;;;;;;;;;;;;;;;;;;;;;6341:189;;;6440:4;6389:24;:38;6414:12;:10;:12::i;:::-;6389:38;;;;;;;;;;;;;;;:48;6428:8;6389:48;;;;;;;;;;;;;;;;:55;;;;;;;;;;;;;;;;;;6341:189;;;6484:10;:24;6495:12;:10;:12::i;:::-;6484:24;;;;;;;;;;;;;;;:34;6509:8;6484:34;;;;;;;;;;;;;;;;6477:41;;;;;;;;;;;6341:189;6573:12;:10;:12::i;:::-;6547:39;;6563:8;6547:39;;;;;;;;;;;;6181:413;:::o;7426:333::-;7613:36;7627:12;:10;:12::i;:::-;7641:7;7613:13;:36::i;:::-;7605:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;7709:42;7715:7;7724:6;7732:4;7738:12;7709:5;:42::i;:::-;7426:333;;;;:::o;5105:129::-;5189:37;5195:12;:10;:12::i;:::-;5209:6;5217:4;5189:37;;;;;;;;;;;;:5;:37::i;:::-;5105:129;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;14848:383:3:-;15002:1;14984:20;;:6;:20;;;14976:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15084:1;15065:21;;:7;:21;;;15057:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;15170:5;15139:11;:19;15151:6;15139:19;;;;;;;;;;;;;;;:28;15159:7;15139:28;;;;;;;;;;;;;;;:36;;;;15208:7;15191:32;;15200:6;15191:32;;;15217:5;15191:32;;;;;;:::i;:::-;;;;;;;;14848:383;;;:::o;17890:454::-;18025:24;18052:25;18062:5;18069:7;18052:9;:25::i;:::-;18025:52;;18112:17;18092:16;:37;18088:249;;18174:6;18154:16;:26;;18146:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;18259:51;18268:5;18275:7;18303:6;18284:16;:25;18259:8;:51::i;:::-;18088:249;18014:330;17890:454;;;:::o;12240:676::-;12486:1;12470:18;;:4;:18;;;12462:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;12564:1;12550:16;;:2;:16;;;12542:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12620:16;12639:12;:10;:12::i;:::-;12620:31;;12664:69;12682:8;12692:4;12698:2;12702:6;12710:8;12720:12;12664:17;:69::i;:::-;12746:57;12752:8;12762:4;12768:2;12772:6;12780:8;12790:12;12746:5;:57::i;:::-;12816:92;12836:8;12846:4;12852:2;12856:6;12864:8;12874:12;12888:19;12816;:92::i;:::-;12451:465;12240:676;;;;;;:::o;13230:835::-;13416:1;13400:18;;:4;:18;;;13392:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13470:16;13489:12;:10;:12::i;:::-;13470:31;;13514:73;13532:8;13542:4;13556:1;13560:6;13568:4;13574:12;13514:17;:73::i;:::-;13600:56;13621:8;13631:4;13645:1;13649:6;13600:20;:56::i;:::-;13704:19;13726:9;:15;13736:4;13726:15;;;;;;;;;;;;;;;;13704:37;;13775:6;13760:11;:21;;13752:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;13889:6;13875:11;:20;13857:9;:15;13867:4;13857:15;;;;;;;;;;;;;;;:38;;;;13933:6;13917:12;;:22;;;;;;;:::i;:::-;;;;;;;;13974:4;13957:50;;13964:8;13957:50;;;13980:6;13988:4;13994:12;13957:50;;;;;;;;:::i;:::-;;;;;;;;14046:1;14023:34;;14032:4;14023:34;;;14050:6;14023:34;;;;;;:::i;:::-;;;;;;;;13381:684;;13230:835;;;;:::o;15715:484::-;15932:19;1208:42;15954:41;;;15996:4;1466:31;15954:78;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15932:100;;16070:1;16047:25;;:11;:25;;;16043:149;;16103:11;16089:39;;;16129:8;16139:4;16145:2;16149:6;16157:8;16167:12;16089:91;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16043:149;15921:278;15715:484;;;;;;:::o;14073:630::-;14278:48;14299:8;14309:4;14315:2;14319:6;14278:20;:48::i;:::-;14339:19;14361:9;:15;14371:4;14361:15;;;;;;;;;;;;;;;;14339:37;;14410:6;14395:11;:21;;14387:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14528:6;14514:11;:20;14496:9;:15;14506:4;14496:15;;;;;;;;;;;;;;;:38;;;;14573:6;14556:9;:13;14566:2;14556:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;14618:2;14597:56;;14612:4;14597:56;;14602:8;14597:56;;;14622:6;14630:8;14640:12;14597:56;;;;;;;;:::i;:::-;;;;;;;;14684:2;14669:26;;14678:4;14669:26;;;14688:6;14669:26;;;;;;:::i;:::-;;;;;;;;14267:436;14073:630;;;;;;:::o;16901:691::-;17155:19;1208:42;17177:41;;;17219:2;1564:34;17177:79;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17155:101;;17294:1;17271:25;;:11;:25;;;17267:318;;17330:11;17313:44;;;17358:8;17368:4;17374:2;17378:6;17386:8;17396:12;17313:96;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17267:318;;;17431:19;17427:158;;;17476:15;:2;:13;;;:15::i;:::-;17475:16;17467:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;17427:158;17267:318;17144:448;16901:691;;;;;;;:::o;18988:152::-;;;;;:::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://a9359bf6568503f430baef3e13ee92279ad315edb46ccab5c4776fbef791e5da
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.