ETH Price: $3,419.94 (-1.79%)
Gas: 5 Gwei

Token

 

Overview

Max Total Supply

555

Holders

447

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x79a752ad1CAFdCb189EA5A8d25bb112C57e767d9
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:
TLR_AllAccessPass

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-26
*/

// File: @openzeppelin/[email protected]/utils/Context.sol


// 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: @openzeppelin/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/[email protected]/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.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 functionCall(target, data, "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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/[email protected]/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/[email protected]/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/[email protected]/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/[email protected]/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: @openzeppelin/[email protected]/token/ERC1155/ERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

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

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

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

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * 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[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: @openzeppelin/[email protected]/token/ERC1155/extensions/ERC1155Supply.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] -= amounts[i];
            }
        }
    }
}

// File: Erc1155_555.sol



pragma solidity ^0.8.0;



contract TLR_AllAccessPass is ERC1155Supply, Ownable {
    // whitelist
    mapping(address => bool) public whitelist;
    bool public isWhitelistActive = true;
    // supply
    uint256 public constant MAX_SUPPLY = 555;
    mapping(address => bool) public didMint;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory _uri)
        ERC1155(_uri)
    {}
   
    /**
     * @dev Updates the metadata URI
     */
    function updateUri(string calldata newUri) public onlyOwner {
        _setURI(newUri);
    }

    /**
     * @dev Adds addresses to whitelist
     */
    function addToWhitelist(address[] calldata addresses) public onlyOwner {
        for (uint256 i=0; i<addresses.length; i++) {
            whitelist[addresses[i]] = true;
        }
    }

    /**
     * @dev Removes addresses from whitelist
     */
    function removeFromWhitelist(address[] calldata addresses) public onlyOwner {
        for (uint256 i=0; i<addresses.length; i++) {
            whitelist[addresses[i]] = false;
        }
    }

    /**
     * @dev Closes WL sale and starts public phase
     */
    function startPublicPhase() public onlyOwner {
        isWhitelistActive = false;
    }

    /**
     * @dev Mint
     */
    function mint() public {
        require(!didMint[msg.sender], "Already minted");
        require(totalSupply(0) + 1 <= MAX_SUPPLY, "Supply exceeded");
        if (isWhitelistActive) {
            require(whitelist[msg.sender], "Not whitelisted");
        }

        didMint[msg.sender] = true;
        _mint(msg.sender, 0, 1, "");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","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":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"didMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"updateUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526001600660006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040516200415f3803806200415f83398181016040528101906200005291906200030c565b8062000064816200008c60201b60201c565b506200008562000079620000a160201b60201c565b620000a960201b60201c565b506200068f565b80600290816200009d9190620005a8565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620001d8826200018d565b810181811067ffffffffffffffff82111715620001fa57620001f96200019e565b5b80604052505050565b60006200020f6200016f565b90506200021d8282620001cd565b919050565b600067ffffffffffffffff82111562000240576200023f6200019e565b5b6200024b826200018d565b9050602081019050919050565b60005b83811015620002785780820151818401526020810190506200025b565b8381111562000288576000848401525b50505050565b6000620002a56200029f8462000222565b62000203565b905082815260208101848484011115620002c457620002c362000188565b5b620002d184828562000258565b509392505050565b600082601f830112620002f157620002f062000183565b5b8151620003038482602086016200028e565b91505092915050565b60006020828403121562000325576200032462000179565b5b600082015167ffffffffffffffff8111156200034657620003456200017e565b5b6200035484828501620002d9565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003b057607f821691505b602082108103620003c657620003c562000368565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003f1565b6200043c8683620003f1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000489620004836200047d8462000454565b6200045e565b62000454565b9050919050565b6000819050919050565b620004a58362000468565b620004bd620004b48262000490565b848454620003fe565b825550505050565b600090565b620004d4620004c5565b620004e18184846200049a565b505050565b5b818110156200050957620004fd600082620004ca565b600181019050620004e7565b5050565b601f82111562000558576200052281620003cc565b6200052d84620003e1565b810160208510156200053d578190505b620005556200054c85620003e1565b830182620004e6565b50505b505050565b600082821c905092915050565b60006200057d600019846008026200055d565b1980831691505092915050565b60006200059883836200056a565b9150826002028217905092915050565b620005b3826200035d565b67ffffffffffffffff811115620005cf57620005ce6200019e565b5b620005db825462000397565b620005e88282856200050d565b600060209050601f8311600181146200062057600084156200060b578287015190505b6200061785826200058a565b86555062000687565b601f1984166200063086620003cc565b60005b828110156200065a5784890151825560018201915060208501945060208101905062000633565b868310156200067a578489015162000676601f8916826200056a565b8355505b6001600288020188555050505b505050505050565b613ac0806200069f6000396000f3fe608060405234801561001057600080fd5b50600436106101415760003560e01c8063570b3c6a116100b8578063a22cb4651161007c578063a22cb46514610374578063bd85b03914610390578063deaf33b2146103c0578063e985e9c5146103ca578063f242432a146103fa578063f2fde38b1461041657610141565b8063570b3c6a146102e4578063715018a6146103005780637f6497831461030a5780638da5cb5b146103265780639b19251a1461034457610141565b80633241e9171161010a5780633241e917146101fc57806332cb6b0c1461022c5780634e1273f41461024a5780634f558e791461027a578063524513d6146102aa578063548db174146102c857610141565b8062fdd58e1461014657806301ffc9a7146101765780630e89341c146101a65780631249c58b146101d65780632eb2c2d6146101e0575b600080fd5b610160600480360381019061015b91906121a3565b610432565b60405161016d91906121f2565b60405180910390f35b610190600480360381019061018b9190612265565b6104fa565b60405161019d91906122ad565b60405180910390f35b6101c060048036038101906101bb91906122c8565b6105dc565b6040516101cd919061238e565b60405180910390f35b6101de610670565b005b6101fa60048036038101906101f591906125ad565b610870565b005b6102166004803603810190610211919061267c565b610911565b60405161022391906122ad565b60405180910390f35b610234610931565b60405161024191906121f2565b60405180910390f35b610264600480360381019061025f919061276c565b610937565b60405161027191906128a2565b60405180910390f35b610294600480360381019061028f91906122c8565b610a50565b6040516102a191906122ad565b60405180910390f35b6102b2610a64565b6040516102bf91906122ad565b60405180910390f35b6102e260048036038101906102dd919061291f565b610a77565b005b6102fe60048036038101906102f991906129c2565b610b98565b005b610308610c65565b005b610324600480360381019061031f919061291f565b610ced565b005b61032e610e0e565b60405161033b9190612a1e565b60405180910390f35b61035e6004803603810190610359919061267c565b610e38565b60405161036b91906122ad565b60405180910390f35b61038e60048036038101906103899190612a65565b610e58565b005b6103aa60048036038101906103a591906122c8565b610e6e565b6040516103b791906121f2565b60405180910390f35b6103c8610e8b565b005b6103e460048036038101906103df9190612aa5565b610f24565b6040516103f191906122ad565b60405180910390f35b610414600480360381019061040f9190612ae5565b610fb8565b005b610430600480360381019061042b919061267c565b611059565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036104a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049990612bee565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c557507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105d557506105d482611150565b5b9050919050565b6060600280546105eb90612c3d565b80601f016020809104026020016040519081016040528092919081815260200182805461061790612c3d565b80156106645780601f1061063957610100808354040283529160200191610664565b820191906000526020600020905b81548152906001019060200180831161064757829003601f168201915b50505050509050919050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156106fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f490612cba565b60405180910390fd5b61022b600161070c6000610e6e565b6107169190612d09565b1115610757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074e90612dab565b60405180910390fd5b600660009054906101000a900460ff16156107f957600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166107f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ef90612e17565b60405180910390fd5b5b6001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061086e3360006001604051806020016040528060008152506111ba565b565b61087861134f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108be57506108bd856108b861134f565b610f24565b5b6108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f490612ea9565b60405180910390fd5b61090a8585858585611357565b5050505050565b60076020528060005260406000206000915054906101000a900460ff1681565b61022b81565b6060815183511461097d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097490612f3b565b60405180910390fd5b6000835167ffffffffffffffff81111561099a576109996123b5565b5b6040519080825280602002602001820160405280156109c85781602001602082028036833780820191505090505b50905060005b8451811015610a4557610a158582815181106109ed576109ec612f5b565b5b6020026020010151858381518110610a0857610a07612f5b565b5b6020026020010151610432565b828281518110610a2857610a27612f5b565b5b60200260200101818152505080610a3e90612f8a565b90506109ce565b508091505092915050565b600080610a5c83610e6e565b119050919050565b600660009054906101000a900460ff1681565b610a7f61134f565b73ffffffffffffffffffffffffffffffffffffffff16610a9d610e0e565b73ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea9061301e565b60405180910390fd5b60005b82829050811015610b9357600060056000858585818110610b1a57610b19612f5b565b5b9050602002016020810190610b2f919061267c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b8b90612f8a565b915050610af6565b505050565b610ba061134f565b73ffffffffffffffffffffffffffffffffffffffff16610bbe610e0e565b73ffffffffffffffffffffffffffffffffffffffff1614610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b9061301e565b60405180910390fd5b610c6182828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061166a565b5050565b610c6d61134f565b73ffffffffffffffffffffffffffffffffffffffff16610c8b610e0e565b73ffffffffffffffffffffffffffffffffffffffff1614610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd89061301e565b60405180910390fd5b610ceb600061167d565b565b610cf561134f565b73ffffffffffffffffffffffffffffffffffffffff16610d13610e0e565b73ffffffffffffffffffffffffffffffffffffffff1614610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d609061301e565b60405180910390fd5b60005b82829050811015610e0957600160056000858585818110610d9057610d8f612f5b565b5b9050602002016020810190610da5919061267c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e0190612f8a565b915050610d6c565b505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60056020528060005260406000206000915054906101000a900460ff1681565b610e6a610e6361134f565b8383611743565b5050565b600060036000838152602001908152602001600020549050919050565b610e9361134f565b73ffffffffffffffffffffffffffffffffffffffff16610eb1610e0e565b73ffffffffffffffffffffffffffffffffffffffff1614610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe9061301e565b60405180910390fd5b6000600660006101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fc061134f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061100657506110058561100061134f565b610f24565b5b611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c906130b0565b60405180910390fd5b61105285858585856118af565b5050505050565b61106161134f565b73ffffffffffffffffffffffffffffffffffffffff1661107f610e0e565b73ffffffffffffffffffffffffffffffffffffffff16146110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc9061301e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90613142565b60405180910390fd5b61114d8161167d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611229576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611220906131d4565b60405180910390fd5b600061123361134f565b90506112548160008761124588611b30565b61124e88611b30565b87611baa565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112b39190612d09565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516113319291906131f4565b60405180910390a461134881600087878787611d22565b5050505050565b600033905090565b815183511461139b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113929061328f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190613321565b60405180910390fd5b600061141461134f565b9050611424818787878787611baa565b60005b84518110156115d557600085828151811061144557611444612f5b565b5b60200260200101519050600085838151811061146457611463612f5b565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc906133b3565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115ba9190612d09565b92505081905550505050806115ce90612f8a565b9050611427565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161164c9291906133d3565b60405180910390a4611662818787878787611ef9565b505050505050565b806002908161167991906135b6565b5050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a8906136fa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118a291906122ad565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590613321565b60405180910390fd5b600061192861134f565b905061194881878761193988611b30565b61194288611b30565b87611baa565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d6906133b3565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a949190612d09565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611b119291906131f4565b60405180910390a4611b27828888888888611d22565b50505050505050565b60606000600167ffffffffffffffff811115611b4f57611b4e6123b5565b5b604051908082528060200260200182016040528015611b7d5781602001602082028036833780820191505090505b5090508281600081518110611b9557611b94612f5b565b5b60200260200101818152505080915050919050565b611bb88686868686866120d0565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c695760005b8351811015611c6757828181518110611c0b57611c0a612f5b565b5b602002602001015160036000868481518110611c2a57611c29612f5b565b5b602002602001015181526020019081526020016000206000828254611c4f9190612d09565b9250508190555080611c6090612f8a565b9050611bef565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d1a5760005b8351811015611d1857828181518110611cbc57611cbb612f5b565b5b602002602001015160036000868481518110611cdb57611cda612f5b565b5b602002602001015181526020019081526020016000206000828254611d00919061371a565b9250508190555080611d1190612f8a565b9050611ca0565b505b505050505050565b611d418473ffffffffffffffffffffffffffffffffffffffff166120d8565b15611ef1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611d879594939291906137a3565b6020604051808303816000875af1925050508015611dc357506040513d601f19601f82011682018060405250810190611dc09190613812565b60015b611e6857611dcf61384c565b806308c379a003611e2b5750611de361386e565b80611dee5750611e2d565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e22919061238e565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90613970565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee690613a02565b60405180910390fd5b505b505050505050565b611f188473ffffffffffffffffffffffffffffffffffffffff166120d8565b156120c8578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611f5e959493929190613a22565b6020604051808303816000875af1925050508015611f9a57506040513d601f19601f82011682018060405250810190611f979190613812565b60015b61203f57611fa661384c565b806308c379a0036120025750611fba61386e565b80611fc55750612004565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff9919061238e565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203690613970565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146120c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bd90613a02565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061213a8261210f565b9050919050565b61214a8161212f565b811461215557600080fd5b50565b60008135905061216781612141565b92915050565b6000819050919050565b6121808161216d565b811461218b57600080fd5b50565b60008135905061219d81612177565b92915050565b600080604083850312156121ba576121b9612105565b5b60006121c885828601612158565b92505060206121d98582860161218e565b9150509250929050565b6121ec8161216d565b82525050565b600060208201905061220760008301846121e3565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122428161220d565b811461224d57600080fd5b50565b60008135905061225f81612239565b92915050565b60006020828403121561227b5761227a612105565b5b600061228984828501612250565b91505092915050565b60008115159050919050565b6122a781612292565b82525050565b60006020820190506122c2600083018461229e565b92915050565b6000602082840312156122de576122dd612105565b5b60006122ec8482850161218e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561232f578082015181840152602081019050612314565b8381111561233e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612360826122f5565b61236a8185612300565b935061237a818560208601612311565b61238381612344565b840191505092915050565b600060208201905081810360008301526123a88184612355565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6123ed82612344565b810181811067ffffffffffffffff8211171561240c5761240b6123b5565b5b80604052505050565b600061241f6120fb565b905061242b82826123e4565b919050565b600067ffffffffffffffff82111561244b5761244a6123b5565b5b602082029050602081019050919050565b600080fd5b600061247461246f84612430565b612415565b905080838252602082019050602084028301858111156124975761249661245c565b5b835b818110156124c057806124ac888261218e565b845260208401935050602081019050612499565b5050509392505050565b600082601f8301126124df576124de6123b0565b5b81356124ef848260208601612461565b91505092915050565b600080fd5b600067ffffffffffffffff821115612518576125176123b5565b5b61252182612344565b9050602081019050919050565b82818337600083830152505050565b600061255061254b846124fd565b612415565b90508281526020810184848401111561256c5761256b6124f8565b5b61257784828561252e565b509392505050565b600082601f830112612594576125936123b0565b5b81356125a484826020860161253d565b91505092915050565b600080600080600060a086880312156125c9576125c8612105565b5b60006125d788828901612158565b95505060206125e888828901612158565b945050604086013567ffffffffffffffff8111156126095761260861210a565b5b612615888289016124ca565b935050606086013567ffffffffffffffff8111156126365761263561210a565b5b612642888289016124ca565b925050608086013567ffffffffffffffff8111156126635761266261210a565b5b61266f8882890161257f565b9150509295509295909350565b60006020828403121561269257612691612105565b5b60006126a084828501612158565b91505092915050565b600067ffffffffffffffff8211156126c4576126c36123b5565b5b602082029050602081019050919050565b60006126e86126e3846126a9565b612415565b9050808382526020820190506020840283018581111561270b5761270a61245c565b5b835b8181101561273457806127208882612158565b84526020840193505060208101905061270d565b5050509392505050565b600082601f830112612753576127526123b0565b5b81356127638482602086016126d5565b91505092915050565b6000806040838503121561278357612782612105565b5b600083013567ffffffffffffffff8111156127a1576127a061210a565b5b6127ad8582860161273e565b925050602083013567ffffffffffffffff8111156127ce576127cd61210a565b5b6127da858286016124ca565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6128198161216d565b82525050565b600061282b8383612810565b60208301905092915050565b6000602082019050919050565b600061284f826127e4565b61285981856127ef565b935061286483612800565b8060005b8381101561289557815161287c888261281f565b975061288783612837565b925050600181019050612868565b5085935050505092915050565b600060208201905081810360008301526128bc8184612844565b905092915050565b600080fd5b60008083601f8401126128df576128de6123b0565b5b8235905067ffffffffffffffff8111156128fc576128fb6128c4565b5b6020830191508360208202830111156129185761291761245c565b5b9250929050565b6000806020838503121561293657612935612105565b5b600083013567ffffffffffffffff8111156129545761295361210a565b5b612960858286016128c9565b92509250509250929050565b60008083601f840112612982576129816123b0565b5b8235905067ffffffffffffffff81111561299f5761299e6128c4565b5b6020830191508360018202830111156129bb576129ba61245c565b5b9250929050565b600080602083850312156129d9576129d8612105565b5b600083013567ffffffffffffffff8111156129f7576129f661210a565b5b612a038582860161296c565b92509250509250929050565b612a188161212f565b82525050565b6000602082019050612a336000830184612a0f565b92915050565b612a4281612292565b8114612a4d57600080fd5b50565b600081359050612a5f81612a39565b92915050565b60008060408385031215612a7c57612a7b612105565b5b6000612a8a85828601612158565b9250506020612a9b85828601612a50565b9150509250929050565b60008060408385031215612abc57612abb612105565b5b6000612aca85828601612158565b9250506020612adb85828601612158565b9150509250929050565b600080600080600060a08688031215612b0157612b00612105565b5b6000612b0f88828901612158565b9550506020612b2088828901612158565b9450506040612b318882890161218e565b9350506060612b428882890161218e565b925050608086013567ffffffffffffffff811115612b6357612b6261210a565b5b612b6f8882890161257f565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612bd8602b83612300565b9150612be382612b7c565b604082019050919050565b60006020820190508181036000830152612c0781612bcb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c5557607f821691505b602082108103612c6857612c67612c0e565b5b50919050565b7f416c7265616479206d696e746564000000000000000000000000000000000000600082015250565b6000612ca4600e83612300565b9150612caf82612c6e565b602082019050919050565b60006020820190508181036000830152612cd381612c97565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d148261216d565b9150612d1f8361216d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d5457612d53612cda565b5b828201905092915050565b7f537570706c792065786365656465640000000000000000000000000000000000600082015250565b6000612d95600f83612300565b9150612da082612d5f565b602082019050919050565b60006020820190508181036000830152612dc481612d88565b9050919050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b6000612e01600f83612300565b9150612e0c82612dcb565b602082019050919050565b60006020820190508181036000830152612e3081612df4565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000612e93603283612300565b9150612e9e82612e37565b604082019050919050565b60006020820190508181036000830152612ec281612e86565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612f25602983612300565b9150612f3082612ec9565b604082019050919050565b60006020820190508181036000830152612f5481612f18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612f958261216d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612fc757612fc6612cda565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613008602083612300565b915061301382612fd2565b602082019050919050565b6000602082019050818103600083015261303781612ffb565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b600061309a602983612300565b91506130a58261303e565b604082019050919050565b600060208201905081810360008301526130c98161308d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061312c602683612300565b9150613137826130d0565b604082019050919050565b6000602082019050818103600083015261315b8161311f565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006131be602183612300565b91506131c982613162565b604082019050919050565b600060208201905081810360008301526131ed816131b1565b9050919050565b600060408201905061320960008301856121e3565b61321660208301846121e3565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613279602883612300565b91506132848261321d565b604082019050919050565b600060208201905081810360008301526132a88161326c565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061330b602583612300565b9150613316826132af565b604082019050919050565b6000602082019050818103600083015261333a816132fe565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b600061339d602a83612300565b91506133a882613341565b604082019050919050565b600060208201905081810360008301526133cc81613390565b9050919050565b600060408201905081810360008301526133ed8185612844565b905081810360208301526134018184612844565b90509392505050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261346c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261342f565b613476868361342f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006134b36134ae6134a98461216d565b61348e565b61216d565b9050919050565b6000819050919050565b6134cd83613498565b6134e16134d9826134ba565b84845461343c565b825550505050565b600090565b6134f66134e9565b6135018184846134c4565b505050565b5b818110156135255761351a6000826134ee565b600181019050613507565b5050565b601f82111561356a5761353b8161340a565b6135448461341f565b81016020851015613553578190505b61356761355f8561341f565b830182613506565b50505b505050565b600082821c905092915050565b600061358d6000198460080261356f565b1980831691505092915050565b60006135a6838361357c565b9150826002028217905092915050565b6135bf826122f5565b67ffffffffffffffff8111156135d8576135d76123b5565b5b6135e28254612c3d565b6135ed828285613529565b600060209050601f831160018114613620576000841561360e578287015190505b613618858261359a565b865550613680565b601f19841661362e8661340a565b60005b8281101561365657848901518255600182019150602085019450602081019050613631565b86831015613673578489015161366f601f89168261357c565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006136e4602983612300565b91506136ef82613688565b604082019050919050565b60006020820190508181036000830152613713816136d7565b9050919050565b60006137258261216d565b91506137308361216d565b92508282101561374357613742612cda565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b60006137758261374e565b61377f8185613759565b935061378f818560208601612311565b61379881612344565b840191505092915050565b600060a0820190506137b86000830188612a0f565b6137c56020830187612a0f565b6137d260408301866121e3565b6137df60608301856121e3565b81810360808301526137f1818461376a565b90509695505050505050565b60008151905061380c81612239565b92915050565b60006020828403121561382857613827612105565b5b6000613836848285016137fd565b91505092915050565b60008160e01c9050919050565b600060033d111561386b5760046000803e61386860005161383f565b90505b90565b600060443d106138fb576138806120fb565b60043d036004823e80513d602482011167ffffffffffffffff821117156138a85750506138fb565b808201805167ffffffffffffffff8111156138c657505050506138fb565b80602083010160043d0385018111156138e35750505050506138fb565b6138f2826020018501866123e4565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600061395a603483612300565b9150613965826138fe565b604082019050919050565b600060208201905081810360008301526139898161394d565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006139ec602883612300565b91506139f782613990565b604082019050919050565b60006020820190508181036000830152613a1b816139df565b9050919050565b600060a082019050613a376000830188612a0f565b613a446020830187612a0f565b8181036040830152613a568186612844565b90508181036060830152613a6a8185612844565b90508181036080830152613a7e818461376a565b9050969550505050505056fea2646970667358221220842cde821390dd703f31d767668d336574be47b7ac408572b6b014a17b56915064736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6235454d4c71455345736b50675a57554265316e354c745a75734667726f347252445755416b424d58674d6e0000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101415760003560e01c8063570b3c6a116100b8578063a22cb4651161007c578063a22cb46514610374578063bd85b03914610390578063deaf33b2146103c0578063e985e9c5146103ca578063f242432a146103fa578063f2fde38b1461041657610141565b8063570b3c6a146102e4578063715018a6146103005780637f6497831461030a5780638da5cb5b146103265780639b19251a1461034457610141565b80633241e9171161010a5780633241e917146101fc57806332cb6b0c1461022c5780634e1273f41461024a5780634f558e791461027a578063524513d6146102aa578063548db174146102c857610141565b8062fdd58e1461014657806301ffc9a7146101765780630e89341c146101a65780631249c58b146101d65780632eb2c2d6146101e0575b600080fd5b610160600480360381019061015b91906121a3565b610432565b60405161016d91906121f2565b60405180910390f35b610190600480360381019061018b9190612265565b6104fa565b60405161019d91906122ad565b60405180910390f35b6101c060048036038101906101bb91906122c8565b6105dc565b6040516101cd919061238e565b60405180910390f35b6101de610670565b005b6101fa60048036038101906101f591906125ad565b610870565b005b6102166004803603810190610211919061267c565b610911565b60405161022391906122ad565b60405180910390f35b610234610931565b60405161024191906121f2565b60405180910390f35b610264600480360381019061025f919061276c565b610937565b60405161027191906128a2565b60405180910390f35b610294600480360381019061028f91906122c8565b610a50565b6040516102a191906122ad565b60405180910390f35b6102b2610a64565b6040516102bf91906122ad565b60405180910390f35b6102e260048036038101906102dd919061291f565b610a77565b005b6102fe60048036038101906102f991906129c2565b610b98565b005b610308610c65565b005b610324600480360381019061031f919061291f565b610ced565b005b61032e610e0e565b60405161033b9190612a1e565b60405180910390f35b61035e6004803603810190610359919061267c565b610e38565b60405161036b91906122ad565b60405180910390f35b61038e60048036038101906103899190612a65565b610e58565b005b6103aa60048036038101906103a591906122c8565b610e6e565b6040516103b791906121f2565b60405180910390f35b6103c8610e8b565b005b6103e460048036038101906103df9190612aa5565b610f24565b6040516103f191906122ad565b60405180910390f35b610414600480360381019061040f9190612ae5565b610fb8565b005b610430600480360381019061042b919061267c565b611059565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036104a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049990612bee565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c557507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105d557506105d482611150565b5b9050919050565b6060600280546105eb90612c3d565b80601f016020809104026020016040519081016040528092919081815260200182805461061790612c3d565b80156106645780601f1061063957610100808354040283529160200191610664565b820191906000526020600020905b81548152906001019060200180831161064757829003601f168201915b50505050509050919050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156106fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f490612cba565b60405180910390fd5b61022b600161070c6000610e6e565b6107169190612d09565b1115610757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074e90612dab565b60405180910390fd5b600660009054906101000a900460ff16156107f957600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166107f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ef90612e17565b60405180910390fd5b5b6001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061086e3360006001604051806020016040528060008152506111ba565b565b61087861134f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108be57506108bd856108b861134f565b610f24565b5b6108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f490612ea9565b60405180910390fd5b61090a8585858585611357565b5050505050565b60076020528060005260406000206000915054906101000a900460ff1681565b61022b81565b6060815183511461097d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097490612f3b565b60405180910390fd5b6000835167ffffffffffffffff81111561099a576109996123b5565b5b6040519080825280602002602001820160405280156109c85781602001602082028036833780820191505090505b50905060005b8451811015610a4557610a158582815181106109ed576109ec612f5b565b5b6020026020010151858381518110610a0857610a07612f5b565b5b6020026020010151610432565b828281518110610a2857610a27612f5b565b5b60200260200101818152505080610a3e90612f8a565b90506109ce565b508091505092915050565b600080610a5c83610e6e565b119050919050565b600660009054906101000a900460ff1681565b610a7f61134f565b73ffffffffffffffffffffffffffffffffffffffff16610a9d610e0e565b73ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea9061301e565b60405180910390fd5b60005b82829050811015610b9357600060056000858585818110610b1a57610b19612f5b565b5b9050602002016020810190610b2f919061267c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b8b90612f8a565b915050610af6565b505050565b610ba061134f565b73ffffffffffffffffffffffffffffffffffffffff16610bbe610e0e565b73ffffffffffffffffffffffffffffffffffffffff1614610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b9061301e565b60405180910390fd5b610c6182828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061166a565b5050565b610c6d61134f565b73ffffffffffffffffffffffffffffffffffffffff16610c8b610e0e565b73ffffffffffffffffffffffffffffffffffffffff1614610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd89061301e565b60405180910390fd5b610ceb600061167d565b565b610cf561134f565b73ffffffffffffffffffffffffffffffffffffffff16610d13610e0e565b73ffffffffffffffffffffffffffffffffffffffff1614610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d609061301e565b60405180910390fd5b60005b82829050811015610e0957600160056000858585818110610d9057610d8f612f5b565b5b9050602002016020810190610da5919061267c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e0190612f8a565b915050610d6c565b505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60056020528060005260406000206000915054906101000a900460ff1681565b610e6a610e6361134f565b8383611743565b5050565b600060036000838152602001908152602001600020549050919050565b610e9361134f565b73ffffffffffffffffffffffffffffffffffffffff16610eb1610e0e565b73ffffffffffffffffffffffffffffffffffffffff1614610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe9061301e565b60405180910390fd5b6000600660006101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610fc061134f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061100657506110058561100061134f565b610f24565b5b611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c906130b0565b60405180910390fd5b61105285858585856118af565b5050505050565b61106161134f565b73ffffffffffffffffffffffffffffffffffffffff1661107f610e0e565b73ffffffffffffffffffffffffffffffffffffffff16146110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc9061301e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90613142565b60405180910390fd5b61114d8161167d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611229576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611220906131d4565b60405180910390fd5b600061123361134f565b90506112548160008761124588611b30565b61124e88611b30565b87611baa565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112b39190612d09565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516113319291906131f4565b60405180910390a461134881600087878787611d22565b5050505050565b600033905090565b815183511461139b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113929061328f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190613321565b60405180910390fd5b600061141461134f565b9050611424818787878787611baa565b60005b84518110156115d557600085828151811061144557611444612f5b565b5b60200260200101519050600085838151811061146457611463612f5b565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc906133b3565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115ba9190612d09565b92505081905550505050806115ce90612f8a565b9050611427565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161164c9291906133d3565b60405180910390a4611662818787878787611ef9565b505050505050565b806002908161167991906135b6565b5050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a8906136fa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118a291906122ad565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590613321565b60405180910390fd5b600061192861134f565b905061194881878761193988611b30565b61194288611b30565b87611baa565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d6906133b3565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a949190612d09565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611b119291906131f4565b60405180910390a4611b27828888888888611d22565b50505050505050565b60606000600167ffffffffffffffff811115611b4f57611b4e6123b5565b5b604051908082528060200260200182016040528015611b7d5781602001602082028036833780820191505090505b5090508281600081518110611b9557611b94612f5b565b5b60200260200101818152505080915050919050565b611bb88686868686866120d0565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c695760005b8351811015611c6757828181518110611c0b57611c0a612f5b565b5b602002602001015160036000868481518110611c2a57611c29612f5b565b5b602002602001015181526020019081526020016000206000828254611c4f9190612d09565b9250508190555080611c6090612f8a565b9050611bef565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d1a5760005b8351811015611d1857828181518110611cbc57611cbb612f5b565b5b602002602001015160036000868481518110611cdb57611cda612f5b565b5b602002602001015181526020019081526020016000206000828254611d00919061371a565b9250508190555080611d1190612f8a565b9050611ca0565b505b505050505050565b611d418473ffffffffffffffffffffffffffffffffffffffff166120d8565b15611ef1578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611d879594939291906137a3565b6020604051808303816000875af1925050508015611dc357506040513d601f19601f82011682018060405250810190611dc09190613812565b60015b611e6857611dcf61384c565b806308c379a003611e2b5750611de361386e565b80611dee5750611e2d565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e22919061238e565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90613970565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee690613a02565b60405180910390fd5b505b505050505050565b611f188473ffffffffffffffffffffffffffffffffffffffff166120d8565b156120c8578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611f5e959493929190613a22565b6020604051808303816000875af1925050508015611f9a57506040513d601f19601f82011682018060405250810190611f979190613812565b60015b61203f57611fa661384c565b806308c379a0036120025750611fba61386e565b80611fc55750612004565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff9919061238e565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203690613970565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146120c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bd90613a02565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061213a8261210f565b9050919050565b61214a8161212f565b811461215557600080fd5b50565b60008135905061216781612141565b92915050565b6000819050919050565b6121808161216d565b811461218b57600080fd5b50565b60008135905061219d81612177565b92915050565b600080604083850312156121ba576121b9612105565b5b60006121c885828601612158565b92505060206121d98582860161218e565b9150509250929050565b6121ec8161216d565b82525050565b600060208201905061220760008301846121e3565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122428161220d565b811461224d57600080fd5b50565b60008135905061225f81612239565b92915050565b60006020828403121561227b5761227a612105565b5b600061228984828501612250565b91505092915050565b60008115159050919050565b6122a781612292565b82525050565b60006020820190506122c2600083018461229e565b92915050565b6000602082840312156122de576122dd612105565b5b60006122ec8482850161218e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561232f578082015181840152602081019050612314565b8381111561233e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612360826122f5565b61236a8185612300565b935061237a818560208601612311565b61238381612344565b840191505092915050565b600060208201905081810360008301526123a88184612355565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6123ed82612344565b810181811067ffffffffffffffff8211171561240c5761240b6123b5565b5b80604052505050565b600061241f6120fb565b905061242b82826123e4565b919050565b600067ffffffffffffffff82111561244b5761244a6123b5565b5b602082029050602081019050919050565b600080fd5b600061247461246f84612430565b612415565b905080838252602082019050602084028301858111156124975761249661245c565b5b835b818110156124c057806124ac888261218e565b845260208401935050602081019050612499565b5050509392505050565b600082601f8301126124df576124de6123b0565b5b81356124ef848260208601612461565b91505092915050565b600080fd5b600067ffffffffffffffff821115612518576125176123b5565b5b61252182612344565b9050602081019050919050565b82818337600083830152505050565b600061255061254b846124fd565b612415565b90508281526020810184848401111561256c5761256b6124f8565b5b61257784828561252e565b509392505050565b600082601f830112612594576125936123b0565b5b81356125a484826020860161253d565b91505092915050565b600080600080600060a086880312156125c9576125c8612105565b5b60006125d788828901612158565b95505060206125e888828901612158565b945050604086013567ffffffffffffffff8111156126095761260861210a565b5b612615888289016124ca565b935050606086013567ffffffffffffffff8111156126365761263561210a565b5b612642888289016124ca565b925050608086013567ffffffffffffffff8111156126635761266261210a565b5b61266f8882890161257f565b9150509295509295909350565b60006020828403121561269257612691612105565b5b60006126a084828501612158565b91505092915050565b600067ffffffffffffffff8211156126c4576126c36123b5565b5b602082029050602081019050919050565b60006126e86126e3846126a9565b612415565b9050808382526020820190506020840283018581111561270b5761270a61245c565b5b835b8181101561273457806127208882612158565b84526020840193505060208101905061270d565b5050509392505050565b600082601f830112612753576127526123b0565b5b81356127638482602086016126d5565b91505092915050565b6000806040838503121561278357612782612105565b5b600083013567ffffffffffffffff8111156127a1576127a061210a565b5b6127ad8582860161273e565b925050602083013567ffffffffffffffff8111156127ce576127cd61210a565b5b6127da858286016124ca565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6128198161216d565b82525050565b600061282b8383612810565b60208301905092915050565b6000602082019050919050565b600061284f826127e4565b61285981856127ef565b935061286483612800565b8060005b8381101561289557815161287c888261281f565b975061288783612837565b925050600181019050612868565b5085935050505092915050565b600060208201905081810360008301526128bc8184612844565b905092915050565b600080fd5b60008083601f8401126128df576128de6123b0565b5b8235905067ffffffffffffffff8111156128fc576128fb6128c4565b5b6020830191508360208202830111156129185761291761245c565b5b9250929050565b6000806020838503121561293657612935612105565b5b600083013567ffffffffffffffff8111156129545761295361210a565b5b612960858286016128c9565b92509250509250929050565b60008083601f840112612982576129816123b0565b5b8235905067ffffffffffffffff81111561299f5761299e6128c4565b5b6020830191508360018202830111156129bb576129ba61245c565b5b9250929050565b600080602083850312156129d9576129d8612105565b5b600083013567ffffffffffffffff8111156129f7576129f661210a565b5b612a038582860161296c565b92509250509250929050565b612a188161212f565b82525050565b6000602082019050612a336000830184612a0f565b92915050565b612a4281612292565b8114612a4d57600080fd5b50565b600081359050612a5f81612a39565b92915050565b60008060408385031215612a7c57612a7b612105565b5b6000612a8a85828601612158565b9250506020612a9b85828601612a50565b9150509250929050565b60008060408385031215612abc57612abb612105565b5b6000612aca85828601612158565b9250506020612adb85828601612158565b9150509250929050565b600080600080600060a08688031215612b0157612b00612105565b5b6000612b0f88828901612158565b9550506020612b2088828901612158565b9450506040612b318882890161218e565b9350506060612b428882890161218e565b925050608086013567ffffffffffffffff811115612b6357612b6261210a565b5b612b6f8882890161257f565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612bd8602b83612300565b9150612be382612b7c565b604082019050919050565b60006020820190508181036000830152612c0781612bcb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c5557607f821691505b602082108103612c6857612c67612c0e565b5b50919050565b7f416c7265616479206d696e746564000000000000000000000000000000000000600082015250565b6000612ca4600e83612300565b9150612caf82612c6e565b602082019050919050565b60006020820190508181036000830152612cd381612c97565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d148261216d565b9150612d1f8361216d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d5457612d53612cda565b5b828201905092915050565b7f537570706c792065786365656465640000000000000000000000000000000000600082015250565b6000612d95600f83612300565b9150612da082612d5f565b602082019050919050565b60006020820190508181036000830152612dc481612d88565b9050919050565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b6000612e01600f83612300565b9150612e0c82612dcb565b602082019050919050565b60006020820190508181036000830152612e3081612df4565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000612e93603283612300565b9150612e9e82612e37565b604082019050919050565b60006020820190508181036000830152612ec281612e86565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612f25602983612300565b9150612f3082612ec9565b604082019050919050565b60006020820190508181036000830152612f5481612f18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612f958261216d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612fc757612fc6612cda565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613008602083612300565b915061301382612fd2565b602082019050919050565b6000602082019050818103600083015261303781612ffb565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b600061309a602983612300565b91506130a58261303e565b604082019050919050565b600060208201905081810360008301526130c98161308d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061312c602683612300565b9150613137826130d0565b604082019050919050565b6000602082019050818103600083015261315b8161311f565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006131be602183612300565b91506131c982613162565b604082019050919050565b600060208201905081810360008301526131ed816131b1565b9050919050565b600060408201905061320960008301856121e3565b61321660208301846121e3565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613279602883612300565b91506132848261321d565b604082019050919050565b600060208201905081810360008301526132a88161326c565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061330b602583612300565b9150613316826132af565b604082019050919050565b6000602082019050818103600083015261333a816132fe565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b600061339d602a83612300565b91506133a882613341565b604082019050919050565b600060208201905081810360008301526133cc81613390565b9050919050565b600060408201905081810360008301526133ed8185612844565b905081810360208301526134018184612844565b90509392505050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261346c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261342f565b613476868361342f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006134b36134ae6134a98461216d565b61348e565b61216d565b9050919050565b6000819050919050565b6134cd83613498565b6134e16134d9826134ba565b84845461343c565b825550505050565b600090565b6134f66134e9565b6135018184846134c4565b505050565b5b818110156135255761351a6000826134ee565b600181019050613507565b5050565b601f82111561356a5761353b8161340a565b6135448461341f565b81016020851015613553578190505b61356761355f8561341f565b830182613506565b50505b505050565b600082821c905092915050565b600061358d6000198460080261356f565b1980831691505092915050565b60006135a6838361357c565b9150826002028217905092915050565b6135bf826122f5565b67ffffffffffffffff8111156135d8576135d76123b5565b5b6135e28254612c3d565b6135ed828285613529565b600060209050601f831160018114613620576000841561360e578287015190505b613618858261359a565b865550613680565b601f19841661362e8661340a565b60005b8281101561365657848901518255600182019150602085019450602081019050613631565b86831015613673578489015161366f601f89168261357c565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006136e4602983612300565b91506136ef82613688565b604082019050919050565b60006020820190508181036000830152613713816136d7565b9050919050565b60006137258261216d565b91506137308361216d565b92508282101561374357613742612cda565b5b828203905092915050565b600081519050919050565b600082825260208201905092915050565b60006137758261374e565b61377f8185613759565b935061378f818560208601612311565b61379881612344565b840191505092915050565b600060a0820190506137b86000830188612a0f565b6137c56020830187612a0f565b6137d260408301866121e3565b6137df60608301856121e3565b81810360808301526137f1818461376a565b90509695505050505050565b60008151905061380c81612239565b92915050565b60006020828403121561382857613827612105565b5b6000613836848285016137fd565b91505092915050565b60008160e01c9050919050565b600060033d111561386b5760046000803e61386860005161383f565b90505b90565b600060443d106138fb576138806120fb565b60043d036004823e80513d602482011167ffffffffffffffff821117156138a85750506138fb565b808201805167ffffffffffffffff8111156138c657505050506138fb565b80602083010160043d0385018111156138e35750505050506138fb565b6138f2826020018501866123e4565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600061395a603483612300565b9150613965826138fe565b604082019050919050565b600060208201905081810360008301526139898161394d565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006139ec602883612300565b91506139f782613990565b604082019050919050565b60006020820190508181036000830152613a1b816139df565b9050919050565b600060a082019050613a376000830188612a0f565b613a446020830187612a0f565b8181036040830152613a568186612844565b90508181036060830152613a6a8185612844565b90508181036080830152613a7e818461376a565b9050969550505050505056fea2646970667358221220842cde821390dd703f31d767668d336574be47b7ac408572b6b014a17b56915064736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6235454d4c71455345736b50675a57554265316e354c745a75734667726f347252445755416b424d58674d6e0000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://Qmb5EMLqESEskPgZWUBe1n5LtZusFgro4rRDWUAkBMXgMn

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 697066733a2f2f516d6235454d4c71455345736b50675a57554265316e354c74
Arg [3] : 5a75734667726f347252445755416b424d58674d6e0000000000000000000000


Deployed Bytecode Sourcemap

38798:1701:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23431:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22454:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23175:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40150:346;;;:::i;:::-;;25370:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39029:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38982:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23828:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37876:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38924:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39744:195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39322:94;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2618:103;;;:::i;:::-;;39483:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1967:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38876:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24425:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37665:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40017:89;;;:::i;:::-;;24652:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24892:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2876:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23431:231;23517:7;23564:1;23545:21;;:7;:21;;;23537:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;23632:9;:13;23642:2;23632:13;;;;;;;;;;;:22;23646:7;23632:22;;;;;;;;;;;;;;;;23625:29;;23431:231;;;;:::o;22454:310::-;22556:4;22608:26;22593:41;;;:11;:41;;;;:110;;;;22666:37;22651:52;;;:11;:52;;;;22593:110;:163;;;;22720:36;22744:11;22720:23;:36::i;:::-;22593:163;22573:183;;22454:310;;;:::o;23175:105::-;23235:13;23268:4;23261:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23175:105;;;:::o;40150:346::-;40193:7;:19;40201:10;40193:19;;;;;;;;;;;;;;;;;;;;;;;;;40192:20;40184:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;39019:3;40267:1;40250:14;40262:1;40250:11;:14::i;:::-;:18;;;;:::i;:::-;:32;;40242:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;40317:17;;;;;;;;;;;40313:99;;;40359:9;:21;40369:10;40359:21;;;;;;;;;;;;;;;;;;;;;;;;;40351:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;40313:99;40446:4;40424:7;:19;40432:10;40424:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;40461:27;40467:10;40479:1;40482;40461:27;;;;;;;;;;;;:5;:27::i;:::-;40150:346::o;25370:442::-;25611:12;:10;:12::i;:::-;25603:20;;:4;:20;;;:60;;;;25627:36;25644:4;25650:12;:10;:12::i;:::-;25627:16;:36::i;:::-;25603:60;25581:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;25752:52;25775:4;25781:2;25785:3;25790:7;25799:4;25752:22;:52::i;:::-;25370:442;;;;;:::o;39029:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;38982:40::-;39019:3;38982:40;:::o;23828:524::-;23984:16;24045:3;:10;24026:8;:15;:29;24018:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;24114:30;24161:8;:15;24147:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24114:63;;24195:9;24190:122;24214:8;:15;24210:1;:19;24190:122;;;24270:30;24280:8;24289:1;24280:11;;;;;;;;:::i;:::-;;;;;;;;24293:3;24297:1;24293:6;;;;;;;;:::i;:::-;;;;;;;;24270:9;:30::i;:::-;24251:13;24265:1;24251:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;24231:3;;;;:::i;:::-;;;24190:122;;;;24331:13;24324:20;;;23828:524;;;;:::o;37876:122::-;37933:4;37989:1;37957:29;37983:2;37957:25;:29::i;:::-;:33;37950:40;;37876:122;;;:::o;38924:36::-;;;;;;;;;;;;;:::o;39744:195::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39836:9:::1;39831:101;39851:9;;:16;;39849:1;:18;39831:101;;;39915:5;39889:9;:23;39899:9;;39909:1;39899:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;39889:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;39869:3;;;;;:::i;:::-;;;;39831:101;;;;39744:195:::0;;:::o;39322:94::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39393:15:::1;39401:6;;39393:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:15::i;:::-;39322:94:::0;;:::o;2618:103::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2683:30:::1;2710:1;2683:18;:30::i;:::-;2618:103::o:0;39483:189::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39570:9:::1;39565:100;39585:9;;:16;;39583:1;:18;39565:100;;;39649:4;39623:9;:23;39633:9;;39643:1;39633:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;39623:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;39603:3;;;;;:::i;:::-;;;;39565:100;;;;39483:189:::0;;:::o;1967:87::-;2013:7;2040:6;;;;;;;;;;;2033:13;;1967:87;:::o;38876:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;24425:155::-;24520:52;24539:12;:10;:12::i;:::-;24553:8;24563;24520:18;:52::i;:::-;24425:155;;:::o;37665:113::-;37727:7;37754:12;:16;37767:2;37754:16;;;;;;;;;;;;37747:23;;37665:113;;;:::o;40017:89::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40093:5:::1;40073:17;;:25;;;;;;;;;;;;;;;;;;40017:89::o:0;24652:168::-;24751:4;24775:18;:27;24794:7;24775:27;;;;;;;;;;;;;;;:37;24803:8;24775:37;;;;;;;;;;;;;;;;;;;;;;;;;24768:44;;24652:168;;;;:::o;24892:401::-;25108:12;:10;:12::i;:::-;25100:20;;:4;:20;;;:60;;;;25124:36;25141:4;25147:12;:10;:12::i;:::-;25124:16;:36::i;:::-;25100:60;25078:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;25240:45;25258:4;25264:2;25268;25272:6;25280:4;25240:17;:45::i;:::-;24892:401;;;;;:::o;2876:201::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2985:1:::1;2965:22;;:8;:22;;::::0;2957:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3041:28;3060:8;3041:18;:28::i;:::-;2876:201:::0;:::o;13738:157::-;13823:4;13862:25;13847:40;;;:11;:40;;;;13840:47;;13738:157;;;:::o;29846:569::-;30013:1;29999:16;;:2;:16;;;29991:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30066:16;30085:12;:10;:12::i;:::-;30066:31;;30110:102;30131:8;30149:1;30153:2;30157:21;30175:2;30157:17;:21::i;:::-;30180:25;30198:6;30180:17;:25::i;:::-;30207:4;30110:20;:102::i;:::-;30246:6;30225:9;:13;30235:2;30225:13;;;;;;;;;;;:17;30239:2;30225:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;30305:2;30268:52;;30301:1;30268:52;;30283:8;30268:52;;;30309:2;30313:6;30268:52;;;;;;;:::i;:::-;;;;;;;;30333:74;30364:8;30382:1;30386:2;30390;30394:6;30402:4;30333:30;:74::i;:::-;29980:435;29846:569;;;;:::o;685:98::-;738:7;765:10;758:17;;685:98;:::o;27454:1074::-;27681:7;:14;27667:3;:10;:28;27659:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;27773:1;27759:16;;:2;:16;;;27751:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;27830:16;27849:12;:10;:12::i;:::-;27830:31;;27874:60;27895:8;27905:4;27911:2;27915:3;27920:7;27929:4;27874:20;:60::i;:::-;27952:9;27947:421;27971:3;:10;27967:1;:14;27947:421;;;28003:10;28016:3;28020:1;28016:6;;;;;;;;:::i;:::-;;;;;;;;28003:19;;28037:14;28054:7;28062:1;28054:10;;;;;;;;:::i;:::-;;;;;;;;28037:27;;28081:19;28103:9;:13;28113:2;28103:13;;;;;;;;;;;:19;28117:4;28103:19;;;;;;;;;;;;;;;;28081:41;;28160:6;28145:11;:21;;28137:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28293:6;28279:11;:20;28257:9;:13;28267:2;28257:13;;;;;;;;;;;:19;28271:4;28257:19;;;;;;;;;;;;;;;:42;;;;28350:6;28329:9;:13;28339:2;28329:13;;;;;;;;;;;:17;28343:2;28329:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;27988:380;;;27983:3;;;;:::i;:::-;;;27947:421;;;;28415:2;28385:47;;28409:4;28385:47;;28399:8;28385:47;;;28419:3;28424:7;28385:47;;;;;;;:::i;:::-;;;;;;;;28445:75;28481:8;28491:4;28497:2;28501:3;28506:7;28515:4;28445:35;:75::i;:::-;27648:880;27454:1074;;;;;:::o;29372:88::-;29446:6;29439:4;:13;;;;;;:::i;:::-;;29372:88;:::o;3237:191::-;3311:16;3330:6;;;;;;;;;;;3311:25;;3356:8;3347:6;;:17;;;;;;;;;;;;;;;;;;3411:8;3380:40;;3401:8;3380:40;;;;;;;;;;;;3300:128;3237:191;:::o;33640:331::-;33795:8;33786:17;;:5;:17;;;33778:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33898:8;33860:18;:25;33879:5;33860:25;;;;;;;;;;;;;;;:35;33886:8;33860:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33944:8;33922:41;;33937:5;33922:41;;;33954:8;33922:41;;;;;;:::i;:::-;;;;;;;;33640:331;;;:::o;26276:820::-;26478:1;26464:16;;:2;:16;;;26456:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;26535:16;26554:12;:10;:12::i;:::-;26535:31;;26579:96;26600:8;26610:4;26616:2;26620:21;26638:2;26620:17;:21::i;:::-;26643:25;26661:6;26643:17;:25::i;:::-;26670:4;26579:20;:96::i;:::-;26688:19;26710:9;:13;26720:2;26710:13;;;;;;;;;;;:19;26724:4;26710:19;;;;;;;;;;;;;;;;26688:41;;26763:6;26748:11;:21;;26740:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26888:6;26874:11;:20;26852:9;:13;26862:2;26852:13;;;;;;;;;;;:19;26866:4;26852:19;;;;;;;;;;;;;;;:42;;;;26937:6;26916:9;:13;26926:2;26916:13;;;;;;;;;;;:17;26930:2;26916:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;26992:2;26961:46;;26986:4;26961:46;;26976:8;26961:46;;;26996:2;27000:6;26961:46;;;;;;;:::i;:::-;;;;;;;;27020:68;27051:8;27061:4;27067:2;27071;27075:6;27083:4;27020:30;:68::i;:::-;26445:651;;26276:820;;;;;:::o;36729:198::-;36795:16;36824:22;36863:1;36849:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36824:41;;36887:7;36876:5;36882:1;36876:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;36914:5;36907:12;;;36729:198;;;:::o;38073:655::-;38312:66;38339:8;38349:4;38355:2;38359:3;38364:7;38373:4;38312:26;:66::i;:::-;38411:1;38395:18;;:4;:18;;;38391:160;;38435:9;38430:110;38454:3;:10;38450:1;:14;38430:110;;;38514:7;38522:1;38514:10;;;;;;;;:::i;:::-;;;;;;;;38490:12;:20;38503:3;38507:1;38503:6;;;;;;;;:::i;:::-;;;;;;;;38490:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;38466:3;;;;:::i;:::-;;;38430:110;;;;38391:160;38581:1;38567:16;;:2;:16;;;38563:158;;38605:9;38600:110;38624:3;:10;38620:1;:14;38600:110;;;38684:7;38692:1;38684:10;;;;;;;;:::i;:::-;;;;;;;;38660:12;:20;38673:3;38677:1;38673:6;;;;;;;;:::i;:::-;;;;;;;;38660:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;38636:3;;;;:::i;:::-;;;38600:110;;;;38563:158;38073:655;;;;;;:::o;35156:744::-;35371:15;:2;:13;;;:15::i;:::-;35367:526;;;35424:2;35407:38;;;35446:8;35456:4;35462:2;35466:6;35474:4;35407:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35403:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;35755:6;35748:14;;;;;;;;;;;:::i;:::-;;;;;;;;35403:479;;;35804:62;;;;;;;;;;:::i;:::-;;;;;;;;35403:479;35541:43;;;35529:55;;;:8;:55;;;;35525:154;;35609:50;;;;;;;;;;:::i;:::-;;;;;;;;35525:154;35480:214;35367:526;35156:744;;;;;;:::o;35908:813::-;36148:15;:2;:13;;;:15::i;:::-;36144:570;;;36201:2;36184:43;;;36228:8;36238:4;36244:3;36249:7;36258:4;36184:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36180:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;36576:6;36569:14;;;;;;;;;;;:::i;:::-;;;;;;;;36180:523;;;36625:62;;;;;;;;;;:::i;:::-;;;;;;;;36180:523;36357:48;;;36345:60;;;:8;:60;;;;36341:159;;36430:50;;;;;;;;;;:::i;:::-;;;;;;;;36341:159;36264:251;36144:570;35908:813;;;;;;:::o;34927:221::-;;;;;;;:::o;4674:326::-;4734:4;4991:1;4969:7;:19;;;:23;4962:30;;4674:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:77::-;878:7;907:5;896:16;;841:77;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:118::-;1764:24;1782:5;1764:24;:::i;:::-;1759:3;1752:37;1677:118;;:::o;1801:222::-;1894:4;1932:2;1921:9;1917:18;1909:26;;1945:71;2013:1;2002:9;1998:17;1989:6;1945:71;:::i;:::-;1801:222;;;;:::o;2029:149::-;2065:7;2105:66;2098:5;2094:78;2083:89;;2029:149;;;:::o;2184:120::-;2256:23;2273:5;2256:23;:::i;:::-;2249:5;2246:34;2236:62;;2294:1;2291;2284:12;2236:62;2184:120;:::o;2310:137::-;2355:5;2393:6;2380:20;2371:29;;2409:32;2435:5;2409:32;:::i;:::-;2310:137;;;;:::o;2453:327::-;2511:6;2560:2;2548:9;2539:7;2535:23;2531:32;2528:119;;;2566:79;;:::i;:::-;2528:119;2686:1;2711:52;2755:7;2746:6;2735:9;2731:22;2711:52;:::i;:::-;2701:62;;2657:116;2453:327;;;;:::o;2786:90::-;2820:7;2863:5;2856:13;2849:21;2838:32;;2786:90;;;:::o;2882:109::-;2963:21;2978:5;2963:21;:::i;:::-;2958:3;2951:34;2882:109;;:::o;2997:210::-;3084:4;3122:2;3111:9;3107:18;3099:26;;3135:65;3197:1;3186:9;3182:17;3173:6;3135:65;:::i;:::-;2997:210;;;;:::o;3213:329::-;3272:6;3321:2;3309:9;3300:7;3296:23;3292:32;3289:119;;;3327:79;;:::i;:::-;3289:119;3447:1;3472:53;3517:7;3508:6;3497:9;3493:22;3472:53;:::i;:::-;3462:63;;3418:117;3213:329;;;;:::o;3548:99::-;3600:6;3634:5;3628:12;3618:22;;3548:99;;;:::o;3653:169::-;3737:11;3771:6;3766:3;3759:19;3811:4;3806:3;3802:14;3787:29;;3653:169;;;;:::o;3828:307::-;3896:1;3906:113;3920:6;3917:1;3914:13;3906:113;;;4005:1;4000:3;3996:11;3990:18;3986:1;3981:3;3977:11;3970:39;3942:2;3939:1;3935:10;3930:15;;3906:113;;;4037:6;4034:1;4031:13;4028:101;;;4117:1;4108:6;4103:3;4099:16;4092:27;4028:101;3877:258;3828:307;;;:::o;4141:102::-;4182:6;4233:2;4229:7;4224:2;4217:5;4213:14;4209:28;4199:38;;4141:102;;;:::o;4249:364::-;4337:3;4365:39;4398:5;4365:39;:::i;:::-;4420:71;4484:6;4479:3;4420:71;:::i;:::-;4413:78;;4500:52;4545:6;4540:3;4533:4;4526:5;4522:16;4500:52;:::i;:::-;4577:29;4599:6;4577:29;:::i;:::-;4572:3;4568:39;4561:46;;4341:272;4249:364;;;;:::o;4619:313::-;4732:4;4770:2;4759:9;4755:18;4747:26;;4819:9;4813:4;4809:20;4805:1;4794:9;4790:17;4783:47;4847:78;4920:4;4911:6;4847:78;:::i;:::-;4839:86;;4619:313;;;;:::o;4938:117::-;5047:1;5044;5037:12;5061:180;5109:77;5106:1;5099:88;5206:4;5203:1;5196:15;5230:4;5227:1;5220:15;5247:281;5330:27;5352:4;5330:27;:::i;:::-;5322:6;5318:40;5460:6;5448:10;5445:22;5424:18;5412:10;5409:34;5406:62;5403:88;;;5471:18;;:::i;:::-;5403:88;5511:10;5507:2;5500:22;5290:238;5247:281;;:::o;5534:129::-;5568:6;5595:20;;:::i;:::-;5585:30;;5624:33;5652:4;5644:6;5624:33;:::i;:::-;5534:129;;;:::o;5669:311::-;5746:4;5836:18;5828:6;5825:30;5822:56;;;5858:18;;:::i;:::-;5822:56;5908:4;5900:6;5896:17;5888:25;;5968:4;5962;5958:15;5950:23;;5669:311;;;:::o;5986:117::-;6095:1;6092;6085:12;6126:710;6222:5;6247:81;6263:64;6320:6;6263:64;:::i;:::-;6247:81;:::i;:::-;6238:90;;6348:5;6377:6;6370:5;6363:21;6411:4;6404:5;6400:16;6393:23;;6464:4;6456:6;6452:17;6444:6;6440:30;6493:3;6485:6;6482:15;6479:122;;;6512:79;;:::i;:::-;6479:122;6627:6;6610:220;6644:6;6639:3;6636:15;6610:220;;;6719:3;6748:37;6781:3;6769:10;6748:37;:::i;:::-;6743:3;6736:50;6815:4;6810:3;6806:14;6799:21;;6686:144;6670:4;6665:3;6661:14;6654:21;;6610:220;;;6614:21;6228:608;;6126:710;;;;;:::o;6859:370::-;6930:5;6979:3;6972:4;6964:6;6960:17;6956:27;6946:122;;6987:79;;:::i;:::-;6946:122;7104:6;7091:20;7129:94;7219:3;7211:6;7204:4;7196:6;7192:17;7129:94;:::i;:::-;7120:103;;6936:293;6859:370;;;;:::o;7235:117::-;7344:1;7341;7334:12;7358:307;7419:4;7509:18;7501:6;7498:30;7495:56;;;7531:18;;:::i;:::-;7495:56;7569:29;7591:6;7569:29;:::i;:::-;7561:37;;7653:4;7647;7643:15;7635:23;;7358:307;;;:::o;7671:154::-;7755:6;7750:3;7745;7732:30;7817:1;7808:6;7803:3;7799:16;7792:27;7671:154;;;:::o;7831:410::-;7908:5;7933:65;7949:48;7990:6;7949:48;:::i;:::-;7933:65;:::i;:::-;7924:74;;8021:6;8014:5;8007:21;8059:4;8052:5;8048:16;8097:3;8088:6;8083:3;8079:16;8076:25;8073:112;;;8104:79;;:::i;:::-;8073:112;8194:41;8228:6;8223:3;8218;8194:41;:::i;:::-;7914:327;7831:410;;;;;:::o;8260:338::-;8315:5;8364:3;8357:4;8349:6;8345:17;8341:27;8331:122;;8372:79;;:::i;:::-;8331:122;8489:6;8476:20;8514:78;8588:3;8580:6;8573:4;8565:6;8561:17;8514:78;:::i;:::-;8505:87;;8321:277;8260:338;;;;:::o;8604:1509::-;8758:6;8766;8774;8782;8790;8839:3;8827:9;8818:7;8814:23;8810:33;8807:120;;;8846:79;;:::i;:::-;8807:120;8966:1;8991:53;9036:7;9027:6;9016:9;9012:22;8991:53;:::i;:::-;8981:63;;8937:117;9093:2;9119:53;9164:7;9155:6;9144:9;9140:22;9119:53;:::i;:::-;9109:63;;9064:118;9249:2;9238:9;9234:18;9221:32;9280:18;9272:6;9269:30;9266:117;;;9302:79;;:::i;:::-;9266:117;9407:78;9477:7;9468:6;9457:9;9453:22;9407:78;:::i;:::-;9397:88;;9192:303;9562:2;9551:9;9547:18;9534:32;9593:18;9585:6;9582:30;9579:117;;;9615:79;;:::i;:::-;9579:117;9720:78;9790:7;9781:6;9770:9;9766:22;9720:78;:::i;:::-;9710:88;;9505:303;9875:3;9864:9;9860:19;9847:33;9907:18;9899:6;9896:30;9893:117;;;9929:79;;:::i;:::-;9893:117;10034:62;10088:7;10079:6;10068:9;10064:22;10034:62;:::i;:::-;10024:72;;9818:288;8604:1509;;;;;;;;:::o;10119:329::-;10178:6;10227:2;10215:9;10206:7;10202:23;10198:32;10195:119;;;10233:79;;:::i;:::-;10195:119;10353:1;10378:53;10423:7;10414:6;10403:9;10399:22;10378:53;:::i;:::-;10368:63;;10324:117;10119:329;;;;:::o;10454:311::-;10531:4;10621:18;10613:6;10610:30;10607:56;;;10643:18;;:::i;:::-;10607:56;10693:4;10685:6;10681:17;10673:25;;10753:4;10747;10743:15;10735:23;;10454:311;;;:::o;10788:710::-;10884:5;10909:81;10925:64;10982:6;10925:64;:::i;:::-;10909:81;:::i;:::-;10900:90;;11010:5;11039:6;11032:5;11025:21;11073:4;11066:5;11062:16;11055:23;;11126:4;11118:6;11114:17;11106:6;11102:30;11155:3;11147:6;11144:15;11141:122;;;11174:79;;:::i;:::-;11141:122;11289:6;11272:220;11306:6;11301:3;11298:15;11272:220;;;11381:3;11410:37;11443:3;11431:10;11410:37;:::i;:::-;11405:3;11398:50;11477:4;11472:3;11468:14;11461:21;;11348:144;11332:4;11327:3;11323:14;11316:21;;11272:220;;;11276:21;10890:608;;10788:710;;;;;:::o;11521:370::-;11592:5;11641:3;11634:4;11626:6;11622:17;11618:27;11608:122;;11649:79;;:::i;:::-;11608:122;11766:6;11753:20;11791:94;11881:3;11873:6;11866:4;11858:6;11854:17;11791:94;:::i;:::-;11782:103;;11598:293;11521:370;;;;:::o;11897:894::-;12015:6;12023;12072:2;12060:9;12051:7;12047:23;12043:32;12040:119;;;12078:79;;:::i;:::-;12040:119;12226:1;12215:9;12211:17;12198:31;12256:18;12248:6;12245:30;12242:117;;;12278:79;;:::i;:::-;12242:117;12383:78;12453:7;12444:6;12433:9;12429:22;12383:78;:::i;:::-;12373:88;;12169:302;12538:2;12527:9;12523:18;12510:32;12569:18;12561:6;12558:30;12555:117;;;12591:79;;:::i;:::-;12555:117;12696:78;12766:7;12757:6;12746:9;12742:22;12696:78;:::i;:::-;12686:88;;12481:303;11897:894;;;;;:::o;12797:114::-;12864:6;12898:5;12892:12;12882:22;;12797:114;;;:::o;12917:184::-;13016:11;13050:6;13045:3;13038:19;13090:4;13085:3;13081:14;13066:29;;12917:184;;;;:::o;13107:132::-;13174:4;13197:3;13189:11;;13227:4;13222:3;13218:14;13210:22;;13107:132;;;:::o;13245:108::-;13322:24;13340:5;13322:24;:::i;:::-;13317:3;13310:37;13245:108;;:::o;13359:179::-;13428:10;13449:46;13491:3;13483:6;13449:46;:::i;:::-;13527:4;13522:3;13518:14;13504:28;;13359:179;;;;:::o;13544:113::-;13614:4;13646;13641:3;13637:14;13629:22;;13544:113;;;:::o;13693:732::-;13812:3;13841:54;13889:5;13841:54;:::i;:::-;13911:86;13990:6;13985:3;13911:86;:::i;:::-;13904:93;;14021:56;14071:5;14021:56;:::i;:::-;14100:7;14131:1;14116:284;14141:6;14138:1;14135:13;14116:284;;;14217:6;14211:13;14244:63;14303:3;14288:13;14244:63;:::i;:::-;14237:70;;14330:60;14383:6;14330:60;:::i;:::-;14320:70;;14176:224;14163:1;14160;14156:9;14151:14;;14116:284;;;14120:14;14416:3;14409:10;;13817:608;;;13693:732;;;;:::o;14431:373::-;14574:4;14612:2;14601:9;14597:18;14589:26;;14661:9;14655:4;14651:20;14647:1;14636:9;14632:17;14625:47;14689:108;14792:4;14783:6;14689:108;:::i;:::-;14681:116;;14431:373;;;;:::o;14810:117::-;14919:1;14916;14909:12;14950:568;15023:8;15033:6;15083:3;15076:4;15068:6;15064:17;15060:27;15050:122;;15091:79;;:::i;:::-;15050:122;15204:6;15191:20;15181:30;;15234:18;15226:6;15223:30;15220:117;;;15256:79;;:::i;:::-;15220:117;15370:4;15362:6;15358:17;15346:29;;15424:3;15416:4;15408:6;15404:17;15394:8;15390:32;15387:41;15384:128;;;15431:79;;:::i;:::-;15384:128;14950:568;;;;;:::o;15524:559::-;15610:6;15618;15667:2;15655:9;15646:7;15642:23;15638:32;15635:119;;;15673:79;;:::i;:::-;15635:119;15821:1;15810:9;15806:17;15793:31;15851:18;15843:6;15840:30;15837:117;;;15873:79;;:::i;:::-;15837:117;15986:80;16058:7;16049:6;16038:9;16034:22;15986:80;:::i;:::-;15968:98;;;;15764:312;15524:559;;;;;:::o;16103:553::-;16161:8;16171:6;16221:3;16214:4;16206:6;16202:17;16198:27;16188:122;;16229:79;;:::i;:::-;16188:122;16342:6;16329:20;16319:30;;16372:18;16364:6;16361:30;16358:117;;;16394:79;;:::i;:::-;16358:117;16508:4;16500:6;16496:17;16484:29;;16562:3;16554:4;16546:6;16542:17;16532:8;16528:32;16525:41;16522:128;;;16569:79;;:::i;:::-;16522:128;16103:553;;;;;:::o;16662:529::-;16733:6;16741;16790:2;16778:9;16769:7;16765:23;16761:32;16758:119;;;16796:79;;:::i;:::-;16758:119;16944:1;16933:9;16929:17;16916:31;16974:18;16966:6;16963:30;16960:117;;;16996:79;;:::i;:::-;16960:117;17109:65;17166:7;17157:6;17146:9;17142:22;17109:65;:::i;:::-;17091:83;;;;16887:297;16662:529;;;;;:::o;17197:118::-;17284:24;17302:5;17284:24;:::i;:::-;17279:3;17272:37;17197:118;;:::o;17321:222::-;17414:4;17452:2;17441:9;17437:18;17429:26;;17465:71;17533:1;17522:9;17518:17;17509:6;17465:71;:::i;:::-;17321:222;;;;:::o;17549:116::-;17619:21;17634:5;17619:21;:::i;:::-;17612:5;17609:32;17599:60;;17655:1;17652;17645:12;17599:60;17549:116;:::o;17671:133::-;17714:5;17752:6;17739:20;17730:29;;17768:30;17792:5;17768:30;:::i;:::-;17671:133;;;;:::o;17810:468::-;17875:6;17883;17932:2;17920:9;17911:7;17907:23;17903:32;17900:119;;;17938:79;;:::i;:::-;17900:119;18058:1;18083:53;18128:7;18119:6;18108:9;18104:22;18083:53;:::i;:::-;18073:63;;18029:117;18185:2;18211:50;18253:7;18244:6;18233:9;18229:22;18211:50;:::i;:::-;18201:60;;18156:115;17810:468;;;;;:::o;18284:474::-;18352:6;18360;18409:2;18397:9;18388:7;18384:23;18380:32;18377:119;;;18415:79;;:::i;:::-;18377:119;18535:1;18560:53;18605:7;18596:6;18585:9;18581:22;18560:53;:::i;:::-;18550:63;;18506:117;18662:2;18688:53;18733:7;18724:6;18713:9;18709:22;18688:53;:::i;:::-;18678:63;;18633:118;18284:474;;;;;:::o;18764:1089::-;18868:6;18876;18884;18892;18900;18949:3;18937:9;18928:7;18924:23;18920:33;18917:120;;;18956:79;;:::i;:::-;18917:120;19076:1;19101:53;19146:7;19137:6;19126:9;19122:22;19101:53;:::i;:::-;19091:63;;19047:117;19203:2;19229:53;19274:7;19265:6;19254:9;19250:22;19229:53;:::i;:::-;19219:63;;19174:118;19331:2;19357:53;19402:7;19393:6;19382:9;19378:22;19357:53;:::i;:::-;19347:63;;19302:118;19459:2;19485:53;19530:7;19521:6;19510:9;19506:22;19485:53;:::i;:::-;19475:63;;19430:118;19615:3;19604:9;19600:19;19587:33;19647:18;19639:6;19636:30;19633:117;;;19669:79;;:::i;:::-;19633:117;19774:62;19828:7;19819:6;19808:9;19804:22;19774:62;:::i;:::-;19764:72;;19558:288;18764:1089;;;;;;;;:::o;19859:230::-;19999:34;19995:1;19987:6;19983:14;19976:58;20068:13;20063:2;20055:6;20051:15;20044:38;19859:230;:::o;20095:366::-;20237:3;20258:67;20322:2;20317:3;20258:67;:::i;:::-;20251:74;;20334:93;20423:3;20334:93;:::i;:::-;20452:2;20447:3;20443:12;20436:19;;20095:366;;;:::o;20467:419::-;20633:4;20671:2;20660:9;20656:18;20648:26;;20720:9;20714:4;20710:20;20706:1;20695:9;20691:17;20684:47;20748:131;20874:4;20748:131;:::i;:::-;20740:139;;20467:419;;;:::o;20892:180::-;20940:77;20937:1;20930:88;21037:4;21034:1;21027:15;21061:4;21058:1;21051:15;21078:320;21122:6;21159:1;21153:4;21149:12;21139:22;;21206:1;21200:4;21196:12;21227:18;21217:81;;21283:4;21275:6;21271:17;21261:27;;21217:81;21345:2;21337:6;21334:14;21314:18;21311:38;21308:84;;21364:18;;:::i;:::-;21308:84;21129:269;21078:320;;;:::o;21404:164::-;21544:16;21540:1;21532:6;21528:14;21521:40;21404:164;:::o;21574:366::-;21716:3;21737:67;21801:2;21796:3;21737:67;:::i;:::-;21730:74;;21813:93;21902:3;21813:93;:::i;:::-;21931:2;21926:3;21922:12;21915:19;;21574:366;;;:::o;21946:419::-;22112:4;22150:2;22139:9;22135:18;22127:26;;22199:9;22193:4;22189:20;22185:1;22174:9;22170:17;22163:47;22227:131;22353:4;22227:131;:::i;:::-;22219:139;;21946:419;;;:::o;22371:180::-;22419:77;22416:1;22409:88;22516:4;22513:1;22506:15;22540:4;22537:1;22530:15;22557:305;22597:3;22616:20;22634:1;22616:20;:::i;:::-;22611:25;;22650:20;22668:1;22650:20;:::i;:::-;22645:25;;22804:1;22736:66;22732:74;22729:1;22726:81;22723:107;;;22810:18;;:::i;:::-;22723:107;22854:1;22851;22847:9;22840:16;;22557:305;;;;:::o;22868:165::-;23008:17;23004:1;22996:6;22992:14;22985:41;22868:165;:::o;23039:366::-;23181:3;23202:67;23266:2;23261:3;23202:67;:::i;:::-;23195:74;;23278:93;23367:3;23278:93;:::i;:::-;23396:2;23391:3;23387:12;23380:19;;23039:366;;;:::o;23411:419::-;23577:4;23615:2;23604:9;23600:18;23592:26;;23664:9;23658:4;23654:20;23650:1;23639:9;23635:17;23628:47;23692:131;23818:4;23692:131;:::i;:::-;23684:139;;23411:419;;;:::o;23836:165::-;23976:17;23972:1;23964:6;23960:14;23953:41;23836:165;:::o;24007:366::-;24149:3;24170:67;24234:2;24229:3;24170:67;:::i;:::-;24163:74;;24246:93;24335:3;24246:93;:::i;:::-;24364:2;24359:3;24355:12;24348:19;;24007:366;;;:::o;24379:419::-;24545:4;24583:2;24572:9;24568:18;24560:26;;24632:9;24626:4;24622:20;24618:1;24607:9;24603:17;24596:47;24660:131;24786:4;24660:131;:::i;:::-;24652:139;;24379:419;;;:::o;24804:237::-;24944:34;24940:1;24932:6;24928:14;24921:58;25013:20;25008:2;25000:6;24996:15;24989:45;24804:237;:::o;25047:366::-;25189:3;25210:67;25274:2;25269:3;25210:67;:::i;:::-;25203:74;;25286:93;25375:3;25286:93;:::i;:::-;25404:2;25399:3;25395:12;25388:19;;25047:366;;;:::o;25419:419::-;25585:4;25623:2;25612:9;25608:18;25600:26;;25672:9;25666:4;25662:20;25658:1;25647:9;25643:17;25636:47;25700:131;25826:4;25700:131;:::i;:::-;25692:139;;25419:419;;;:::o;25844:228::-;25984:34;25980:1;25972:6;25968:14;25961:58;26053:11;26048:2;26040:6;26036:15;26029:36;25844:228;:::o;26078:366::-;26220:3;26241:67;26305:2;26300:3;26241:67;:::i;:::-;26234:74;;26317:93;26406:3;26317:93;:::i;:::-;26435:2;26430:3;26426:12;26419:19;;26078:366;;;:::o;26450:419::-;26616:4;26654:2;26643:9;26639:18;26631:26;;26703:9;26697:4;26693:20;26689:1;26678:9;26674:17;26667:47;26731:131;26857:4;26731:131;:::i;:::-;26723:139;;26450:419;;;:::o;26875:180::-;26923:77;26920:1;26913:88;27020:4;27017:1;27010:15;27044:4;27041:1;27034:15;27061:233;27100:3;27123:24;27141:5;27123:24;:::i;:::-;27114:33;;27169:66;27162:5;27159:77;27156:103;;27239:18;;:::i;:::-;27156:103;27286:1;27279:5;27275:13;27268:20;;27061:233;;;:::o;27300:182::-;27440:34;27436:1;27428:6;27424:14;27417:58;27300:182;:::o;27488:366::-;27630:3;27651:67;27715:2;27710:3;27651:67;:::i;:::-;27644:74;;27727:93;27816:3;27727:93;:::i;:::-;27845:2;27840:3;27836:12;27829:19;;27488:366;;;:::o;27860:419::-;28026:4;28064:2;28053:9;28049:18;28041:26;;28113:9;28107:4;28103:20;28099:1;28088:9;28084:17;28077:47;28141:131;28267:4;28141:131;:::i;:::-;28133:139;;27860:419;;;:::o;28285:228::-;28425:34;28421:1;28413:6;28409:14;28402:58;28494:11;28489:2;28481:6;28477:15;28470:36;28285:228;:::o;28519:366::-;28661:3;28682:67;28746:2;28741:3;28682:67;:::i;:::-;28675:74;;28758:93;28847:3;28758:93;:::i;:::-;28876:2;28871:3;28867:12;28860:19;;28519:366;;;:::o;28891:419::-;29057:4;29095:2;29084:9;29080:18;29072:26;;29144:9;29138:4;29134:20;29130:1;29119:9;29115:17;29108:47;29172:131;29298:4;29172:131;:::i;:::-;29164:139;;28891:419;;;:::o;29316:225::-;29456:34;29452:1;29444:6;29440:14;29433:58;29525:8;29520:2;29512:6;29508:15;29501:33;29316:225;:::o;29547:366::-;29689:3;29710:67;29774:2;29769:3;29710:67;:::i;:::-;29703:74;;29786:93;29875:3;29786:93;:::i;:::-;29904:2;29899:3;29895:12;29888:19;;29547:366;;;:::o;29919:419::-;30085:4;30123:2;30112:9;30108:18;30100:26;;30172:9;30166:4;30162:20;30158:1;30147:9;30143:17;30136:47;30200:131;30326:4;30200:131;:::i;:::-;30192:139;;29919:419;;;:::o;30344:220::-;30484:34;30480:1;30472:6;30468:14;30461:58;30553:3;30548:2;30540:6;30536:15;30529:28;30344:220;:::o;30570:366::-;30712:3;30733:67;30797:2;30792:3;30733:67;:::i;:::-;30726:74;;30809:93;30898:3;30809:93;:::i;:::-;30927:2;30922:3;30918:12;30911:19;;30570:366;;;:::o;30942:419::-;31108:4;31146:2;31135:9;31131:18;31123:26;;31195:9;31189:4;31185:20;31181:1;31170:9;31166:17;31159:47;31223:131;31349:4;31223:131;:::i;:::-;31215:139;;30942:419;;;:::o;31367:332::-;31488:4;31526:2;31515:9;31511:18;31503:26;;31539:71;31607:1;31596:9;31592:17;31583:6;31539:71;:::i;:::-;31620:72;31688:2;31677:9;31673:18;31664:6;31620:72;:::i;:::-;31367:332;;;;;:::o;31705:227::-;31845:34;31841:1;31833:6;31829:14;31822:58;31914:10;31909:2;31901:6;31897:15;31890:35;31705:227;:::o;31938:366::-;32080:3;32101:67;32165:2;32160:3;32101:67;:::i;:::-;32094:74;;32177:93;32266:3;32177:93;:::i;:::-;32295:2;32290:3;32286:12;32279:19;;31938:366;;;:::o;32310:419::-;32476:4;32514:2;32503:9;32499:18;32491:26;;32563:9;32557:4;32553:20;32549:1;32538:9;32534:17;32527:47;32591:131;32717:4;32591:131;:::i;:::-;32583:139;;32310:419;;;:::o;32735:224::-;32875:34;32871:1;32863:6;32859:14;32852:58;32944:7;32939:2;32931:6;32927:15;32920:32;32735:224;:::o;32965:366::-;33107:3;33128:67;33192:2;33187:3;33128:67;:::i;:::-;33121:74;;33204:93;33293:3;33204:93;:::i;:::-;33322:2;33317:3;33313:12;33306:19;;32965:366;;;:::o;33337:419::-;33503:4;33541:2;33530:9;33526:18;33518:26;;33590:9;33584:4;33580:20;33576:1;33565:9;33561:17;33554:47;33618:131;33744:4;33618:131;:::i;:::-;33610:139;;33337:419;;;:::o;33762:229::-;33902:34;33898:1;33890:6;33886:14;33879:58;33971:12;33966:2;33958:6;33954:15;33947:37;33762:229;:::o;33997:366::-;34139:3;34160:67;34224:2;34219:3;34160:67;:::i;:::-;34153:74;;34236:93;34325:3;34236:93;:::i;:::-;34354:2;34349:3;34345:12;34338:19;;33997:366;;;:::o;34369:419::-;34535:4;34573:2;34562:9;34558:18;34550:26;;34622:9;34616:4;34612:20;34608:1;34597:9;34593:17;34586:47;34650:131;34776:4;34650:131;:::i;:::-;34642:139;;34369:419;;;:::o;34794:634::-;35015:4;35053:2;35042:9;35038:18;35030:26;;35102:9;35096:4;35092:20;35088:1;35077:9;35073:17;35066:47;35130:108;35233:4;35224:6;35130:108;:::i;:::-;35122:116;;35285:9;35279:4;35275:20;35270:2;35259:9;35255:18;35248:48;35313:108;35416:4;35407:6;35313:108;:::i;:::-;35305:116;;34794:634;;;;;:::o;35434:141::-;35483:4;35506:3;35498:11;;35529:3;35526:1;35519:14;35563:4;35560:1;35550:18;35542:26;;35434:141;;;:::o;35581:93::-;35618:6;35665:2;35660;35653:5;35649:14;35645:23;35635:33;;35581:93;;;:::o;35680:107::-;35724:8;35774:5;35768:4;35764:16;35743:37;;35680:107;;;;:::o;35793:393::-;35862:6;35912:1;35900:10;35896:18;35935:97;35965:66;35954:9;35935:97;:::i;:::-;36053:39;36083:8;36072:9;36053:39;:::i;:::-;36041:51;;36125:4;36121:9;36114:5;36110:21;36101:30;;36174:4;36164:8;36160:19;36153:5;36150:30;36140:40;;35869:317;;35793:393;;;;;:::o;36192:60::-;36220:3;36241:5;36234:12;;36192:60;;;:::o;36258:142::-;36308:9;36341:53;36359:34;36368:24;36386:5;36368:24;:::i;:::-;36359:34;:::i;:::-;36341:53;:::i;:::-;36328:66;;36258:142;;;:::o;36406:75::-;36449:3;36470:5;36463:12;;36406:75;;;:::o;36487:269::-;36597:39;36628:7;36597:39;:::i;:::-;36658:91;36707:41;36731:16;36707:41;:::i;:::-;36699:6;36692:4;36686:11;36658:91;:::i;:::-;36652:4;36645:105;36563:193;36487:269;;;:::o;36762:73::-;36807:3;36762:73;:::o;36841:189::-;36918:32;;:::i;:::-;36959:65;37017:6;37009;37003:4;36959:65;:::i;:::-;36894:136;36841:189;;:::o;37036:186::-;37096:120;37113:3;37106:5;37103:14;37096:120;;;37167:39;37204:1;37197:5;37167:39;:::i;:::-;37140:1;37133:5;37129:13;37120:22;;37096:120;;;37036:186;;:::o;37228:543::-;37329:2;37324:3;37321:11;37318:446;;;37363:38;37395:5;37363:38;:::i;:::-;37447:29;37465:10;37447:29;:::i;:::-;37437:8;37433:44;37630:2;37618:10;37615:18;37612:49;;;37651:8;37636:23;;37612:49;37674:80;37730:22;37748:3;37730:22;:::i;:::-;37720:8;37716:37;37703:11;37674:80;:::i;:::-;37333:431;;37318:446;37228:543;;;:::o;37777:117::-;37831:8;37881:5;37875:4;37871:16;37850:37;;37777:117;;;;:::o;37900:169::-;37944:6;37977:51;38025:1;38021:6;38013:5;38010:1;38006:13;37977:51;:::i;:::-;37973:56;38058:4;38052;38048:15;38038:25;;37951:118;37900:169;;;;:::o;38074:295::-;38150:4;38296:29;38321:3;38315:4;38296:29;:::i;:::-;38288:37;;38358:3;38355:1;38351:11;38345:4;38342:21;38334:29;;38074:295;;;;:::o;38374:1395::-;38491:37;38524:3;38491:37;:::i;:::-;38593:18;38585:6;38582:30;38579:56;;;38615:18;;:::i;:::-;38579:56;38659:38;38691:4;38685:11;38659:38;:::i;:::-;38744:67;38804:6;38796;38790:4;38744:67;:::i;:::-;38838:1;38862:4;38849:17;;38894:2;38886:6;38883:14;38911:1;38906:618;;;;39568:1;39585:6;39582:77;;;39634:9;39629:3;39625:19;39619:26;39610:35;;39582:77;39685:67;39745:6;39738:5;39685:67;:::i;:::-;39679:4;39672:81;39541:222;38876:887;;38906:618;38958:4;38954:9;38946:6;38942:22;38992:37;39024:4;38992:37;:::i;:::-;39051:1;39065:208;39079:7;39076:1;39073:14;39065:208;;;39158:9;39153:3;39149:19;39143:26;39135:6;39128:42;39209:1;39201:6;39197:14;39187:24;;39256:2;39245:9;39241:18;39228:31;;39102:4;39099:1;39095:12;39090:17;;39065:208;;;39301:6;39292:7;39289:19;39286:179;;;39359:9;39354:3;39350:19;39344:26;39402:48;39444:4;39436:6;39432:17;39421:9;39402:48;:::i;:::-;39394:6;39387:64;39309:156;39286:179;39511:1;39507;39499:6;39495:14;39491:22;39485:4;39478:36;38913:611;;;38876:887;;38466:1303;;;38374:1395;;:::o;39775:228::-;39915:34;39911:1;39903:6;39899:14;39892:58;39984:11;39979:2;39971:6;39967:15;39960:36;39775:228;:::o;40009:366::-;40151:3;40172:67;40236:2;40231:3;40172:67;:::i;:::-;40165:74;;40248:93;40337:3;40248:93;:::i;:::-;40366:2;40361:3;40357:12;40350:19;;40009:366;;;:::o;40381:419::-;40547:4;40585:2;40574:9;40570:18;40562:26;;40634:9;40628:4;40624:20;40620:1;40609:9;40605:17;40598:47;40662:131;40788:4;40662:131;:::i;:::-;40654:139;;40381:419;;;:::o;40806:191::-;40846:4;40866:20;40884:1;40866:20;:::i;:::-;40861:25;;40900:20;40918:1;40900:20;:::i;:::-;40895:25;;40939:1;40936;40933:8;40930:34;;;40944:18;;:::i;:::-;40930:34;40989:1;40986;40982:9;40974:17;;40806:191;;;;:::o;41003:98::-;41054:6;41088:5;41082:12;41072:22;;41003:98;;;:::o;41107:168::-;41190:11;41224:6;41219:3;41212:19;41264:4;41259:3;41255:14;41240:29;;41107:168;;;;:::o;41281:360::-;41367:3;41395:38;41427:5;41395:38;:::i;:::-;41449:70;41512:6;41507:3;41449:70;:::i;:::-;41442:77;;41528:52;41573:6;41568:3;41561:4;41554:5;41550:16;41528:52;:::i;:::-;41605:29;41627:6;41605:29;:::i;:::-;41600:3;41596:39;41589:46;;41371:270;41281:360;;;;:::o;41647:751::-;41870:4;41908:3;41897:9;41893:19;41885:27;;41922:71;41990:1;41979:9;41975:17;41966:6;41922:71;:::i;:::-;42003:72;42071:2;42060:9;42056:18;42047:6;42003:72;:::i;:::-;42085;42153:2;42142:9;42138:18;42129:6;42085:72;:::i;:::-;42167;42235:2;42224:9;42220:18;42211:6;42167:72;:::i;:::-;42287:9;42281:4;42277:20;42271:3;42260:9;42256:19;42249:49;42315:76;42386:4;42377:6;42315:76;:::i;:::-;42307:84;;41647:751;;;;;;;;:::o;42404:141::-;42460:5;42491:6;42485:13;42476:22;;42507:32;42533:5;42507:32;:::i;:::-;42404:141;;;;:::o;42551:349::-;42620:6;42669:2;42657:9;42648:7;42644:23;42640:32;42637:119;;;42675:79;;:::i;:::-;42637:119;42795:1;42820:63;42875:7;42866:6;42855:9;42851:22;42820:63;:::i;:::-;42810:73;;42766:127;42551:349;;;;:::o;42906:106::-;42950:8;42999:5;42994:3;42990:15;42969:36;;42906:106;;;:::o;43018:183::-;43053:3;43091:1;43073:16;43070:23;43067:128;;;43129:1;43126;43123;43108:23;43151:34;43182:1;43176:8;43151:34;:::i;:::-;43144:41;;43067:128;43018:183;:::o;43207:711::-;43246:3;43284:4;43266:16;43263:26;43292:5;43260:39;43321:20;;:::i;:::-;43396:1;43378:16;43374:24;43371:1;43365:4;43350:49;43429:4;43423:11;43528:16;43521:4;43513:6;43509:17;43506:39;43473:18;43465:6;43462:30;43446:113;43443:146;;;43574:5;;;;43443:146;43620:6;43614:4;43610:17;43656:3;43650:10;43683:18;43675:6;43672:30;43669:43;;;43705:5;;;;;;43669:43;43753:6;43746:4;43741:3;43737:14;43733:27;43812:1;43794:16;43790:24;43784:4;43780:35;43775:3;43772:44;43769:57;;;43819:5;;;;;;;43769:57;43836;43884:6;43878:4;43874:17;43866:6;43862:30;43856:4;43836:57;:::i;:::-;43909:3;43902:10;;43250:668;;;;;43207:711;;:::o;43924:239::-;44064:34;44060:1;44052:6;44048:14;44041:58;44133:22;44128:2;44120:6;44116:15;44109:47;43924:239;:::o;44169:366::-;44311:3;44332:67;44396:2;44391:3;44332:67;:::i;:::-;44325:74;;44408:93;44497:3;44408:93;:::i;:::-;44526:2;44521:3;44517:12;44510:19;;44169:366;;;:::o;44541:419::-;44707:4;44745:2;44734:9;44730:18;44722:26;;44794:9;44788:4;44784:20;44780:1;44769:9;44765:17;44758:47;44822:131;44948:4;44822:131;:::i;:::-;44814:139;;44541:419;;;:::o;44966:227::-;45106:34;45102:1;45094:6;45090:14;45083:58;45175:10;45170:2;45162:6;45158:15;45151:35;44966:227;:::o;45199:366::-;45341:3;45362:67;45426:2;45421:3;45362:67;:::i;:::-;45355:74;;45438:93;45527:3;45438:93;:::i;:::-;45556:2;45551:3;45547:12;45540:19;;45199:366;;;:::o;45571:419::-;45737:4;45775:2;45764:9;45760:18;45752:26;;45824:9;45818:4;45814:20;45810:1;45799:9;45795:17;45788:47;45852:131;45978:4;45852:131;:::i;:::-;45844:139;;45571:419;;;:::o;45996:1053::-;46319:4;46357:3;46346:9;46342:19;46334:27;;46371:71;46439:1;46428:9;46424:17;46415:6;46371:71;:::i;:::-;46452:72;46520:2;46509:9;46505:18;46496:6;46452:72;:::i;:::-;46571:9;46565:4;46561:20;46556:2;46545:9;46541:18;46534:48;46599:108;46702:4;46693:6;46599:108;:::i;:::-;46591:116;;46754:9;46748:4;46744:20;46739:2;46728:9;46724:18;46717:48;46782:108;46885:4;46876:6;46782:108;:::i;:::-;46774:116;;46938:9;46932:4;46928:20;46922:3;46911:9;46907:19;46900:49;46966:76;47037:4;47028:6;46966:76;:::i;:::-;46958:84;;45996:1053;;;;;;;;:::o

Swarm Source

ipfs://842cde821390dd703f31d767668d336574be47b7ac408572b6b014a17b569150
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.