ETH Price: $2,634.40 (+0.21%)
Gas: 3 Gwei

Token

HoboBeardClub 90 (HBC90)
 

Overview

Max Total Supply

2,760 HBC90

Holders

920

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HBC90
0x0b402b3e1336d8e0f84d7333622e87617b254f11
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:
HBC90

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-15
*/

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

// SPDX-License-Identifier: MIT

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



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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/[email protected]/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]/token/ERC721/IERC721.sol


pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/[email protected]/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]/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}



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



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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]/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}



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



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: hobobeardclub90.sol

pragma solidity ^0.8.2;



contract HBC90 is ERC721Enumerable, Ownable {
    IERC721 firstEdition = IERC721(0xD6777fD56eEd434D6159A0B0d0BDE8274ab8Bf78);
    mapping(address => uint256) public mintPasses;
    string private baseURI;
    string public BEARDO_PROVENANCE;
    uint256 public MAX_BEARDOS = 9090;
    uint256 private unredeemedFE = 367;
    uint256 public totalReservations = 90;
    uint256 public price = 30000000000000000;
    bool public saleIsActive;
    bool public reservationIsActive = true;
    bool public resMintIsActive;
    
    constructor() ERC721("HoboBeardClub 90", "HBC90") {
        // Reservations for giveaways, team members and anyone who helped us along the way
        mintPasses[0x21D7F026395C8F1C02f1C483B86F8f493876C35c] = 90;
    }
    
    function mintMyBeardo(uint _count) public payable {
        require(saleIsActive, "Sale is not active");
        uint ts = totalSupply()+unredeemedFE;
        require(ts+_count+totalReservations <= MAX_BEARDOS, "Supply exceeded");
        require(_count <= 20, "Maximum per tx reached");
        require(msg.value >= price*_count, "Value below price");
        for(uint i = 0; i < _count; i++){
            _safeMint(msg.sender, ts+i);
        }
    }
    
    function printMyBeardo(uint id) public {
        require(firstEdition.ownerOf(id) == msg.sender, "You have to own this 1st gen beardo with this id");
        _safeMint(msg.sender, id);
        unredeemedFE -= 1;
    }
    
    function printMyBeardos(uint[] memory ids) public {
        for(uint i = 0; i < ids.length; i++){
            printMyBeardo(ids[i]);
        }
    }

    function tokenRedeemed(uint id) public view returns (bool) {
        require(id<367,"Out of bound");
        return _exists(id);
    }
    
    function activateSale() public onlyOwner {
        require(reservationIsActive == false, "Reservation is still active");
        saleIsActive = true;
    }
    
    function deactivateSale() public onlyOwner {
        saleIsActive = false;
    }
    
    function burnBeardos() public onlyOwner {
        MAX_BEARDOS = actualTotalSupply();
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        BEARDO_PROVENANCE = provenanceHash;
    }
    
    // Alternative against gas wars
    function reserveMyBeardo(uint _count) public payable {
        require(reservationIsActive, "Reservation is not active");
        uint tres = totalReservations+_count;
        require(tres <= 8723, "Supply exceeded");
        require(msg.value >= price*_count, "Value below price");
        require(_count<=40, "Maximum reservations");
        mintPasses[msg.sender] = _count;
        totalReservations = tres;
    }
    
    function mintReservations(uint _count) public {
        require(resMintIsActive, "Minting is not active yet");
        uint reservations = mintPasses[msg.sender];
        require(_count <= reservations, "Not enough reservations");
        mintPasses[msg.sender] = reservations-_count;
        uint ts = totalSupply()+unredeemedFE;
        for(uint i = 0; i < _count; i++){
            _safeMint(msg.sender, ts+i);
        }
        totalReservations -= _count; 
    }
    
    function removeReservations(address[] memory addresses) public onlyOwner {
        for(uint i = 0; i < addresses.length; i++){
            totalReservations -= mintPasses[addresses[i]];
            delete mintPasses[addresses[i]];
        }
    }
    
    function deactivateReservation() public onlyOwner {
        reservationIsActive = false;
    }
    
    function activateResMint() public onlyOwner {
        require(reservationIsActive == false, "Reservation is still active");
        resMintIsActive = true;
    }
    
    function deactivateResMint() public onlyOwner {
        resMintIsActive = false;
    }
    
    // incase of price changes or collaborations that include airdrops, probably never used
    function initDrop(address _address, uint _count) public onlyOwner {
        uint newtr = totalReservations+_count;
        require(newtr+totalSupply()+unredeemedFE <= MAX_BEARDOS);
        mintPasses[_address] += _count;
        totalReservations = newtr;
    }
    
    function distributeDrop(address[] memory addresses) public {
        require(resMintIsActive, "Minting is not active yet");
        uint reservations = mintPasses[msg.sender];
        require(addresses.length <= reservations, "More addresses than reservations");
        uint ts = totalSupply()+unredeemedFE;
        for(uint i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], ts+i);
        }
        mintPasses[msg.sender] = reservations-addresses.length;
        totalReservations -= addresses.length;
    }
    
    function setPrice(uint _newPrice) public onlyOwner() {
        price = _newPrice;
    }
    
    function withdrawAll() public payable onlyOwner {
        require(payable(0x25c9DE88361b2E83f7C82446C7CCca2a369327dd).send(address(this).balance));
    }
    
    function _baseURI() internal view override returns (string memory) {
      return baseURI;
    }
    
    function setBaseURI(string memory uri) public onlyOwner {
      baseURI = uri;
    }
    
    // accounting for reservations and unminted first edition mints
    function actualTotalSupply() public view returns (uint){
        return totalSupply()+unredeemedFE+totalReservations;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BEARDO_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BEARDOS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateResMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"actualTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnBeardos","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deactivateResMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deactivateReservation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deactivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"distributeDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"initDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintMyBeardo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintPasses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintReservations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"printMyBeardo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"printMyBeardos","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeReservations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resMintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reservationIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveMyBeardo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenRedeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReservations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405273d6777fd56eed434d6159a0b0d0bde8274ab8bf78600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612382600f5561016f601055605a601155666a94d74f4300006012556001601360016101000a81548160ff0219169083151502179055503480156200009d57600080fd5b506040518060400160405280601081526020017f486f626f4265617264436c7562203930000000000000000000000000000000008152506040518060400160405280600581526020017f48424339300000000000000000000000000000000000000000000000000000008152508160009080519060200190620001229291906200028b565b5080600190805190602001906200013b9291906200028b565b5050506200015e62000152620001bd60201b60201c565b620001c560201b60201c565b605a600c60007321d7f026395c8f1c02f1c483b86f8f493876c35c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620003a0565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000299906200033b565b90600052602060002090601f016020900481019282620002bd576000855562000309565b82601f10620002d857805160ff191683800117855562000309565b8280016001018555821562000309579182015b8281111562000308578251825591602001919060010190620002eb565b5b5090506200031891906200031c565b5090565b5b80821115620003375760008160009055506001016200031d565b5090565b600060028204905060018216806200035457607f821691505b602082108114156200036b576200036a62000371565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61561a80620003b06000396000f3fe6080604052600436106102885760003560e01c806382d17de61161015a578063c60aa4e1116100c1578063e6e80e841161007a578063e6e80e841461093c578063e985e9c514610958578063eb8d244414610995578063ed37226d146109c0578063f10b94cc146109eb578063f2fde38b14610a1457610288565b8063c60aa4e114610866578063c721f08d1461088f578063c87b56dd146108a6578063d657ae0c146108e3578063df88c02e1461090e578063e0d649ea1461092557610288565b806395d89b411161011357806395d89b411461076a578063a035b1fe14610795578063a22cb465146107c0578063b0954dee146107e9578063b84b1ab214610826578063b88d4fde1461083d57610288565b806382d17de61461067b578063853828b6146106a657806387027674146106b05780638da5cb5b146106d95780638f1bca111461070457806391b7f5ed1461074157610288565b80632cda499e116101fe5780635fa08910116101b75780635fa0891014610581578063616d0dfd146105aa5780636352211e146105c157806370a08231146105fe578063715018a61461063b5780637e1eadb21461065257610288565b80632cda499e1461046e5780632f745c591461048a57806332d977d5146104c757806342842e0e146104f25780634f6ccce71461051b57806355f804b31461055857610288565b80631096952311610250578063109695231461038657806315521853146103af57806316b9c33c146103d857806318160ddd146104035780631e6aa1271461042e57806323b872dd1461044557610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f557806308f4617914610332578063095ea7b31461035d575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613fa0565b610a3d565b6040516102c191906145d1565b60405180910390f35b3480156102d657600080fd5b506102df610ab7565b6040516102ec91906145ec565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190614033565b610b49565b604051610329919061456a565b60405180910390f35b34801561033e57600080fd5b50610347610bce565b60405161035491906149ce565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f9190613ee2565b610bd4565b005b34801561039257600080fd5b506103ad60048036038101906103a89190613ff2565b610cec565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190613f1e565b610d82565b005b3480156103e457600080fd5b506103ed610f3c565b6040516103fa91906145d1565b60405180910390f35b34801561040f57600080fd5b50610418610f4f565b60405161042591906149ce565b60405180910390f35b34801561043a57600080fd5b50610443610f5c565b005b34801561045157600080fd5b5061046c60048036038101906104679190613ddc565b610fe8565b005b61048860048036038101906104839190614033565b611048565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613ee2565b6111d1565b6040516104be91906149ce565b60405180910390f35b3480156104d357600080fd5b506104dc611276565b6040516104e991906145d1565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190613ddc565b611289565b005b34801561052757600080fd5b50610542600480360381019061053d9190614033565b6112a9565b60405161054f91906149ce565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190613ff2565b611340565b005b34801561058d57600080fd5b506105a860048036038101906105a39190614033565b6113d6565b005b3480156105b657600080fd5b506105bf611566565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190614033565b6115ff565b6040516105f5919061456a565b60405180910390f35b34801561060a57600080fd5b5061062560048036038101906106209190613d4e565b6116b1565b60405161063291906149ce565b60405180910390f35b34801561064757600080fd5b50610650611769565b005b34801561065e57600080fd5b5061067960048036038101906106749190613f1e565b6117f1565b005b34801561068757600080fd5b506106906119c5565b60405161069d91906145ec565b60405180910390f35b6106ae611a53565b005b3480156106bc57600080fd5b506106d760048036038101906106d29190614033565b611b23565b005b3480156106e557600080fd5b506106ee611c62565b6040516106fb919061456a565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613d4e565b611c8c565b60405161073891906149ce565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190614033565b611ca4565b005b34801561077657600080fd5b5061077f611d2a565b60405161078c91906145ec565b60405180910390f35b3480156107a157600080fd5b506107aa611dbc565b6040516107b791906149ce565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e29190613ea6565b611dc2565b005b3480156107f557600080fd5b50610810600480360381019061080b9190614033565b611f43565b60405161081d91906145d1565b60405180910390f35b34801561083257600080fd5b5061083b611f99565b005b34801561084957600080fd5b50610864600480360381019061085f9190613e2b565b612088565b005b34801561087257600080fd5b5061088d60048036038101906108889190613ee2565b6120ea565b005b34801561089b57600080fd5b506108a4612208565b005b3480156108b257600080fd5b506108cd60048036038101906108c89190614033565b6122f7565b6040516108da91906145ec565b60405180910390f35b3480156108ef57600080fd5b506108f861239e565b60405161090591906149ce565b60405180910390f35b34801561091a57600080fd5b506109236123c7565b005b34801561093157600080fd5b5061093a612460565b005b61095660048036038101906109519190614033565b6124f9565b005b34801561096457600080fd5b5061097f600480360381019061097a9190613da0565b61268a565b60405161098c91906145d1565b60405180910390f35b3480156109a157600080fd5b506109aa61271e565b6040516109b791906145d1565b60405180910390f35b3480156109cc57600080fd5b506109d5612731565b6040516109e291906149ce565b60405180910390f35b3480156109f757600080fd5b50610a126004803603810190610a0d9190613f5f565b612737565b005b348015610a2057600080fd5b50610a3b6004803603810190610a369190613d4e565b6127a3565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab05750610aaf8261289b565b5b9050919050565b606060008054610ac690614cd6565b80601f0160208091040260200160405190810160405280929190818152602001828054610af290614cd6565b8015610b3f5780601f10610b1457610100808354040283529160200191610b3f565b820191906000526020600020905b815481529060010190602001808311610b2257829003601f168201915b5050505050905090565b6000610b548261297d565b610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a9061482e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f5481565b6000610bdf826115ff565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c47906148ee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c6f6129e9565b73ffffffffffffffffffffffffffffffffffffffff161480610c9e5750610c9d81610c986129e9565b61268a565b5b610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd49061472e565b60405180910390fd5b610ce783836129f1565b505050565b610cf46129e9565b73ffffffffffffffffffffffffffffffffffffffff16610d12611c62565b73ffffffffffffffffffffffffffffffffffffffff1614610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f9061484e565b60405180910390fd5b80600e9080519060200190610d7e929190613a31565b5050565b610d8a6129e9565b73ffffffffffffffffffffffffffffffffffffffff16610da8611c62565b73ffffffffffffffffffffffffffffffffffffffff1614610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df59061484e565b60405180910390fd5b60005b8151811015610f3857600c6000838381518110610e47577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460116000828254610e9b9190614bec565b92505081905550600c6000838381518110610edf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090558080610f3090614d39565b915050610e01565b5050565b601360019054906101000a900460ff1681565b6000600880549050905090565b610f646129e9565b73ffffffffffffffffffffffffffffffffffffffff16610f82611c62565b73ffffffffffffffffffffffffffffffffffffffff1614610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf9061484e565b60405180910390fd5b610fe061239e565b600f81905550565b610ff9610ff36129e9565b82612aaa565b611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f9061492e565b60405180910390fd5b611043838383612b88565b505050565b601360019054906101000a900460ff16611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e9061494e565b60405180910390fd5b6000816011546110a79190614b0b565b90506122138111156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e59061470e565b60405180910390fd5b816012546110fc9190614b92565b34101561113e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611135906148ae565b60405180910390fd5b6028821115611182576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111799061474e565b60405180910390fd5b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806011819055505050565b60006111dc836116b1565b821061121d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112149061460e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601360029054906101000a900460ff1681565b6112a483838360405180602001604052806000815250612088565b505050565b60006112b3610f4f565b82106112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb9061496e565b60405180910390fd5b6008828154811061132e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6113486129e9565b73ffffffffffffffffffffffffffffffffffffffff16611366611c62565b73ffffffffffffffffffffffffffffffffffffffff16146113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b39061484e565b60405180910390fd5b80600d90805190602001906113d2929190613a31565b5050565b601360029054906101000a900460ff16611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c9061480e565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808211156114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a3906148ce565b60405180910390fd5b81816114b89190614bec565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000601054611508610f4f565b6115129190614b0b565b905060005b838110156115475761153433828461152f9190614b0b565b612de4565b808061153f90614d39565b915050611517565b50826011600082825461155a9190614bec565b92505081905550505050565b61156e6129e9565b73ffffffffffffffffffffffffffffffffffffffff1661158c611c62565b73ffffffffffffffffffffffffffffffffffffffff16146115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d99061484e565b60405180910390fd5b6000601360006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f9061478e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117199061476e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117716129e9565b73ffffffffffffffffffffffffffffffffffffffff1661178f611c62565b73ffffffffffffffffffffffffffffffffffffffff16146117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc9061484e565b60405180910390fd5b6117ef6000612e02565b565b601360029054906101000a900460ff16611840576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118379061480e565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080825111156118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf906147ce565b60405180910390fd5b60006010546118d5610f4f565b6118df9190614b0b565b905060005b835181101561195557611942848281518110611929577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151828461193d9190614b0b565b612de4565b808061194d90614d39565b9150506118e4565b508251826119639190614bec565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508251601160008282546119b99190614bec565b92505081905550505050565b600e80546119d290614cd6565b80601f01602080910402602001604051908101604052809291908181526020018280546119fe90614cd6565b8015611a4b5780601f10611a2057610100808354040283529160200191611a4b565b820191906000526020600020905b815481529060010190602001808311611a2e57829003601f168201915b505050505081565b611a5b6129e9565b73ffffffffffffffffffffffffffffffffffffffff16611a79611c62565b73ffffffffffffffffffffffffffffffffffffffff1614611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac69061484e565b60405180910390fd5b7325c9de88361b2e83f7c82446c7ccca2a369327dd73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611b2157600080fd5b565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611b9591906149ce565b60206040518083038186803b158015611bad57600080fd5b505afa158015611bc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611be59190613d77565b73ffffffffffffffffffffffffffffffffffffffff1614611c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c32906149ae565b60405180910390fd5b611c453382612de4565b600160106000828254611c589190614bec565b9250508190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c6020528060005260406000206000915090505481565b611cac6129e9565b73ffffffffffffffffffffffffffffffffffffffff16611cca611c62565b73ffffffffffffffffffffffffffffffffffffffff1614611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d179061484e565b60405180910390fd5b8060128190555050565b606060018054611d3990614cd6565b80601f0160208091040260200160405190810160405280929190818152602001828054611d6590614cd6565b8015611db25780601f10611d8757610100808354040283529160200191611db2565b820191906000526020600020905b815481529060010190602001808311611d9557829003601f168201915b5050505050905090565b60125481565b611dca6129e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f906146ae565b60405180910390fd5b8060056000611e456129e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ef26129e9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f3791906145d1565b60405180910390a35050565b600061016f8210611f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f80906147ee565b60405180910390fd5b611f928261297d565b9050919050565b611fa16129e9565b73ffffffffffffffffffffffffffffffffffffffff16611fbf611c62565b73ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c9061484e565b60405180910390fd5b60001515601360019054906101000a900460ff1615151461206b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120629061498e565b60405180910390fd5b6001601360026101000a81548160ff021916908315150217905550565b6120996120936129e9565b83612aaa565b6120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf9061492e565b60405180910390fd5b6120e484848484612ec8565b50505050565b6120f26129e9565b73ffffffffffffffffffffffffffffffffffffffff16612110611c62565b73ffffffffffffffffffffffffffffffffffffffff1614612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d9061484e565b60405180910390fd5b6000816011546121769190614b0b565b9050600f54601054612186610f4f565b836121919190614b0b565b61219b9190614b0b565b11156121a657600080fd5b81600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f59190614b0b565b9250508190555080601181905550505050565b6122106129e9565b73ffffffffffffffffffffffffffffffffffffffff1661222e611c62565b73ffffffffffffffffffffffffffffffffffffffff1614612284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227b9061484e565b60405180910390fd5b60001515601360019054906101000a900460ff161515146122da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d19061498e565b60405180910390fd5b6001601360006101000a81548160ff021916908315150217905550565b60606123028261297d565b612341576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123389061488e565b60405180910390fd5b600061234b612f24565b9050600081511161236b5760405180602001604052806000815250612396565b8061237584612fb6565b604051602001612386929190614546565b6040516020818303038152906040525b915050919050565b60006011546010546123ae610f4f565b6123b89190614b0b565b6123c29190614b0b565b905090565b6123cf6129e9565b73ffffffffffffffffffffffffffffffffffffffff166123ed611c62565b73ffffffffffffffffffffffffffffffffffffffff1614612443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243a9061484e565b60405180910390fd5b6000601360026101000a81548160ff021916908315150217905550565b6124686129e9565b73ffffffffffffffffffffffffffffffffffffffff16612486611c62565b73ffffffffffffffffffffffffffffffffffffffff16146124dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d39061484e565b60405180910390fd5b6000601360016101000a81548160ff021916908315150217905550565b601360009054906101000a900460ff16612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253f906146ce565b60405180910390fd5b6000601054612555610f4f565b61255f9190614b0b565b9050600f5460115483836125739190614b0b565b61257d9190614b0b565b11156125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b59061470e565b60405180910390fd5b6014821115612602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f99061490e565b60405180910390fd5b816012546126109190614b92565b341015612652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612649906148ae565b60405180910390fd5b60005b828110156126855761267233828461266d9190614b0b565b612de4565b808061267d90614d39565b915050612655565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601360009054906101000a900460ff1681565b60115481565b60005b815181101561279f5761278c82828151811061277f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611b23565b808061279790614d39565b91505061273a565b5050565b6127ab6129e9565b73ffffffffffffffffffffffffffffffffffffffff166127c9611c62565b73ffffffffffffffffffffffffffffffffffffffff161461281f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128169061484e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561288f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128869061464e565b60405180910390fd5b61289881612e02565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061296657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612976575061297582613163565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a64836115ff565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ab58261297d565b612af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aeb906146ee565b60405180910390fd5b6000612aff836115ff565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b6e57508373ffffffffffffffffffffffffffffffffffffffff16612b5684610b49565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b7f5750612b7e818561268a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612ba8826115ff565b73ffffffffffffffffffffffffffffffffffffffff1614612bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf59061486e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c659061468e565b60405180910390fd5b612c798383836131cd565b612c846000826129f1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cd49190614bec565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d2b9190614b0b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612dfe8282604051806020016040528060008152506132e1565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ed3848484612b88565b612edf8484848461333c565b612f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f159061462e565b60405180910390fd5b50505050565b6060600d8054612f3390614cd6565b80601f0160208091040260200160405190810160405280929190818152602001828054612f5f90614cd6565b8015612fac5780601f10612f8157610100808354040283529160200191612fac565b820191906000526020600020905b815481529060010190602001808311612f8f57829003601f168201915b5050505050905090565b60606000821415612ffe576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061315e565b600082905060005b6000821461303057808061301990614d39565b915050600a826130299190614b61565b9150613006565b60008167ffffffffffffffff811115613072577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130a45781602001600182028036833780820191505090505b5090505b60008514613157576001826130bd9190614bec565b9150600a856130cc9190614d82565b60306130d89190614b0b565b60f81b818381518110613114577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131509190614b61565b94506130a8565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131d88383836134d3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561321b57613216816134d8565b61325a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613259576132588382613521565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561329d576132988161368e565b6132dc565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132db576132da82826137d1565b5b5b505050565b6132eb8383613850565b6132f8600084848461333c565b613337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332e9061462e565b60405180910390fd5b505050565b600061335d8473ffffffffffffffffffffffffffffffffffffffff16613a1e565b156134c6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133866129e9565b8786866040518563ffffffff1660e01b81526004016133a89493929190614585565b602060405180830381600087803b1580156133c257600080fd5b505af19250505080156133f357506040513d601f19601f820116820180604052508101906133f09190613fc9565b60015b613476573d8060008114613423576040519150601f19603f3d011682016040523d82523d6000602084013e613428565b606091505b5060008151141561346e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134659061462e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506134cb565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161352e846116b1565b6135389190614bec565b905060006007600084815260200190815260200160002054905081811461361d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136a29190614bec565b90506000600960008481526020019081526020016000205490506000600883815481106136f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613740577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806137b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006137dc836116b1565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b7906147ae565b60405180910390fd5b6138c98161297d565b15613909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139009061466e565b60405180910390fd5b613915600083836131cd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139659190614b0b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613a3d90614cd6565b90600052602060002090601f016020900481019282613a5f5760008555613aa6565b82601f10613a7857805160ff1916838001178555613aa6565b82800160010185558215613aa6579182015b82811115613aa5578251825591602001919060010190613a8a565b5b509050613ab39190613ab7565b5090565b5b80821115613ad0576000816000905550600101613ab8565b5090565b6000613ae7613ae284614a0e565b6149e9565b90508083825260208201905082856020860282011115613b0657600080fd5b60005b85811015613b365781613b1c8882613c28565b845260208401935060208301925050600181019050613b09565b5050509392505050565b6000613b53613b4e84614a3a565b6149e9565b90508083825260208201905082856020860282011115613b7257600080fd5b60005b85811015613ba25781613b888882613d39565b845260208401935060208301925050600181019050613b75565b5050509392505050565b6000613bbf613bba84614a66565b6149e9565b905082815260208101848484011115613bd757600080fd5b613be2848285614c94565b509392505050565b6000613bfd613bf884614a97565b6149e9565b905082815260208101848484011115613c1557600080fd5b613c20848285614c94565b509392505050565b600081359050613c3781615588565b92915050565b600081519050613c4c81615588565b92915050565b600082601f830112613c6357600080fd5b8135613c73848260208601613ad4565b91505092915050565b600082601f830112613c8d57600080fd5b8135613c9d848260208601613b40565b91505092915050565b600081359050613cb58161559f565b92915050565b600081359050613cca816155b6565b92915050565b600081519050613cdf816155b6565b92915050565b600082601f830112613cf657600080fd5b8135613d06848260208601613bac565b91505092915050565b600082601f830112613d2057600080fd5b8135613d30848260208601613bea565b91505092915050565b600081359050613d48816155cd565b92915050565b600060208284031215613d6057600080fd5b6000613d6e84828501613c28565b91505092915050565b600060208284031215613d8957600080fd5b6000613d9784828501613c3d565b91505092915050565b60008060408385031215613db357600080fd5b6000613dc185828601613c28565b9250506020613dd285828601613c28565b9150509250929050565b600080600060608486031215613df157600080fd5b6000613dff86828701613c28565b9350506020613e1086828701613c28565b9250506040613e2186828701613d39565b9150509250925092565b60008060008060808587031215613e4157600080fd5b6000613e4f87828801613c28565b9450506020613e6087828801613c28565b9350506040613e7187828801613d39565b925050606085013567ffffffffffffffff811115613e8e57600080fd5b613e9a87828801613ce5565b91505092959194509250565b60008060408385031215613eb957600080fd5b6000613ec785828601613c28565b9250506020613ed885828601613ca6565b9150509250929050565b60008060408385031215613ef557600080fd5b6000613f0385828601613c28565b9250506020613f1485828601613d39565b9150509250929050565b600060208284031215613f3057600080fd5b600082013567ffffffffffffffff811115613f4a57600080fd5b613f5684828501613c52565b91505092915050565b600060208284031215613f7157600080fd5b600082013567ffffffffffffffff811115613f8b57600080fd5b613f9784828501613c7c565b91505092915050565b600060208284031215613fb257600080fd5b6000613fc084828501613cbb565b91505092915050565b600060208284031215613fdb57600080fd5b6000613fe984828501613cd0565b91505092915050565b60006020828403121561400457600080fd5b600082013567ffffffffffffffff81111561401e57600080fd5b61402a84828501613d0f565b91505092915050565b60006020828403121561404557600080fd5b600061405384828501613d39565b91505092915050565b61406581614c20565b82525050565b61407481614c32565b82525050565b600061408582614ac8565b61408f8185614ade565b935061409f818560208601614ca3565b6140a881614e6f565b840191505092915050565b60006140be82614ad3565b6140c88185614aef565b93506140d8818560208601614ca3565b6140e181614e6f565b840191505092915050565b60006140f782614ad3565b6141018185614b00565b9350614111818560208601614ca3565b80840191505092915050565b600061412a602b83614aef565b915061413582614e80565b604082019050919050565b600061414d603283614aef565b915061415882614ecf565b604082019050919050565b6000614170602683614aef565b915061417b82614f1e565b604082019050919050565b6000614193601c83614aef565b915061419e82614f6d565b602082019050919050565b60006141b6602483614aef565b91506141c182614f96565b604082019050919050565b60006141d9601983614aef565b91506141e482614fe5565b602082019050919050565b60006141fc601283614aef565b91506142078261500e565b602082019050919050565b600061421f602c83614aef565b915061422a82615037565b604082019050919050565b6000614242600f83614aef565b915061424d82615086565b602082019050919050565b6000614265603883614aef565b9150614270826150af565b604082019050919050565b6000614288601483614aef565b9150614293826150fe565b602082019050919050565b60006142ab602a83614aef565b91506142b682615127565b604082019050919050565b60006142ce602983614aef565b91506142d982615176565b604082019050919050565b60006142f1602083614aef565b91506142fc826151c5565b602082019050919050565b6000614314602083614aef565b915061431f826151ee565b602082019050919050565b6000614337600c83614aef565b915061434282615217565b602082019050919050565b600061435a601983614aef565b915061436582615240565b602082019050919050565b600061437d602c83614aef565b915061438882615269565b604082019050919050565b60006143a0602083614aef565b91506143ab826152b8565b602082019050919050565b60006143c3602983614aef565b91506143ce826152e1565b604082019050919050565b60006143e6602f83614aef565b91506143f182615330565b604082019050919050565b6000614409601183614aef565b91506144148261537f565b602082019050919050565b600061442c601783614aef565b9150614437826153a8565b602082019050919050565b600061444f602183614aef565b915061445a826153d1565b604082019050919050565b6000614472601683614aef565b915061447d82615420565b602082019050919050565b6000614495603183614aef565b91506144a082615449565b604082019050919050565b60006144b8601983614aef565b91506144c382615498565b602082019050919050565b60006144db602c83614aef565b91506144e6826154c1565b604082019050919050565b60006144fe601b83614aef565b915061450982615510565b602082019050919050565b6000614521603083614aef565b915061452c82615539565b604082019050919050565b61454081614c8a565b82525050565b600061455282856140ec565b915061455e82846140ec565b91508190509392505050565b600060208201905061457f600083018461405c565b92915050565b600060808201905061459a600083018761405c565b6145a7602083018661405c565b6145b46040830185614537565b81810360608301526145c6818461407a565b905095945050505050565b60006020820190506145e6600083018461406b565b92915050565b6000602082019050818103600083015261460681846140b3565b905092915050565b600060208201905081810360008301526146278161411d565b9050919050565b6000602082019050818103600083015261464781614140565b9050919050565b6000602082019050818103600083015261466781614163565b9050919050565b6000602082019050818103600083015261468781614186565b9050919050565b600060208201905081810360008301526146a7816141a9565b9050919050565b600060208201905081810360008301526146c7816141cc565b9050919050565b600060208201905081810360008301526146e7816141ef565b9050919050565b6000602082019050818103600083015261470781614212565b9050919050565b6000602082019050818103600083015261472781614235565b9050919050565b6000602082019050818103600083015261474781614258565b9050919050565b600060208201905081810360008301526147678161427b565b9050919050565b600060208201905081810360008301526147878161429e565b9050919050565b600060208201905081810360008301526147a7816142c1565b9050919050565b600060208201905081810360008301526147c7816142e4565b9050919050565b600060208201905081810360008301526147e781614307565b9050919050565b600060208201905081810360008301526148078161432a565b9050919050565b600060208201905081810360008301526148278161434d565b9050919050565b6000602082019050818103600083015261484781614370565b9050919050565b6000602082019050818103600083015261486781614393565b9050919050565b60006020820190508181036000830152614887816143b6565b9050919050565b600060208201905081810360008301526148a7816143d9565b9050919050565b600060208201905081810360008301526148c7816143fc565b9050919050565b600060208201905081810360008301526148e78161441f565b9050919050565b6000602082019050818103600083015261490781614442565b9050919050565b6000602082019050818103600083015261492781614465565b9050919050565b6000602082019050818103600083015261494781614488565b9050919050565b60006020820190508181036000830152614967816144ab565b9050919050565b60006020820190508181036000830152614987816144ce565b9050919050565b600060208201905081810360008301526149a7816144f1565b9050919050565b600060208201905081810360008301526149c781614514565b9050919050565b60006020820190506149e36000830184614537565b92915050565b60006149f3614a04565b90506149ff8282614d08565b919050565b6000604051905090565b600067ffffffffffffffff821115614a2957614a28614e40565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614a5557614a54614e40565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614a8157614a80614e40565b5b614a8a82614e6f565b9050602081019050919050565b600067ffffffffffffffff821115614ab257614ab1614e40565b5b614abb82614e6f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b1682614c8a565b9150614b2183614c8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b5657614b55614db3565b5b828201905092915050565b6000614b6c82614c8a565b9150614b7783614c8a565b925082614b8757614b86614de2565b5b828204905092915050565b6000614b9d82614c8a565b9150614ba883614c8a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614be157614be0614db3565b5b828202905092915050565b6000614bf782614c8a565b9150614c0283614c8a565b925082821015614c1557614c14614db3565b5b828203905092915050565b6000614c2b82614c6a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614cc1578082015181840152602081019050614ca6565b83811115614cd0576000848401525b50505050565b60006002820490506001821680614cee57607f821691505b60208210811415614d0257614d01614e11565b5b50919050565b614d1182614e6f565b810181811067ffffffffffffffff82111715614d3057614d2f614e40565b5b80604052505050565b6000614d4482614c8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d7757614d76614db3565b5b600182019050919050565b6000614d8d82614c8a565b9150614d9883614c8a565b925082614da857614da7614de2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f537570706c792065786365656465640000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4d6178696d756d207265736572766174696f6e73000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d6f726520616464726573736573207468616e207265736572766174696f6e73600082015250565b7f4f7574206f6620626f756e640000000000000000000000000000000000000000600082015250565b7f4d696e74696e67206973206e6f74206163746976652079657400000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4e6f7420656e6f756768207265736572766174696f6e73000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20706572207478207265616368656400000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5265736572766174696f6e206973206e6f742061637469766500000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265736572766174696f6e206973207374696c6c206163746976650000000000600082015250565b7f596f75206861766520746f206f776e2074686973203173742067656e2062656160008201527f72646f2077697468207468697320696400000000000000000000000000000000602082015250565b61559181614c20565b811461559c57600080fd5b50565b6155a881614c32565b81146155b357600080fd5b50565b6155bf81614c3e565b81146155ca57600080fd5b50565b6155d681614c8a565b81146155e157600080fd5b5056fea2646970667358221220362e48feba83352623cc7b77273d16cd5fd028fcc40da7d46c7c27a19dcd93aa64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102885760003560e01c806382d17de61161015a578063c60aa4e1116100c1578063e6e80e841161007a578063e6e80e841461093c578063e985e9c514610958578063eb8d244414610995578063ed37226d146109c0578063f10b94cc146109eb578063f2fde38b14610a1457610288565b8063c60aa4e114610866578063c721f08d1461088f578063c87b56dd146108a6578063d657ae0c146108e3578063df88c02e1461090e578063e0d649ea1461092557610288565b806395d89b411161011357806395d89b411461076a578063a035b1fe14610795578063a22cb465146107c0578063b0954dee146107e9578063b84b1ab214610826578063b88d4fde1461083d57610288565b806382d17de61461067b578063853828b6146106a657806387027674146106b05780638da5cb5b146106d95780638f1bca111461070457806391b7f5ed1461074157610288565b80632cda499e116101fe5780635fa08910116101b75780635fa0891014610581578063616d0dfd146105aa5780636352211e146105c157806370a08231146105fe578063715018a61461063b5780637e1eadb21461065257610288565b80632cda499e1461046e5780632f745c591461048a57806332d977d5146104c757806342842e0e146104f25780634f6ccce71461051b57806355f804b31461055857610288565b80631096952311610250578063109695231461038657806315521853146103af57806316b9c33c146103d857806318160ddd146104035780631e6aa1271461042e57806323b872dd1461044557610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f557806308f4617914610332578063095ea7b31461035d575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613fa0565b610a3d565b6040516102c191906145d1565b60405180910390f35b3480156102d657600080fd5b506102df610ab7565b6040516102ec91906145ec565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190614033565b610b49565b604051610329919061456a565b60405180910390f35b34801561033e57600080fd5b50610347610bce565b60405161035491906149ce565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f9190613ee2565b610bd4565b005b34801561039257600080fd5b506103ad60048036038101906103a89190613ff2565b610cec565b005b3480156103bb57600080fd5b506103d660048036038101906103d19190613f1e565b610d82565b005b3480156103e457600080fd5b506103ed610f3c565b6040516103fa91906145d1565b60405180910390f35b34801561040f57600080fd5b50610418610f4f565b60405161042591906149ce565b60405180910390f35b34801561043a57600080fd5b50610443610f5c565b005b34801561045157600080fd5b5061046c60048036038101906104679190613ddc565b610fe8565b005b61048860048036038101906104839190614033565b611048565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613ee2565b6111d1565b6040516104be91906149ce565b60405180910390f35b3480156104d357600080fd5b506104dc611276565b6040516104e991906145d1565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190613ddc565b611289565b005b34801561052757600080fd5b50610542600480360381019061053d9190614033565b6112a9565b60405161054f91906149ce565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190613ff2565b611340565b005b34801561058d57600080fd5b506105a860048036038101906105a39190614033565b6113d6565b005b3480156105b657600080fd5b506105bf611566565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190614033565b6115ff565b6040516105f5919061456a565b60405180910390f35b34801561060a57600080fd5b5061062560048036038101906106209190613d4e565b6116b1565b60405161063291906149ce565b60405180910390f35b34801561064757600080fd5b50610650611769565b005b34801561065e57600080fd5b5061067960048036038101906106749190613f1e565b6117f1565b005b34801561068757600080fd5b506106906119c5565b60405161069d91906145ec565b60405180910390f35b6106ae611a53565b005b3480156106bc57600080fd5b506106d760048036038101906106d29190614033565b611b23565b005b3480156106e557600080fd5b506106ee611c62565b6040516106fb919061456a565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613d4e565b611c8c565b60405161073891906149ce565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190614033565b611ca4565b005b34801561077657600080fd5b5061077f611d2a565b60405161078c91906145ec565b60405180910390f35b3480156107a157600080fd5b506107aa611dbc565b6040516107b791906149ce565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e29190613ea6565b611dc2565b005b3480156107f557600080fd5b50610810600480360381019061080b9190614033565b611f43565b60405161081d91906145d1565b60405180910390f35b34801561083257600080fd5b5061083b611f99565b005b34801561084957600080fd5b50610864600480360381019061085f9190613e2b565b612088565b005b34801561087257600080fd5b5061088d60048036038101906108889190613ee2565b6120ea565b005b34801561089b57600080fd5b506108a4612208565b005b3480156108b257600080fd5b506108cd60048036038101906108c89190614033565b6122f7565b6040516108da91906145ec565b60405180910390f35b3480156108ef57600080fd5b506108f861239e565b60405161090591906149ce565b60405180910390f35b34801561091a57600080fd5b506109236123c7565b005b34801561093157600080fd5b5061093a612460565b005b61095660048036038101906109519190614033565b6124f9565b005b34801561096457600080fd5b5061097f600480360381019061097a9190613da0565b61268a565b60405161098c91906145d1565b60405180910390f35b3480156109a157600080fd5b506109aa61271e565b6040516109b791906145d1565b60405180910390f35b3480156109cc57600080fd5b506109d5612731565b6040516109e291906149ce565b60405180910390f35b3480156109f757600080fd5b50610a126004803603810190610a0d9190613f5f565b612737565b005b348015610a2057600080fd5b50610a3b6004803603810190610a369190613d4e565b6127a3565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ab05750610aaf8261289b565b5b9050919050565b606060008054610ac690614cd6565b80601f0160208091040260200160405190810160405280929190818152602001828054610af290614cd6565b8015610b3f5780601f10610b1457610100808354040283529160200191610b3f565b820191906000526020600020905b815481529060010190602001808311610b2257829003601f168201915b5050505050905090565b6000610b548261297d565b610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a9061482e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f5481565b6000610bdf826115ff565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c47906148ee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c6f6129e9565b73ffffffffffffffffffffffffffffffffffffffff161480610c9e5750610c9d81610c986129e9565b61268a565b5b610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd49061472e565b60405180910390fd5b610ce783836129f1565b505050565b610cf46129e9565b73ffffffffffffffffffffffffffffffffffffffff16610d12611c62565b73ffffffffffffffffffffffffffffffffffffffff1614610d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5f9061484e565b60405180910390fd5b80600e9080519060200190610d7e929190613a31565b5050565b610d8a6129e9565b73ffffffffffffffffffffffffffffffffffffffff16610da8611c62565b73ffffffffffffffffffffffffffffffffffffffff1614610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df59061484e565b60405180910390fd5b60005b8151811015610f3857600c6000838381518110610e47577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460116000828254610e9b9190614bec565b92505081905550600c6000838381518110610edf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090558080610f3090614d39565b915050610e01565b5050565b601360019054906101000a900460ff1681565b6000600880549050905090565b610f646129e9565b73ffffffffffffffffffffffffffffffffffffffff16610f82611c62565b73ffffffffffffffffffffffffffffffffffffffff1614610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf9061484e565b60405180910390fd5b610fe061239e565b600f81905550565b610ff9610ff36129e9565b82612aaa565b611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f9061492e565b60405180910390fd5b611043838383612b88565b505050565b601360019054906101000a900460ff16611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e9061494e565b60405180910390fd5b6000816011546110a79190614b0b565b90506122138111156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e59061470e565b60405180910390fd5b816012546110fc9190614b92565b34101561113e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611135906148ae565b60405180910390fd5b6028821115611182576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111799061474e565b60405180910390fd5b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806011819055505050565b60006111dc836116b1565b821061121d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112149061460e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601360029054906101000a900460ff1681565b6112a483838360405180602001604052806000815250612088565b505050565b60006112b3610f4f565b82106112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb9061496e565b60405180910390fd5b6008828154811061132e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6113486129e9565b73ffffffffffffffffffffffffffffffffffffffff16611366611c62565b73ffffffffffffffffffffffffffffffffffffffff16146113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b39061484e565b60405180910390fd5b80600d90805190602001906113d2929190613a31565b5050565b601360029054906101000a900460ff16611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c9061480e565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050808211156114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a3906148ce565b60405180910390fd5b81816114b89190614bec565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000601054611508610f4f565b6115129190614b0b565b905060005b838110156115475761153433828461152f9190614b0b565b612de4565b808061153f90614d39565b915050611517565b50826011600082825461155a9190614bec565b92505081905550505050565b61156e6129e9565b73ffffffffffffffffffffffffffffffffffffffff1661158c611c62565b73ffffffffffffffffffffffffffffffffffffffff16146115e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d99061484e565b60405180910390fd5b6000601360006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f9061478e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611722576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117199061476e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117716129e9565b73ffffffffffffffffffffffffffffffffffffffff1661178f611c62565b73ffffffffffffffffffffffffffffffffffffffff16146117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc9061484e565b60405180910390fd5b6117ef6000612e02565b565b601360029054906101000a900460ff16611840576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118379061480e565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080825111156118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf906147ce565b60405180910390fd5b60006010546118d5610f4f565b6118df9190614b0b565b905060005b835181101561195557611942848281518110611929577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151828461193d9190614b0b565b612de4565b808061194d90614d39565b9150506118e4565b508251826119639190614bec565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508251601160008282546119b99190614bec565b92505081905550505050565b600e80546119d290614cd6565b80601f01602080910402602001604051908101604052809291908181526020018280546119fe90614cd6565b8015611a4b5780601f10611a2057610100808354040283529160200191611a4b565b820191906000526020600020905b815481529060010190602001808311611a2e57829003601f168201915b505050505081565b611a5b6129e9565b73ffffffffffffffffffffffffffffffffffffffff16611a79611c62565b73ffffffffffffffffffffffffffffffffffffffff1614611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac69061484e565b60405180910390fd5b7325c9de88361b2e83f7c82446c7ccca2a369327dd73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611b2157600080fd5b565b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611b9591906149ce565b60206040518083038186803b158015611bad57600080fd5b505afa158015611bc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611be59190613d77565b73ffffffffffffffffffffffffffffffffffffffff1614611c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c32906149ae565b60405180910390fd5b611c453382612de4565b600160106000828254611c589190614bec565b9250508190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c6020528060005260406000206000915090505481565b611cac6129e9565b73ffffffffffffffffffffffffffffffffffffffff16611cca611c62565b73ffffffffffffffffffffffffffffffffffffffff1614611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d179061484e565b60405180910390fd5b8060128190555050565b606060018054611d3990614cd6565b80601f0160208091040260200160405190810160405280929190818152602001828054611d6590614cd6565b8015611db25780601f10611d8757610100808354040283529160200191611db2565b820191906000526020600020905b815481529060010190602001808311611d9557829003601f168201915b5050505050905090565b60125481565b611dca6129e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f906146ae565b60405180910390fd5b8060056000611e456129e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ef26129e9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f3791906145d1565b60405180910390a35050565b600061016f8210611f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f80906147ee565b60405180910390fd5b611f928261297d565b9050919050565b611fa16129e9565b73ffffffffffffffffffffffffffffffffffffffff16611fbf611c62565b73ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c9061484e565b60405180910390fd5b60001515601360019054906101000a900460ff1615151461206b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120629061498e565b60405180910390fd5b6001601360026101000a81548160ff021916908315150217905550565b6120996120936129e9565b83612aaa565b6120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf9061492e565b60405180910390fd5b6120e484848484612ec8565b50505050565b6120f26129e9565b73ffffffffffffffffffffffffffffffffffffffff16612110611c62565b73ffffffffffffffffffffffffffffffffffffffff1614612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d9061484e565b60405180910390fd5b6000816011546121769190614b0b565b9050600f54601054612186610f4f565b836121919190614b0b565b61219b9190614b0b565b11156121a657600080fd5b81600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f59190614b0b565b9250508190555080601181905550505050565b6122106129e9565b73ffffffffffffffffffffffffffffffffffffffff1661222e611c62565b73ffffffffffffffffffffffffffffffffffffffff1614612284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227b9061484e565b60405180910390fd5b60001515601360019054906101000a900460ff161515146122da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d19061498e565b60405180910390fd5b6001601360006101000a81548160ff021916908315150217905550565b60606123028261297d565b612341576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123389061488e565b60405180910390fd5b600061234b612f24565b9050600081511161236b5760405180602001604052806000815250612396565b8061237584612fb6565b604051602001612386929190614546565b6040516020818303038152906040525b915050919050565b60006011546010546123ae610f4f565b6123b89190614b0b565b6123c29190614b0b565b905090565b6123cf6129e9565b73ffffffffffffffffffffffffffffffffffffffff166123ed611c62565b73ffffffffffffffffffffffffffffffffffffffff1614612443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243a9061484e565b60405180910390fd5b6000601360026101000a81548160ff021916908315150217905550565b6124686129e9565b73ffffffffffffffffffffffffffffffffffffffff16612486611c62565b73ffffffffffffffffffffffffffffffffffffffff16146124dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d39061484e565b60405180910390fd5b6000601360016101000a81548160ff021916908315150217905550565b601360009054906101000a900460ff16612548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253f906146ce565b60405180910390fd5b6000601054612555610f4f565b61255f9190614b0b565b9050600f5460115483836125739190614b0b565b61257d9190614b0b565b11156125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b59061470e565b60405180910390fd5b6014821115612602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f99061490e565b60405180910390fd5b816012546126109190614b92565b341015612652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612649906148ae565b60405180910390fd5b60005b828110156126855761267233828461266d9190614b0b565b612de4565b808061267d90614d39565b915050612655565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601360009054906101000a900460ff1681565b60115481565b60005b815181101561279f5761278c82828151811061277f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611b23565b808061279790614d39565b91505061273a565b5050565b6127ab6129e9565b73ffffffffffffffffffffffffffffffffffffffff166127c9611c62565b73ffffffffffffffffffffffffffffffffffffffff161461281f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128169061484e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561288f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128869061464e565b60405180910390fd5b61289881612e02565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061296657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612976575061297582613163565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a64836115ff565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ab58261297d565b612af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aeb906146ee565b60405180910390fd5b6000612aff836115ff565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b6e57508373ffffffffffffffffffffffffffffffffffffffff16612b5684610b49565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b7f5750612b7e818561268a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612ba8826115ff565b73ffffffffffffffffffffffffffffffffffffffff1614612bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf59061486e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c659061468e565b60405180910390fd5b612c798383836131cd565b612c846000826129f1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cd49190614bec565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d2b9190614b0b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612dfe8282604051806020016040528060008152506132e1565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ed3848484612b88565b612edf8484848461333c565b612f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f159061462e565b60405180910390fd5b50505050565b6060600d8054612f3390614cd6565b80601f0160208091040260200160405190810160405280929190818152602001828054612f5f90614cd6565b8015612fac5780601f10612f8157610100808354040283529160200191612fac565b820191906000526020600020905b815481529060010190602001808311612f8f57829003601f168201915b5050505050905090565b60606000821415612ffe576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061315e565b600082905060005b6000821461303057808061301990614d39565b915050600a826130299190614b61565b9150613006565b60008167ffffffffffffffff811115613072577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130a45781602001600182028036833780820191505090505b5090505b60008514613157576001826130bd9190614bec565b9150600a856130cc9190614d82565b60306130d89190614b0b565b60f81b818381518110613114577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131509190614b61565b94506130a8565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131d88383836134d3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561321b57613216816134d8565b61325a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613259576132588382613521565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561329d576132988161368e565b6132dc565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132db576132da82826137d1565b5b5b505050565b6132eb8383613850565b6132f8600084848461333c565b613337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332e9061462e565b60405180910390fd5b505050565b600061335d8473ffffffffffffffffffffffffffffffffffffffff16613a1e565b156134c6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133866129e9565b8786866040518563ffffffff1660e01b81526004016133a89493929190614585565b602060405180830381600087803b1580156133c257600080fd5b505af19250505080156133f357506040513d601f19601f820116820180604052508101906133f09190613fc9565b60015b613476573d8060008114613423576040519150601f19603f3d011682016040523d82523d6000602084013e613428565b606091505b5060008151141561346e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134659061462e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506134cb565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161352e846116b1565b6135389190614bec565b905060006007600084815260200190815260200160002054905081811461361d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506136a29190614bec565b90506000600960008481526020019081526020016000205490506000600883815481106136f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613740577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806137b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006137dc836116b1565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b7906147ae565b60405180910390fd5b6138c98161297d565b15613909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139009061466e565b60405180910390fd5b613915600083836131cd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139659190614b0b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613a3d90614cd6565b90600052602060002090601f016020900481019282613a5f5760008555613aa6565b82601f10613a7857805160ff1916838001178555613aa6565b82800160010185558215613aa6579182015b82811115613aa5578251825591602001919060010190613a8a565b5b509050613ab39190613ab7565b5090565b5b80821115613ad0576000816000905550600101613ab8565b5090565b6000613ae7613ae284614a0e565b6149e9565b90508083825260208201905082856020860282011115613b0657600080fd5b60005b85811015613b365781613b1c8882613c28565b845260208401935060208301925050600181019050613b09565b5050509392505050565b6000613b53613b4e84614a3a565b6149e9565b90508083825260208201905082856020860282011115613b7257600080fd5b60005b85811015613ba25781613b888882613d39565b845260208401935060208301925050600181019050613b75565b5050509392505050565b6000613bbf613bba84614a66565b6149e9565b905082815260208101848484011115613bd757600080fd5b613be2848285614c94565b509392505050565b6000613bfd613bf884614a97565b6149e9565b905082815260208101848484011115613c1557600080fd5b613c20848285614c94565b509392505050565b600081359050613c3781615588565b92915050565b600081519050613c4c81615588565b92915050565b600082601f830112613c6357600080fd5b8135613c73848260208601613ad4565b91505092915050565b600082601f830112613c8d57600080fd5b8135613c9d848260208601613b40565b91505092915050565b600081359050613cb58161559f565b92915050565b600081359050613cca816155b6565b92915050565b600081519050613cdf816155b6565b92915050565b600082601f830112613cf657600080fd5b8135613d06848260208601613bac565b91505092915050565b600082601f830112613d2057600080fd5b8135613d30848260208601613bea565b91505092915050565b600081359050613d48816155cd565b92915050565b600060208284031215613d6057600080fd5b6000613d6e84828501613c28565b91505092915050565b600060208284031215613d8957600080fd5b6000613d9784828501613c3d565b91505092915050565b60008060408385031215613db357600080fd5b6000613dc185828601613c28565b9250506020613dd285828601613c28565b9150509250929050565b600080600060608486031215613df157600080fd5b6000613dff86828701613c28565b9350506020613e1086828701613c28565b9250506040613e2186828701613d39565b9150509250925092565b60008060008060808587031215613e4157600080fd5b6000613e4f87828801613c28565b9450506020613e6087828801613c28565b9350506040613e7187828801613d39565b925050606085013567ffffffffffffffff811115613e8e57600080fd5b613e9a87828801613ce5565b91505092959194509250565b60008060408385031215613eb957600080fd5b6000613ec785828601613c28565b9250506020613ed885828601613ca6565b9150509250929050565b60008060408385031215613ef557600080fd5b6000613f0385828601613c28565b9250506020613f1485828601613d39565b9150509250929050565b600060208284031215613f3057600080fd5b600082013567ffffffffffffffff811115613f4a57600080fd5b613f5684828501613c52565b91505092915050565b600060208284031215613f7157600080fd5b600082013567ffffffffffffffff811115613f8b57600080fd5b613f9784828501613c7c565b91505092915050565b600060208284031215613fb257600080fd5b6000613fc084828501613cbb565b91505092915050565b600060208284031215613fdb57600080fd5b6000613fe984828501613cd0565b91505092915050565b60006020828403121561400457600080fd5b600082013567ffffffffffffffff81111561401e57600080fd5b61402a84828501613d0f565b91505092915050565b60006020828403121561404557600080fd5b600061405384828501613d39565b91505092915050565b61406581614c20565b82525050565b61407481614c32565b82525050565b600061408582614ac8565b61408f8185614ade565b935061409f818560208601614ca3565b6140a881614e6f565b840191505092915050565b60006140be82614ad3565b6140c88185614aef565b93506140d8818560208601614ca3565b6140e181614e6f565b840191505092915050565b60006140f782614ad3565b6141018185614b00565b9350614111818560208601614ca3565b80840191505092915050565b600061412a602b83614aef565b915061413582614e80565b604082019050919050565b600061414d603283614aef565b915061415882614ecf565b604082019050919050565b6000614170602683614aef565b915061417b82614f1e565b604082019050919050565b6000614193601c83614aef565b915061419e82614f6d565b602082019050919050565b60006141b6602483614aef565b91506141c182614f96565b604082019050919050565b60006141d9601983614aef565b91506141e482614fe5565b602082019050919050565b60006141fc601283614aef565b91506142078261500e565b602082019050919050565b600061421f602c83614aef565b915061422a82615037565b604082019050919050565b6000614242600f83614aef565b915061424d82615086565b602082019050919050565b6000614265603883614aef565b9150614270826150af565b604082019050919050565b6000614288601483614aef565b9150614293826150fe565b602082019050919050565b60006142ab602a83614aef565b91506142b682615127565b604082019050919050565b60006142ce602983614aef565b91506142d982615176565b604082019050919050565b60006142f1602083614aef565b91506142fc826151c5565b602082019050919050565b6000614314602083614aef565b915061431f826151ee565b602082019050919050565b6000614337600c83614aef565b915061434282615217565b602082019050919050565b600061435a601983614aef565b915061436582615240565b602082019050919050565b600061437d602c83614aef565b915061438882615269565b604082019050919050565b60006143a0602083614aef565b91506143ab826152b8565b602082019050919050565b60006143c3602983614aef565b91506143ce826152e1565b604082019050919050565b60006143e6602f83614aef565b91506143f182615330565b604082019050919050565b6000614409601183614aef565b91506144148261537f565b602082019050919050565b600061442c601783614aef565b9150614437826153a8565b602082019050919050565b600061444f602183614aef565b915061445a826153d1565b604082019050919050565b6000614472601683614aef565b915061447d82615420565b602082019050919050565b6000614495603183614aef565b91506144a082615449565b604082019050919050565b60006144b8601983614aef565b91506144c382615498565b602082019050919050565b60006144db602c83614aef565b91506144e6826154c1565b604082019050919050565b60006144fe601b83614aef565b915061450982615510565b602082019050919050565b6000614521603083614aef565b915061452c82615539565b604082019050919050565b61454081614c8a565b82525050565b600061455282856140ec565b915061455e82846140ec565b91508190509392505050565b600060208201905061457f600083018461405c565b92915050565b600060808201905061459a600083018761405c565b6145a7602083018661405c565b6145b46040830185614537565b81810360608301526145c6818461407a565b905095945050505050565b60006020820190506145e6600083018461406b565b92915050565b6000602082019050818103600083015261460681846140b3565b905092915050565b600060208201905081810360008301526146278161411d565b9050919050565b6000602082019050818103600083015261464781614140565b9050919050565b6000602082019050818103600083015261466781614163565b9050919050565b6000602082019050818103600083015261468781614186565b9050919050565b600060208201905081810360008301526146a7816141a9565b9050919050565b600060208201905081810360008301526146c7816141cc565b9050919050565b600060208201905081810360008301526146e7816141ef565b9050919050565b6000602082019050818103600083015261470781614212565b9050919050565b6000602082019050818103600083015261472781614235565b9050919050565b6000602082019050818103600083015261474781614258565b9050919050565b600060208201905081810360008301526147678161427b565b9050919050565b600060208201905081810360008301526147878161429e565b9050919050565b600060208201905081810360008301526147a7816142c1565b9050919050565b600060208201905081810360008301526147c7816142e4565b9050919050565b600060208201905081810360008301526147e781614307565b9050919050565b600060208201905081810360008301526148078161432a565b9050919050565b600060208201905081810360008301526148278161434d565b9050919050565b6000602082019050818103600083015261484781614370565b9050919050565b6000602082019050818103600083015261486781614393565b9050919050565b60006020820190508181036000830152614887816143b6565b9050919050565b600060208201905081810360008301526148a7816143d9565b9050919050565b600060208201905081810360008301526148c7816143fc565b9050919050565b600060208201905081810360008301526148e78161441f565b9050919050565b6000602082019050818103600083015261490781614442565b9050919050565b6000602082019050818103600083015261492781614465565b9050919050565b6000602082019050818103600083015261494781614488565b9050919050565b60006020820190508181036000830152614967816144ab565b9050919050565b60006020820190508181036000830152614987816144ce565b9050919050565b600060208201905081810360008301526149a7816144f1565b9050919050565b600060208201905081810360008301526149c781614514565b9050919050565b60006020820190506149e36000830184614537565b92915050565b60006149f3614a04565b90506149ff8282614d08565b919050565b6000604051905090565b600067ffffffffffffffff821115614a2957614a28614e40565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614a5557614a54614e40565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614a8157614a80614e40565b5b614a8a82614e6f565b9050602081019050919050565b600067ffffffffffffffff821115614ab257614ab1614e40565b5b614abb82614e6f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b1682614c8a565b9150614b2183614c8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b5657614b55614db3565b5b828201905092915050565b6000614b6c82614c8a565b9150614b7783614c8a565b925082614b8757614b86614de2565b5b828204905092915050565b6000614b9d82614c8a565b9150614ba883614c8a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614be157614be0614db3565b5b828202905092915050565b6000614bf782614c8a565b9150614c0283614c8a565b925082821015614c1557614c14614db3565b5b828203905092915050565b6000614c2b82614c6a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614cc1578082015181840152602081019050614ca6565b83811115614cd0576000848401525b50505050565b60006002820490506001821680614cee57607f821691505b60208210811415614d0257614d01614e11565b5b50919050565b614d1182614e6f565b810181811067ffffffffffffffff82111715614d3057614d2f614e40565b5b80604052505050565b6000614d4482614c8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d7757614d76614db3565b5b600182019050919050565b6000614d8d82614c8a565b9150614d9883614c8a565b925082614da857614da7614de2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f537570706c792065786365656465640000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4d6178696d756d207265736572766174696f6e73000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d6f726520616464726573736573207468616e207265736572766174696f6e73600082015250565b7f4f7574206f6620626f756e640000000000000000000000000000000000000000600082015250565b7f4d696e74696e67206973206e6f74206163746976652079657400000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f4e6f7420656e6f756768207265736572766174696f6e73000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20706572207478207265616368656400000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5265736572766174696f6e206973206e6f742061637469766500000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265736572766174696f6e206973207374696c6c206163746976650000000000600082015250565b7f596f75206861766520746f206f776e2074686973203173742067656e2062656160008201527f72646f2077697468207468697320696400000000000000000000000000000000602082015250565b61559181614c20565b811461559c57600080fd5b50565b6155a881614c32565b81146155b357600080fd5b50565b6155bf81614c3e565b81146155ca57600080fd5b50565b6155d681614c8a565b81146155e157600080fd5b5056fea2646970667358221220362e48feba83352623cc7b77273d16cd5fd028fcc40da7d46c7c27a19dcd93aa64736f6c63430008040033

Deployed Bytecode Sourcemap

43071:5494:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36860:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24742:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26301:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43322:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25824:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45220:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46321:251;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43525:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37500:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45120:92;;;;;;;;;;;;;:::i;:::-;;27191:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45396:424;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37168:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43570:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27601:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37690:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48270:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45832:477;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45026:82;;;;;;;;;;;;;:::i;:::-;;24436:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24166:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2528:94;;;;;;;;;;;;;:::i;:::-;;47339:541;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43284:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47993:155;;;:::i;:::-;;44314:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1877:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43203:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47892:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24911:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43447:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26594:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44707:137;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46692:164;;;;;;;;;;;;;:::i;:::-;;27857:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47061:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44856:158;;;;;;;;;;;;;:::i;:::-;;25086:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48437:125;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46868:88;;;;;;;;;;;;;:::i;:::-;;46584:96;;;;;;;;;;;;;:::i;:::-;;43842:460;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26960:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43494:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43403:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44547:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2777:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36860:224;36962:4;37001:35;36986:50;;;:11;:50;;;;:90;;;;37040:36;37064:11;37040:23;:36::i;:::-;36986:90;36979:97;;36860:224;;;:::o;24742:100::-;24796:13;24829:5;24822:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24742:100;:::o;26301:221::-;26377:7;26405:16;26413:7;26405;:16::i;:::-;26397:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26490:15;:24;26506:7;26490:24;;;;;;;;;;;;;;;;;;;;;26483:31;;26301:221;;;:::o;43322:33::-;;;;:::o;25824:411::-;25905:13;25921:23;25936:7;25921:14;:23::i;:::-;25905:39;;25969:5;25963:11;;:2;:11;;;;25955:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26063:5;26047:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26072:37;26089:5;26096:12;:10;:12::i;:::-;26072:16;:37::i;:::-;26047:62;26025:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26206:21;26215:2;26219:7;26206:8;:21::i;:::-;25824:411;;;:::o;45220:127::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45325:14:::1;45305:17;:34;;;;;;;;;;;;:::i;:::-;;45220:127:::0;:::o;46321:251::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46409:6:::1;46405:160;46425:9;:16;46421:1;:20;46405:160;;;46483:10;:24;46494:9;46504:1;46494:12;;;;;;;;;;;;;;;;;;;;;;46483:24;;;;;;;;;;;;;;;;46462:17;;:45;;;;;;;:::i;:::-;;;;;;;;46529:10;:24;46540:9;46550:1;46540:12;;;;;;;;;;;;;;;;;;;;;;46529:24;;;;;;;;;;;;;;;46522:31;;;46443:3;;;;;:::i;:::-;;;;46405:160;;;;46321:251:::0;:::o;43525:38::-;;;;;;;;;;;;;:::o;37500:113::-;37561:7;37588:10;:17;;;;37581:24;;37500:113;:::o;45120:92::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45185:19:::1;:17;:19::i;:::-;45171:11;:33;;;;45120:92::o:0;27191:339::-;27386:41;27405:12;:10;:12::i;:::-;27419:7;27386:18;:41::i;:::-;27378:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27494:28;27504:4;27510:2;27514:7;27494:9;:28::i;:::-;27191:339;;;:::o;45396:424::-;45468:19;;;;;;;;;;;45460:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45528:9;45558:6;45540:17;;:24;;;;:::i;:::-;45528:36;;45591:4;45583;:12;;45575:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;45653:6;45647:5;;:12;;;;:::i;:::-;45634:9;:25;;45626:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;45708:2;45700:6;:10;;45692:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;45771:6;45746:10;:22;45757:10;45746:22;;;;;;;;;;;;;;;:31;;;;45808:4;45788:17;:24;;;;45396:424;;:::o;37168:256::-;37265:7;37301:23;37318:5;37301:16;:23::i;:::-;37293:5;:31;37285:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37390:12;:19;37403:5;37390:19;;;;;;;;;;;;;;;:26;37410:5;37390:26;;;;;;;;;;;;37383:33;;37168:256;;;;:::o;43570:27::-;;;;;;;;;;;;;:::o;27601:185::-;27739:39;27756:4;27762:2;27766:7;27739:39;;;;;;;;;;;;:16;:39::i;:::-;27601:185;;;:::o;37690:233::-;37765:7;37801:30;:28;:30::i;:::-;37793:5;:38;37785:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;37898:10;37909:5;37898:17;;;;;;;;;;;;;;;;;;;;;;;;37891:24;;37690:233;;;:::o;48270:86::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48345:3:::1;48335:7;:13;;;;;;;;;;;;:::i;:::-;;48270:86:::0;:::o;45832:477::-;45897:15;;;;;;;;;;;45889:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;45953:17;45973:10;:22;45984:10;45973:22;;;;;;;;;;;;;;;;45953:42;;46024:12;46014:6;:22;;46006:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46113:6;46100:12;:19;;;;:::i;:::-;46075:10;:22;46086:10;46075:22;;;;;;;;;;;;;;;:44;;;;46130:7;46154:12;;46140:13;:11;:13::i;:::-;:26;;;;:::i;:::-;46130:36;;46181:6;46177:86;46197:6;46193:1;:10;46177:86;;;46224:27;46234:10;46249:1;46246:2;:4;;;;:::i;:::-;46224:9;:27::i;:::-;46205:3;;;;;:::i;:::-;;;;46177:86;;;;46294:6;46273:17;;:27;;;;;;;:::i;:::-;;;;;;;;45832:477;;;:::o;45026:82::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45095:5:::1;45080:12;;:20;;;;;;;;;;;;;;;;;;45026:82::o:0;24436:239::-;24508:7;24528:13;24544:7;:16;24552:7;24544:16;;;;;;;;;;;;;;;;;;;;;24528:32;;24596:1;24579:19;;:5;:19;;;;24571:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24662:5;24655:12;;;24436:239;;;:::o;24166:208::-;24238:7;24283:1;24266:19;;:5;:19;;;;24258:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24350:9;:16;24360:5;24350:16;;;;;;;;;;;;;;;;24343:23;;24166:208;;;:::o;2528:94::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2593:21:::1;2611:1;2593:9;:21::i;:::-;2528:94::o:0;47339:541::-;47417:15;;;;;;;;;;;47409:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;47473:17;47493:10;:22;47504:10;47493:22;;;;;;;;;;;;;;;;47473:42;;47554:12;47534:9;:16;:32;;47526:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;47614:7;47638:12;;47624:13;:11;:13::i;:::-;:26;;;;:::i;:::-;47614:36;;47665:6;47661:99;47681:9;:16;47677:1;:20;47661:99;;;47719:29;47729:9;47739:1;47729:12;;;;;;;;;;;;;;;;;;;;;;47746:1;47743:2;:4;;;;:::i;:::-;47719:9;:29::i;:::-;47699:3;;;;;:::i;:::-;;;;47661:99;;;;47808:9;:16;47795:12;:29;;;;:::i;:::-;47770:10;:22;47781:10;47770:22;;;;;;;;;;;;;;;:54;;;;47856:9;:16;47835:17;;:37;;;;;;;:::i;:::-;;;;;;;;47339:541;;;:::o;43284:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47993:155::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48068:42:::1;48060:56;;:79;48117:21;48060:79;;;;;;;;;;;;;;;;;;;;;;;48052:88;;;::::0;::::1;;47993:155::o:0;44314:221::-;44400:10;44372:38;;:12;;;;;;;;;;;:20;;;44393:2;44372:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;;;44364:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;44474:25;44484:10;44496:2;44474:9;:25::i;:::-;44526:1;44510:12;;:17;;;;;;;:::i;:::-;;;;;;;;44314:221;:::o;1877:87::-;1923:7;1950:6;;;;;;;;;;;1943:13;;1877:87;:::o;43203:45::-;;;;;;;;;;;;;;;;;:::o;47892:89::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47964:9:::1;47956:5;:17;;;;47892:89:::0;:::o;24911:104::-;24967:13;25000:7;24993:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24911:104;:::o;43447:40::-;;;;:::o;26594:295::-;26709:12;:10;:12::i;:::-;26697:24;;:8;:24;;;;26689:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26809:8;26764:18;:32;26783:12;:10;:12::i;:::-;26764:32;;;;;;;;;;;;;;;:42;26797:8;26764:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26862:8;26833:48;;26848:12;:10;:12::i;:::-;26833:48;;;26872:8;26833:48;;;;;;:::i;:::-;;;;;;;;26594:295;;:::o;44707:137::-;44760:4;44788:3;44785:2;:6;44777:30;;;;;;;;;;;;:::i;:::-;;;;;;;;;44825:11;44833:2;44825:7;:11::i;:::-;44818:18;;44707:137;;;:::o;46692:164::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46778:5:::1;46755:28;;:19;;;;;;;;;;;:28;;;46747:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46844:4;46826:15;;:22;;;;;;;;;;;;;;;;;;46692:164::o:0;27857:328::-;28032:41;28051:12;:10;:12::i;:::-;28065:7;28032:18;:41::i;:::-;28024:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28138:39;28152:4;28158:2;28162:7;28171:5;28138:13;:39::i;:::-;27857:328;;;;:::o;47061:266::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47138:10:::1;47169:6;47151:17;;:24;;;;:::i;:::-;47138:37;;47230:11;;47214:12;;47200:13;:11;:13::i;:::-;47194:5;:19;;;;:::i;:::-;:32;;;;:::i;:::-;:47;;47186:56;;;::::0;::::1;;47277:6;47253:10;:20;47264:8;47253:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;47314:5;47294:17;:25;;;;2168:1;47061:266:::0;;:::o;44856:158::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44939:5:::1;44916:28;;:19;;;;;;;;;;;:28;;;44908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45002:4;44987:12;;:19;;;;;;;;;;;;;;;;;;44856:158::o:0;25086:334::-;25159:13;25193:16;25201:7;25193;:16::i;:::-;25185:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25274:21;25298:10;:8;:10::i;:::-;25274:34;;25350:1;25332:7;25326:21;:25;:86;;;;;;;;;;;;;;;;;25378:7;25387:18;:7;:16;:18::i;:::-;25361:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25326:86;25319:93;;;25086:334;;;:::o;48437:125::-;48487:4;48537:17;;48524:12;;48510:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:44;;;;:::i;:::-;48503:51;;48437:125;:::o;46868:88::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46943:5:::1;46925:15;;:23;;;;;;;;;;;;;;;;;;46868:88::o:0;46584:96::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46667:5:::1;46645:19;;:27;;;;;;;;;;;;;;;;;;46584:96::o:0;43842:460::-;43911:12;;;;;;;;;;;43903:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;43957:7;43981:12;;43967:13;:11;:13::i;:::-;:26;;;;:::i;:::-;43957:36;;44043:11;;44022:17;;44015:6;44012:2;:9;;;;:::i;:::-;:27;;;;:::i;:::-;:42;;44004:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;44103:2;44093:6;:12;;44085:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;44170:6;44164:5;;:12;;;;:::i;:::-;44151:9;:25;;44143:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;44213:6;44209:86;44229:6;44225:1;:10;44209:86;;;44256:27;44266:10;44281:1;44278:2;:4;;;;:::i;:::-;44256:9;:27::i;:::-;44237:3;;;;;:::i;:::-;;;;44209:86;;;;43842:460;;:::o;26960:164::-;27057:4;27081:18;:25;27100:5;27081:25;;;;;;;;;;;;;;;:35;27107:8;27081:35;;;;;;;;;;;;;;;;;;;;;;;;;27074:42;;26960:164;;;;:::o;43494:24::-;;;;;;;;;;;;;:::o;43403:37::-;;;;:::o;44547:152::-;44612:6;44608:84;44628:3;:10;44624:1;:14;44608:84;;;44659:21;44673:3;44677:1;44673:6;;;;;;;;;;;;;;;;;;;;;;44659:13;:21::i;:::-;44640:3;;;;;:::i;:::-;;;;44608:84;;;;44547:152;:::o;2777:192::-;2108:12;:10;:12::i;:::-;2097:23;;:7;:5;:7::i;:::-;:23;;;2089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2886:1:::1;2866:22;;:8;:22;;;;2858:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2942:19;2952:8;2942:9;:19::i;:::-;2777:192:::0;:::o;23797:305::-;23899:4;23951:25;23936:40;;;:11;:40;;;;:105;;;;24008:33;23993:48;;;:11;:48;;;;23936:105;:158;;;;24058:36;24082:11;24058:23;:36::i;:::-;23936:158;23916:178;;23797:305;;;:::o;29695:127::-;29760:4;29812:1;29784:30;;:7;:16;29792:7;29784:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29777:37;;29695:127;;;:::o;661:98::-;714:7;741:10;734:17;;661:98;:::o;33677:174::-;33779:2;33752:15;:24;33768:7;33752:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33835:7;33831:2;33797:46;;33806:23;33821:7;33806:14;:23::i;:::-;33797:46;;;;;;;;;;;;33677:174;;:::o;29989:348::-;30082:4;30107:16;30115:7;30107;:16::i;:::-;30099:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30183:13;30199:23;30214:7;30199:14;:23::i;:::-;30183:39;;30252:5;30241:16;;:7;:16;;;:51;;;;30285:7;30261:31;;:20;30273:7;30261:11;:20::i;:::-;:31;;;30241:51;:87;;;;30296:32;30313:5;30320:7;30296:16;:32::i;:::-;30241:87;30233:96;;;29989:348;;;;:::o;32981:578::-;33140:4;33113:31;;:23;33128:7;33113:14;:23::i;:::-;:31;;;33105:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33223:1;33209:16;;:2;:16;;;;33201:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33279:39;33300:4;33306:2;33310:7;33279:20;:39::i;:::-;33383:29;33400:1;33404:7;33383:8;:29::i;:::-;33444:1;33425:9;:15;33435:4;33425:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33473:1;33456:9;:13;33466:2;33456:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33504:2;33485:7;:16;33493:7;33485:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33543:7;33539:2;33524:27;;33533:4;33524:27;;;;;;;;;;;;32981:578;;;:::o;30679:110::-;30755:26;30765:2;30769:7;30755:26;;;;;;;;;;;;:9;:26::i;:::-;30679:110;;:::o;2977:173::-;3033:16;3052:6;;;;;;;;;;;3033:25;;3078:8;3069:6;;:17;;;;;;;;;;;;;;;;;;3133:8;3102:40;;3123:8;3102:40;;;;;;;;;;;;2977:173;;:::o;29067:315::-;29224:28;29234:4;29240:2;29244:7;29224:9;:28::i;:::-;29271:48;29294:4;29300:2;29304:7;29313:5;29271:22;:48::i;:::-;29263:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29067:315;;;;:::o;48160:98::-;48212:13;48243:7;48236:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48160:98;:::o;11099:723::-;11155:13;11385:1;11376:5;:10;11372:53;;;11403:10;;;;;;;;;;;;;;;;;;;;;11372:53;11435:12;11450:5;11435:20;;11466:14;11491:78;11506:1;11498:4;:9;11491:78;;11524:8;;;;;:::i;:::-;;;;11555:2;11547:10;;;;;:::i;:::-;;;11491:78;;;11579:19;11611:6;11601:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11579:39;;11629:154;11645:1;11636:5;:10;11629:154;;11673:1;11663:11;;;;;:::i;:::-;;;11740:2;11732:5;:10;;;;:::i;:::-;11719:2;:24;;;;:::i;:::-;11706:39;;11689:6;11696;11689:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;11769:2;11760:11;;;;;:::i;:::-;;;11629:154;;;11807:6;11793:21;;;;;11099:723;;;;:::o;10618:157::-;10703:4;10742:25;10727:40;;;:11;:40;;;;10720:47;;10618:157;;;:::o;38536:589::-;38680:45;38707:4;38713:2;38717:7;38680:26;:45::i;:::-;38758:1;38742:18;;:4;:18;;;38738:187;;;38777:40;38809:7;38777:31;:40::i;:::-;38738:187;;;38847:2;38839:10;;:4;:10;;;38835:90;;38866:47;38899:4;38905:7;38866:32;:47::i;:::-;38835:90;38738:187;38953:1;38939:16;;:2;:16;;;38935:183;;;38972:45;39009:7;38972:36;:45::i;:::-;38935:183;;;39045:4;39039:10;;:2;:10;;;39035:83;;39066:40;39094:2;39098:7;39066:27;:40::i;:::-;39035:83;38935:183;38536:589;;;:::o;31016:321::-;31146:18;31152:2;31156:7;31146:5;:18::i;:::-;31197:54;31228:1;31232:2;31236:7;31245:5;31197:22;:54::i;:::-;31175:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31016:321;;;:::o;34416:803::-;34571:4;34592:15;:2;:13;;;:15::i;:::-;34588:624;;;34644:2;34628:36;;;34665:12;:10;:12::i;:::-;34679:4;34685:7;34694:5;34628:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34624:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34891:1;34874:6;:13;:18;34870:272;;;34917:60;;;;;;;;;;:::i;:::-;;;;;;;;34870:272;35092:6;35086:13;35077:6;35073:2;35069:15;35062:38;34624:533;34761:45;;;34751:55;;;:6;:55;;;;34744:62;;;;;34588:624;35196:4;35189:11;;34416:803;;;;;;;:::o;35791:126::-;;;;:::o;39848:164::-;39952:10;:17;;;;39925:15;:24;39941:7;39925:24;;;;;;;;;;;:44;;;;39980:10;39996:7;39980:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39848:164;:::o;40639:988::-;40905:22;40955:1;40930:22;40947:4;40930:16;:22::i;:::-;:26;;;;:::i;:::-;40905:51;;40967:18;40988:17;:26;41006:7;40988:26;;;;;;;;;;;;40967:47;;41135:14;41121:10;:28;41117:328;;41166:19;41188:12;:18;41201:4;41188:18;;;;;;;;;;;;;;;:34;41207:14;41188:34;;;;;;;;;;;;41166:56;;41272:11;41239:12;:18;41252:4;41239:18;;;;;;;;;;;;;;;:30;41258:10;41239:30;;;;;;;;;;;:44;;;;41389:10;41356:17;:30;41374:11;41356:30;;;;;;;;;;;:43;;;;41117:328;;41541:17;:26;41559:7;41541:26;;;;;;;;;;;41534:33;;;41585:12;:18;41598:4;41585:18;;;;;;;;;;;;;;;:34;41604:14;41585:34;;;;;;;;;;;41578:41;;;40639:988;;;;:::o;41922:1079::-;42175:22;42220:1;42200:10;:17;;;;:21;;;;:::i;:::-;42175:46;;42232:18;42253:15;:24;42269:7;42253:24;;;;;;;;;;;;42232:45;;42604:19;42626:10;42637:14;42626:26;;;;;;;;;;;;;;;;;;;;;;;;42604:48;;42690:11;42665:10;42676;42665:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;42801:10;42770:15;:28;42786:11;42770:28;;;;;;;;;;;:41;;;;42942:15;:24;42958:7;42942:24;;;;;;;;;;;42935:31;;;42977:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41922:1079;;;;:::o;39426:221::-;39511:14;39528:20;39545:2;39528:16;:20::i;:::-;39511:37;;39586:7;39559:12;:16;39572:2;39559:16;;;;;;;;;;;;;;;:24;39576:6;39559:24;;;;;;;;;;;:34;;;;39633:6;39604:17;:26;39622:7;39604:26;;;;;;;;;;;:35;;;;39426:221;;;:::o;31673:382::-;31767:1;31753:16;;:2;:16;;;;31745:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31826:16;31834:7;31826;:16::i;:::-;31825:17;31817:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31888:45;31917:1;31921:2;31925:7;31888:20;:45::i;:::-;31963:1;31946:9;:13;31956:2;31946:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31994:2;31975:7;:16;31983:7;31975:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32039:7;32035:2;32014:33;;32031:1;32014:33;;;;;;;;;;;;31673:382;;:::o;13634:387::-;13694:4;13902:12;13969:7;13957:20;13949:28;;14012:1;14005:4;:8;13998:15;;;13634:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;702:655::-;798:5;823:81;839:64;896:6;839:64;:::i;:::-;823:81;:::i;:::-;814:90;;924:5;953:6;946:5;939:21;987:4;980:5;976:16;969:23;;1013:6;1063:3;1055:4;1047:6;1043:17;1038:3;1034:27;1031:36;1028:2;;;1092:1;1089;1082:12;1028:2;1128:1;1113:238;1138:6;1135:1;1132:13;1113:238;;;1206:3;1235:37;1268:3;1256:10;1235:37;:::i;:::-;1230:3;1223:50;1302:4;1297:3;1293:14;1286:21;;1336:4;1331:3;1327:14;1320:21;;1173:178;1160:1;1157;1153:9;1148:14;;1113:238;;;1117:14;804:553;;;;;;;:::o;1363:343::-;1440:5;1465:65;1481:48;1522:6;1481:48;:::i;:::-;1465:65;:::i;:::-;1456:74;;1553:6;1546:5;1539:21;1591:4;1584:5;1580:16;1629:3;1620:6;1615:3;1611:16;1608:25;1605:2;;;1646:1;1643;1636:12;1605:2;1659:41;1693:6;1688:3;1683;1659:41;:::i;:::-;1446:260;;;;;;:::o;1712:345::-;1790:5;1815:66;1831:49;1873:6;1831:49;:::i;:::-;1815:66;:::i;:::-;1806:75;;1904:6;1897:5;1890:21;1942:4;1935:5;1931:16;1980:3;1971:6;1966:3;1962:16;1959:25;1956:2;;;1997:1;1994;1987:12;1956:2;2010:41;2044:6;2039:3;2034;2010:41;:::i;:::-;1796:261;;;;;;:::o;2063:139::-;2109:5;2147:6;2134:20;2125:29;;2163:33;2190:5;2163:33;:::i;:::-;2115:87;;;;:::o;2208:143::-;2265:5;2296:6;2290:13;2281:22;;2312:33;2339:5;2312:33;:::i;:::-;2271:80;;;;:::o;2374:303::-;2445:5;2494:3;2487:4;2479:6;2475:17;2471:27;2461:2;;2512:1;2509;2502:12;2461:2;2552:6;2539:20;2577:94;2667:3;2659:6;2652:4;2644:6;2640:17;2577:94;:::i;:::-;2568:103;;2451:226;;;;;:::o;2700:303::-;2771:5;2820:3;2813:4;2805:6;2801:17;2797:27;2787:2;;2838:1;2835;2828:12;2787:2;2878:6;2865:20;2903:94;2993:3;2985:6;2978:4;2970:6;2966:17;2903:94;:::i;:::-;2894:103;;2777:226;;;;;:::o;3009:133::-;3052:5;3090:6;3077:20;3068:29;;3106:30;3130:5;3106:30;:::i;:::-;3058:84;;;;:::o;3148:137::-;3193:5;3231:6;3218:20;3209:29;;3247:32;3273:5;3247:32;:::i;:::-;3199:86;;;;:::o;3291:141::-;3347:5;3378:6;3372:13;3363:22;;3394:32;3420:5;3394:32;:::i;:::-;3353:79;;;;:::o;3451:271::-;3506:5;3555:3;3548:4;3540:6;3536:17;3532:27;3522:2;;3573:1;3570;3563:12;3522:2;3613:6;3600:20;3638:78;3712:3;3704:6;3697:4;3689:6;3685:17;3638:78;:::i;:::-;3629:87;;3512:210;;;;;:::o;3742:273::-;3798:5;3847:3;3840:4;3832:6;3828:17;3824:27;3814:2;;3865:1;3862;3855:12;3814:2;3905:6;3892:20;3930:79;4005:3;3997:6;3990:4;3982:6;3978:17;3930:79;:::i;:::-;3921:88;;3804:211;;;;;:::o;4021:139::-;4067:5;4105:6;4092:20;4083:29;;4121:33;4148:5;4121:33;:::i;:::-;4073:87;;;;:::o;4166:262::-;4225:6;4274:2;4262:9;4253:7;4249:23;4245:32;4242:2;;;4290:1;4287;4280:12;4242:2;4333:1;4358:53;4403:7;4394:6;4383:9;4379:22;4358:53;:::i;:::-;4348:63;;4304:117;4232:196;;;;:::o;4434:284::-;4504:6;4553:2;4541:9;4532:7;4528:23;4524:32;4521:2;;;4569:1;4566;4559:12;4521:2;4612:1;4637:64;4693:7;4684:6;4673:9;4669:22;4637:64;:::i;:::-;4627:74;;4583:128;4511:207;;;;:::o;4724:407::-;4792:6;4800;4849:2;4837:9;4828:7;4824:23;4820:32;4817:2;;;4865:1;4862;4855:12;4817:2;4908:1;4933:53;4978:7;4969:6;4958:9;4954:22;4933:53;:::i;:::-;4923:63;;4879:117;5035:2;5061:53;5106:7;5097:6;5086:9;5082:22;5061:53;:::i;:::-;5051:63;;5006:118;4807:324;;;;;:::o;5137:552::-;5214:6;5222;5230;5279:2;5267:9;5258:7;5254:23;5250:32;5247:2;;;5295:1;5292;5285:12;5247:2;5338:1;5363:53;5408:7;5399:6;5388:9;5384:22;5363:53;:::i;:::-;5353:63;;5309:117;5465:2;5491:53;5536:7;5527:6;5516:9;5512:22;5491:53;:::i;:::-;5481:63;;5436:118;5593:2;5619:53;5664:7;5655:6;5644:9;5640:22;5619:53;:::i;:::-;5609:63;;5564:118;5237:452;;;;;:::o;5695:809::-;5790:6;5798;5806;5814;5863:3;5851:9;5842:7;5838:23;5834:33;5831:2;;;5880:1;5877;5870:12;5831:2;5923:1;5948:53;5993:7;5984:6;5973:9;5969:22;5948:53;:::i;:::-;5938:63;;5894:117;6050:2;6076:53;6121:7;6112:6;6101:9;6097:22;6076:53;:::i;:::-;6066:63;;6021:118;6178:2;6204:53;6249:7;6240:6;6229:9;6225:22;6204:53;:::i;:::-;6194:63;;6149:118;6334:2;6323:9;6319:18;6306:32;6365:18;6357:6;6354:30;6351:2;;;6397:1;6394;6387:12;6351:2;6425:62;6479:7;6470:6;6459:9;6455:22;6425:62;:::i;:::-;6415:72;;6277:220;5821:683;;;;;;;:::o;6510:401::-;6575:6;6583;6632:2;6620:9;6611:7;6607:23;6603:32;6600:2;;;6648:1;6645;6638:12;6600:2;6691:1;6716:53;6761:7;6752:6;6741:9;6737:22;6716:53;:::i;:::-;6706:63;;6662:117;6818:2;6844:50;6886:7;6877:6;6866:9;6862:22;6844:50;:::i;:::-;6834:60;;6789:115;6590:321;;;;;:::o;6917:407::-;6985:6;6993;7042:2;7030:9;7021:7;7017:23;7013:32;7010:2;;;7058:1;7055;7048:12;7010:2;7101:1;7126:53;7171:7;7162:6;7151:9;7147:22;7126:53;:::i;:::-;7116:63;;7072:117;7228:2;7254:53;7299:7;7290:6;7279:9;7275:22;7254:53;:::i;:::-;7244:63;;7199:118;7000:324;;;;;:::o;7330:405::-;7414:6;7463:2;7451:9;7442:7;7438:23;7434:32;7431:2;;;7479:1;7476;7469:12;7431:2;7550:1;7539:9;7535:17;7522:31;7580:18;7572:6;7569:30;7566:2;;;7612:1;7609;7602:12;7566:2;7640:78;7710:7;7701:6;7690:9;7686:22;7640:78;:::i;:::-;7630:88;;7493:235;7421:314;;;;:::o;7741:405::-;7825:6;7874:2;7862:9;7853:7;7849:23;7845:32;7842:2;;;7890:1;7887;7880:12;7842:2;7961:1;7950:9;7946:17;7933:31;7991:18;7983:6;7980:30;7977:2;;;8023:1;8020;8013:12;7977:2;8051:78;8121:7;8112:6;8101:9;8097:22;8051:78;:::i;:::-;8041:88;;7904:235;7832:314;;;;:::o;8152:260::-;8210:6;8259:2;8247:9;8238:7;8234:23;8230:32;8227:2;;;8275:1;8272;8265:12;8227:2;8318:1;8343:52;8387:7;8378:6;8367:9;8363:22;8343:52;:::i;:::-;8333:62;;8289:116;8217:195;;;;:::o;8418:282::-;8487:6;8536:2;8524:9;8515:7;8511:23;8507:32;8504:2;;;8552:1;8549;8542:12;8504:2;8595:1;8620:63;8675:7;8666:6;8655:9;8651:22;8620:63;:::i;:::-;8610:73;;8566:127;8494:206;;;;:::o;8706:375::-;8775:6;8824:2;8812:9;8803:7;8799:23;8795:32;8792:2;;;8840:1;8837;8830:12;8792:2;8911:1;8900:9;8896:17;8883:31;8941:18;8933:6;8930:30;8927:2;;;8973:1;8970;8963:12;8927:2;9001:63;9056:7;9047:6;9036:9;9032:22;9001:63;:::i;:::-;8991:73;;8854:220;8782:299;;;;:::o;9087:262::-;9146:6;9195:2;9183:9;9174:7;9170:23;9166:32;9163:2;;;9211:1;9208;9201:12;9163:2;9254:1;9279:53;9324:7;9315:6;9304:9;9300:22;9279:53;:::i;:::-;9269:63;;9225:117;9153:196;;;;:::o;9355:118::-;9442:24;9460:5;9442:24;:::i;:::-;9437:3;9430:37;9420:53;;:::o;9479:109::-;9560:21;9575:5;9560:21;:::i;:::-;9555:3;9548:34;9538:50;;:::o;9594:360::-;9680:3;9708:38;9740:5;9708:38;:::i;:::-;9762:70;9825:6;9820:3;9762:70;:::i;:::-;9755:77;;9841:52;9886:6;9881:3;9874:4;9867:5;9863:16;9841:52;:::i;:::-;9918:29;9940:6;9918:29;:::i;:::-;9913:3;9909:39;9902:46;;9684:270;;;;;:::o;9960:364::-;10048:3;10076:39;10109:5;10076:39;:::i;:::-;10131:71;10195:6;10190:3;10131:71;:::i;:::-;10124:78;;10211:52;10256:6;10251:3;10244:4;10237:5;10233:16;10211:52;:::i;:::-;10288:29;10310:6;10288:29;:::i;:::-;10283:3;10279:39;10272:46;;10052:272;;;;;:::o;10330:377::-;10436:3;10464:39;10497:5;10464:39;:::i;:::-;10519:89;10601:6;10596:3;10519:89;:::i;:::-;10512:96;;10617:52;10662:6;10657:3;10650:4;10643:5;10639:16;10617:52;:::i;:::-;10694:6;10689:3;10685:16;10678:23;;10440:267;;;;;:::o;10713:366::-;10855:3;10876:67;10940:2;10935:3;10876:67;:::i;:::-;10869:74;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10859:220;;;:::o;11085:366::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11231:220;;;:::o;11457:366::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11603:220;;;:::o;11829:366::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11975:220;;;:::o;12201:366::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12347:220;;;:::o;12573:366::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12719:220;;;:::o;12945:366::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;13091:220;;;:::o;13317:366::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13463:220;;;:::o;13689:366::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13835:220;;;:::o;14061:366::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14207:220;;;:::o;14433:366::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14579:220;;;:::o;14805:366::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14951:220;;;:::o;15177:366::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15323:220;;;:::o;15549:366::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15695:220;;;:::o;15921:366::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;16067:220;;;:::o;16293:366::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16439:220;;;:::o;16665:366::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16811:220;;;:::o;17037:366::-;17179:3;17200:67;17264:2;17259:3;17200:67;:::i;:::-;17193:74;;17276:93;17365:3;17276:93;:::i;:::-;17394:2;17389:3;17385:12;17378:19;;17183:220;;;:::o;17409:366::-;17551:3;17572:67;17636:2;17631:3;17572:67;:::i;:::-;17565:74;;17648:93;17737:3;17648:93;:::i;:::-;17766:2;17761:3;17757:12;17750:19;;17555:220;;;:::o;17781:366::-;17923:3;17944:67;18008:2;18003:3;17944:67;:::i;:::-;17937:74;;18020:93;18109:3;18020:93;:::i;:::-;18138:2;18133:3;18129:12;18122:19;;17927:220;;;:::o;18153:366::-;18295:3;18316:67;18380:2;18375:3;18316:67;:::i;:::-;18309:74;;18392:93;18481:3;18392:93;:::i;:::-;18510:2;18505:3;18501:12;18494:19;;18299:220;;;:::o;18525:366::-;18667:3;18688:67;18752:2;18747:3;18688:67;:::i;:::-;18681:74;;18764:93;18853:3;18764:93;:::i;:::-;18882:2;18877:3;18873:12;18866:19;;18671:220;;;:::o;18897:366::-;19039:3;19060:67;19124:2;19119:3;19060:67;:::i;:::-;19053:74;;19136:93;19225:3;19136:93;:::i;:::-;19254:2;19249:3;19245:12;19238:19;;19043:220;;;:::o;19269:366::-;19411:3;19432:67;19496:2;19491:3;19432:67;:::i;:::-;19425:74;;19508:93;19597:3;19508:93;:::i;:::-;19626:2;19621:3;19617:12;19610:19;;19415:220;;;:::o;19641:366::-;19783:3;19804:67;19868:2;19863:3;19804:67;:::i;:::-;19797:74;;19880:93;19969:3;19880:93;:::i;:::-;19998:2;19993:3;19989:12;19982:19;;19787:220;;;:::o;20013:366::-;20155:3;20176:67;20240:2;20235:3;20176:67;:::i;:::-;20169:74;;20252:93;20341:3;20252:93;:::i;:::-;20370:2;20365:3;20361:12;20354:19;;20159:220;;;:::o;20385:366::-;20527:3;20548:67;20612:2;20607:3;20548:67;:::i;:::-;20541:74;;20624:93;20713:3;20624:93;:::i;:::-;20742:2;20737:3;20733:12;20726:19;;20531:220;;;:::o;20757:366::-;20899:3;20920:67;20984:2;20979:3;20920:67;:::i;:::-;20913:74;;20996:93;21085:3;20996:93;:::i;:::-;21114:2;21109:3;21105:12;21098:19;;20903:220;;;:::o;21129:366::-;21271:3;21292:67;21356:2;21351:3;21292:67;:::i;:::-;21285:74;;21368:93;21457:3;21368:93;:::i;:::-;21486:2;21481:3;21477:12;21470:19;;21275:220;;;:::o;21501:366::-;21643:3;21664:67;21728:2;21723:3;21664:67;:::i;:::-;21657:74;;21740:93;21829:3;21740:93;:::i;:::-;21858:2;21853:3;21849:12;21842:19;;21647:220;;;:::o;21873:118::-;21960:24;21978:5;21960:24;:::i;:::-;21955:3;21948:37;21938:53;;:::o;21997:435::-;22177:3;22199:95;22290:3;22281:6;22199:95;:::i;:::-;22192:102;;22311:95;22402:3;22393:6;22311:95;:::i;:::-;22304:102;;22423:3;22416:10;;22181:251;;;;;:::o;22438:222::-;22531:4;22569:2;22558:9;22554:18;22546:26;;22582:71;22650:1;22639:9;22635:17;22626:6;22582:71;:::i;:::-;22536:124;;;;:::o;22666:640::-;22861:4;22899:3;22888:9;22884:19;22876:27;;22913:71;22981:1;22970:9;22966:17;22957:6;22913:71;:::i;:::-;22994:72;23062:2;23051:9;23047:18;23038:6;22994:72;:::i;:::-;23076;23144:2;23133:9;23129:18;23120:6;23076:72;:::i;:::-;23195:9;23189:4;23185:20;23180:2;23169:9;23165:18;23158:48;23223:76;23294:4;23285:6;23223:76;:::i;:::-;23215:84;;22866:440;;;;;;;:::o;23312:210::-;23399:4;23437:2;23426:9;23422:18;23414:26;;23450:65;23512:1;23501:9;23497:17;23488:6;23450:65;:::i;:::-;23404:118;;;;:::o;23528:313::-;23641:4;23679:2;23668:9;23664:18;23656:26;;23728:9;23722:4;23718:20;23714:1;23703:9;23699:17;23692:47;23756:78;23829:4;23820:6;23756:78;:::i;:::-;23748:86;;23646:195;;;;:::o;23847:419::-;24013:4;24051:2;24040:9;24036:18;24028:26;;24100:9;24094:4;24090:20;24086:1;24075:9;24071:17;24064:47;24128:131;24254:4;24128:131;:::i;:::-;24120:139;;24018:248;;;:::o;24272:419::-;24438:4;24476:2;24465:9;24461:18;24453:26;;24525:9;24519:4;24515:20;24511:1;24500:9;24496:17;24489:47;24553:131;24679:4;24553:131;:::i;:::-;24545:139;;24443:248;;;:::o;24697:419::-;24863:4;24901:2;24890:9;24886:18;24878:26;;24950:9;24944:4;24940:20;24936:1;24925:9;24921:17;24914:47;24978:131;25104:4;24978:131;:::i;:::-;24970:139;;24868:248;;;:::o;25122:419::-;25288:4;25326:2;25315:9;25311:18;25303:26;;25375:9;25369:4;25365:20;25361:1;25350:9;25346:17;25339:47;25403:131;25529:4;25403:131;:::i;:::-;25395:139;;25293:248;;;:::o;25547:419::-;25713:4;25751:2;25740:9;25736:18;25728:26;;25800:9;25794:4;25790:20;25786:1;25775:9;25771:17;25764:47;25828:131;25954:4;25828:131;:::i;:::-;25820:139;;25718:248;;;:::o;25972:419::-;26138:4;26176:2;26165:9;26161:18;26153:26;;26225:9;26219:4;26215:20;26211:1;26200:9;26196:17;26189:47;26253:131;26379:4;26253:131;:::i;:::-;26245:139;;26143:248;;;:::o;26397:419::-;26563:4;26601:2;26590:9;26586:18;26578:26;;26650:9;26644:4;26640:20;26636:1;26625:9;26621:17;26614:47;26678:131;26804:4;26678:131;:::i;:::-;26670:139;;26568:248;;;:::o;26822:419::-;26988:4;27026:2;27015:9;27011:18;27003:26;;27075:9;27069:4;27065:20;27061:1;27050:9;27046:17;27039:47;27103:131;27229:4;27103:131;:::i;:::-;27095:139;;26993:248;;;:::o;27247:419::-;27413:4;27451:2;27440:9;27436:18;27428:26;;27500:9;27494:4;27490:20;27486:1;27475:9;27471:17;27464:47;27528:131;27654:4;27528:131;:::i;:::-;27520:139;;27418:248;;;:::o;27672:419::-;27838:4;27876:2;27865:9;27861:18;27853:26;;27925:9;27919:4;27915:20;27911:1;27900:9;27896:17;27889:47;27953:131;28079:4;27953:131;:::i;:::-;27945:139;;27843:248;;;:::o;28097:419::-;28263:4;28301:2;28290:9;28286:18;28278:26;;28350:9;28344:4;28340:20;28336:1;28325:9;28321:17;28314:47;28378:131;28504:4;28378:131;:::i;:::-;28370:139;;28268:248;;;:::o;28522:419::-;28688:4;28726:2;28715:9;28711:18;28703:26;;28775:9;28769:4;28765:20;28761:1;28750:9;28746:17;28739:47;28803:131;28929:4;28803:131;:::i;:::-;28795:139;;28693:248;;;:::o;28947:419::-;29113:4;29151:2;29140:9;29136:18;29128:26;;29200:9;29194:4;29190:20;29186:1;29175:9;29171:17;29164:47;29228:131;29354:4;29228:131;:::i;:::-;29220:139;;29118:248;;;:::o;29372:419::-;29538:4;29576:2;29565:9;29561:18;29553:26;;29625:9;29619:4;29615:20;29611:1;29600:9;29596:17;29589:47;29653:131;29779:4;29653:131;:::i;:::-;29645:139;;29543:248;;;:::o;29797:419::-;29963:4;30001:2;29990:9;29986:18;29978:26;;30050:9;30044:4;30040:20;30036:1;30025:9;30021:17;30014:47;30078:131;30204:4;30078:131;:::i;:::-;30070:139;;29968:248;;;:::o;30222:419::-;30388:4;30426:2;30415:9;30411:18;30403:26;;30475:9;30469:4;30465:20;30461:1;30450:9;30446:17;30439:47;30503:131;30629:4;30503:131;:::i;:::-;30495:139;;30393:248;;;:::o;30647:419::-;30813:4;30851:2;30840:9;30836:18;30828:26;;30900:9;30894:4;30890:20;30886:1;30875:9;30871:17;30864:47;30928:131;31054:4;30928:131;:::i;:::-;30920:139;;30818:248;;;:::o;31072:419::-;31238:4;31276:2;31265:9;31261:18;31253:26;;31325:9;31319:4;31315:20;31311:1;31300:9;31296:17;31289:47;31353:131;31479:4;31353:131;:::i;:::-;31345:139;;31243:248;;;:::o;31497:419::-;31663:4;31701:2;31690:9;31686:18;31678:26;;31750:9;31744:4;31740:20;31736:1;31725:9;31721:17;31714:47;31778:131;31904:4;31778:131;:::i;:::-;31770:139;;31668:248;;;:::o;31922:419::-;32088:4;32126:2;32115:9;32111:18;32103:26;;32175:9;32169:4;32165:20;32161:1;32150:9;32146:17;32139:47;32203:131;32329:4;32203:131;:::i;:::-;32195:139;;32093:248;;;:::o;32347:419::-;32513:4;32551:2;32540:9;32536:18;32528:26;;32600:9;32594:4;32590:20;32586:1;32575:9;32571:17;32564:47;32628:131;32754:4;32628:131;:::i;:::-;32620:139;;32518:248;;;:::o;32772:419::-;32938:4;32976:2;32965:9;32961:18;32953:26;;33025:9;33019:4;33015:20;33011:1;33000:9;32996:17;32989:47;33053:131;33179:4;33053:131;:::i;:::-;33045:139;;32943:248;;;:::o;33197:419::-;33363:4;33401:2;33390:9;33386:18;33378:26;;33450:9;33444:4;33440:20;33436:1;33425:9;33421:17;33414:47;33478:131;33604:4;33478:131;:::i;:::-;33470:139;;33368:248;;;:::o;33622:419::-;33788:4;33826:2;33815:9;33811:18;33803:26;;33875:9;33869:4;33865:20;33861:1;33850:9;33846:17;33839:47;33903:131;34029:4;33903:131;:::i;:::-;33895:139;;33793:248;;;:::o;34047:419::-;34213:4;34251:2;34240:9;34236:18;34228:26;;34300:9;34294:4;34290:20;34286:1;34275:9;34271:17;34264:47;34328:131;34454:4;34328:131;:::i;:::-;34320:139;;34218:248;;;:::o;34472:419::-;34638:4;34676:2;34665:9;34661:18;34653:26;;34725:9;34719:4;34715:20;34711:1;34700:9;34696:17;34689:47;34753:131;34879:4;34753:131;:::i;:::-;34745:139;;34643:248;;;:::o;34897:419::-;35063:4;35101:2;35090:9;35086:18;35078:26;;35150:9;35144:4;35140:20;35136:1;35125:9;35121:17;35114:47;35178:131;35304:4;35178:131;:::i;:::-;35170:139;;35068:248;;;:::o;35322:419::-;35488:4;35526:2;35515:9;35511:18;35503:26;;35575:9;35569:4;35565:20;35561:1;35550:9;35546:17;35539:47;35603:131;35729:4;35603:131;:::i;:::-;35595:139;;35493:248;;;:::o;35747:419::-;35913:4;35951:2;35940:9;35936:18;35928:26;;36000:9;35994:4;35990:20;35986:1;35975:9;35971:17;35964:47;36028:131;36154:4;36028:131;:::i;:::-;36020:139;;35918:248;;;:::o;36172:419::-;36338:4;36376:2;36365:9;36361:18;36353:26;;36425:9;36419:4;36415:20;36411:1;36400:9;36396:17;36389:47;36453:131;36579:4;36453:131;:::i;:::-;36445:139;;36343:248;;;:::o;36597:222::-;36690:4;36728:2;36717:9;36713:18;36705:26;;36741:71;36809:1;36798:9;36794:17;36785:6;36741:71;:::i;:::-;36695:124;;;;:::o;36825:129::-;36859:6;36886:20;;:::i;:::-;36876:30;;36915:33;36943:4;36935:6;36915:33;:::i;:::-;36866:88;;;:::o;36960:75::-;36993:6;37026:2;37020:9;37010:19;;37000:35;:::o;37041:311::-;37118:4;37208:18;37200:6;37197:30;37194:2;;;37230:18;;:::i;:::-;37194:2;37280:4;37272:6;37268:17;37260:25;;37340:4;37334;37330:15;37322:23;;37123:229;;;:::o;37358:311::-;37435:4;37525:18;37517:6;37514:30;37511:2;;;37547:18;;:::i;:::-;37511:2;37597:4;37589:6;37585:17;37577:25;;37657:4;37651;37647:15;37639:23;;37440:229;;;:::o;37675:307::-;37736:4;37826:18;37818:6;37815:30;37812:2;;;37848:18;;:::i;:::-;37812:2;37886:29;37908:6;37886:29;:::i;:::-;37878:37;;37970:4;37964;37960:15;37952:23;;37741:241;;;:::o;37988:308::-;38050:4;38140:18;38132:6;38129:30;38126:2;;;38162:18;;:::i;:::-;38126:2;38200:29;38222:6;38200:29;:::i;:::-;38192:37;;38284:4;38278;38274:15;38266:23;;38055:241;;;:::o;38302:98::-;38353:6;38387:5;38381:12;38371:22;;38360:40;;;:::o;38406:99::-;38458:6;38492:5;38486:12;38476:22;;38465:40;;;:::o;38511:168::-;38594:11;38628:6;38623:3;38616:19;38668:4;38663:3;38659:14;38644:29;;38606:73;;;;:::o;38685:169::-;38769:11;38803:6;38798:3;38791:19;38843:4;38838:3;38834:14;38819:29;;38781:73;;;;:::o;38860:148::-;38962:11;38999:3;38984:18;;38974:34;;;;:::o;39014:305::-;39054:3;39073:20;39091:1;39073:20;:::i;:::-;39068:25;;39107:20;39125:1;39107:20;:::i;:::-;39102:25;;39261:1;39193:66;39189:74;39186:1;39183:81;39180:2;;;39267:18;;:::i;:::-;39180:2;39311:1;39308;39304:9;39297:16;;39058:261;;;;:::o;39325:185::-;39365:1;39382:20;39400:1;39382:20;:::i;:::-;39377:25;;39416:20;39434:1;39416:20;:::i;:::-;39411:25;;39455:1;39445:2;;39460:18;;:::i;:::-;39445:2;39502:1;39499;39495:9;39490:14;;39367:143;;;;:::o;39516:348::-;39556:7;39579:20;39597:1;39579:20;:::i;:::-;39574:25;;39613:20;39631:1;39613:20;:::i;:::-;39608:25;;39801:1;39733:66;39729:74;39726:1;39723:81;39718:1;39711:9;39704:17;39700:105;39697:2;;;39808:18;;:::i;:::-;39697:2;39856:1;39853;39849:9;39838:20;;39564:300;;;;:::o;39870:191::-;39910:4;39930:20;39948:1;39930:20;:::i;:::-;39925:25;;39964:20;39982:1;39964:20;:::i;:::-;39959:25;;40003:1;40000;39997:8;39994:2;;;40008:18;;:::i;:::-;39994:2;40053:1;40050;40046:9;40038:17;;39915:146;;;;:::o;40067:96::-;40104:7;40133:24;40151:5;40133:24;:::i;:::-;40122:35;;40112:51;;;:::o;40169:90::-;40203:7;40246:5;40239:13;40232:21;40221:32;;40211:48;;;:::o;40265:149::-;40301:7;40341:66;40334:5;40330:78;40319:89;;40309:105;;;:::o;40420:126::-;40457:7;40497:42;40490:5;40486:54;40475:65;;40465:81;;;:::o;40552:77::-;40589:7;40618:5;40607:16;;40597:32;;;:::o;40635:154::-;40719:6;40714:3;40709;40696:30;40781:1;40772:6;40767:3;40763:16;40756:27;40686:103;;;:::o;40795:307::-;40863:1;40873:113;40887:6;40884:1;40881:13;40873:113;;;40972:1;40967:3;40963:11;40957:18;40953:1;40948:3;40944:11;40937:39;40909:2;40906:1;40902:10;40897:15;;40873:113;;;41004:6;41001:1;40998:13;40995:2;;;41084:1;41075:6;41070:3;41066:16;41059:27;40995:2;40844:258;;;;:::o;41108:320::-;41152:6;41189:1;41183:4;41179:12;41169:22;;41236:1;41230:4;41226:12;41257:18;41247:2;;41313:4;41305:6;41301:17;41291:27;;41247:2;41375;41367:6;41364:14;41344:18;41341:38;41338:2;;;41394:18;;:::i;:::-;41338:2;41159:269;;;;:::o;41434:281::-;41517:27;41539:4;41517:27;:::i;:::-;41509:6;41505:40;41647:6;41635:10;41632:22;41611:18;41599:10;41596:34;41593:62;41590:2;;;41658:18;;:::i;:::-;41590:2;41698:10;41694:2;41687:22;41477:238;;;:::o;41721:233::-;41760:3;41783:24;41801:5;41783:24;:::i;:::-;41774:33;;41829:66;41822:5;41819:77;41816:2;;;41899:18;;:::i;:::-;41816:2;41946:1;41939:5;41935:13;41928:20;;41764:190;;;:::o;41960:176::-;41992:1;42009:20;42027:1;42009:20;:::i;:::-;42004:25;;42043:20;42061:1;42043:20;:::i;:::-;42038:25;;42082:1;42072:2;;42087:18;;:::i;:::-;42072:2;42128:1;42125;42121:9;42116:14;;41994:142;;;;:::o;42142:180::-;42190:77;42187:1;42180:88;42287:4;42284:1;42277:15;42311:4;42308:1;42301:15;42328:180;42376:77;42373:1;42366:88;42473:4;42470:1;42463:15;42497:4;42494:1;42487:15;42514:180;42562:77;42559:1;42552:88;42659:4;42656:1;42649:15;42683:4;42680:1;42673:15;42700:180;42748:77;42745:1;42738:88;42845:4;42842:1;42835:15;42869:4;42866:1;42859:15;42886:102;42927:6;42978:2;42974:7;42969:2;42962:5;42958:14;42954:28;42944:38;;42934:54;;;:::o;42994:230::-;43134:34;43130:1;43122:6;43118:14;43111:58;43203:13;43198:2;43190:6;43186:15;43179:38;43100:124;:::o;43230:237::-;43370:34;43366:1;43358:6;43354:14;43347:58;43439:20;43434:2;43426:6;43422:15;43415:45;43336:131;:::o;43473:225::-;43613:34;43609:1;43601:6;43597:14;43590:58;43682:8;43677:2;43669:6;43665:15;43658:33;43579:119;:::o;43704:178::-;43844:30;43840:1;43832:6;43828:14;43821:54;43810:72;:::o;43888:223::-;44028:34;44024:1;44016:6;44012:14;44005:58;44097:6;44092:2;44084:6;44080:15;44073:31;43994:117;:::o;44117:175::-;44257:27;44253:1;44245:6;44241:14;44234:51;44223:69;:::o;44298:168::-;44438:20;44434:1;44426:6;44422:14;44415:44;44404:62;:::o;44472:231::-;44612:34;44608:1;44600:6;44596:14;44589:58;44681:14;44676:2;44668:6;44664:15;44657:39;44578:125;:::o;44709:165::-;44849:17;44845:1;44837:6;44833:14;44826:41;44815:59;:::o;44880:243::-;45020:34;45016:1;45008:6;45004:14;44997:58;45089:26;45084:2;45076:6;45072:15;45065:51;44986:137;:::o;45129:170::-;45269:22;45265:1;45257:6;45253:14;45246:46;45235:64;:::o;45305:229::-;45445:34;45441:1;45433:6;45429:14;45422:58;45514:12;45509:2;45501:6;45497:15;45490:37;45411:123;:::o;45540:228::-;45680:34;45676:1;45668:6;45664:14;45657:58;45749:11;45744:2;45736:6;45732:15;45725:36;45646:122;:::o;45774:182::-;45914:34;45910:1;45902:6;45898:14;45891:58;45880:76;:::o;45962:182::-;46102:34;46098:1;46090:6;46086:14;46079:58;46068:76;:::o;46150:162::-;46290:14;46286:1;46278:6;46274:14;46267:38;46256:56;:::o;46318:175::-;46458:27;46454:1;46446:6;46442:14;46435:51;46424:69;:::o;46499:231::-;46639:34;46635:1;46627:6;46623:14;46616:58;46708:14;46703:2;46695:6;46691:15;46684:39;46605:125;:::o;46736:182::-;46876:34;46872:1;46864:6;46860:14;46853:58;46842:76;:::o;46924:228::-;47064:34;47060:1;47052:6;47048:14;47041:58;47133:11;47128:2;47120:6;47116:15;47109:36;47030:122;:::o;47158:234::-;47298:34;47294:1;47286:6;47282:14;47275:58;47367:17;47362:2;47354:6;47350:15;47343:42;47264:128;:::o;47398:167::-;47538:19;47534:1;47526:6;47522:14;47515:43;47504:61;:::o;47571:173::-;47711:25;47707:1;47699:6;47695:14;47688:49;47677:67;:::o;47750:220::-;47890:34;47886:1;47878:6;47874:14;47867:58;47959:3;47954:2;47946:6;47942:15;47935:28;47856:114;:::o;47976:172::-;48116:24;48112:1;48104:6;48100:14;48093:48;48082:66;:::o;48154:236::-;48294:34;48290:1;48282:6;48278:14;48271:58;48363:19;48358:2;48350:6;48346:15;48339:44;48260:130;:::o;48396:175::-;48536:27;48532:1;48524:6;48520:14;48513:51;48502:69;:::o;48577:231::-;48717:34;48713:1;48705:6;48701:14;48694:58;48786:14;48781:2;48773:6;48769:15;48762:39;48683:125;:::o;48814:177::-;48954:29;48950:1;48942:6;48938:14;48931:53;48920:71;:::o;48997:235::-;49137:34;49133:1;49125:6;49121:14;49114:58;49206:18;49201:2;49193:6;49189:15;49182:43;49103:129;:::o;49238:122::-;49311:24;49329:5;49311:24;:::i;:::-;49304:5;49301:35;49291:2;;49350:1;49347;49340:12;49291:2;49281:79;:::o;49366:116::-;49436:21;49451:5;49436:21;:::i;:::-;49429:5;49426:32;49416:2;;49472:1;49469;49462:12;49416:2;49406:76;:::o;49488:120::-;49560:23;49577:5;49560:23;:::i;:::-;49553:5;49550:34;49540:2;;49598:1;49595;49588:12;49540:2;49530:78;:::o;49614:122::-;49687:24;49705:5;49687:24;:::i;:::-;49680:5;49677:35;49667:2;;49726:1;49723;49716:12;49667:2;49657:79;:::o

Swarm Source

ipfs://362e48feba83352623cc7b77273d16cd5fd028fcc40da7d46c7c27a19dcd93aa
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.