Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
2,223 NTP
Holders
1,013
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 NTPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NeoTokyoPunks
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-23 */ //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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 v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/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 v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/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: contracts/ERC721A.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 1; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } abstract contract MerkleProof { bytes32 internal _merkleRoot; function _setMerkleRoot(bytes32 merkleRoot_) internal virtual { _merkleRoot = merkleRoot_; } function isWhitelisted(address address_, bytes32[] memory proof_) public view returns (bool) { bytes32 _leaf = keccak256(abi.encodePacked(address_)); for (uint256 i = 0; i < proof_.length; i++) { _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf)); } return _leaf == _merkleRoot; } } /* * @@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ * @@@ @@@ @@@ @@@ @@@@@ * @@@@ @@@ @@@ @@@ @@@@ * @@@@@ @@@ @@@ @@@ @@@@ * @@@@@@ @@@ @@@ @@@ @@@@ * @@@ @@@ @@@ @@@ @@@ @@@@ * @ @@@ @@@ @@@ @@@ @@@ @@@@ * @@ @@@ @@@ @@@ @@@ @@@ * @@@ @@@ @@@@@@ @@@ @@@ * @@@ @@@ @@@@@ @@@ @@@ * @@@@ @@@ @@@@ @@@ @@@ * @@@@@@@@@@@@@@ @@@ @@@ @@@ * @@@@@@@@@@@@@@@@@@ @@ @@@ @@@ ネオ東京パンクス */ pragma solidity ^0.8.7; contract NeoTokyoPunks is ERC721A, Ownable, ReentrancyGuard, MerkleProof { uint256 public numberOfToken; uint256 public wlmintPrice = 0.03 ether; uint256 public mintPrice = 0.05 ether; uint256 private maxMintsPerWL = 5; uint256 private maxMintsPerPS = 10; uint256 private _totalSupply = 2222; string private _baseTokenURI; string private revealUri; bool public whitelistSaleEnabled = false; bool public publicSaleEnabled = false; bool public revealed = false; mapping(address => uint256) public wlMinted; mapping(address => uint256) public psMinted; constructor () ERC721A ("NeoTokyoPunks","NTP", maxMintsPerPS, _totalSupply) { numberOfToken = 0; sethiddenBaseURI("ipfs://QmTBqhscXTw7p5ZoA6tuwKivqbUJkNRcL4MWceS6cJedkK/ntp.json"); } function ownerMint(uint256 _amount, address _address) public onlyOwner { require((_amount + numberOfToken) <= (_totalSupply), "No more NFTs"); _safeMint(_address, _amount); numberOfToken += _amount; } function whitelistMint(uint256 _amount, bytes32[] memory proof_) external payable nonReentrant { require(whitelistSaleEnabled, "whitelistMint: Paused"); require(isWhitelisted(msg.sender, proof_), "You are not whitelisted!"); require(maxMintsPerWL >= _amount, "whitelistMint: 5 max per tx"); require(maxMintsPerWL >= wlMinted[msg.sender] + _amount, "You have no whitelistMint left"); require(msg.value == wlmintPrice * _amount, "Value sent is not correct"); require((_amount + numberOfToken) <= (_totalSupply), "No more NFTs"); wlMinted[msg.sender] += _amount; _safeMint(msg.sender, _amount); numberOfToken += _amount; } function publicMint(uint256 _amount) public payable nonReentrant { require(publicSaleEnabled, "publicMint: Paused"); require(maxMintsPerPS >= _amount, "publicMint: 10 maxper tx"); require(maxMintsPerPS >= psMinted[msg.sender] + _amount, "You have no publicMint left"); require(msg.value == mintPrice * _amount, "Value sent is not correct"); require((_amount + numberOfToken) <= (_totalSupply), "No more NFTs"); psMinted[msg.sender] += _amount; _safeMint(msg.sender, _amount); numberOfToken += _amount; } function setwlPrice(uint256 newPrice) external onlyOwner { wlmintPrice = newPrice; } function setPrice(uint256 newPrice) external onlyOwner { mintPrice = newPrice; } function setreveal(bool bool_) external onlyOwner { revealed = bool_; } function setWhitelistSale(bool bool_) external onlyOwner { whitelistSaleEnabled = bool_; } function setPublicSale(bool bool_) external onlyOwner { publicSaleEnabled = bool_; } function setMerkleRoot(bytes32 merkleRoot_) external onlyOwner { _setMerkleRoot(merkleRoot_); } function sethiddenBaseURI(string memory uri_) public onlyOwner { revealUri = uri_; } function setBaseURI(string memory uri_) public onlyOwner { _baseTokenURI = uri_; } function currentBaseURI() private view returns (string memory){ return _baseTokenURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(revealed == false) { return revealUri; } return string(abi.encodePacked(currentBaseURI(), Strings.toString(tokenId), ".json")); } function withdraw() public onlyOwner { uint256 sendAmount = address(this).balance; address aa = payable(0x1F8b98db321aB2816b517bbEEF905BB06473112C); address bb = payable(0xc5Ca5711b83547e460CB5E94AF2cfBA69f8B1799); bool success; (success, ) = aa.call{value: (sendAmount * 750/1000)}(""); require(success, "Failed to withdraw Ether"); (success, ) = bb.call{value: (sendAmount * 250/1000)}(""); require(success, "Failed to withdraw Ether"); } function walletOfOwner(address _address) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_address); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_address, i); } return tokenIds; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[{"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":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","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":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"psMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"sethiddenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setreveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setwlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"address","name":"_address","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wlMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlmintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c060405260016000908155600755666a94d74f430000600c5566b1a2bc2ec50000600d556005600e55600a600f556108ae6010556013805462ffffff191690553480156200004d57600080fd5b506040518060400160405280600d81526020016c4e656f546f6b796f50756e6b7360981b8152506040518060400160405280600381526020016204e54560ec1b815250600f5460105460008111620001035760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001655760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000fa565b83516200017a906001906020870190620002a4565b50825162000190906002906020860190620002a4565b5060a09190915260805250620001a8905033620001dd565b60016009556000600b556040805160608101909152603e808252620001d791906200317060208301396200022f565b62000387565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200028b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620000fa565b8051620002a0906012906020840190620002a4565b5050565b828054620002b2906200034a565b90600052602060002090601f016020900481019282620002d6576000855562000321565b82601f10620002f157805160ff191683800117855562000321565b8280016001018555821562000321579182015b828111156200032157825182559160200191906001019062000304565b506200032f92915062000333565b5090565b5b808211156200032f576000815560010162000334565b600181811c908216806200035f57607f821691505b602082108114156200038157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612db8620003b860003960008181611f1a01528181611f44015261236a015260005050612db86000f3fe6080604052600436106102515760003560e01c80636817c76c11610139578063a22cb465116100b6578063d2cab0561161007a578063d2cab056146106e2578063d52c57e0146106f5578063d7224ba014610715578063e985e9c51461072b578063f2fde38b14610774578063fd0af9611461079457600080fd5b8063a22cb4651461064c578063b88d4fde1461066c578063bf1f577b1461068c578063c87b56dd146106a2578063ca7ce3ec146106c257600080fd5b80638da5cb5b116100fd5780638da5cb5b146105ac57806391b7f5ed146105ca578063942958f4146105ea57806395d89b4114610617578063a08c008b1461062c57600080fd5b80636817c76c1461051457806370a082311461052a578063715018a61461054a57806378a923801461055f5780637cb647591461058c57600080fd5b80632f5d8cad116101d25780634f6ccce7116101965780634f6ccce714610454578063518302271461047457806355f804b3146104945780635a23dd99146104b45780635aca1bb6146104d45780636352211e146104f457600080fd5b80632f5d8cad146103b25780632f745c59146103d25780633ccfd60b146103f257806342842e0e14610407578063438b63001461042757600080fd5b80630e13a7c0116102195780630e13a7c01461032157806318160ddd1461034157806323b872dd146103605780632ab91bba146103805780632db115441461039f57600080fd5b806301ffc9a7146102565780630694d6c51461028b57806306fdde03146102a5578063081812fc146102c7578063095ea7b3146102ff575b600080fd5b34801561026257600080fd5b50610276610271366004612900565b6107aa565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506013546102769060ff1681565b3480156102b157600080fd5b506102ba610817565b6040516102829190612ac1565b3480156102d357600080fd5b506102e76102e23660046128e7565b6108a9565b6040516001600160a01b039091168152602001610282565b34801561030b57600080fd5b5061031f61031a3660046128a2565b610939565b005b34801561032d57600080fd5b5061031f61033c3660046128e7565b610a51565b34801561034d57600080fd5b506000545b604051908152602001610282565b34801561036c57600080fd5b5061031f61037b366004612774565b610a80565b34801561038c57600080fd5b5060135461027690610100900460ff1681565b61031f6103ad3660046128e7565b610a8b565b3480156103be57600080fd5b5061031f6103cd3660046128cc565b610cc1565b3480156103de57600080fd5b506103526103ed3660046128a2565b610d07565b3480156103fe57600080fd5b5061031f610e74565b34801561041357600080fd5b5061031f610422366004612774565b61102b565b34801561043357600080fd5b5061044761044236600461271f565b611046565b6040516102829190612a7d565b34801561046057600080fd5b5061035261046f3660046128e7565b6110e7565b34801561048057600080fd5b506013546102769062010000900460ff1681565b3480156104a057600080fd5b5061031f6104af36600461293a565b611149565b3480156104c057600080fd5b506102766104cf36600461282b565b61118a565b3480156104e057600080fd5b5061031f6104ef3660046128cc565b6112ae565b34801561050057600080fd5b506102e761050f3660046128e7565b6112f2565b34801561052057600080fd5b50610352600d5481565b34801561053657600080fd5b5061035261054536600461271f565b611304565b34801561055657600080fd5b5061031f611395565b34801561056b57600080fd5b5061035261057a36600461271f565b60146020526000908152604090205481565b34801561059857600080fd5b5061031f6105a73660046128e7565b6113cb565b3480156105b857600080fd5b506008546001600160a01b03166102e7565b3480156105d657600080fd5b5061031f6105e53660046128e7565b611401565b3480156105f657600080fd5b5061035261060536600461271f565b60156020526000908152604090205481565b34801561062357600080fd5b506102ba611430565b34801561063857600080fd5b5061031f61064736600461293a565b61143f565b34801561065857600080fd5b5061031f610667366004612878565b61147c565b34801561067857600080fd5b5061031f6106873660046127b0565b611541565b34801561069857600080fd5b50610352600b5481565b3480156106ae57600080fd5b506102ba6106bd3660046128e7565b611574565b3480156106ce57600080fd5b5061031f6106dd3660046128cc565b6116bf565b61031f6106f03660046129a5565b6116fc565b34801561070157600080fd5b5061031f610710366004612982565b611987565b34801561072157600080fd5b5061035260075481565b34801561073757600080fd5b50610276610746366004612741565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078057600080fd5b5061031f61078f36600461271f565b611a04565b3480156107a057600080fd5b50610352600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107db57506001600160e01b03198216635b5e139f60e01b145b806107f657506001600160e01b0319821663780e9d6360e01b145b8061081157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461082690612caa565b80601f016020809104026020016040519081016040528092919081815260200182805461085290612caa565b801561089f5780601f106108745761010080835404028352916020019161089f565b820191906000526020600020905b81548152906001019060200180831161088257829003601f168201915b5050505050905090565b60006108b6826000541190565b61091d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610944826112f2565b9050806001600160a01b0316836001600160a01b031614156109b35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610914565b336001600160a01b03821614806109cf57506109cf8133610746565b610a415760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610914565b610a4c838383611a9c565b505050565b6008546001600160a01b03163314610a7b5760405162461bcd60e51b815260040161091490612ad4565b600c55565b610a4c838383611af8565b60026009541415610ade5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610914565b6002600955601354610100900460ff16610b2f5760405162461bcd60e51b81526020600482015260126024820152711c1d589b1a58d35a5b9d0e8814185d5cd95960721b6044820152606401610914565b80600f541015610b815760405162461bcd60e51b815260206004820152601860248201527f7075626c69634d696e743a203130206d617870657220747800000000000000006044820152606401610914565b33600090815260156020526040902054610b9c908290612bdd565b600f541015610bed5760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c65667400000000006044820152606401610914565b80600d54610bfb9190612c09565b3414610c455760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610914565b601054600b54610c559083612bdd565b1115610c735760405162461bcd60e51b815260040161091490612b09565b3360009081526015602052604081208054839290610c92908490612bdd565b90915550610ca290503382611e7e565b80600b6000828254610cb49190612bdd565b9091555050600160095550565b6008546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161091490612ad4565b60138054911515620100000262ff000019909216919091179055565b6000610d1283611304565b8210610d6b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610914565b600080549080805b83811015610e14576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610dc557805192505b876001600160a01b0316836001600160a01b03161415610e015786841415610df35750935061081192505050565b83610dfd81612ce5565b9450505b5080610e0c81612ce5565b915050610d73565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610914565b6008546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161091490612ad4565b47731f8b98db321ab2816b517bbeef905bb06473112c73c5ca5711b83547e460cb5e94af2cfba69f8b17996000826103e8610edb866102ee612c09565b610ee59190612bf5565b604051600081818185875af1925050503d8060008114610f21576040519150601f19603f3d011682016040523d82523d6000602084013e610f26565b606091505b50508091505080610f745760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610914565b6001600160a01b0382166103e8610f8c8660fa612c09565b610f969190612bf5565b604051600081818185875af1925050503d8060008114610fd2576040519150601f19603f3d011682016040523d82523d6000602084013e610fd7565b606091505b505080915050806110255760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610914565b50505050565b610a4c83838360405180602001604052806000815250611541565b6060600061105383611304565b90506000816001600160401b0381111561106f5761106f612d56565b604051908082528060200260200182016040528015611098578160200160208202803683370190505b50905060005b828110156110df576110b08582610d07565b8282815181106110c2576110c2612d40565b6020908102919091010152806110d781612ce5565b91505061109e565b509392505050565b6000805482106111455760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610914565b5090565b6008546001600160a01b031633146111735760405162461bcd60e51b815260040161091490612ad4565b8051611186906011906020840190612587565b5050565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b83518110156112a2578381815181106111e4576111e4612d40565b602002602001015182106112425783818151811061120457611204612d40565b602002602001015182604051602001611227929190918252602082015260400190565b6040516020818303038152906040528051906020012061128e565b8184828151811061125557611255612d40565b6020026020010151604051602001611277929190918252602082015260400190565b604051602081830303815290604052805190602001205b91508061129a81612ce5565b9150506111c9565b50600a54149392505050565b6008546001600160a01b031633146112d85760405162461bcd60e51b815260040161091490612ad4565b601380549115156101000261ff0019909216919091179055565b60006112fd82611e98565b5192915050565b60006001600160a01b0382166113705760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610914565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146113bf5760405162461bcd60e51b815260040161091490612ad4565b6113c96000612041565b565b6008546001600160a01b031633146113f55760405162461bcd60e51b815260040161091490612ad4565b6113fe81600a55565b50565b6008546001600160a01b0316331461142b5760405162461bcd60e51b815260040161091490612ad4565b600d55565b60606002805461082690612caa565b6008546001600160a01b031633146114695760405162461bcd60e51b815260040161091490612ad4565b8051611186906012906020840190612587565b6001600160a01b0382163314156114d55760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610914565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61154c848484611af8565b61155884848484612093565b6110255760405162461bcd60e51b815260040161091490612b2f565b6060611581826000541190565b6115e55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610914565b60135462010000900460ff16611687576012805461160290612caa565b80601f016020809104026020016040519081016040528092919081815260200182805461162e90612caa565b801561167b5780601f106116505761010080835404028352916020019161167b565b820191906000526020600020905b81548152906001019060200180831161165e57829003601f168201915b50505050509050919050565b61168f6121a1565b611698836121b0565b6040516020016116a9929190612a01565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146116e95760405162461bcd60e51b815260040161091490612ad4565b6013805460ff1916911515919091179055565b6002600954141561174f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610914565b600260095560135460ff1661179e5760405162461bcd60e51b81526020600482015260156024820152741dda1a5d195b1a5cdd135a5b9d0e8814185d5cd959605a1b6044820152606401610914565b6117a8338261118a565b6117f45760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642100000000000000006044820152606401610914565b81600e5410156118465760405162461bcd60e51b815260206004820152601b60248201527f77686974656c6973744d696e743a2035206d61782070657220747800000000006044820152606401610914565b33600090815260146020526040902054611861908390612bdd565b600e5410156118b25760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401610914565b81600c546118c09190612c09565b341461190a5760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610914565b601054600b5461191a9084612bdd565b11156119385760405162461bcd60e51b815260040161091490612b09565b3360009081526014602052604081208054849290611957908490612bdd565b9091555061196790503383611e7e565b81600b60008282546119799190612bdd565b909155505060016009555050565b6008546001600160a01b031633146119b15760405162461bcd60e51b815260040161091490612ad4565b601054600b546119c19084612bdd565b11156119df5760405162461bcd60e51b815260040161091490612b09565b6119e98183611e7e565b81600b60008282546119fb9190612bdd565b90915550505050565b6008546001600160a01b03163314611a2e5760405162461bcd60e51b815260040161091490612ad4565b6001600160a01b038116611a935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610914565b6113fe81612041565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b0382611e98565b80519091506000906001600160a01b0316336001600160a01b03161480611b3a575033611b2f846108a9565b6001600160a01b0316145b80611b4c57508151611b4c9033610746565b905080611bb65760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610914565b846001600160a01b031682600001516001600160a01b031614611c2a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610914565b6001600160a01b038416611c8e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610914565b611c9e6000848460000151611a9c565b6001600160a01b0385166000908152600460205260408120805460019290611cd09084906001600160801b0316612c28565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611d1c91859116612bb2565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611da3846001612bdd565b6000818152600360205260409020549091506001600160a01b0316611e3457611dcd816000541190565b15611e345760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6111868282604051806020016040528060008152506122ad565b6040805180820190915260008082526020820152611eb7826000541190565b611f165760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610914565b60007f00000000000000000000000000000000000000000000000000000000000000008310611f7757611f697f000000000000000000000000000000000000000000000000000000000000000084612c50565b611f74906001612bdd565b90505b825b818110611fe0576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611fcd57949350505050565b5080611fd881612c93565b915050611f79565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610914565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561219557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120d7903390899088908890600401612a40565b602060405180830381600087803b1580156120f157600080fd5b505af1925050508015612121575060408051601f3d908101601f1916820190925261211e9181019061291d565b60015b61217b573d80801561214f576040519150601f19603f3d011682016040523d82523d6000602084013e612154565b606091505b5080516121735760405162461bcd60e51b815260040161091490612b2f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612199565b5060015b949350505050565b60606011805461082690612caa565b6060816121d45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121fe57806121e881612ce5565b91506121f79050600a83612bf5565b91506121d8565b6000816001600160401b0381111561221857612218612d56565b6040519080825280601f01601f191660200182016040528015612242576020820181803683370190505b5090505b841561219957612257600183612c50565b9150612264600a86612d00565b61226f906030612bdd565b60f81b81838151811061228457612284612d40565b60200101906001600160f81b031916908160001a9053506122a6600a86612bf5565b9450612246565b6000546001600160a01b0384166123105760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610914565b61231b816000541190565b156123685760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610914565b7f00000000000000000000000000000000000000000000000000000000000000008311156123e35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610914565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061243f908790612bb2565b6001600160801b0316815260200185836020015161245d9190612bb2565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561257c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125406000888488612093565b61255c5760405162461bcd60e51b815260040161091490612b2f565b8161256681612ce5565b925050808061257490612ce5565b9150506124f3565b506000819055611e76565b82805461259390612caa565b90600052602060002090601f0160209004810192826125b557600085556125fb565b82601f106125ce57805160ff19168380011785556125fb565b828001600101855582156125fb579182015b828111156125fb5782518255916020019190600101906125e0565b506111459291505b808211156111455760008155600101612603565b60006001600160401b0383111561263057612630612d56565b612643601f8401601f1916602001612b82565b905082815283838301111561265757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461268557600080fd5b919050565b600082601f83011261269b57600080fd5b813560206001600160401b038211156126b6576126b6612d56565b8160051b6126c5828201612b82565b8381528281019086840183880185018910156126e057600080fd5b600093505b858410156127035780358352600193909301929184019184016126e5565b50979650505050505050565b8035801515811461268557600080fd5b60006020828403121561273157600080fd5b61273a8261266e565b9392505050565b6000806040838503121561275457600080fd5b61275d8361266e565b915061276b6020840161266e565b90509250929050565b60008060006060848603121561278957600080fd5b6127928461266e565b92506127a06020850161266e565b9150604084013590509250925092565b600080600080608085870312156127c657600080fd5b6127cf8561266e565b93506127dd6020860161266e565b92506040850135915060608501356001600160401b038111156127ff57600080fd5b8501601f8101871361281057600080fd5b61281f87823560208401612617565b91505092959194509250565b6000806040838503121561283e57600080fd5b6128478361266e565b915060208301356001600160401b0381111561286257600080fd5b61286e8582860161268a565b9150509250929050565b6000806040838503121561288b57600080fd5b6128948361266e565b915061276b6020840161270f565b600080604083850312156128b557600080fd5b6128be8361266e565b946020939093013593505050565b6000602082840312156128de57600080fd5b61273a8261270f565b6000602082840312156128f957600080fd5b5035919050565b60006020828403121561291257600080fd5b813561273a81612d6c565b60006020828403121561292f57600080fd5b815161273a81612d6c565b60006020828403121561294c57600080fd5b81356001600160401b0381111561296257600080fd5b8201601f8101841361297357600080fd5b61219984823560208401612617565b6000806040838503121561299557600080fd5b8235915061276b6020840161266e565b600080604083850312156129b857600080fd5b8235915060208301356001600160401b0381111561286257600080fd5b600081518084526129ed816020860160208601612c67565b601f01601f19169290920160200192915050565b60008351612a13818460208801612c67565b835190830190612a27818360208801612c67565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a73908301846129d5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ab557835183529284019291840191600101612a99565b50909695505050505050565b60208152600061273a60208301846129d5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612baa57612baa612d56565b604052919050565b60006001600160801b03808316818516808303821115612bd457612bd4612d14565b01949350505050565b60008219821115612bf057612bf0612d14565b500190565b600082612c0457612c04612d2a565b500490565b6000816000190483118215151615612c2357612c23612d14565b500290565b60006001600160801b0383811690831681811015612c4857612c48612d14565b039392505050565b600082821015612c6257612c62612d14565b500390565b60005b83811015612c82578181015183820152602001612c6a565b838111156110255750506000910152565b600081612ca257612ca2612d14565b506000190190565b600181811c90821680612cbe57607f821691505b60208210811415612cdf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cf957612cf9612d14565b5060010190565b600082612d0f57612d0f612d2a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113fe57600080fdfea2646970667358221220e9272cccbb21e02e3113834d3989470fe2c3ab1a765b80b6080abb1ca59746d264736f6c63430008070033697066733a2f2f516d5442716873635854773770355a6f41367475774b69767162554a6b4e52634c344d5763655336634a65646b4b2f6e74702e6a736f6e
Deployed Bytecode
0x6080604052600436106102515760003560e01c80636817c76c11610139578063a22cb465116100b6578063d2cab0561161007a578063d2cab056146106e2578063d52c57e0146106f5578063d7224ba014610715578063e985e9c51461072b578063f2fde38b14610774578063fd0af9611461079457600080fd5b8063a22cb4651461064c578063b88d4fde1461066c578063bf1f577b1461068c578063c87b56dd146106a2578063ca7ce3ec146106c257600080fd5b80638da5cb5b116100fd5780638da5cb5b146105ac57806391b7f5ed146105ca578063942958f4146105ea57806395d89b4114610617578063a08c008b1461062c57600080fd5b80636817c76c1461051457806370a082311461052a578063715018a61461054a57806378a923801461055f5780637cb647591461058c57600080fd5b80632f5d8cad116101d25780634f6ccce7116101965780634f6ccce714610454578063518302271461047457806355f804b3146104945780635a23dd99146104b45780635aca1bb6146104d45780636352211e146104f457600080fd5b80632f5d8cad146103b25780632f745c59146103d25780633ccfd60b146103f257806342842e0e14610407578063438b63001461042757600080fd5b80630e13a7c0116102195780630e13a7c01461032157806318160ddd1461034157806323b872dd146103605780632ab91bba146103805780632db115441461039f57600080fd5b806301ffc9a7146102565780630694d6c51461028b57806306fdde03146102a5578063081812fc146102c7578063095ea7b3146102ff575b600080fd5b34801561026257600080fd5b50610276610271366004612900565b6107aa565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506013546102769060ff1681565b3480156102b157600080fd5b506102ba610817565b6040516102829190612ac1565b3480156102d357600080fd5b506102e76102e23660046128e7565b6108a9565b6040516001600160a01b039091168152602001610282565b34801561030b57600080fd5b5061031f61031a3660046128a2565b610939565b005b34801561032d57600080fd5b5061031f61033c3660046128e7565b610a51565b34801561034d57600080fd5b506000545b604051908152602001610282565b34801561036c57600080fd5b5061031f61037b366004612774565b610a80565b34801561038c57600080fd5b5060135461027690610100900460ff1681565b61031f6103ad3660046128e7565b610a8b565b3480156103be57600080fd5b5061031f6103cd3660046128cc565b610cc1565b3480156103de57600080fd5b506103526103ed3660046128a2565b610d07565b3480156103fe57600080fd5b5061031f610e74565b34801561041357600080fd5b5061031f610422366004612774565b61102b565b34801561043357600080fd5b5061044761044236600461271f565b611046565b6040516102829190612a7d565b34801561046057600080fd5b5061035261046f3660046128e7565b6110e7565b34801561048057600080fd5b506013546102769062010000900460ff1681565b3480156104a057600080fd5b5061031f6104af36600461293a565b611149565b3480156104c057600080fd5b506102766104cf36600461282b565b61118a565b3480156104e057600080fd5b5061031f6104ef3660046128cc565b6112ae565b34801561050057600080fd5b506102e761050f3660046128e7565b6112f2565b34801561052057600080fd5b50610352600d5481565b34801561053657600080fd5b5061035261054536600461271f565b611304565b34801561055657600080fd5b5061031f611395565b34801561056b57600080fd5b5061035261057a36600461271f565b60146020526000908152604090205481565b34801561059857600080fd5b5061031f6105a73660046128e7565b6113cb565b3480156105b857600080fd5b506008546001600160a01b03166102e7565b3480156105d657600080fd5b5061031f6105e53660046128e7565b611401565b3480156105f657600080fd5b5061035261060536600461271f565b60156020526000908152604090205481565b34801561062357600080fd5b506102ba611430565b34801561063857600080fd5b5061031f61064736600461293a565b61143f565b34801561065857600080fd5b5061031f610667366004612878565b61147c565b34801561067857600080fd5b5061031f6106873660046127b0565b611541565b34801561069857600080fd5b50610352600b5481565b3480156106ae57600080fd5b506102ba6106bd3660046128e7565b611574565b3480156106ce57600080fd5b5061031f6106dd3660046128cc565b6116bf565b61031f6106f03660046129a5565b6116fc565b34801561070157600080fd5b5061031f610710366004612982565b611987565b34801561072157600080fd5b5061035260075481565b34801561073757600080fd5b50610276610746366004612741565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078057600080fd5b5061031f61078f36600461271f565b611a04565b3480156107a057600080fd5b50610352600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107db57506001600160e01b03198216635b5e139f60e01b145b806107f657506001600160e01b0319821663780e9d6360e01b145b8061081157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461082690612caa565b80601f016020809104026020016040519081016040528092919081815260200182805461085290612caa565b801561089f5780601f106108745761010080835404028352916020019161089f565b820191906000526020600020905b81548152906001019060200180831161088257829003601f168201915b5050505050905090565b60006108b6826000541190565b61091d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610944826112f2565b9050806001600160a01b0316836001600160a01b031614156109b35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610914565b336001600160a01b03821614806109cf57506109cf8133610746565b610a415760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610914565b610a4c838383611a9c565b505050565b6008546001600160a01b03163314610a7b5760405162461bcd60e51b815260040161091490612ad4565b600c55565b610a4c838383611af8565b60026009541415610ade5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610914565b6002600955601354610100900460ff16610b2f5760405162461bcd60e51b81526020600482015260126024820152711c1d589b1a58d35a5b9d0e8814185d5cd95960721b6044820152606401610914565b80600f541015610b815760405162461bcd60e51b815260206004820152601860248201527f7075626c69634d696e743a203130206d617870657220747800000000000000006044820152606401610914565b33600090815260156020526040902054610b9c908290612bdd565b600f541015610bed5760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f207075626c69634d696e74206c65667400000000006044820152606401610914565b80600d54610bfb9190612c09565b3414610c455760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610914565b601054600b54610c559083612bdd565b1115610c735760405162461bcd60e51b815260040161091490612b09565b3360009081526015602052604081208054839290610c92908490612bdd565b90915550610ca290503382611e7e565b80600b6000828254610cb49190612bdd565b9091555050600160095550565b6008546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161091490612ad4565b60138054911515620100000262ff000019909216919091179055565b6000610d1283611304565b8210610d6b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610914565b600080549080805b83811015610e14576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610dc557805192505b876001600160a01b0316836001600160a01b03161415610e015786841415610df35750935061081192505050565b83610dfd81612ce5565b9450505b5080610e0c81612ce5565b915050610d73565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610914565b6008546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161091490612ad4565b47731f8b98db321ab2816b517bbeef905bb06473112c73c5ca5711b83547e460cb5e94af2cfba69f8b17996000826103e8610edb866102ee612c09565b610ee59190612bf5565b604051600081818185875af1925050503d8060008114610f21576040519150601f19603f3d011682016040523d82523d6000602084013e610f26565b606091505b50508091505080610f745760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610914565b6001600160a01b0382166103e8610f8c8660fa612c09565b610f969190612bf5565b604051600081818185875af1925050503d8060008114610fd2576040519150601f19603f3d011682016040523d82523d6000602084013e610fd7565b606091505b505080915050806110255760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610914565b50505050565b610a4c83838360405180602001604052806000815250611541565b6060600061105383611304565b90506000816001600160401b0381111561106f5761106f612d56565b604051908082528060200260200182016040528015611098578160200160208202803683370190505b50905060005b828110156110df576110b08582610d07565b8282815181106110c2576110c2612d40565b6020908102919091010152806110d781612ce5565b91505061109e565b509392505050565b6000805482106111455760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610914565b5090565b6008546001600160a01b031633146111735760405162461bcd60e51b815260040161091490612ad4565b8051611186906011906020840190612587565b5050565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b83518110156112a2578381815181106111e4576111e4612d40565b602002602001015182106112425783818151811061120457611204612d40565b602002602001015182604051602001611227929190918252602082015260400190565b6040516020818303038152906040528051906020012061128e565b8184828151811061125557611255612d40565b6020026020010151604051602001611277929190918252602082015260400190565b604051602081830303815290604052805190602001205b91508061129a81612ce5565b9150506111c9565b50600a54149392505050565b6008546001600160a01b031633146112d85760405162461bcd60e51b815260040161091490612ad4565b601380549115156101000261ff0019909216919091179055565b60006112fd82611e98565b5192915050565b60006001600160a01b0382166113705760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610914565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146113bf5760405162461bcd60e51b815260040161091490612ad4565b6113c96000612041565b565b6008546001600160a01b031633146113f55760405162461bcd60e51b815260040161091490612ad4565b6113fe81600a55565b50565b6008546001600160a01b0316331461142b5760405162461bcd60e51b815260040161091490612ad4565b600d55565b60606002805461082690612caa565b6008546001600160a01b031633146114695760405162461bcd60e51b815260040161091490612ad4565b8051611186906012906020840190612587565b6001600160a01b0382163314156114d55760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610914565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61154c848484611af8565b61155884848484612093565b6110255760405162461bcd60e51b815260040161091490612b2f565b6060611581826000541190565b6115e55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610914565b60135462010000900460ff16611687576012805461160290612caa565b80601f016020809104026020016040519081016040528092919081815260200182805461162e90612caa565b801561167b5780601f106116505761010080835404028352916020019161167b565b820191906000526020600020905b81548152906001019060200180831161165e57829003601f168201915b50505050509050919050565b61168f6121a1565b611698836121b0565b6040516020016116a9929190612a01565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146116e95760405162461bcd60e51b815260040161091490612ad4565b6013805460ff1916911515919091179055565b6002600954141561174f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610914565b600260095560135460ff1661179e5760405162461bcd60e51b81526020600482015260156024820152741dda1a5d195b1a5cdd135a5b9d0e8814185d5cd959605a1b6044820152606401610914565b6117a8338261118a565b6117f45760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642100000000000000006044820152606401610914565b81600e5410156118465760405162461bcd60e51b815260206004820152601b60248201527f77686974656c6973744d696e743a2035206d61782070657220747800000000006044820152606401610914565b33600090815260146020526040902054611861908390612bdd565b600e5410156118b25760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401610914565b81600c546118c09190612c09565b341461190a5760405162461bcd60e51b815260206004820152601960248201527815985b1d59481cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b6044820152606401610914565b601054600b5461191a9084612bdd565b11156119385760405162461bcd60e51b815260040161091490612b09565b3360009081526014602052604081208054849290611957908490612bdd565b9091555061196790503383611e7e565b81600b60008282546119799190612bdd565b909155505060016009555050565b6008546001600160a01b031633146119b15760405162461bcd60e51b815260040161091490612ad4565b601054600b546119c19084612bdd565b11156119df5760405162461bcd60e51b815260040161091490612b09565b6119e98183611e7e565b81600b60008282546119fb9190612bdd565b90915550505050565b6008546001600160a01b03163314611a2e5760405162461bcd60e51b815260040161091490612ad4565b6001600160a01b038116611a935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610914565b6113fe81612041565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b0382611e98565b80519091506000906001600160a01b0316336001600160a01b03161480611b3a575033611b2f846108a9565b6001600160a01b0316145b80611b4c57508151611b4c9033610746565b905080611bb65760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610914565b846001600160a01b031682600001516001600160a01b031614611c2a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610914565b6001600160a01b038416611c8e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610914565b611c9e6000848460000151611a9c565b6001600160a01b0385166000908152600460205260408120805460019290611cd09084906001600160801b0316612c28565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611d1c91859116612bb2565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611da3846001612bdd565b6000818152600360205260409020549091506001600160a01b0316611e3457611dcd816000541190565b15611e345760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6111868282604051806020016040528060008152506122ad565b6040805180820190915260008082526020820152611eb7826000541190565b611f165760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610914565b60007f000000000000000000000000000000000000000000000000000000000000000a8310611f7757611f697f000000000000000000000000000000000000000000000000000000000000000a84612c50565b611f74906001612bdd565b90505b825b818110611fe0576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611fcd57949350505050565b5080611fd881612c93565b915050611f79565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610914565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561219557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120d7903390899088908890600401612a40565b602060405180830381600087803b1580156120f157600080fd5b505af1925050508015612121575060408051601f3d908101601f1916820190925261211e9181019061291d565b60015b61217b573d80801561214f576040519150601f19603f3d011682016040523d82523d6000602084013e612154565b606091505b5080516121735760405162461bcd60e51b815260040161091490612b2f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612199565b5060015b949350505050565b60606011805461082690612caa565b6060816121d45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121fe57806121e881612ce5565b91506121f79050600a83612bf5565b91506121d8565b6000816001600160401b0381111561221857612218612d56565b6040519080825280601f01601f191660200182016040528015612242576020820181803683370190505b5090505b841561219957612257600183612c50565b9150612264600a86612d00565b61226f906030612bdd565b60f81b81838151811061228457612284612d40565b60200101906001600160f81b031916908160001a9053506122a6600a86612bf5565b9450612246565b6000546001600160a01b0384166123105760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610914565b61231b816000541190565b156123685760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610914565b7f000000000000000000000000000000000000000000000000000000000000000a8311156123e35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610914565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061243f908790612bb2565b6001600160801b0316815260200185836020015161245d9190612bb2565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561257c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125406000888488612093565b61255c5760405162461bcd60e51b815260040161091490612b2f565b8161256681612ce5565b925050808061257490612ce5565b9150506124f3565b506000819055611e76565b82805461259390612caa565b90600052602060002090601f0160209004810192826125b557600085556125fb565b82601f106125ce57805160ff19168380011785556125fb565b828001600101855582156125fb579182015b828111156125fb5782518255916020019190600101906125e0565b506111459291505b808211156111455760008155600101612603565b60006001600160401b0383111561263057612630612d56565b612643601f8401601f1916602001612b82565b905082815283838301111561265757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461268557600080fd5b919050565b600082601f83011261269b57600080fd5b813560206001600160401b038211156126b6576126b6612d56565b8160051b6126c5828201612b82565b8381528281019086840183880185018910156126e057600080fd5b600093505b858410156127035780358352600193909301929184019184016126e5565b50979650505050505050565b8035801515811461268557600080fd5b60006020828403121561273157600080fd5b61273a8261266e565b9392505050565b6000806040838503121561275457600080fd5b61275d8361266e565b915061276b6020840161266e565b90509250929050565b60008060006060848603121561278957600080fd5b6127928461266e565b92506127a06020850161266e565b9150604084013590509250925092565b600080600080608085870312156127c657600080fd5b6127cf8561266e565b93506127dd6020860161266e565b92506040850135915060608501356001600160401b038111156127ff57600080fd5b8501601f8101871361281057600080fd5b61281f87823560208401612617565b91505092959194509250565b6000806040838503121561283e57600080fd5b6128478361266e565b915060208301356001600160401b0381111561286257600080fd5b61286e8582860161268a565b9150509250929050565b6000806040838503121561288b57600080fd5b6128948361266e565b915061276b6020840161270f565b600080604083850312156128b557600080fd5b6128be8361266e565b946020939093013593505050565b6000602082840312156128de57600080fd5b61273a8261270f565b6000602082840312156128f957600080fd5b5035919050565b60006020828403121561291257600080fd5b813561273a81612d6c565b60006020828403121561292f57600080fd5b815161273a81612d6c565b60006020828403121561294c57600080fd5b81356001600160401b0381111561296257600080fd5b8201601f8101841361297357600080fd5b61219984823560208401612617565b6000806040838503121561299557600080fd5b8235915061276b6020840161266e565b600080604083850312156129b857600080fd5b8235915060208301356001600160401b0381111561286257600080fd5b600081518084526129ed816020860160208601612c67565b601f01601f19169290920160200192915050565b60008351612a13818460208801612c67565b835190830190612a27818360208801612c67565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a73908301846129d5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ab557835183529284019291840191600101612a99565b50909695505050505050565b60208152600061273a60208301846129d5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612baa57612baa612d56565b604052919050565b60006001600160801b03808316818516808303821115612bd457612bd4612d14565b01949350505050565b60008219821115612bf057612bf0612d14565b500190565b600082612c0457612c04612d2a565b500490565b6000816000190483118215151615612c2357612c23612d14565b500290565b60006001600160801b0383811690831681811015612c4857612c48612d14565b039392505050565b600082821015612c6257612c62612d14565b500390565b60005b83811015612c82578181015183820152602001612c6a565b838111156110255750506000910152565b600081612ca257612ca2612d14565b506000190190565b600181811c90821680612cbe57607f821691505b60208210811415612cdf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cf957612cf9612d14565b5060010190565b600082612d0f57612d0f612d2a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113fe57600080fdfea2646970667358221220e9272cccbb21e02e3113834d3989470fe2c3ab1a765b80b6080abb1ca59746d264736f6c63430008070033
Deployed Bytecode Sourcemap
43850:4609:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30164:370;;;;;;;;;;-1:-1:-1;30164:370:0;;;;;:::i;:::-;;:::i;:::-;;;9198:14:1;;9191:22;9173:41;;9161:2;9146:18;30164:370:0;;;;;;;;44246:40;;;;;;;;;;-1:-1:-1;44246:40:0;;;;;;;;31890:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33415:204::-;;;;;;;;;;-1:-1:-1;33415:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7859:32:1;;;7841:51;;7829:2;7814:18;33415:204:0;7695:203:1;32978:379:0;;;;;;;;;;-1:-1:-1;32978:379:0;;;;;:::i;:::-;;:::i;:::-;;46244:98;;;;;;;;;;-1:-1:-1;46244:98:0;;;;;:::i;:::-;;:::i;28725:94::-;;;;;;;;;;-1:-1:-1;28778:7:0;28801:12;28725:94;;;21535:25:1;;;21523:2;21508:18;28725:94:0;21389:177:1;34265:142:0;;;;;;;;;;-1:-1:-1;34265:142:0;;;;;:::i;:::-;;:::i;44293:37::-;;;;;;;;;;-1:-1:-1;44293:37:0;;;;;;;;;;;45645:591;;;;;;:::i;:::-;;:::i;46452:85::-;;;;;;;;;;-1:-1:-1;46452:85:0;;;;;:::i;:::-;;:::i;29356:744::-;;;;;;;;;;-1:-1:-1;29356:744:0;;;;;:::i;:::-;;:::i;47561:525::-;;;;;;;;;;;;;:::i;34470:157::-;;;;;;;;;;-1:-1:-1;34470:157:0;;;;;:::i;:::-;;:::i;48094:362::-;;;;;;;;;;-1:-1:-1;48094:362:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28888:177::-;;;;;;;;;;-1:-1:-1;28888:177:0;;;;;:::i;:::-;;:::i;44337:28::-;;;;;;;;;;-1:-1:-1;44337:28:0;;;;;;;;;;;46990:96;;;;;;;;;;-1:-1:-1;46990:96:0;;;;;:::i;:::-;;:::i;42652:405::-;;;;;;;;;;-1:-1:-1;42652:405:0;;;;;:::i;:::-;;:::i;46661:98::-;;;;;;;;;;-1:-1:-1;46661:98:0;;;;;:::i;:::-;;:::i;31713:118::-;;;;;;;;;;-1:-1:-1;31713:118:0;;;;;:::i;:::-;;:::i;44013:37::-;;;;;;;;;;;;;;;;30590:211;;;;;;;;;;-1:-1:-1;30590:211:0;;;;;:::i;:::-;;:::i;7381:103::-;;;;;;;;;;;;;:::i;44372:43::-;;;;;;;;;;-1:-1:-1;44372:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;46767:109;;;;;;;;;;-1:-1:-1;46767:109:0;;;;;:::i;:::-;;:::i;6730:87::-;;;;;;;;;;-1:-1:-1;6803:6:0;;-1:-1:-1;;;;;6803:6:0;6730:87;;46350:94;;;;;;;;;;-1:-1:-1;46350:94:0;;;;;:::i;:::-;;:::i;44422:43::-;;;;;;;;;;-1:-1:-1;44422:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;32045:98;;;;;;;;;;;;;:::i;46884:::-;;;;;;;;;;-1:-1:-1;46884:98:0;;;;;:::i;:::-;;:::i;33683:274::-;;;;;;;;;;-1:-1:-1;33683:274:0;;;;;:::i;:::-;;:::i;34690:311::-;;;;;;;;;;-1:-1:-1;34690:311:0;;;;;:::i;:::-;;:::i;43932:28::-;;;;;;;;;;;;;;;;47203:350;;;;;;;;;;-1:-1:-1;47203:350:0;;;;;:::i;:::-;;:::i;46549:104::-;;;;;;;;;;-1:-1:-1;46549:104:0;;;;;:::i;:::-;;:::i;44930:707::-;;;;;;:::i;:::-;;:::i;44687:235::-;;;;;;;;;;-1:-1:-1;44687:235:0;;;;;:::i;:::-;;:::i;39105:43::-;;;;;;;;;;;;;;;;34020:186;;;;;;;;;;-1:-1:-1;34020:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;34165:25:0;;;34142:4;34165:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34020:186;7639:201;;;;;;;;;;-1:-1:-1;7639:201:0;;;;;:::i;:::-;;:::i;43967:39::-;;;;;;;;;;;;;;;;30164:370;30291:4;-1:-1:-1;;;;;;30321:40:0;;-1:-1:-1;;;30321:40:0;;:99;;-1:-1:-1;;;;;;;30372:48:0;;-1:-1:-1;;;30372:48:0;30321:99;:160;;;-1:-1:-1;;;;;;;30431:50:0;;-1:-1:-1;;;30431:50:0;30321:160;:207;;;-1:-1:-1;;;;;;;;;;19619:40:0;;;30492:36;30307:221;30164:370;-1:-1:-1;;30164:370:0:o;31890:94::-;31944:13;31973:5;31966:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31890:94;:::o;33415:204::-;33483:7;33507:16;33515:7;35297:4;35327:12;-1:-1:-1;35317:22:0;35240:105;33507:16;33499:74;;;;-1:-1:-1;;;33499:74:0;;20774:2:1;33499:74:0;;;20756:21:1;20813:2;20793:18;;;20786:30;20852:34;20832:18;;;20825:62;-1:-1:-1;;;20903:18:1;;;20896:43;20956:19;;33499:74:0;;;;;;;;;-1:-1:-1;33589:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33589:24:0;;33415:204::o;32978:379::-;33047:13;33063:24;33079:7;33063:15;:24::i;:::-;33047:40;;33108:5;-1:-1:-1;;;;;33102:11:0;:2;-1:-1:-1;;;;;33102:11:0;;;33094:58;;;;-1:-1:-1;;;33094:58:0;;17644:2:1;33094:58:0;;;17626:21:1;17683:2;17663:18;;;17656:30;17722:34;17702:18;;;17695:62;-1:-1:-1;;;17773:18:1;;;17766:32;17815:19;;33094:58:0;17442:398:1;33094:58:0;5538:10;-1:-1:-1;;;;;33177:21:0;;;;:62;;-1:-1:-1;33202:37:0;33219:5;5538:10;34020:186;:::i;33202:37::-;33161:153;;;;-1:-1:-1;;;33161:153:0;;13447:2:1;33161:153:0;;;13429:21:1;13486:2;13466:18;;;13459:30;13525:34;13505:18;;;13498:62;13596:27;13576:18;;;13569:55;13641:19;;33161:153:0;13245:421:1;33161:153:0;33323:28;33332:2;33336:7;33345:5;33323:8;:28::i;:::-;33040:317;32978:379;;:::o;46244:98::-;6803:6;;-1:-1:-1;;;;;6803:6:0;5538:10;6950:23;6942:68;;;;-1:-1:-1;;;6942:68:0;;;;;;;:::i;:::-;46312:11:::1;:22:::0;46244:98::o;34265:142::-;34373:28;34383:4;34389:2;34393:7;34373:9;:28::i;45645:591::-;1712:1;2310:7;;:19;;2302:63;;;;-1:-1:-1;;;2302:63:0;;19998:2:1;2302:63:0;;;19980:21:1;20037:2;20017:18;;;20010:30;20076:33;20056:18;;;20049:61;20127:18;;2302:63:0;19796:355:1;2302:63:0;1712:1;2443:7;:18;45729:17:::1;::::0;::::1;::::0;::::1;;;45721:48;;;::::0;-1:-1:-1;;;45721:48:0;;10763:2:1;45721:48:0::1;::::0;::::1;10745:21:1::0;10802:2;10782:18;;;10775:30;-1:-1:-1;;;10821:18:1;;;10814:48;10879:18;;45721:48:0::1;10561:342:1::0;45721:48:0::1;45805:7;45788:13;;:24;;45780:61;;;::::0;-1:-1:-1;;;45780:61:0;;13873:2:1;45780:61:0::1;::::0;::::1;13855:21:1::0;13912:2;13892:18;;;13885:30;13951:26;13931:18;;;13924:54;13995:18;;45780:61:0::1;13671:348:1::0;45780:61:0::1;45886:10;45877:20;::::0;;;:8:::1;:20;::::0;;;;;:30:::1;::::0;45900:7;;45877:30:::1;:::i;:::-;45860:13;;:47;;45852:87;;;::::0;-1:-1:-1;;;45852:87:0;;18047:2:1;45852:87:0::1;::::0;::::1;18029:21:1::0;18086:2;18066:18;;;18059:30;18125:29;18105:18;;;18098:57;18172:18;;45852:87:0::1;17845:351:1::0;45852:87:0::1;45983:7;45971:9;;:19;;;;:::i;:::-;45958:9;:32;45950:70;;;::::0;-1:-1:-1;;;45950:70:0;;14226:2:1;45950:70:0::1;::::0;::::1;14208:21:1::0;14265:2;14245:18;;;14238:30;-1:-1:-1;;;14284:18:1;;;14277:55;14349:18;;45950:70:0::1;14024:349:1::0;45950:70:0::1;46069:12;::::0;46050:13:::1;::::0;46040:23:::1;::::0;:7;:23:::1;:::i;:::-;46039:43;;46031:68;;;;-1:-1:-1::0;;;46031:68:0::1;;;;;;;:::i;:::-;46130:10;46121:20;::::0;;;:8:::1;:20;::::0;;;;:31;;46145:7;;46121:20;:31:::1;::::0;46145:7;;46121:31:::1;:::i;:::-;::::0;;;-1:-1:-1;46163:30:0::1;::::0;-1:-1:-1;46173:10:0::1;46185:7:::0;46163:9:::1;:30::i;:::-;46221:7;46204:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1668:1:0;2622:7;:22;-1:-1:-1;45645:591:0:o;46452:85::-;6803:6;;-1:-1:-1;;;;;6803:6:0;5538:10;6950:23;6942:68;;;;-1:-1:-1;;;6942:68:0;;;;;;;:::i;:::-;46513:8:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;46513:16:0;;::::1;::::0;;;::::1;::::0;;46452:85::o;29356:744::-;29465:7;29500:16;29510:5;29500:9;:16::i;:::-;29492:5;:24;29484:71;;;;-1:-1:-1;;;29484:71:0;;9651:2:1;29484:71:0;;;9633:21:1;9690:2;9670:18;;;9663:30;9729:34;9709:18;;;9702:62;-1:-1:-1;;;9780:18:1;;;9773:32;9822:19;;29484:71:0;9449:398:1;29484:71:0;29562:22;28801:12;;;29562:22;;29682:350;29706:14;29702:1;:18;29682:350;;;29736:31;29770:14;;;:11;:14;;;;;;;;;29736:48;;;;;;;;;-1:-1:-1;;;;;29736:48:0;;;;;-1:-1:-1;;;29736:48:0;;;-1:-1:-1;;;;;29736:48:0;;;;;;;;29797:28;29793:89;;29858:14;;;-1:-1:-1;29793:89:0;29915:5;-1:-1:-1;;;;;29894:26:0;:17;-1:-1:-1;;;;;29894:26:0;;29890:135;;;29952:5;29937:11;:20;29933:59;;;-1:-1:-1;29979:1:0;-1:-1:-1;29972:8:0;;-1:-1:-1;;;29972:8:0;29933:59;30002:13;;;;:::i;:::-;;;;29890:135;-1:-1:-1;29722:3:0;;;;:::i;:::-;;;;29682:350;;;-1:-1:-1;30038:56:0;;-1:-1:-1;;;30038:56:0;;19583:2:1;30038:56:0;;;19565:21:1;19622:2;19602:18;;;19595:30;19661:34;19641:18;;;19634:62;-1:-1:-1;;;19712:18:1;;;19705:44;19766:19;;30038:56:0;19381:410:1;47561:525:0;6803:6;;-1:-1:-1;;;;;6803:6:0;5538:10;6950:23;6942:68;;;;-1:-1:-1;;;6942:68:0;;;;;;;:::i;:::-;47630:21:::1;47685:42;47760;47609:18;47685:42:::0;47888:4:::1;47871:16;47630:21:::0;47884:3:::1;47871:16;:::i;:::-;:21;;;;:::i;:::-;47855:43;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47841:57;;;;;47917:7;47909:44;;;::::0;-1:-1:-1;;;47909:44:0;;16950:2:1;47909:44:0::1;::::0;::::1;16932:21:1::0;16989:2;16969:18;;;16962:30;-1:-1:-1;;;17008:18:1;;;17001:54;17072:18;;47909:44:0::1;16748:348:1::0;47909:44:0::1;-1:-1:-1::0;;;;;47980:7:0;::::1;48013:4;47996:16;:10:::0;48009:3:::1;47996:16;:::i;:::-;:21;;;;:::i;:::-;47980:43;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47966:57;;;;;48042:7;48034:44;;;::::0;-1:-1:-1;;;48034:44:0;;16950:2:1;48034:44:0::1;::::0;::::1;16932:21:1::0;16989:2;16969:18;;;16962:30;-1:-1:-1;;;17008:18:1;;;17001:54;17072:18;;48034:44:0::1;16748:348:1::0;48034:44:0::1;47598:488;;;;47561:525::o:0;34470:157::-;34582:39;34599:4;34605:2;34609:7;34582:39;;;;;;;;;;;;:16;:39::i;48094:362::-;48156:16;48185:23;48211:19;48221:8;48211:9;:19::i;:::-;48185:45;;48241:25;48283:15;-1:-1:-1;;;;;48269:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48269:30:0;;48241:58;;48315:9;48310:113;48330:15;48326:1;:19;48310:113;;;48379:32;48399:8;48409:1;48379:19;:32::i;:::-;48365:8;48374:1;48365:11;;;;;;;;:::i;:::-;;;;;;;;;;:46;48347:3;;;;:::i;:::-;;;;48310:113;;;-1:-1:-1;48440:8:0;48094:362;-1:-1:-1;;;48094:362:0:o;28888:177::-;28955:7;28801:12;;28979:5;:21;28971:69;;;;-1:-1:-1;;;28971:69:0;;11928:2:1;28971:69:0;;;11910:21:1;11967:2;11947:18;;;11940:30;12006:34;11986:18;;;11979:62;-1:-1:-1;;;12057:18:1;;;12050:33;12100:19;;28971:69:0;11726:399:1;28971:69:0;-1:-1:-1;29054:5:0;28888:177::o;46990:96::-;6803:6;;-1:-1:-1;;;;;6803:6:0;5538:10;6950:23;6942:68;;;;-1:-1:-1;;;6942:68:0;;;;;;;:::i;:::-;47058:20;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46990:96:::0;:::o;42652:405::-;42782:26;;-1:-1:-1;;6506:2:1;6502:15;;;6498:53;42782:26:0;;;6486:66:1;42739:4:0;;;;6568:12:1;;42782:26:0;;;;;;;;;;;;42772:37;;;;;;42756:53;;42825:9;42820:192;42844:6;:13;42840:1;:17;42820:192;;;42895:6;42902:1;42895:9;;;;;;;;:::i;:::-;;;;;;;42887:5;:17;:113;;42982:6;42989:1;42982:9;;;;;;;;:::i;:::-;;;;;;;42993:5;42965:34;;;;;;;;6748:19:1;;;6792:2;6783:12;;6776:28;6829:2;6820:12;;6591:247;42965:34:0;;;;;;;;;;;;;42955:45;;;;;;42887:113;;;42934:5;42941:6;42948:1;42941:9;;;;;;;;:::i;:::-;;;;;;;42917:34;;;;;;;;6748:19:1;;;6792:2;6783:12;;6776:28;6829:2;6820:12;;6591:247;42917:34:0;;;;;;;;;;;;;42907:45;;;;;;42887:113;42879:121;-1:-1:-1;42859:3:0;;;;:::i;:::-;;;;42820:192;;;-1:-1:-1;43038:11:0;;43029:20;;42652:405;-1:-1:-1;;;42652:405:0:o;46661:98::-;6803:6;;-1:-1:-1;;;;;6803:6:0;5538:10;6950:23;6942:68;;;;-1:-1:-1;;;6942:68:0;;;;;;;:::i;:::-;46726:17:::1;:25:::0;;;::::1;;;;-1:-1:-1::0;;46726:25:0;;::::1;::::0;;;::::1;::::0;;46661:98::o;31713:118::-;31777:7;31800:20;31812:7;31800:11;:20::i;:::-;:25;;31713:118;-1:-1:-1;;31713:118:0:o;30590:211::-;30654:7;-1:-1:-1;;;;;30678:19:0;;30670:75;;;;-1:-1:-1;;;30670:75:0;;14580:2:1;30670:75:0;;;14562:21:1;14619:2;14599:18;;;14592:30;14658:34;14638:18;;;14631:62;-1:-1:-1;;;14709:18:1;;;14702:41;14760:19;;30670:75:0;14378:407:1;30670:75:0;-1:-1:-1;;;;;;30767:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30767:27:0;;30590:211::o;7381:103::-;6803:6;;-1:-1:-1;;;;;6803:6:0;5538:10;6950:23;6942:68;;;;-1:-1:-1;;;6942:68:0;;;;;;;:::i;:::-;7446:30:::1;7473:1;7446:18;:30::i;:::-;7381:103::o:0;46767:109::-;6803:6;;-1:-1:-1;;;;;6803:6:0;5538:10;6950:23;6942:68;;;;-1:-1:-1;;;6942:68:0;;;;;;;:::i;:::-;46841:27:::1;46856:11;42613::::0;:25;42540:106;46841:27:::1;46767:109:::0;:::o;46350:94::-;6803:6;;-1:-1:-1;;;;;6803:6:0;5538:10;6950:23;6942:68;;;;-1:-1:-1;;;6942:68:0;;;;;;;:::i;:::-;46416:9:::1;:20:::0;46350:94::o;32045:98::-;32101:13;32130:7;32123:14;;;;;:::i;46884:98::-;6803:6;;-1:-1:-1;;;;;6803:6:0;5538:10;6950:23;6942:68;;;;-1:-1:-1;;;6942:68:0;;;;;;;:::i;:::-;46958:16;;::::1;::::0;:9:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;33683:274::-:0;-1:-1:-1;;;;;33774:24:0;;5538:10;33774:24;;33766:63;;;;-1:-1:-1;;;33766:63:0;;16176:2:1;33766:63:0;;;16158:21:1;16215:2;16195:18;;;16188:30;16254:28;16234:18;;;16227:56;16300:18;;33766:63:0;15974:350:1;33766:63:0;5538:10;33838:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33838:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33838:53:0;;;;;;;;;;33903:48;;9173:41:1;;;33838:42:0;;5538:10;33903:48;;9146:18:1;33903:48:0;;;;;;;33683:274;;:::o;34690:311::-;34827:28;34837:4;34843:2;34847:7;34827:9;:28::i;:::-;34878:48;34901:4;34907:2;34911:7;34920:5;34878:22;:48::i;:::-;34862:133;;;;-1:-1:-1;;;34862:133:0;;;;;;;:::i;47203:350::-;47276:13;47310:16;47318:7;35297:4;35327:12;-1:-1:-1;35317:22:0;35240:105;47310:16;47302:76;;;;-1:-1:-1;;;47302:76:0;;15760:2:1;47302:76:0;;;15742:21:1;15799:2;15779:18;;;15772:30;15838:34;15818:18;;;15811:62;-1:-1:-1;;;15889:18:1;;;15882:45;15944:19;;47302:76:0;15558:411:1;47302:76:0;47392:8;;;;;;;47389:61;;47429:9;47422:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47203:350;;;:::o;47389:61::-;47491:16;:14;:16::i;:::-;47509:25;47526:7;47509:16;:25::i;:::-;47474:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47460:85;;47203:350;;;:::o;46549:104::-;6803:6;;-1:-1:-1;;;;;6803:6:0;5538:10;6950:23;6942:68;;;;-1:-1:-1;;;6942:68:0;;;;;;;:::i;:::-;46617:20:::1;:28:::0;;-1:-1:-1;;46617:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46549:104::o;44930:707::-;1712:1;2310:7;;:19;;2302:63;;;;-1:-1:-1;;;2302:63:0;;19998:2:1;2302:63:0;;;19980:21:1;20037:2;20017:18;;;20010:30;20076:33;20056:18;;;20049:61;20127:18;;2302:63:0;19796:355:1;2302:63:0;1712:1;2443:7;:18;45044:20:::1;::::0;::::1;;45036:54;;;::::0;-1:-1:-1;;;45036:54:0;;10054:2:1;45036:54:0::1;::::0;::::1;10036:21:1::0;10093:2;10073:18;;;10066:30;-1:-1:-1;;;10112:18:1;;;10105:51;10173:18;;45036:54:0::1;9852:345:1::0;45036:54:0::1;45109:33;45123:10;45135:6;45109:13;:33::i;:::-;45101:70;;;::::0;-1:-1:-1;;;45101:70:0;;12332:2:1;45101:70:0::1;::::0;::::1;12314:21:1::0;12371:2;12351:18;;;12344:30;12410:26;12390:18;;;12383:54;12454:18;;45101:70:0::1;12130:348:1::0;45101:70:0::1;45207:7;45190:13;;:24;;45182:64;;;::::0;-1:-1:-1;;;45182:64:0;;13091:2:1;45182:64:0::1;::::0;::::1;13073:21:1::0;13130:2;13110:18;;;13103:30;13169:29;13149:18;;;13142:57;13216:18;;45182:64:0::1;12889:351:1::0;45182:64:0::1;45291:10;45282:20;::::0;;;:8:::1;:20;::::0;;;;;:30:::1;::::0;45305:7;;45282:30:::1;:::i;:::-;45265:13;;:47;;45257:90;;;::::0;-1:-1:-1;;;45257:90:0;;10404:2:1;45257:90:0::1;::::0;::::1;10386:21:1::0;10443:2;10423:18;;;10416:30;10482:32;10462:18;;;10455:60;10532:18;;45257:90:0::1;10202:354:1::0;45257:90:0::1;45393:7;45379:11;;:21;;;;:::i;:::-;45366:9;:34;45358:72;;;::::0;-1:-1:-1;;;45358:72:0;;14226:2:1;45358:72:0::1;::::0;::::1;14208:21:1::0;14265:2;14245:18;;;14238:30;-1:-1:-1;;;14284:18:1;;;14277:55;14349:18;;45358:72:0::1;14024:349:1::0;45358:72:0::1;45479:12;::::0;45460:13:::1;::::0;45450:23:::1;::::0;:7;:23:::1;:::i;:::-;45449:43;;45441:68;;;;-1:-1:-1::0;;;45441:68:0::1;;;;;;;:::i;:::-;45531:10;45522:20;::::0;;;:8:::1;:20;::::0;;;;:31;;45546:7;;45522:20;:31:::1;::::0;45546:7;;45522:31:::1;:::i;:::-;::::0;;;-1:-1:-1;45564:30:0::1;::::0;-1:-1:-1;45574:10:0::1;45586:7:::0;45564:9:::1;:30::i;:::-;45622:7;45605:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1668:1:0;2622:7;:22;-1:-1:-1;;44930:707:0:o;44687:235::-;6803:6;;-1:-1:-1;;;;;6803:6:0;5538:10;6950:23;6942:68;;;;-1:-1:-1;;;6942:68:0;;;;;;;:::i;:::-;44808:12:::1;::::0;44789:13:::1;::::0;44779:23:::1;::::0;:7;:23:::1;:::i;:::-;44778:43;;44770:68;;;;-1:-1:-1::0;;;44770:68:0::1;;;;;;;:::i;:::-;44851:28;44861:8;44871:7;44851:9;:28::i;:::-;44907:7;44890:13;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;44687:235:0:o;7639:201::-;6803:6;;-1:-1:-1;;;;;6803:6:0;5538:10;6950:23;6942:68;;;;-1:-1:-1;;;6942:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7728:22:0;::::1;7720:73;;;::::0;-1:-1:-1;;;7720:73:0;;11110:2:1;7720:73:0::1;::::0;::::1;11092:21:1::0;11149:2;11129:18;;;11122:30;11188:34;11168:18;;;11161:62;-1:-1:-1;;;11239:18:1;;;11232:36;11285:19;;7720:73:0::1;10908:402:1::0;7720:73:0::1;7804:28;7823:8;7804:18;:28::i;38927:172::-:0;39024:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39024:29:0;-1:-1:-1;;;;;39024:29:0;;;;;;;;;39065:28;;39024:24;;39065:28;;;;;;;38927:172;;;:::o;37292:1529::-;37389:35;37427:20;37439:7;37427:11;:20::i;:::-;37498:18;;37389:58;;-1:-1:-1;37456:22:0;;-1:-1:-1;;;;;37482:34:0;5538:10;-1:-1:-1;;;;;37482:34:0;;:81;;;-1:-1:-1;5538:10:0;37527:20;37539:7;37527:11;:20::i;:::-;-1:-1:-1;;;;;37527:36:0;;37482:81;:142;;;-1:-1:-1;37591:18:0;;37574:50;;5538:10;34020:186;:::i;37574:50::-;37456:169;;37650:17;37634:101;;;;-1:-1:-1;;;37634:101:0;;16531:2:1;37634:101:0;;;16513:21:1;16570:2;16550:18;;;16543:30;16609:34;16589:18;;;16582:62;-1:-1:-1;;;16660:18:1;;;16653:48;16718:19;;37634:101:0;16329:414:1;37634:101:0;37782:4;-1:-1:-1;;;;;37760:26:0;:13;:18;;;-1:-1:-1;;;;;37760:26:0;;37744:98;;;;-1:-1:-1;;;37744:98:0;;14992:2:1;37744:98:0;;;14974:21:1;15031:2;15011:18;;;15004:30;15070:34;15050:18;;;15043:62;-1:-1:-1;;;15121:18:1;;;15114:36;15167:19;;37744:98:0;14790:402:1;37744:98:0;-1:-1:-1;;;;;37857:16:0;;37849:66;;;;-1:-1:-1;;;37849:66:0;;12685:2:1;37849:66:0;;;12667:21:1;12724:2;12704:18;;;12697:30;12763:34;12743:18;;;12736:62;-1:-1:-1;;;12814:18:1;;;12807:35;12859:19;;37849:66:0;12483:401:1;37849:66:0;38024:49;38041:1;38045:7;38054:13;:18;;;38024:8;:49::i;:::-;-1:-1:-1;;;;;38082:18:0;;;;;;:12;:18;;;;;:31;;38112:1;;38082:18;:31;;38112:1;;-1:-1:-1;;;;;38082:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;38082:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38120:16:0;;-1:-1:-1;38120:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;38120:16:0;;:29;;-1:-1:-1;;38120:29:0;;:::i;:::-;;;-1:-1:-1;;;;;38120:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38179:43:0;;;;;;;;-1:-1:-1;;;;;38179:43:0;;;;;-1:-1:-1;;;;;38205:15:0;38179:43;;;;;;;;;-1:-1:-1;38156:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;38156:66:0;-1:-1:-1;;;;;;38156:66:0;;;;;;;;;;;38472:11;38168:7;-1:-1:-1;38472:11:0;:::i;:::-;38535:1;38494:24;;;:11;:24;;;;;:29;38450:33;;-1:-1:-1;;;;;;38494:29:0;38490:236;;38552:20;38560:11;35297:4;35327:12;-1:-1:-1;35317:22:0;35240:105;38552:20;38548:171;;;38612:97;;;;;;;;38639:18;;-1:-1:-1;;;;;38612:97:0;;;;;;38670:28;;;;-1:-1:-1;;;;;38612:97:0;;;;;;;;;-1:-1:-1;38585:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;38585:124:0;-1:-1:-1;;;;;;38585:124:0;;;;;;;;;;;;38548:171;38758:7;38754:2;-1:-1:-1;;;;;38739:27:0;38748:4;-1:-1:-1;;;;;38739:27:0;;;;;;;;;;;38773:42;37382:1439;;;37292:1529;;;:::o;35351:98::-;35416:27;35426:2;35430:8;35416:27;;;;;;;;;;;;:9;:27::i;31053:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;31170:16:0;31178:7;35297:4;35327:12;-1:-1:-1;35317:22:0;35240:105;31170:16;31162:71;;;;-1:-1:-1;;;31162:71:0;;11517:2:1;31162:71:0;;;11499:21:1;11556:2;11536:18;;;11529:30;11595:34;11575:18;;;11568:62;-1:-1:-1;;;11646:18:1;;;11639:40;11696:19;;31162:71:0;11315:406:1;31162:71:0;31242:26;31290:12;31279:7;:23;31275:93;;31334:22;31344:12;31334:7;:22;:::i;:::-;:26;;31359:1;31334:26;:::i;:::-;31313:47;;31275:93;31396:7;31376:212;31413:18;31405:4;:26;31376:212;;31450:31;31484:17;;;:11;:17;;;;;;;;;31450:51;;;;;;;;;-1:-1:-1;;;;;31450:51:0;;;;;-1:-1:-1;;;31450:51:0;;;-1:-1:-1;;;;;31450:51:0;;;;;;;;31514:28;31510:71;;31562:9;31053:606;-1:-1:-1;;;;31053:606:0:o;31510:71::-;-1:-1:-1;31433:6:0;;;;:::i;:::-;;;;31376:212;;;-1:-1:-1;31596:57:0;;-1:-1:-1;;;31596:57:0;;20358:2:1;31596:57:0;;;20340:21:1;20397:2;20377:18;;;20370:30;20436:34;20416:18;;;20409:62;-1:-1:-1;;;20487:18:1;;;20480:45;20542:19;;31596:57:0;20156:411:1;8000:191:0;8093:6;;;-1:-1:-1;;;;;8110:17:0;;;-1:-1:-1;;;;;;8110:17:0;;;;;;;8143:40;;8093:6;;;8110:17;8093:6;;8143:40;;8074:16;;8143:40;8063:128;8000:191;:::o;40642:690::-;40779:4;-1:-1:-1;;;;;40796:13:0;;9724:19;:23;40792:535;;40835:72;;-1:-1:-1;;;40835:72:0;;-1:-1:-1;;;;;40835:36:0;;;;;:72;;5538:10;;40886:4;;40892:7;;40901:5;;40835:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40835:72:0;;;;;;;;-1:-1:-1;;40835:72:0;;;;;;;;;;;;:::i;:::-;;;40822:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41066:13:0;;41062:215;;41099:61;;-1:-1:-1;;;41099:61:0;;;;;;;:::i;41062:215::-;41245:6;41239:13;41230:6;41226:2;41222:15;41215:38;40822:464;-1:-1:-1;;;;;;40957:55:0;-1:-1:-1;;;40957:55:0;;-1:-1:-1;40950:62:0;;40792:535;-1:-1:-1;41315:4:0;40792:535;40642:690;;;;;;:::o;47094:101::-;47142:13;47174;47167:20;;;;;:::i;3022:723::-;3078:13;3299:10;3295:53;;-1:-1:-1;;3326:10:0;;;;;;;;;;;;-1:-1:-1;;;3326:10:0;;;;;3022:723::o;3295:53::-;3373:5;3358:12;3414:78;3421:9;;3414:78;;3447:8;;;;:::i;:::-;;-1:-1:-1;3470:10:0;;-1:-1:-1;3478:2:0;3470:10;;:::i;:::-;;;3414:78;;;3502:19;3534:6;-1:-1:-1;;;;;3524:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3524:17:0;;3502:39;;3552:154;3559:10;;3552:154;;3586:11;3596:1;3586:11;;:::i;:::-;;-1:-1:-1;3655:10:0;3663:2;3655:5;:10;:::i;:::-;3642:24;;:2;:24;:::i;:::-;3629:39;;3612:6;3619;3612:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3612:56:0;;;;;;;;-1:-1:-1;3683:11:0;3692:2;3683:11;;:::i;:::-;;;3552:154;;35788:1272;35893:20;35916:12;-1:-1:-1;;;;;35943:16:0;;35935:62;;;;-1:-1:-1;;;35935:62:0;;19181:2:1;35935:62:0;;;19163:21:1;19220:2;19200:18;;;19193:30;19259:34;19239:18;;;19232:62;-1:-1:-1;;;19310:18:1;;;19303:31;19351:19;;35935:62:0;18979:397:1;35935:62:0;36134:21;36142:12;35297:4;35327:12;-1:-1:-1;35317:22:0;35240:105;36134:21;36133:22;36125:64;;;;-1:-1:-1;;;36125:64:0;;18823:2:1;36125:64:0;;;18805:21:1;18862:2;18842:18;;;18835:30;18901:31;18881:18;;;18874:59;18950:18;;36125:64:0;18621:353:1;36125:64:0;36216:12;36204:8;:24;;36196:71;;;;-1:-1:-1;;;36196:71:0;;21188:2:1;36196:71:0;;;21170:21:1;21227:2;21207:18;;;21200:30;21266:34;21246:18;;;21239:62;-1:-1:-1;;;21317:18:1;;;21310:32;21359:19;;36196:71:0;20986:398:1;36196:71:0;-1:-1:-1;;;;;36379:16:0;;36346:30;36379:16;;;:12;:16;;;;;;;;;36346:49;;;;;;;;;-1:-1:-1;;;;;36346:49:0;;;;;-1:-1:-1;;;36346:49:0;;;;;;;;;;;36421:119;;;;;;;;36441:19;;36346:49;;36421:119;;;36441:39;;36471:8;;36441:39;:::i;:::-;-1:-1:-1;;;;;36421:119:0;;;;;36524:8;36489:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36421:119:0;;;;;;-1:-1:-1;;;;;36402:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;36402:138:0;;;;;;;;;;;;36575:43;;;;;;;;;;-1:-1:-1;;;;;36601:15:0;36575:43;;;;;;;;36547:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36547:71:0;-1:-1:-1;;;;;;36547:71:0;;;;;;;;;;;;;;;;;;36559:12;;36671:281;36695:8;36691:1;:12;36671:281;;;36724:38;;36749:12;;-1:-1:-1;;;;;36724:38:0;;;36741:1;;36724:38;;36741:1;;36724:38;36789:59;36820:1;36824:2;36828:12;36842:5;36789:22;:59::i;:::-;36771:150;;;;-1:-1:-1;;;36771:150:0;;;;;;;:::i;:::-;36930:14;;;;:::i;:::-;;;;36705:3;;;;;:::i;:::-;;;;36671:281;;;-1:-1:-1;36960:12:0;:27;;;36994:60;47561:525;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;-1:-1:-1;;;;;809:2:1;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;:::-;1637:39;1496:186;-1:-1:-1;;;1496:186:1:o;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;-1:-1:-1;;;;;2704:6:1;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:422::-;3049:6;3057;3110:2;3098:9;3089:7;3085:23;3081:32;3078:52;;;3126:1;3123;3116:12;3078:52;3149:29;3168:9;3149:29;:::i;:::-;3139:39;;3229:2;3218:9;3214:18;3201:32;-1:-1:-1;;;;;3248:6:1;3245:30;3242:50;;;3288:1;3285;3278:12;3242:50;3311:61;3364:7;3355:6;3344:9;3340:22;3311:61;:::i;:::-;3301:71;;;2956:422;;;;;:::o;3383:254::-;3448:6;3456;3509:2;3497:9;3488:7;3484:23;3480:32;3477:52;;;3525:1;3522;3515:12;3477:52;3548:29;3567:9;3548:29;:::i;:::-;3538:39;;3596:35;3627:2;3616:9;3612:18;3596:35;:::i;3642:254::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3810:29;3829:9;3810:29;:::i;:::-;3800:39;3886:2;3871:18;;;;3858:32;;-1:-1:-1;;;3642:254:1:o;3901:180::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4049:26;4065:9;4049:26;:::i;4086:180::-;4145:6;4198:2;4186:9;4177:7;4173:23;4169:32;4166:52;;;4214:1;4211;4204:12;4166:52;-1:-1:-1;4237:23:1;;4086:180;-1:-1:-1;4086:180:1:o;4271:245::-;4329:6;4382:2;4370:9;4361:7;4357:23;4353:32;4350:52;;;4398:1;4395;4388:12;4350:52;4437:9;4424:23;4456:30;4480:5;4456:30;:::i;4521:249::-;4590:6;4643:2;4631:9;4622:7;4618:23;4614:32;4611:52;;;4659:1;4656;4649:12;4611:52;4691:9;4685:16;4710:30;4734:5;4710:30;:::i;4775:450::-;4844:6;4897:2;4885:9;4876:7;4872:23;4868:32;4865:52;;;4913:1;4910;4903:12;4865:52;4953:9;4940:23;-1:-1:-1;;;;;4978:6:1;4975:30;4972:50;;;5018:1;5015;5008:12;4972:50;5041:22;;5094:4;5086:13;;5082:27;-1:-1:-1;5072:55:1;;5123:1;5120;5113:12;5072:55;5146:73;5211:7;5206:2;5193:16;5188:2;5184;5180:11;5146:73;:::i;5415:254::-;5483:6;5491;5544:2;5532:9;5523:7;5519:23;5515:32;5512:52;;;5560:1;5557;5550:12;5512:52;5596:9;5583:23;5573:33;;5625:38;5659:2;5648:9;5644:18;5625:38;:::i;5674:416::-;5767:6;5775;5828:2;5816:9;5807:7;5803:23;5799:32;5796:52;;;5844:1;5841;5834:12;5796:52;5880:9;5867:23;5857:33;;5941:2;5930:9;5926:18;5913:32;-1:-1:-1;;;;;5960:6:1;5957:30;5954:50;;;6000:1;5997;5990:12;6095:257;6136:3;6174:5;6168:12;6201:6;6196:3;6189:19;6217:63;6273:6;6266:4;6261:3;6257:14;6250:4;6243:5;6239:16;6217:63;:::i;:::-;6334:2;6313:15;-1:-1:-1;;6309:29:1;6300:39;;;;6341:4;6296:50;;6095:257;-1:-1:-1;;6095:257:1:o;6843:637::-;7123:3;7161:6;7155:13;7177:53;7223:6;7218:3;7211:4;7203:6;7199:17;7177:53;:::i;:::-;7293:13;;7252:16;;;;7315:57;7293:13;7252:16;7349:4;7337:17;;7315:57;:::i;:::-;-1:-1:-1;;;7394:20:1;;7423:22;;;7472:1;7461:13;;6843:637;-1:-1:-1;;;;6843:637:1:o;7903:488::-;-1:-1:-1;;;;;8172:15:1;;;8154:34;;8224:15;;8219:2;8204:18;;8197:43;8271:2;8256:18;;8249:34;;;8319:3;8314:2;8299:18;;8292:31;;;8097:4;;8340:45;;8365:19;;8357:6;8340:45;:::i;:::-;8332:53;7903:488;-1:-1:-1;;;;;;7903:488:1:o;8396:632::-;8567:2;8619:21;;;8689:13;;8592:18;;;8711:22;;;8538:4;;8567:2;8790:15;;;;8764:2;8749:18;;;8538:4;8833:169;8847:6;8844:1;8841:13;8833:169;;;8908:13;;8896:26;;8977:15;;;;8942:12;;;;8869:1;8862:9;8833:169;;;-1:-1:-1;9019:3:1;;8396:632;-1:-1:-1;;;;;;8396:632:1:o;9225:219::-;9374:2;9363:9;9356:21;9337:4;9394:44;9434:2;9423:9;9419:18;9411:6;9394:44;:::i;15197:356::-;15399:2;15381:21;;;15418:18;;;15411:30;15477:34;15472:2;15457:18;;15450:62;15544:2;15529:18;;15197:356::o;17101:336::-;17303:2;17285:21;;;17342:2;17322:18;;;17315:30;-1:-1:-1;;;17376:2:1;17361:18;;17354:42;17428:2;17413:18;;17101:336::o;18201:415::-;18403:2;18385:21;;;18442:2;18422:18;;;18415:30;18481:34;18476:2;18461:18;;18454:62;-1:-1:-1;;;18547:2:1;18532:18;;18525:49;18606:3;18591:19;;18201:415::o;21571:275::-;21642:2;21636:9;21707:2;21688:13;;-1:-1:-1;;21684:27:1;21672:40;;-1:-1:-1;;;;;21727:34:1;;21763:22;;;21724:62;21721:88;;;21789:18;;:::i;:::-;21825:2;21818:22;21571:275;;-1:-1:-1;21571:275:1:o;21851:253::-;21891:3;-1:-1:-1;;;;;21980:2:1;21977:1;21973:10;22010:2;22007:1;22003:10;22041:3;22037:2;22033:12;22028:3;22025:21;22022:47;;;22049:18;;:::i;:::-;22085:13;;21851:253;-1:-1:-1;;;;21851:253:1:o;22109:128::-;22149:3;22180:1;22176:6;22173:1;22170:13;22167:39;;;22186:18;;:::i;:::-;-1:-1:-1;22222:9:1;;22109:128::o;22242:120::-;22282:1;22308;22298:35;;22313:18;;:::i;:::-;-1:-1:-1;22347:9:1;;22242:120::o;22367:168::-;22407:7;22473:1;22469;22465:6;22461:14;22458:1;22455:21;22450:1;22443:9;22436:17;22432:45;22429:71;;;22480:18;;:::i;:::-;-1:-1:-1;22520:9:1;;22367:168::o;22540:246::-;22580:4;-1:-1:-1;;;;;22693:10:1;;;;22663;;22715:12;;;22712:38;;;22730:18;;:::i;:::-;22767:13;;22540:246;-1:-1:-1;;;22540:246:1:o;22791:125::-;22831:4;22859:1;22856;22853:8;22850:34;;;22864:18;;:::i;:::-;-1:-1:-1;22901:9:1;;22791:125::o;22921:258::-;22993:1;23003:113;23017:6;23014:1;23011:13;23003:113;;;23093:11;;;23087:18;23074:11;;;23067:39;23039:2;23032:10;23003:113;;;23134:6;23131:1;23128:13;23125:48;;;-1:-1:-1;;23169:1:1;23151:16;;23144:27;22921:258::o;23184:136::-;23223:3;23251:5;23241:39;;23260:18;;:::i;:::-;-1:-1:-1;;;23296:18:1;;23184:136::o;23325:380::-;23404:1;23400:12;;;;23447;;;23468:61;;23522:4;23514:6;23510:17;23500:27;;23468:61;23575:2;23567:6;23564:14;23544:18;23541:38;23538:161;;;23621:10;23616:3;23612:20;23609:1;23602:31;23656:4;23653:1;23646:15;23684:4;23681:1;23674:15;23538:161;;23325:380;;;:::o;23710:135::-;23749:3;-1:-1:-1;;23770:17:1;;23767:43;;;23790:18;;:::i;:::-;-1:-1:-1;23837:1:1;23826:13;;23710:135::o;23850:112::-;23882:1;23908;23898:35;;23913:18;;:::i;:::-;-1:-1:-1;23947:9:1;;23850:112::o;23967:127::-;24028:10;24023:3;24019:20;24016:1;24009:31;24059:4;24056:1;24049:15;24083:4;24080:1;24073:15;24099:127;24160:10;24155:3;24151:20;24148:1;24141:31;24191:4;24188:1;24181:15;24215:4;24212:1;24205:15;24231:127;24292:10;24287:3;24283:20;24280:1;24273:31;24323:4;24320:1;24313:15;24347:4;24344:1;24337:15;24363:127;24424:10;24419:3;24415:20;24412:1;24405:31;24455:4;24452:1;24445:15;24479:4;24476:1;24469:15;24495:131;-1:-1:-1;;;;;;24569:32:1;;24559:43;;24549:71;;24616:1;24613;24606:12
Swarm Source
ipfs://e9272cccbb21e02e3113834d3989470fe2c3ab1a765b80b6080abb1ca59746d2
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.