ETH Price: $3,389.28 (-1.55%)
Gas: 2 Gwei

Token

CityImpressions (CI)
 

Overview

Max Total Supply

333 CI

Holders

291

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CI
0x032cdcab0d40403ba603a6796894769e8abe9d37
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:
CityImpressions

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-22
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (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/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contracts/CityImpressions.sol


pragma solidity ^0.8.7;



contract CityImpressions is ERC721A, Ownable {

    uint256 public constant MAX_FREE_PER_WALLET = 1;
    uint256 public constant MAX_MINTS = 5;
    uint256 public constant MAX_SUPPLY = 333;
    uint256 public mintRate = 0.003 ether;

    bool public paused = true;

    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    string public baseURI = "ipfs://QmdUhXij6ngWfbzZin6xjxY4shzmv6fXwbqEuAPgyALFHH/";
    string public constant baseExtension = ".json";

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    constructor() ERC721A("CityImpressions", "CI") {}

    function mint(uint256 quantity) external payable {
        require(!paused, "Sale is not active.");
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        _safeMint(msg.sender, quantity);
    }

    function withdraw() external payable onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }

    function setMintRate(uint256 _mintRate) public onlyOwner {
        mintRate = _mintRate;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function freeMint() external payable {
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + 1, "Exceeds max supply");
        require(MAX_FREE_PER_WALLET >= uint256(_getAux(msg.sender)) + 1, "Excess max free mint per wallet");

        _setAux(msg.sender, 1);
        _safeMint(msg.sender, 1);
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function setupOS() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","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":"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":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052660aa87bee5380006009556001600a60006101000a81548160ff02191690831515021790555060405180606001604052806036815260200162003b4c60369139600b90805190602001906200005b92919062000219565b503480156200006957600080fd5b506040518060400160405280600f81526020017f43697479496d7072657373696f6e7300000000000000000000000000000000008152506040518060400160405280600281526020017f43490000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ee92919062000219565b5080600390805190602001906200010792919062000219565b50620001186200014660201b60201c565b600081905550505062000140620001346200014b60201b60201c565b6200015360201b60201c565b6200032e565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022790620002c9565b90600052602060002090601f0160209004810192826200024b576000855562000297565b82601f106200026657805160ff191683800117855562000297565b8280016001018555821562000297579182015b828111156200029657825182559160200191906001019062000279565b5b509050620002a69190620002aa565b5090565b5b80821115620002c5576000816000905550600101620002ab565b5090565b60006002820490506001821680620002e257607f821691505b60208210811415620002f957620002f8620002ff565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61380e806200033e6000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063c668286211610095578063cd7c032611610064578063cd7c03261461063b578063dbe2193f14610666578063e985e9c51461068f578063f2fde38b146106cc576101d8565b8063c66828621461057d578063c87b56dd146105a8578063ca0dcf16146105e5578063cce132d114610610576101d8565b806398710d1e116100d157806398710d1e146104e4578063a0712d681461050f578063a22cb4651461052b578063b88d4fde14610554576101d8565b806370a082311461043a578063715018a6146104775780638da5cb5b1461048e57806395d89b41146104b9576101d8565b806332cb6b0c1161017a5780635c975abb116101495780635c975abb146103905780636352211e146103bb578063698982ba146103f85780636c0360eb1461040f576101d8565b806332cb6b0c146103285780633ccfd60b1461035357806342842e0e1461035d5780635b70ea9f14610386576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806316c38b3c146102ab57806318160ddd146102d457806323b872dd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612c08565b6106f5565b6040516102119190612fde565b60405180910390f35b34801561022657600080fd5b5061022f6107d7565b60405161023c9190612ff9565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612c8f565b610869565b6040516102799190612f77565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612b9b565b6108e5565b005b3480156102b757600080fd5b506102d260048036038101906102cd9190612bdb565b6109ea565b005b3480156102e057600080fd5b506102e9610a83565b6040516102f6919061313b565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190612a85565b610a9a565b005b34801561033457600080fd5b5061033d610aaa565b60405161034a919061313b565b60405180910390f35b61035b610ab0565b005b34801561036957600080fd5b50610384600480360381019061037f9190612a85565b610b7c565b005b61038e610b9c565b005b34801561039c57600080fd5b506103a5610cbe565b6040516103b29190612fde565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190612c8f565b610cd1565b6040516103ef9190612f77565b60405180910390f35b34801561040457600080fd5b5061040d610ce7565b005b34801561041b57600080fd5b50610424610d77565b6040516104319190612ff9565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612a18565b610e05565b60405161046e919061313b565b60405180910390f35b34801561048357600080fd5b5061048c610ed5565b005b34801561049a57600080fd5b506104a3610f5d565b6040516104b09190612f77565b60405180910390f35b3480156104c557600080fd5b506104ce610f87565b6040516104db9190612ff9565b60405180910390f35b3480156104f057600080fd5b506104f9611019565b604051610506919061313b565b60405180910390f35b61052960048036038101906105249190612c8f565b61101e565b005b34801561053757600080fd5b50610552600480360381019061054d9190612b5b565b611179565b005b34801561056057600080fd5b5061057b60048036038101906105769190612ad8565b6112f1565b005b34801561058957600080fd5b50610592611369565b60405161059f9190612ff9565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca9190612c8f565b6113a2565b6040516105dc9190612ff9565b60405180910390f35b3480156105f157600080fd5b506105fa611439565b604051610607919061313b565b60405180910390f35b34801561061c57600080fd5b5061062561143f565b604051610632919061313b565b60405180910390f35b34801561064757600080fd5b50610650611444565b60405161065d9190612f77565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190612c8f565b61145c565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612a45565b6114e2565b6040516106c39190612fde565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612a18565b6115d6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d057506107cf826116ce565b5b9050919050565b6060600280546107e6906133e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610812906133e1565b801561085f5780601f106108345761010080835404028352916020019161085f565b820191906000526020600020905b81548152906001019060200180831161084257829003601f168201915b5050505050905090565b600061087482611738565b6108aa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f082610cd1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610958576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610977611786565b73ffffffffffffffffffffffffffffffffffffffff16146109da576109a38161099e611786565b6114e2565b6109d9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6109e583838361178e565b505050565b6109f2611786565b73ffffffffffffffffffffffffffffffffffffffff16610a10610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d906130db565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000610a8d611840565b6001546000540303905090565b610aa5838383611845565b505050565b61014d81565b610ab8611786565b73ffffffffffffffffffffffffffffffffffffffff16610ad6610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b23906130db565b60405180910390fd5b610b34610f5d565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b79573d6000803e3d6000fd5b50565b610b97838383604051806020016040528060008152506112f1565b505050565b600a60009054906101000a900460ff1615610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be39061301b565b60405180910390fd5b6001610bf6610a83565b610c009190613204565b61014d1015610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b906130bb565b60405180910390fd5b6001610c4f33611cfb565b67ffffffffffffffff16610c639190613204565b60011015610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d9061303b565b60405180910390fd5b610cb1336001611d5b565b610cbc336001611dc8565b565b600a60009054906101000a900460ff1681565b6000610cdc82611de6565b600001519050919050565b610cef611786565b73ffffffffffffffffffffffffffffffffffffffff16610d0d610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a906130db565b60405180910390fd5b610d75610d6e611786565b6001611dc8565b565b600b8054610d84906133e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610db0906133e1565b8015610dfd5780601f10610dd257610100808354040283529160200191610dfd565b820191906000526020600020905b815481529060010190602001808311610de057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610edd611786565b73ffffffffffffffffffffffffffffffffffffffff16610efb610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f48906130db565b60405180910390fd5b610f5b6000612071565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f96906133e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc2906133e1565b801561100f5780601f10610fe45761010080835404028352916020019161100f565b820191906000526020600020905b815481529060010190602001808311610ff257829003601f168201915b5050505050905090565b600181565b600a60009054906101000a900460ff161561106e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611065906130fb565b60405180910390fd5b600561107933612137565b826110849190613204565b11156110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc9061307b565b60405180910390fd5b61014d816110d1610a83565b6110db9190613204565b111561111c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111139061309b565b60405180910390fd5b8060095461112a919061328b565b34101561116c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111639061311b565b60405180910390fd5b6111763382611dc8565b50565b611181611786565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111f3611786565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112a0611786565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112e59190612fde565b60405180910390a35050565b6112fc848484611845565b61131b8373ffffffffffffffffffffffffffffffffffffffff166121a1565b156113635761132c848484846121c4565b611362576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606000600b80546113b3906133e1565b9050116113cf5760405180602001604052806000815250611432565b600b6113da83612324565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161142293929190612f46565b6040516020818303038152906040525b9050919050565b60095481565b600581565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611464611786565b73ffffffffffffffffffffffffffffffffffffffff16611482610f5d565b73ffffffffffffffffffffffffffffffffffffffff16146114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf906130db565b60405180910390fd5b8060098190555050565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161154c9190612f77565b60206040518083038186803b15801561156457600080fd5b505afa158015611578573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159c9190612c62565b73ffffffffffffffffffffffffffffffffffffffff1614156115c25760019150506115d0565b6115cc8484612485565b9150505b92915050565b6115de611786565b73ffffffffffffffffffffffffffffffffffffffff166115fc610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611649906130db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b99061305b565b60405180910390fd5b6116cb81612071565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611743611840565b11158015611752575060005482105b801561177f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061185082611de6565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146118bb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166118dc611786565b73ffffffffffffffffffffffffffffffffffffffff16148061190b575061190a85611905611786565b6114e2565b5b806119505750611919611786565b73ffffffffffffffffffffffffffffffffffffffff1661193884610869565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611989576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119f0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119fd8585856001612519565b611a096000848761178e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c89576000548214611c8857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cf4858585600161251f565b5050505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b611de2828260405180602001604052806000815250612525565b5050565b611dee6128e7565b600082905080611dfc611840565b1161203a57600054811015612039576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161203757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f1b57809250505061206c565b5b60011561203657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461203157809250505061206c565b611f1c565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121ea611786565b8786866040518563ffffffff1660e01b815260040161220c9493929190612f92565b602060405180830381600087803b15801561222657600080fd5b505af192505050801561225757506040513d601f19601f820116820180604052508101906122549190612c35565b60015b6122d1573d8060008114612287576040519150601f19603f3d011682016040523d82523d6000602084013e61228c565b606091505b506000815114156122c9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561236c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612480565b600082905060005b6000821461239e57808061238790613444565b915050600a82612397919061325a565b9150612374565b60008167ffffffffffffffff8111156123ba576123b961357a565b5b6040519080825280601f01601f1916602001820160405280156123ec5781602001600182028036833780820191505090505b5090505b600085146124795760018261240591906132e5565b9150600a85612414919061348d565b60306124209190613204565b60f81b8183815181106124365761243561354b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612472919061325a565b94506123f0565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612592576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156125cd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125da6000858386612519565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061279b8673ffffffffffffffffffffffffffffffffffffffff166121a1565b15612860575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461281060008784806001019550876121c4565b612846576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106127a157826000541461285b57600080fd5b6128cb565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612861575b8160008190555050506128e1600085838661251f565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b600061293d6129388461317b565b613156565b905082815260208101848484011115612959576129586135ae565b5b61296484828561339f565b509392505050565b60008135905061297b81613765565b92915050565b6000813590506129908161377c565b92915050565b6000813590506129a581613793565b92915050565b6000815190506129ba81613793565b92915050565b600082601f8301126129d5576129d46135a9565b5b81356129e584826020860161292a565b91505092915050565b6000815190506129fd816137aa565b92915050565b600081359050612a12816137c1565b92915050565b600060208284031215612a2e57612a2d6135b8565b5b6000612a3c8482850161296c565b91505092915050565b60008060408385031215612a5c57612a5b6135b8565b5b6000612a6a8582860161296c565b9250506020612a7b8582860161296c565b9150509250929050565b600080600060608486031215612a9e57612a9d6135b8565b5b6000612aac8682870161296c565b9350506020612abd8682870161296c565b9250506040612ace86828701612a03565b9150509250925092565b60008060008060808587031215612af257612af16135b8565b5b6000612b008782880161296c565b9450506020612b118782880161296c565b9350506040612b2287828801612a03565b925050606085013567ffffffffffffffff811115612b4357612b426135b3565b5b612b4f878288016129c0565b91505092959194509250565b60008060408385031215612b7257612b716135b8565b5b6000612b808582860161296c565b9250506020612b9185828601612981565b9150509250929050565b60008060408385031215612bb257612bb16135b8565b5b6000612bc08582860161296c565b9250506020612bd185828601612a03565b9150509250929050565b600060208284031215612bf157612bf06135b8565b5b6000612bff84828501612981565b91505092915050565b600060208284031215612c1e57612c1d6135b8565b5b6000612c2c84828501612996565b91505092915050565b600060208284031215612c4b57612c4a6135b8565b5b6000612c59848285016129ab565b91505092915050565b600060208284031215612c7857612c776135b8565b5b6000612c86848285016129ee565b91505092915050565b600060208284031215612ca557612ca46135b8565b5b6000612cb384828501612a03565b91505092915050565b612cc581613319565b82525050565b612cd48161332b565b82525050565b6000612ce5826131c1565b612cef81856131d7565b9350612cff8185602086016133ae565b612d08816135bd565b840191505092915050565b6000612d1e826131cc565b612d2881856131e8565b9350612d388185602086016133ae565b612d41816135bd565b840191505092915050565b6000612d57826131cc565b612d6181856131f9565b9350612d718185602086016133ae565b80840191505092915050565b60008154612d8a816133e1565b612d9481866131f9565b94506001821660008114612daf5760018114612dc057612df3565b60ff19831686528186019350612df3565b612dc9856131ac565b60005b83811015612deb57815481890152600182019150602081019050612dcc565b838801955050505b50505092915050565b6000612e096006836131e8565b9150612e14826135ce565b602082019050919050565b6000612e2c601f836131e8565b9150612e37826135f7565b602082019050919050565b6000612e4f6026836131e8565b9150612e5a82613620565b604082019050919050565b6000612e726012836131e8565b9150612e7d8261366f565b602082019050919050565b6000612e956016836131e8565b9150612ea082613698565b602082019050919050565b6000612eb86012836131e8565b9150612ec3826136c1565b602082019050919050565b6000612edb6020836131e8565b9150612ee6826136ea565b602082019050919050565b6000612efe6013836131e8565b9150612f0982613713565b602082019050919050565b6000612f216015836131e8565b9150612f2c8261373c565b602082019050919050565b612f4081613395565b82525050565b6000612f528286612d7d565b9150612f5e8285612d4c565b9150612f6a8284612d4c565b9150819050949350505050565b6000602082019050612f8c6000830184612cbc565b92915050565b6000608082019050612fa76000830187612cbc565b612fb46020830186612cbc565b612fc16040830185612f37565b8181036060830152612fd38184612cda565b905095945050505050565b6000602082019050612ff36000830184612ccb565b92915050565b600060208201905081810360008301526130138184612d13565b905092915050565b6000602082019050818103600083015261303481612dfc565b9050919050565b6000602082019050818103600083015261305481612e1f565b9050919050565b6000602082019050818103600083015261307481612e42565b9050919050565b6000602082019050818103600083015261309481612e65565b9050919050565b600060208201905081810360008301526130b481612e88565b9050919050565b600060208201905081810360008301526130d481612eab565b9050919050565b600060208201905081810360008301526130f481612ece565b9050919050565b6000602082019050818103600083015261311481612ef1565b9050919050565b6000602082019050818103600083015261313481612f14565b9050919050565b60006020820190506131506000830184612f37565b92915050565b6000613160613171565b905061316c8282613413565b919050565b6000604051905090565b600067ffffffffffffffff8211156131965761319561357a565b5b61319f826135bd565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061320f82613395565b915061321a83613395565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561324f5761324e6134be565b5b828201905092915050565b600061326582613395565b915061327083613395565b9250826132805761327f6134ed565b5b828204905092915050565b600061329682613395565b91506132a183613395565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132da576132d96134be565b5b828202905092915050565b60006132f082613395565b91506132fb83613395565b92508282101561330e5761330d6134be565b5b828203905092915050565b600061332482613375565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061336e82613319565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133cc5780820151818401526020810190506133b1565b838111156133db576000848401525b50505050565b600060028204905060018216806133f957607f821691505b6020821081141561340d5761340c61351c565b5b50919050565b61341c826135bd565b810181811067ffffffffffffffff8211171561343b5761343a61357a565b5b80604052505050565b600061344f82613395565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613482576134816134be565b5b600182019050919050565b600061349882613395565b91506134a383613395565b9250826134b3576134b26134ed565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f457863657373206d61782066726565206d696e74207065722077616c6c657400600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b61376e81613319565b811461377957600080fd5b50565b6137858161332b565b811461379057600080fd5b50565b61379c81613337565b81146137a757600080fd5b50565b6137b381613363565b81146137be57600080fd5b50565b6137ca81613395565b81146137d557600080fd5b5056fea2646970667358221220de1513da8eaefbc40541b95a88f2b3bb9f39ca51f31c954caa10435e88defe1364736f6c63430008070033697066733a2f2f516d64556858696a366e675766627a5a696e36786a78593473687a6d76366658776271457541506779414c4648482f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370a0823111610102578063c668286211610095578063cd7c032611610064578063cd7c03261461063b578063dbe2193f14610666578063e985e9c51461068f578063f2fde38b146106cc576101d8565b8063c66828621461057d578063c87b56dd146105a8578063ca0dcf16146105e5578063cce132d114610610576101d8565b806398710d1e116100d157806398710d1e146104e4578063a0712d681461050f578063a22cb4651461052b578063b88d4fde14610554576101d8565b806370a082311461043a578063715018a6146104775780638da5cb5b1461048e57806395d89b41146104b9576101d8565b806332cb6b0c1161017a5780635c975abb116101495780635c975abb146103905780636352211e146103bb578063698982ba146103f85780636c0360eb1461040f576101d8565b806332cb6b0c146103285780633ccfd60b1461035357806342842e0e1461035d5780635b70ea9f14610386576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806316c38b3c146102ab57806318160ddd146102d457806323b872dd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612c08565b6106f5565b6040516102119190612fde565b60405180910390f35b34801561022657600080fd5b5061022f6107d7565b60405161023c9190612ff9565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612c8f565b610869565b6040516102799190612f77565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612b9b565b6108e5565b005b3480156102b757600080fd5b506102d260048036038101906102cd9190612bdb565b6109ea565b005b3480156102e057600080fd5b506102e9610a83565b6040516102f6919061313b565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190612a85565b610a9a565b005b34801561033457600080fd5b5061033d610aaa565b60405161034a919061313b565b60405180910390f35b61035b610ab0565b005b34801561036957600080fd5b50610384600480360381019061037f9190612a85565b610b7c565b005b61038e610b9c565b005b34801561039c57600080fd5b506103a5610cbe565b6040516103b29190612fde565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190612c8f565b610cd1565b6040516103ef9190612f77565b60405180910390f35b34801561040457600080fd5b5061040d610ce7565b005b34801561041b57600080fd5b50610424610d77565b6040516104319190612ff9565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612a18565b610e05565b60405161046e919061313b565b60405180910390f35b34801561048357600080fd5b5061048c610ed5565b005b34801561049a57600080fd5b506104a3610f5d565b6040516104b09190612f77565b60405180910390f35b3480156104c557600080fd5b506104ce610f87565b6040516104db9190612ff9565b60405180910390f35b3480156104f057600080fd5b506104f9611019565b604051610506919061313b565b60405180910390f35b61052960048036038101906105249190612c8f565b61101e565b005b34801561053757600080fd5b50610552600480360381019061054d9190612b5b565b611179565b005b34801561056057600080fd5b5061057b60048036038101906105769190612ad8565b6112f1565b005b34801561058957600080fd5b50610592611369565b60405161059f9190612ff9565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca9190612c8f565b6113a2565b6040516105dc9190612ff9565b60405180910390f35b3480156105f157600080fd5b506105fa611439565b604051610607919061313b565b60405180910390f35b34801561061c57600080fd5b5061062561143f565b604051610632919061313b565b60405180910390f35b34801561064757600080fd5b50610650611444565b60405161065d9190612f77565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190612c8f565b61145c565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612a45565b6114e2565b6040516106c39190612fde565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612a18565b6115d6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d057506107cf826116ce565b5b9050919050565b6060600280546107e6906133e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610812906133e1565b801561085f5780601f106108345761010080835404028352916020019161085f565b820191906000526020600020905b81548152906001019060200180831161084257829003601f168201915b5050505050905090565b600061087482611738565b6108aa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f082610cd1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610958576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610977611786565b73ffffffffffffffffffffffffffffffffffffffff16146109da576109a38161099e611786565b6114e2565b6109d9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6109e583838361178e565b505050565b6109f2611786565b73ffffffffffffffffffffffffffffffffffffffff16610a10610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d906130db565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000610a8d611840565b6001546000540303905090565b610aa5838383611845565b505050565b61014d81565b610ab8611786565b73ffffffffffffffffffffffffffffffffffffffff16610ad6610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b23906130db565b60405180910390fd5b610b34610f5d565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b79573d6000803e3d6000fd5b50565b610b97838383604051806020016040528060008152506112f1565b505050565b600a60009054906101000a900460ff1615610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be39061301b565b60405180910390fd5b6001610bf6610a83565b610c009190613204565b61014d1015610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b906130bb565b60405180910390fd5b6001610c4f33611cfb565b67ffffffffffffffff16610c639190613204565b60011015610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d9061303b565b60405180910390fd5b610cb1336001611d5b565b610cbc336001611dc8565b565b600a60009054906101000a900460ff1681565b6000610cdc82611de6565b600001519050919050565b610cef611786565b73ffffffffffffffffffffffffffffffffffffffff16610d0d610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a906130db565b60405180910390fd5b610d75610d6e611786565b6001611dc8565b565b600b8054610d84906133e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610db0906133e1565b8015610dfd5780601f10610dd257610100808354040283529160200191610dfd565b820191906000526020600020905b815481529060010190602001808311610de057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610edd611786565b73ffffffffffffffffffffffffffffffffffffffff16610efb610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f48906130db565b60405180910390fd5b610f5b6000612071565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f96906133e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc2906133e1565b801561100f5780601f10610fe45761010080835404028352916020019161100f565b820191906000526020600020905b815481529060010190602001808311610ff257829003601f168201915b5050505050905090565b600181565b600a60009054906101000a900460ff161561106e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611065906130fb565b60405180910390fd5b600561107933612137565b826110849190613204565b11156110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc9061307b565b60405180910390fd5b61014d816110d1610a83565b6110db9190613204565b111561111c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111139061309b565b60405180910390fd5b8060095461112a919061328b565b34101561116c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111639061311b565b60405180910390fd5b6111763382611dc8565b50565b611181611786565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111f3611786565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112a0611786565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112e59190612fde565b60405180910390a35050565b6112fc848484611845565b61131b8373ffffffffffffffffffffffffffffffffffffffff166121a1565b156113635761132c848484846121c4565b611362576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606000600b80546113b3906133e1565b9050116113cf5760405180602001604052806000815250611432565b600b6113da83612324565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161142293929190612f46565b6040516020818303038152906040525b9050919050565b60095481565b600581565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611464611786565b73ffffffffffffffffffffffffffffffffffffffff16611482610f5d565b73ffffffffffffffffffffffffffffffffffffffff16146114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf906130db565b60405180910390fd5b8060098190555050565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161154c9190612f77565b60206040518083038186803b15801561156457600080fd5b505afa158015611578573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159c9190612c62565b73ffffffffffffffffffffffffffffffffffffffff1614156115c25760019150506115d0565b6115cc8484612485565b9150505b92915050565b6115de611786565b73ffffffffffffffffffffffffffffffffffffffff166115fc610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614611652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611649906130db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b99061305b565b60405180910390fd5b6116cb81612071565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611743611840565b11158015611752575060005482105b801561177f575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061185082611de6565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146118bb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166118dc611786565b73ffffffffffffffffffffffffffffffffffffffff16148061190b575061190a85611905611786565b6114e2565b5b806119505750611919611786565b73ffffffffffffffffffffffffffffffffffffffff1661193884610869565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611989576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119f0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119fd8585856001612519565b611a096000848761178e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c89576000548214611c8857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cf4858585600161251f565b5050505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b611de2828260405180602001604052806000815250612525565b5050565b611dee6128e7565b600082905080611dfc611840565b1161203a57600054811015612039576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161203757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f1b57809250505061206c565b5b60011561203657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461203157809250505061206c565b611f1c565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121ea611786565b8786866040518563ffffffff1660e01b815260040161220c9493929190612f92565b602060405180830381600087803b15801561222657600080fd5b505af192505050801561225757506040513d601f19601f820116820180604052508101906122549190612c35565b60015b6122d1573d8060008114612287576040519150601f19603f3d011682016040523d82523d6000602084013e61228c565b606091505b506000815114156122c9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561236c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612480565b600082905060005b6000821461239e57808061238790613444565b915050600a82612397919061325a565b9150612374565b60008167ffffffffffffffff8111156123ba576123b961357a565b5b6040519080825280601f01601f1916602001820160405280156123ec5781602001600182028036833780820191505090505b5090505b600085146124795760018261240591906132e5565b9150600a85612414919061348d565b60306124209190613204565b60f81b8183815181106124365761243561354b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612472919061325a565b94506123f0565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612592576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156125cd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125da6000858386612519565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061279b8673ffffffffffffffffffffffffffffffffffffffff166121a1565b15612860575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461281060008784806001019550876121c4565b612846576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106127a157826000541461285b57600080fd5b6128cb565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612861575b8160008190555050506128e1600085838661251f565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b600061293d6129388461317b565b613156565b905082815260208101848484011115612959576129586135ae565b5b61296484828561339f565b509392505050565b60008135905061297b81613765565b92915050565b6000813590506129908161377c565b92915050565b6000813590506129a581613793565b92915050565b6000815190506129ba81613793565b92915050565b600082601f8301126129d5576129d46135a9565b5b81356129e584826020860161292a565b91505092915050565b6000815190506129fd816137aa565b92915050565b600081359050612a12816137c1565b92915050565b600060208284031215612a2e57612a2d6135b8565b5b6000612a3c8482850161296c565b91505092915050565b60008060408385031215612a5c57612a5b6135b8565b5b6000612a6a8582860161296c565b9250506020612a7b8582860161296c565b9150509250929050565b600080600060608486031215612a9e57612a9d6135b8565b5b6000612aac8682870161296c565b9350506020612abd8682870161296c565b9250506040612ace86828701612a03565b9150509250925092565b60008060008060808587031215612af257612af16135b8565b5b6000612b008782880161296c565b9450506020612b118782880161296c565b9350506040612b2287828801612a03565b925050606085013567ffffffffffffffff811115612b4357612b426135b3565b5b612b4f878288016129c0565b91505092959194509250565b60008060408385031215612b7257612b716135b8565b5b6000612b808582860161296c565b9250506020612b9185828601612981565b9150509250929050565b60008060408385031215612bb257612bb16135b8565b5b6000612bc08582860161296c565b9250506020612bd185828601612a03565b9150509250929050565b600060208284031215612bf157612bf06135b8565b5b6000612bff84828501612981565b91505092915050565b600060208284031215612c1e57612c1d6135b8565b5b6000612c2c84828501612996565b91505092915050565b600060208284031215612c4b57612c4a6135b8565b5b6000612c59848285016129ab565b91505092915050565b600060208284031215612c7857612c776135b8565b5b6000612c86848285016129ee565b91505092915050565b600060208284031215612ca557612ca46135b8565b5b6000612cb384828501612a03565b91505092915050565b612cc581613319565b82525050565b612cd48161332b565b82525050565b6000612ce5826131c1565b612cef81856131d7565b9350612cff8185602086016133ae565b612d08816135bd565b840191505092915050565b6000612d1e826131cc565b612d2881856131e8565b9350612d388185602086016133ae565b612d41816135bd565b840191505092915050565b6000612d57826131cc565b612d6181856131f9565b9350612d718185602086016133ae565b80840191505092915050565b60008154612d8a816133e1565b612d9481866131f9565b94506001821660008114612daf5760018114612dc057612df3565b60ff19831686528186019350612df3565b612dc9856131ac565b60005b83811015612deb57815481890152600182019150602081019050612dcc565b838801955050505b50505092915050565b6000612e096006836131e8565b9150612e14826135ce565b602082019050919050565b6000612e2c601f836131e8565b9150612e37826135f7565b602082019050919050565b6000612e4f6026836131e8565b9150612e5a82613620565b604082019050919050565b6000612e726012836131e8565b9150612e7d8261366f565b602082019050919050565b6000612e956016836131e8565b9150612ea082613698565b602082019050919050565b6000612eb86012836131e8565b9150612ec3826136c1565b602082019050919050565b6000612edb6020836131e8565b9150612ee6826136ea565b602082019050919050565b6000612efe6013836131e8565b9150612f0982613713565b602082019050919050565b6000612f216015836131e8565b9150612f2c8261373c565b602082019050919050565b612f4081613395565b82525050565b6000612f528286612d7d565b9150612f5e8285612d4c565b9150612f6a8284612d4c565b9150819050949350505050565b6000602082019050612f8c6000830184612cbc565b92915050565b6000608082019050612fa76000830187612cbc565b612fb46020830186612cbc565b612fc16040830185612f37565b8181036060830152612fd38184612cda565b905095945050505050565b6000602082019050612ff36000830184612ccb565b92915050565b600060208201905081810360008301526130138184612d13565b905092915050565b6000602082019050818103600083015261303481612dfc565b9050919050565b6000602082019050818103600083015261305481612e1f565b9050919050565b6000602082019050818103600083015261307481612e42565b9050919050565b6000602082019050818103600083015261309481612e65565b9050919050565b600060208201905081810360008301526130b481612e88565b9050919050565b600060208201905081810360008301526130d481612eab565b9050919050565b600060208201905081810360008301526130f481612ece565b9050919050565b6000602082019050818103600083015261311481612ef1565b9050919050565b6000602082019050818103600083015261313481612f14565b9050919050565b60006020820190506131506000830184612f37565b92915050565b6000613160613171565b905061316c8282613413565b919050565b6000604051905090565b600067ffffffffffffffff8211156131965761319561357a565b5b61319f826135bd565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061320f82613395565b915061321a83613395565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561324f5761324e6134be565b5b828201905092915050565b600061326582613395565b915061327083613395565b9250826132805761327f6134ed565b5b828204905092915050565b600061329682613395565b91506132a183613395565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132da576132d96134be565b5b828202905092915050565b60006132f082613395565b91506132fb83613395565b92508282101561330e5761330d6134be565b5b828203905092915050565b600061332482613375565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061336e82613319565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133cc5780820151818401526020810190506133b1565b838111156133db576000848401525b50505050565b600060028204905060018216806133f957607f821691505b6020821081141561340d5761340c61351c565b5b50919050565b61341c826135bd565b810181811067ffffffffffffffff8211171561343b5761343a61357a565b5b80604052505050565b600061344f82613395565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613482576134816134be565b5b600182019050919050565b600061349882613395565b91506134a383613395565b9250826134b3576134b26134ed565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f457863657373206d61782066726565206d696e74207065722077616c6c657400600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b61376e81613319565b811461377957600080fd5b50565b6137858161332b565b811461379057600080fd5b50565b61379c81613337565b81146137a757600080fd5b50565b6137b381613363565b81146137be57600080fd5b50565b6137ca81613395565b81146137d557600080fd5b5056fea2646970667358221220de1513da8eaefbc40541b95a88f2b3bb9f39ca51f31c954caa10435e88defe1364736f6c63430008070033

Deployed Bytecode Sourcemap

47467:2787:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28578:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31693:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33197:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32759:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49281:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27818:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34062:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47619:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48639:114;;;:::i;:::-;;34303:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49372:335;;;:::i;:::-;;47712:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31501:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50168:83;;;;;;;;;;;;;:::i;:::-;;47842:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28947:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4763:103;;;;;;;;;;;;;:::i;:::-;;4112:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31862:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47521:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48148:483;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33473:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34559:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47929:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48869:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47666:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47575;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47746:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49177:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49715:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5021:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28578:305;28680:4;28732:25;28717:40;;;:11;:40;;;;:105;;;;28789:33;28774:48;;;:11;:48;;;;28717:105;:158;;;;28839:36;28863:11;28839:23;:36::i;:::-;28717:158;28697:178;;28578:305;;;:::o;31693:100::-;31747:13;31780:5;31773:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31693:100;:::o;33197:204::-;33265:7;33290:16;33298:7;33290;:16::i;:::-;33285:64;;33315:34;;;;;;;;;;;;;;33285:64;33369:15;:24;33385:7;33369:24;;;;;;;;;;;;;;;;;;;;;33362:31;;33197:204;;;:::o;32759:372::-;32832:13;32848:24;32864:7;32848:15;:24::i;:::-;32832:40;;32893:5;32887:11;;:2;:11;;;32883:48;;;32907:24;;;;;;;;;;;;;;32883:48;32964:5;32948:21;;:12;:10;:12::i;:::-;:21;;;32944:139;;32975:37;32992:5;32999:12;:10;:12::i;:::-;32975:16;:37::i;:::-;32971:112;;33036:35;;;;;;;;;;;;;;32971:112;32944:139;33095:28;33104:2;33108:7;33117:5;33095:8;:28::i;:::-;32821:310;32759:372;;:::o;49281:83::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49350:6:::1;49341;;:15;;;;;;;;;;;;;;;;;;49281:83:::0;:::o;27818:312::-;27871:7;28096:15;:13;:15::i;:::-;28081:12;;28065:13;;:28;:46;28058:53;;27818:312;:::o;34062:170::-;34196:28;34206:4;34212:2;34216:7;34196:9;:28::i;:::-;34062:170;;;:::o;47619:40::-;47656:3;47619:40;:::o;48639:114::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48705:7:::1;:5;:7::i;:::-;48697:25;;:48;48723:21;48697:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48639:114::o:0;34303:185::-;34441:39;34458:4;34464:2;34468:7;34441:39;;;;;;;;;;;;:16;:39::i;:::-;34303:185;;;:::o;49372:335::-;49429:6;;;;;;;;;;;49428:7;49420:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;49495:1;49479:13;:11;:13::i;:::-;:17;;;;:::i;:::-;47656:3;49465:31;;49457:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49592:1;49569:19;49577:10;49569:7;:19::i;:::-;49561:28;;:32;;;;:::i;:::-;47567:1;49538:55;;49530:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;49642:22;49650:10;49662:1;49642:7;:22::i;:::-;49675:24;49685:10;49697:1;49675:9;:24::i;:::-;49372:335::o;47712:25::-;;;;;;;;;;;;;:::o;31501:125::-;31565:7;31592:21;31605:7;31592:12;:21::i;:::-;:26;;;31585:33;;31501:125;;;:::o;50168:83::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50217:26:::1;50227:12;:10;:12::i;:::-;50241:1;50217:9;:26::i;:::-;50168:83::o:0;47842:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28947:206::-;29011:7;29052:1;29035:19;;:5;:19;;;29031:60;;;29063:28;;;;;;;;;;;;;;29031:60;29117:12;:19;29130:5;29117:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29109:36;;29102:43;;28947:206;;;:::o;4763:103::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;4112:87::-;4158:7;4185:6;;;;;;;;;;;4178:13;;4112:87;:::o;31862:104::-;31918:13;31951:7;31944:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31862:104;:::o;47521:47::-;47567:1;47521:47;:::o;48148:483::-;48217:6;;;;;;;;;;;48216:7;48208:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;47611:1;48357:25;48371:10;48357:13;:25::i;:::-;48346:8;:36;;;;:::i;:::-;:49;;48338:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;47656:3;48453:8;48437:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;48429:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48546:8;48535;;:19;;;;:::i;:::-;48521:9;:34;;48513:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48592:31;48602:10;48614:8;48592:9;:31::i;:::-;48148:483;:::o;33473:287::-;33584:12;:10;:12::i;:::-;33572:24;;:8;:24;;;33568:54;;;33605:17;;;;;;;;;;;;;;33568:54;33680:8;33635:18;:32;33654:12;:10;:12::i;:::-;33635:32;;;;;;;;;;;;;;;:42;33668:8;33635:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33733:8;33704:48;;33719:12;:10;:12::i;:::-;33704:48;;;33743:8;33704:48;;;;;;:::i;:::-;;;;;;;;33473:287;;:::o;34559:370::-;34726:28;34736:4;34742:2;34746:7;34726:9;:28::i;:::-;34769:15;:2;:13;;;:15::i;:::-;34765:157;;;34790:56;34821:4;34827:2;34831:7;34840:5;34790:30;:56::i;:::-;34786:136;;34870:40;;;;;;;;;;;;;;34786:136;34765:157;34559:370;;;;:::o;47929:46::-;;;;;;;;;;;;;;;;;;;:::o;48869:300::-;48935:13;48992:1;48974:7;48968:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;49050:7;49074:26;49091:8;49074:16;:26::i;:::-;49117:13;;;;;;;;;;;;;;;;;49017:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48968:193;48961:200;;48869:300;;;:::o;47666:37::-;;;;:::o;47575:::-;47611:1;47575:37;:::o;47746:89::-;47793:42;47746:89;:::o;49177:96::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49256:9:::1;49245:8;:20;;;;49177:96:::0;:::o;49715:445::-;49840:4;49925:27;47793:42;49925:65;;50046:8;50005:49;;50013:13;:21;;;50035:5;50013:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50005:49;;;50001:93;;;50078:4;50071:11;;;;;50001:93;50113:39;50136:5;50143:8;50113:22;:39::i;:::-;50106:46;;;49715:445;;;;;:::o;5021:201::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5130:1:::1;5110:22;;:8;:22;;;;5102:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5186:28;5205:8;5186:18;:28::i;:::-;5021:201:::0;:::o;16919:157::-;17004:4;17043:25;17028:40;;;:11;:40;;;;17021:47;;16919:157;;;:::o;35184:174::-;35241:4;35284:7;35265:15;:13;:15::i;:::-;:26;;:53;;;;;35305:13;;35295:7;:23;35265:53;:85;;;;;35323:11;:20;35335:7;35323:20;;;;;;;;;;;:27;;;;;;;;;;;;35322:28;35265:85;35258:92;;35184:174;;;:::o;2836:98::-;2889:7;2916:10;2909:17;;2836:98;:::o;44406:196::-;44548:2;44521:15;:24;44537:7;44521:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44586:7;44582:2;44566:28;;44575:5;44566:28;;;;;;;;;;;;44406:196;;;:::o;27592:92::-;27648:7;27592:92;:::o;39354:2130::-;39469:35;39507:21;39520:7;39507:12;:21::i;:::-;39469:59;;39567:4;39545:26;;:13;:18;;;:26;;;39541:67;;39580:28;;;;;;;;;;;;;;39541:67;39621:22;39663:4;39647:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39684:36;39701:4;39707:12;:10;:12::i;:::-;39684:16;:36::i;:::-;39647:73;:126;;;;39761:12;:10;:12::i;:::-;39737:36;;:20;39749:7;39737:11;:20::i;:::-;:36;;;39647:126;39621:153;;39792:17;39787:66;;39818:35;;;;;;;;;;;;;;39787:66;39882:1;39868:16;;:2;:16;;;39864:52;;;39893:23;;;;;;;;;;;;;;39864:52;39929:43;39951:4;39957:2;39961:7;39970:1;39929:21;:43::i;:::-;40037:35;40054:1;40058:7;40067:4;40037:8;:35::i;:::-;40398:1;40368:12;:18;40381:4;40368:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40442:1;40414:12;:16;40427:2;40414:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40460:31;40494:11;:20;40506:7;40494:20;;;;;;;;;;;40460:54;;40545:2;40529:8;:13;;;:18;;;;;;;;;;;;;;;;;;40595:15;40562:8;:23;;;:49;;;;;;;;;;;;;;;;;;40863:19;40895:1;40885:7;:11;40863:33;;40911:31;40945:11;:24;40957:11;40945:24;;;;;;;;;;;40911:58;;41013:1;40988:27;;:8;:13;;;;;;;;;;;;:27;;;40984:384;;;41198:13;;41183:11;:28;41179:174;;41252:4;41236:8;:13;;;:20;;;;;;;;;;;;;;;;;;41305:13;:28;;;41279:8;:23;;;:54;;;;;;;;;;;;;;;;;;41179:174;40984:384;40343:1036;;;41415:7;41411:2;41396:27;;41405:4;41396:27;;;;;;;;;;;;41434:42;41455:4;41461:2;41465:7;41474:1;41434:20;:42::i;:::-;39458:2026;;39354:2130;;;:::o;29725:112::-;29780:6;29806:12;:19;29819:5;29806:19;;;;;;;;;;;;;;;:23;;;;;;;;;;;;29799:30;;29725:112;;;:::o;30025:101::-;30115:3;30089:12;:19;30102:5;30089:19;;;;;;;;;;;;;;;:23;;;:29;;;;;;;;;;;;;;;;;;30025:101;;:::o;35442:104::-;35511:27;35521:2;35525:8;35511:27;;;;;;;;;;;;:9;:27::i;:::-;35442:104;;:::o;30328:1111::-;30390:21;;:::i;:::-;30424:12;30439:7;30424:22;;30507:4;30488:15;:13;:15::i;:::-;:23;30484:888;;30524:13;;30517:4;:20;30513:859;;;30558:31;30592:11;:17;30604:4;30592:17;;;;;;;;;;;30558:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30633:9;:16;;;30628:729;;30704:1;30678:28;;:9;:14;;;:28;;;30674:101;;30742:9;30735:16;;;;;;30674:101;31077:261;31084:4;31077:261;;;31117:6;;;;;;;;31162:11;:17;31174:4;31162:17;;;;;;;;;;;31150:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31236:1;31210:28;;:9;:14;;;:28;;;31206:109;;31278:9;31271:16;;;;;;31206:109;31077:261;;;30628:729;30539:833;30513:859;30484:888;31400:31;;;;;;;;;;;;;;30328:1111;;;;:::o;5382:191::-;5456:16;5475:6;;;;;;;;;;;5456:25;;5501:8;5492:6;;:17;;;;;;;;;;;;;;;;;;5556:8;5525:40;;5546:8;5525:40;;;;;;;;;;;;5445:128;5382:191;:::o;29235:137::-;29296:7;29331:12;:19;29344:5;29331:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29323:41;;29316:48;;29235:137;;;:::o;6813:326::-;6873:4;7130:1;7108:7;:19;;;:23;7101:30;;6813:326;;;:::o;45094:667::-;45257:4;45294:2;45278:36;;;45315:12;:10;:12::i;:::-;45329:4;45335:7;45344:5;45278:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45274:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45529:1;45512:6;:13;:18;45508:235;;;45558:40;;;;;;;;;;;;;;45508:235;45701:6;45695:13;45686:6;45682:2;45678:15;45671:38;45274:480;45407:45;;;45397:55;;;:6;:55;;;;45390:62;;;45094:667;;;;;;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;33831:164::-;33928:4;33952:18;:25;33971:5;33952:25;;;;;;;;;;;;;;;:35;33978:8;33952:35;;;;;;;;;;;;;;;;;;;;;;;;;33945:42;;33831:164;;;;:::o;46409:159::-;;;;;:::o;47227:158::-;;;;;:::o;35919:1749::-;36042:20;36065:13;;36042:36;;36107:1;36093:16;;:2;:16;;;36089:48;;;36118:19;;;;;;;;;;;;;;36089:48;36164:1;36152:8;:13;36148:44;;;36174:18;;;;;;;;;;;;;;36148:44;36205:61;36235:1;36239:2;36243:12;36257:8;36205:21;:61::i;:::-;36578:8;36543:12;:16;36556:2;36543:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36642:8;36602:12;:16;36615:2;36602:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36701:2;36668:11;:25;36680:12;36668:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36768:15;36718:11;:25;36730:12;36718:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;36801:20;36824:12;36801:35;;36851:11;36880:8;36865:12;:23;36851:37;;36909:15;:2;:13;;;:15::i;:::-;36905:631;;;36945:313;37001:12;36997:2;36976:38;;36993:1;36976:38;;;;;;;;;;;;37042:69;37081:1;37085:2;37089:14;;;;;;37105:5;37042:30;:69::i;:::-;37037:174;;37147:40;;;;;;;;;;;;;;37037:174;37253:3;37238:12;:18;36945:313;;37339:12;37322:13;;:29;37318:43;;37353:8;;;37318:43;36905:631;;;37402:119;37458:14;;;;;;37454:2;37433:40;;37450:1;37433:40;;;;;;;;;;;;37516:3;37501:12;:18;37402:119;;36905:631;37566:12;37550:13;:28;;;;36518:1072;;37600:60;37629:1;37633:2;37637:12;37651:8;37600:20;:60::i;:::-;36031:1637;35919:1749;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:201::-;1440:5;1471:6;1465:13;1456:22;;1487:62;1543:5;1487:62;:::i;:::-;1354:201;;;;:::o;1561:139::-;1607:5;1645:6;1632:20;1623:29;;1661:33;1688:5;1661:33;:::i;:::-;1561:139;;;;:::o;1706:329::-;1765:6;1814:2;1802:9;1793:7;1789:23;1785:32;1782:119;;;1820:79;;:::i;:::-;1782:119;1940:1;1965:53;2010:7;2001:6;1990:9;1986:22;1965:53;:::i;:::-;1955:63;;1911:117;1706:329;;;;:::o;2041:474::-;2109:6;2117;2166:2;2154:9;2145:7;2141:23;2137:32;2134:119;;;2172:79;;:::i;:::-;2134:119;2292:1;2317:53;2362:7;2353:6;2342:9;2338:22;2317:53;:::i;:::-;2307:63;;2263:117;2419:2;2445:53;2490:7;2481:6;2470:9;2466:22;2445:53;:::i;:::-;2435:63;;2390:118;2041:474;;;;;:::o;2521:619::-;2598:6;2606;2614;2663:2;2651:9;2642:7;2638:23;2634:32;2631:119;;;2669:79;;:::i;:::-;2631:119;2789:1;2814:53;2859:7;2850:6;2839:9;2835:22;2814:53;:::i;:::-;2804:63;;2760:117;2916:2;2942:53;2987:7;2978:6;2967:9;2963:22;2942:53;:::i;:::-;2932:63;;2887:118;3044:2;3070:53;3115:7;3106:6;3095:9;3091:22;3070:53;:::i;:::-;3060:63;;3015:118;2521:619;;;;;:::o;3146:943::-;3241:6;3249;3257;3265;3314:3;3302:9;3293:7;3289:23;3285:33;3282:120;;;3321:79;;:::i;:::-;3282:120;3441:1;3466:53;3511:7;3502:6;3491:9;3487:22;3466:53;:::i;:::-;3456:63;;3412:117;3568:2;3594:53;3639:7;3630:6;3619:9;3615:22;3594:53;:::i;:::-;3584:63;;3539:118;3696:2;3722:53;3767:7;3758:6;3747:9;3743:22;3722:53;:::i;:::-;3712:63;;3667:118;3852:2;3841:9;3837:18;3824:32;3883:18;3875:6;3872:30;3869:117;;;3905:79;;:::i;:::-;3869:117;4010:62;4064:7;4055:6;4044:9;4040:22;4010:62;:::i;:::-;4000:72;;3795:287;3146:943;;;;;;;:::o;4095:468::-;4160:6;4168;4217:2;4205:9;4196:7;4192:23;4188:32;4185:119;;;4223:79;;:::i;:::-;4185:119;4343:1;4368:53;4413:7;4404:6;4393:9;4389:22;4368:53;:::i;:::-;4358:63;;4314:117;4470:2;4496:50;4538:7;4529:6;4518:9;4514:22;4496:50;:::i;:::-;4486:60;;4441:115;4095:468;;;;;:::o;4569:474::-;4637:6;4645;4694:2;4682:9;4673:7;4669:23;4665:32;4662:119;;;4700:79;;:::i;:::-;4662:119;4820:1;4845:53;4890:7;4881:6;4870:9;4866:22;4845:53;:::i;:::-;4835:63;;4791:117;4947:2;4973:53;5018:7;5009:6;4998:9;4994:22;4973:53;:::i;:::-;4963:63;;4918:118;4569:474;;;;;:::o;5049:323::-;5105:6;5154:2;5142:9;5133:7;5129:23;5125:32;5122:119;;;5160:79;;:::i;:::-;5122:119;5280:1;5305:50;5347:7;5338:6;5327:9;5323:22;5305:50;:::i;:::-;5295:60;;5251:114;5049:323;;;;:::o;5378:327::-;5436:6;5485:2;5473:9;5464:7;5460:23;5456:32;5453:119;;;5491:79;;:::i;:::-;5453:119;5611:1;5636:52;5680:7;5671:6;5660:9;5656:22;5636:52;:::i;:::-;5626:62;;5582:116;5378:327;;;;:::o;5711:349::-;5780:6;5829:2;5817:9;5808:7;5804:23;5800:32;5797:119;;;5835:79;;:::i;:::-;5797:119;5955:1;5980:63;6035:7;6026:6;6015:9;6011:22;5980:63;:::i;:::-;5970:73;;5926:127;5711:349;;;;:::o;6066:409::-;6165:6;6214:2;6202:9;6193:7;6189:23;6185:32;6182:119;;;6220:79;;:::i;:::-;6182:119;6340:1;6365:93;6450:7;6441:6;6430:9;6426:22;6365:93;:::i;:::-;6355:103;;6311:157;6066:409;;;;:::o;6481:329::-;6540:6;6589:2;6577:9;6568:7;6564:23;6560:32;6557:119;;;6595:79;;:::i;:::-;6557:119;6715:1;6740:53;6785:7;6776:6;6765:9;6761:22;6740:53;:::i;:::-;6730:63;;6686:117;6481:329;;;;:::o;6816:118::-;6903:24;6921:5;6903:24;:::i;:::-;6898:3;6891:37;6816:118;;:::o;6940:109::-;7021:21;7036:5;7021:21;:::i;:::-;7016:3;7009:34;6940:109;;:::o;7055:360::-;7141:3;7169:38;7201:5;7169:38;:::i;:::-;7223:70;7286:6;7281:3;7223:70;:::i;:::-;7216:77;;7302:52;7347:6;7342:3;7335:4;7328:5;7324:16;7302:52;:::i;:::-;7379:29;7401:6;7379:29;:::i;:::-;7374:3;7370:39;7363:46;;7145:270;7055:360;;;;:::o;7421:364::-;7509:3;7537:39;7570:5;7537:39;:::i;:::-;7592:71;7656:6;7651:3;7592:71;:::i;:::-;7585:78;;7672:52;7717:6;7712:3;7705:4;7698:5;7694:16;7672:52;:::i;:::-;7749:29;7771:6;7749:29;:::i;:::-;7744:3;7740:39;7733:46;;7513:272;7421:364;;;;:::o;7791:377::-;7897:3;7925:39;7958:5;7925:39;:::i;:::-;7980:89;8062:6;8057:3;7980:89;:::i;:::-;7973:96;;8078:52;8123:6;8118:3;8111:4;8104:5;8100:16;8078:52;:::i;:::-;8155:6;8150:3;8146:16;8139:23;;7901:267;7791:377;;;;:::o;8198:845::-;8301:3;8338:5;8332:12;8367:36;8393:9;8367:36;:::i;:::-;8419:89;8501:6;8496:3;8419:89;:::i;:::-;8412:96;;8539:1;8528:9;8524:17;8555:1;8550:137;;;;8701:1;8696:341;;;;8517:520;;8550:137;8634:4;8630:9;8619;8615:25;8610:3;8603:38;8670:6;8665:3;8661:16;8654:23;;8550:137;;8696:341;8763:38;8795:5;8763:38;:::i;:::-;8823:1;8837:154;8851:6;8848:1;8845:13;8837:154;;;8925:7;8919:14;8915:1;8910:3;8906:11;8899:35;8975:1;8966:7;8962:15;8951:26;;8873:4;8870:1;8866:12;8861:17;;8837:154;;;9020:6;9015:3;9011:16;9004:23;;8703:334;;8517:520;;8305:738;;8198:845;;;;:::o;9049:365::-;9191:3;9212:66;9276:1;9271:3;9212:66;:::i;:::-;9205:73;;9287:93;9376:3;9287:93;:::i;:::-;9405:2;9400:3;9396:12;9389:19;;9049:365;;;:::o;9420:366::-;9562:3;9583:67;9647:2;9642:3;9583:67;:::i;:::-;9576:74;;9659:93;9748:3;9659:93;:::i;:::-;9777:2;9772:3;9768:12;9761:19;;9420:366;;;:::o;9792:::-;9934:3;9955:67;10019:2;10014:3;9955:67;:::i;:::-;9948:74;;10031:93;10120:3;10031:93;:::i;:::-;10149:2;10144:3;10140:12;10133:19;;9792:366;;;:::o;10164:::-;10306:3;10327:67;10391:2;10386:3;10327:67;:::i;:::-;10320:74;;10403:93;10492:3;10403:93;:::i;:::-;10521:2;10516:3;10512:12;10505:19;;10164:366;;;:::o;10536:::-;10678:3;10699:67;10763:2;10758:3;10699:67;:::i;:::-;10692:74;;10775:93;10864:3;10775:93;:::i;:::-;10893:2;10888:3;10884:12;10877:19;;10536:366;;;:::o;10908:::-;11050:3;11071:67;11135:2;11130:3;11071:67;:::i;:::-;11064:74;;11147:93;11236:3;11147:93;:::i;:::-;11265:2;11260:3;11256:12;11249:19;;10908:366;;;:::o;11280:::-;11422:3;11443:67;11507:2;11502:3;11443:67;:::i;:::-;11436:74;;11519:93;11608:3;11519:93;:::i;:::-;11637:2;11632:3;11628:12;11621:19;;11280:366;;;:::o;11652:::-;11794:3;11815:67;11879:2;11874:3;11815:67;:::i;:::-;11808:74;;11891:93;11980:3;11891:93;:::i;:::-;12009:2;12004:3;12000:12;11993:19;;11652:366;;;:::o;12024:::-;12166:3;12187:67;12251:2;12246:3;12187:67;:::i;:::-;12180:74;;12263:93;12352:3;12263:93;:::i;:::-;12381:2;12376:3;12372:12;12365:19;;12024:366;;;:::o;12396:118::-;12483:24;12501:5;12483:24;:::i;:::-;12478:3;12471:37;12396:118;;:::o;12520:589::-;12745:3;12767:92;12855:3;12846:6;12767:92;:::i;:::-;12760:99;;12876:95;12967:3;12958:6;12876:95;:::i;:::-;12869:102;;12988:95;13079:3;13070:6;12988:95;:::i;:::-;12981:102;;13100:3;13093:10;;12520:589;;;;;;:::o;13115:222::-;13208:4;13246:2;13235:9;13231:18;13223:26;;13259:71;13327:1;13316:9;13312:17;13303:6;13259:71;:::i;:::-;13115:222;;;;:::o;13343:640::-;13538:4;13576:3;13565:9;13561:19;13553:27;;13590:71;13658:1;13647:9;13643:17;13634:6;13590:71;:::i;:::-;13671:72;13739:2;13728:9;13724:18;13715:6;13671:72;:::i;:::-;13753;13821:2;13810:9;13806:18;13797:6;13753:72;:::i;:::-;13872:9;13866:4;13862:20;13857:2;13846:9;13842:18;13835:48;13900:76;13971:4;13962:6;13900:76;:::i;:::-;13892:84;;13343:640;;;;;;;:::o;13989:210::-;14076:4;14114:2;14103:9;14099:18;14091:26;;14127:65;14189:1;14178:9;14174:17;14165:6;14127:65;:::i;:::-;13989:210;;;;:::o;14205:313::-;14318:4;14356:2;14345:9;14341:18;14333:26;;14405:9;14399:4;14395:20;14391:1;14380:9;14376:17;14369:47;14433:78;14506:4;14497:6;14433:78;:::i;:::-;14425:86;;14205:313;;;;:::o;14524:419::-;14690:4;14728:2;14717:9;14713:18;14705:26;;14777:9;14771:4;14767:20;14763:1;14752:9;14748:17;14741:47;14805:131;14931:4;14805:131;:::i;:::-;14797:139;;14524:419;;;:::o;14949:::-;15115:4;15153:2;15142:9;15138:18;15130:26;;15202:9;15196:4;15192:20;15188:1;15177:9;15173:17;15166:47;15230:131;15356:4;15230:131;:::i;:::-;15222:139;;14949:419;;;:::o;15374:::-;15540:4;15578:2;15567:9;15563:18;15555:26;;15627:9;15621:4;15617:20;15613:1;15602:9;15598:17;15591:47;15655:131;15781:4;15655:131;:::i;:::-;15647:139;;15374:419;;;:::o;15799:::-;15965:4;16003:2;15992:9;15988:18;15980:26;;16052:9;16046:4;16042:20;16038:1;16027:9;16023:17;16016:47;16080:131;16206:4;16080:131;:::i;:::-;16072:139;;15799:419;;;:::o;16224:::-;16390:4;16428:2;16417:9;16413:18;16405:26;;16477:9;16471:4;16467:20;16463:1;16452:9;16448:17;16441:47;16505:131;16631:4;16505:131;:::i;:::-;16497:139;;16224:419;;;:::o;16649:::-;16815:4;16853:2;16842:9;16838:18;16830:26;;16902:9;16896:4;16892:20;16888:1;16877:9;16873:17;16866:47;16930:131;17056:4;16930:131;:::i;:::-;16922:139;;16649:419;;;:::o;17074:::-;17240:4;17278:2;17267:9;17263:18;17255:26;;17327:9;17321:4;17317:20;17313:1;17302:9;17298:17;17291:47;17355:131;17481:4;17355:131;:::i;:::-;17347:139;;17074:419;;;:::o;17499:::-;17665:4;17703:2;17692:9;17688:18;17680:26;;17752:9;17746:4;17742:20;17738:1;17727:9;17723:17;17716:47;17780:131;17906:4;17780:131;:::i;:::-;17772:139;;17499:419;;;:::o;17924:::-;18090:4;18128:2;18117:9;18113:18;18105:26;;18177:9;18171:4;18167:20;18163:1;18152:9;18148:17;18141:47;18205:131;18331:4;18205:131;:::i;:::-;18197:139;;17924:419;;;:::o;18349:222::-;18442:4;18480:2;18469:9;18465:18;18457:26;;18493:71;18561:1;18550:9;18546:17;18537:6;18493:71;:::i;:::-;18349:222;;;;:::o;18577:129::-;18611:6;18638:20;;:::i;:::-;18628:30;;18667:33;18695:4;18687:6;18667:33;:::i;:::-;18577:129;;;:::o;18712:75::-;18745:6;18778:2;18772:9;18762:19;;18712:75;:::o;18793:307::-;18854:4;18944:18;18936:6;18933:30;18930:56;;;18966:18;;:::i;:::-;18930:56;19004:29;19026:6;19004:29;:::i;:::-;18996:37;;19088:4;19082;19078:15;19070:23;;18793:307;;;:::o;19106:141::-;19155:4;19178:3;19170:11;;19201:3;19198:1;19191:14;19235:4;19232:1;19222:18;19214:26;;19106:141;;;:::o;19253:98::-;19304:6;19338:5;19332:12;19322:22;;19253:98;;;:::o;19357:99::-;19409:6;19443:5;19437:12;19427:22;;19357:99;;;:::o;19462:168::-;19545:11;19579:6;19574:3;19567:19;19619:4;19614:3;19610:14;19595:29;;19462:168;;;;:::o;19636:169::-;19720:11;19754:6;19749:3;19742:19;19794:4;19789:3;19785:14;19770:29;;19636:169;;;;:::o;19811:148::-;19913:11;19950:3;19935:18;;19811:148;;;;:::o;19965:305::-;20005:3;20024:20;20042:1;20024:20;:::i;:::-;20019:25;;20058:20;20076:1;20058:20;:::i;:::-;20053:25;;20212:1;20144:66;20140:74;20137:1;20134:81;20131:107;;;20218:18;;:::i;:::-;20131:107;20262:1;20259;20255:9;20248:16;;19965:305;;;;:::o;20276:185::-;20316:1;20333:20;20351:1;20333:20;:::i;:::-;20328:25;;20367:20;20385:1;20367:20;:::i;:::-;20362:25;;20406:1;20396:35;;20411:18;;:::i;:::-;20396:35;20453:1;20450;20446:9;20441:14;;20276:185;;;;:::o;20467:348::-;20507:7;20530:20;20548:1;20530:20;:::i;:::-;20525:25;;20564:20;20582:1;20564:20;:::i;:::-;20559:25;;20752:1;20684:66;20680:74;20677:1;20674:81;20669:1;20662:9;20655:17;20651:105;20648:131;;;20759:18;;:::i;:::-;20648:131;20807:1;20804;20800:9;20789:20;;20467:348;;;;:::o;20821:191::-;20861:4;20881:20;20899:1;20881:20;:::i;:::-;20876:25;;20915:20;20933:1;20915:20;:::i;:::-;20910:25;;20954:1;20951;20948:8;20945:34;;;20959:18;;:::i;:::-;20945:34;21004:1;21001;20997:9;20989:17;;20821:191;;;;:::o;21018:96::-;21055:7;21084:24;21102:5;21084:24;:::i;:::-;21073:35;;21018:96;;;:::o;21120:90::-;21154:7;21197:5;21190:13;21183:21;21172:32;;21120:90;;;:::o;21216:149::-;21252:7;21292:66;21285:5;21281:78;21270:89;;21216:149;;;:::o;21371:125::-;21437:7;21466:24;21484:5;21466:24;:::i;:::-;21455:35;;21371:125;;;:::o;21502:126::-;21539:7;21579:42;21572:5;21568:54;21557:65;;21502:126;;;:::o;21634:77::-;21671:7;21700:5;21689:16;;21634:77;;;:::o;21717:154::-;21801:6;21796:3;21791;21778:30;21863:1;21854:6;21849:3;21845:16;21838:27;21717:154;;;:::o;21877:307::-;21945:1;21955:113;21969:6;21966:1;21963:13;21955:113;;;22054:1;22049:3;22045:11;22039:18;22035:1;22030:3;22026:11;22019:39;21991:2;21988:1;21984:10;21979:15;;21955:113;;;22086:6;22083:1;22080:13;22077:101;;;22166:1;22157:6;22152:3;22148:16;22141:27;22077:101;21926:258;21877:307;;;:::o;22190:320::-;22234:6;22271:1;22265:4;22261:12;22251:22;;22318:1;22312:4;22308:12;22339:18;22329:81;;22395:4;22387:6;22383:17;22373:27;;22329:81;22457:2;22449:6;22446:14;22426:18;22423:38;22420:84;;;22476:18;;:::i;:::-;22420:84;22241:269;22190:320;;;:::o;22516:281::-;22599:27;22621:4;22599:27;:::i;:::-;22591:6;22587:40;22729:6;22717:10;22714:22;22693:18;22681:10;22678:34;22675:62;22672:88;;;22740:18;;:::i;:::-;22672:88;22780:10;22776:2;22769:22;22559:238;22516:281;;:::o;22803:233::-;22842:3;22865:24;22883:5;22865:24;:::i;:::-;22856:33;;22911:66;22904:5;22901:77;22898:103;;;22981:18;;:::i;:::-;22898:103;23028:1;23021:5;23017:13;23010:20;;22803:233;;;:::o;23042:176::-;23074:1;23091:20;23109:1;23091:20;:::i;:::-;23086:25;;23125:20;23143:1;23125:20;:::i;:::-;23120:25;;23164:1;23154:35;;23169:18;;:::i;:::-;23154:35;23210:1;23207;23203:9;23198:14;;23042:176;;;;:::o;23224:180::-;23272:77;23269:1;23262:88;23369:4;23366:1;23359:15;23393:4;23390:1;23383:15;23410:180;23458:77;23455:1;23448:88;23555:4;23552:1;23545:15;23579:4;23576:1;23569:15;23596:180;23644:77;23641:1;23634:88;23741:4;23738:1;23731:15;23765:4;23762:1;23755:15;23782:180;23830:77;23827:1;23820:88;23927:4;23924:1;23917:15;23951:4;23948:1;23941:15;23968:180;24016:77;24013:1;24006:88;24113:4;24110:1;24103:15;24137:4;24134:1;24127:15;24154:117;24263:1;24260;24253:12;24277:117;24386:1;24383;24376:12;24400:117;24509:1;24506;24499:12;24523:117;24632:1;24629;24622:12;24646:102;24687:6;24738:2;24734:7;24729:2;24722:5;24718:14;24714:28;24704:38;;24646:102;;;:::o;24754:156::-;24894:8;24890:1;24882:6;24878:14;24871:32;24754:156;:::o;24916:181::-;25056:33;25052:1;25044:6;25040:14;25033:57;24916:181;:::o;25103:225::-;25243:34;25239:1;25231:6;25227:14;25220:58;25312:8;25307:2;25299:6;25295:15;25288:33;25103:225;:::o;25334:168::-;25474:20;25470:1;25462:6;25458:14;25451:44;25334:168;:::o;25508:172::-;25648:24;25644:1;25636:6;25632:14;25625:48;25508:172;:::o;25686:168::-;25826:20;25822:1;25814:6;25810:14;25803:44;25686:168;:::o;25860:182::-;26000:34;25996:1;25988:6;25984:14;25977:58;25860:182;:::o;26048:169::-;26188:21;26184:1;26176:6;26172:14;26165:45;26048:169;:::o;26223:171::-;26363:23;26359:1;26351:6;26347:14;26340:47;26223:171;:::o;26400:122::-;26473:24;26491:5;26473:24;:::i;:::-;26466:5;26463:35;26453:63;;26512:1;26509;26502:12;26453:63;26400:122;:::o;26528:116::-;26598:21;26613:5;26598:21;:::i;:::-;26591:5;26588:32;26578:60;;26634:1;26631;26624:12;26578:60;26528:116;:::o;26650:120::-;26722:23;26739:5;26722:23;:::i;:::-;26715:5;26712:34;26702:62;;26760:1;26757;26750:12;26702:62;26650:120;:::o;26776:180::-;26878:53;26925:5;26878:53;:::i;:::-;26871:5;26868:64;26858:92;;26946:1;26943;26936:12;26858:92;26776:180;:::o;26962:122::-;27035:24;27053:5;27035:24;:::i;:::-;27028:5;27025:35;27015:63;;27074:1;27071;27064:12;27015:63;26962:122;:::o

Swarm Source

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