ERC-721
Overview
Max Total Supply
52 FISH
Holders
29
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FISHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Poseidon
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-04 */ // SPDX-License-Identifier: MIT // // ::::::::: :::::::: :::::::: :::::::::: ::::::::::: ::::::::: :::::::: :::: ::: // :+: :+: :+: :+: :+: :+: :+: :+: :+: :+: :+: :+: :+:+: :+: // +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ :+:+:+ +:+ // +#++:++#+ +#+ +:+ +#++:++#++ +#++:++# +#+ +#+ +:+ +#+ +:+ +#+ +:+ +#+ // +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+ +#+#+# // #+# #+# #+# #+# #+# #+# #+# #+# #+# #+# #+# #+# #+#+# // ### ######## ######## ########## ########### ######### ######## ### #### // PoseidonDAO pragma solidity 0.8.6; /** * @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); } /** * @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; } /** * @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); } /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @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); } } } } /** * @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; } } /** * @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); } } /** * @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; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } /** * @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); } } /** * Poseidon is an ERC721 contract in which each token has a starting level of 1, * and each token can increase its own level by hunting another token. * * An owner of at least two tokens can decide to hunt, by choosing one token to * become the predator and another token to become the prey. When hunting, the * predator token level becomes the sum of the level of both tokens and the prey * token is burned. * * Each token art evolves when its level increases to certain thresholds. */ contract Poseidon is ERC721Enumerable, Ownable { using Strings for uint256; uint256 public constant MINT_PUBLIC = 10000; uint256 public constant MINT_PRICE = 0.01 ether; uint256 public constant MINT_MAX_TX = 10; // md5(md5fish1.md5shark1.md5whale1.md5kraken1.md5fish2.md5shark2.md5whale2.md5kraken2...) string public provenance = ""; string private _contractURI = ""; string private _tokenBaseURI = ""; bool private _ipfs = false; uint256 private _startingBlock = 999999999; uint256 private _currentTokenId = 0; uint256 private _publicMinted = 0; mapping(uint256 => uint256) private _level; event Hunt(address indexed from, uint256 indexed predator, uint256 indexed prey, uint256 level); constructor() ERC721("Poseidon", "FISH") {} // Public sale function mint(uint256 _quantity) external payable { require(block.number >= _startingBlock, "SALE_NOT_STARTED"); require(_quantity <= MINT_MAX_TX, "QUANTITY_ABOVE_MAX_MINT"); require(_publicMinted + _quantity <= MINT_PUBLIC, "WOULD_EXCEED_SUPPLY"); require(msg.value >= MINT_PRICE * _quantity, "NOT_ENOUGH_ETH"); require(msg.sender == tx.origin, "CONTRACTS_CANNOT_MINT"); _publicMinted += _quantity; for (uint256 i = 0; i < _quantity; i++) { _currentTokenId++; _safeMint(msg.sender, _currentTokenId); _level[_currentTokenId] = 1; } } // Hunt burns a token and adds it's level to another token function hunt(uint256 _predator, uint256 _prey) external { require(_predator != _prey, "MUST_BE_DIFFERENT"); require(ownerOf(_predator) == _msgSender(), "MUST_OWN_PREDATOR"); require(ownerOf(_prey) == _msgSender(), "MUST_OWN_PREY"); require(_level[_predator] >= _level[_prey], "PREY_MORE_LEVEL_THAN_PREDATOR"); _burn(_prey); _level[_predator] += _level[_prey]; _level[_prey] = 0; emit Hunt(_msgSender(), _predator, _prey, _level[_predator]); } // View the level of a token function level(uint256 _tokenId) public view returns (uint256) { require(_exists(_tokenId), "NONEXISTENT_TOKEN"); return _level[_tokenId]; } // Returns the type based on it's level, which can be fish, shark, whale or kraken function tokenType(uint256 _tokenId) public view returns (string memory) { uint256 level_ = level(_tokenId); if (level_ < 10) { return "fish"; } if (level_ < 100) { return "shark"; } if (level_ < 1000) { return "whale"; } return "kraken"; } // Override tokenURI to add the type function tokenURI(uint256 tokenId) public view virtual override(ERC721) returns (string memory) { string memory baseURI = _baseURI(); if (_ipfs) { string memory type_ = tokenType(tokenId); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), "/", type_)) : ""; } uint256 level_ = level(tokenId); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), "/", level_.toString())) : ""; } // Transfer all the balance to the owner function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } // Set Contract-level URI function setContractURI(string memory contractURI_) external onlyOwner { _contractURI = contractURI_; } // Set Contract-level URI. IPFS URI allows completely decentralized metadata without the level attribute function setBaseURI(string memory baseURI_, bool ipfs_) external onlyOwner { _tokenBaseURI = baseURI_; _ipfs = ipfs_; } // Set starting block for the sale function setStartingBlock(uint256 startingBlock_) external onlyOwner { _startingBlock = startingBlock_; } // Provenance function setProvenance(string memory _provenance) external onlyOwner { require(bytes(provenance).length == 0, "PROVENANCE_ALREADY_SET"); provenance = _provenance; } // View Contract-level URI function contractURI() public view returns (string memory) { return _contractURI; } // Overrides _baseURI to be a custom URI function _baseURI() internal view override(ERC721) returns (string memory) { return _tokenBaseURI; } // View starting block function startingBlock() public view returns (uint256) { return _startingBlock; } // View public minted amount function publicMinted() public view returns (uint256) { return _publicMinted; } // View account max level function maxLevel(address _address) public view returns (uint256) { uint256 _maxLevel = 0; uint256 _balanceOfAddress = balanceOf(_address); for (uint256 i = 0; i < _balanceOfAddress; i++) { uint256 _tokenId = tokenOfOwnerByIndex(_address, i); uint256 level_ = level(_tokenId); if (level_ > _maxLevel) { _maxLevel = level_; } } return _maxLevel; } // View account total level function totalLevel(address _address) public view returns (uint256) { uint256 _totalLevel = 0; uint256 _balanceOfAddress = balanceOf(_address); for (uint256 i = 0; i < _balanceOfAddress; i++) { uint256 _tokenId = tokenOfOwnerByIndex(_address, i); _totalLevel += level(_tokenId); } return _totalLevel; } }
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":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"predator","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"prey","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"level","type":"uint256"}],"name":"Hunt","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MINT_MAX_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"_predator","type":"uint256"},{"internalType":"uint256","name":"_prey","type":"uint256"}],"name":"hunt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"level","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"maxLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"bool","name":"ipfs_","type":"bool"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startingBlock_","type":"uint256"}],"name":"setStartingBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokenType","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"totalLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b91600b9162000163565b506040805160208101918290526000908190526200003c91600c9162000163565b506040805160208101918290526000908190526200005d91600d9162000163565b50600e805460ff19169055633b9ac9ff600f55600060108190556011553480156200008757600080fd5b5060408051808201825260088152672837b9b2b4b237b760c11b60208083019182528351808501909452600484526308c92a6960e31b908401528151919291620000d49160009162000163565b508051620000ea90600190602084019062000163565b50505062000107620001016200010d60201b60201c565b62000111565b62000246565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001719062000209565b90600052602060002090601f016020900481019282620001955760008555620001e0565b82601f10620001b057805160ff1916838001178555620001e0565b82800160010185558215620001e0579182015b82811115620001e0578251825591602001919060010190620001c3565b50620001ee929150620001f2565b5090565b5b80821115620001ee5760008155600101620001f3565b600181811c908216806200021e57607f821691505b602082108114156200024057634e487b7160e01b600052602260045260246000fd5b50919050565b6127a680620002566000396000f3fe60806040526004361061021a5760003560e01c80638da5cb5b11610123578063c002d23d116100ab578063e8a3d4851161006f578063e8a3d485146105e8578063e985e9c5146105fd578063ec17b20e14610646578063f2fde38b14610666578063ffe630b51461068657600080fd5b8063c002d23d14610558578063c2252b5514610573578063c87b56dd14610593578063d91c98d3146105b3578063e6c3b1f6146105c857600080fd5b8063a22cb465116100f2578063a22cb465146104c3578063a4f4f8af146104e3578063a880e9a4146104f8578063b64b21ca14610518578063b88d4fde1461053857600080fd5b80638da5cb5b1461045d578063938e3d7b1461047b57806395d89b411461049b578063a0712d68146104b057600080fd5b80632f745c59116101a65780634f6ccce7116101755780634f6ccce7146103d25780636352211e146103f257806363610e7a1461041257806370a0823114610428578063715018a61461044857600080fd5b80632f745c59146103685780633ccfd60b1461038857806342842e0e1461039d5780634882608c146103bd57600080fd5b8063095ea7b3116101ed578063095ea7b3146102dc5780630f7309e8146102fe578063165e0dc61461031357806318160ddd1461033357806323b872dd1461034857600080fd5b806301ffc9a71461021f57806305c58df21461025457806306fdde0314610282578063081812fc146102a4575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612361565b6106a6565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004612415565b6106d1565b60405190815260200161024b565b34801561028e57600080fd5b50610297610741565b60405161024b9190612509565b3480156102b057600080fd5b506102c46102bf366004612415565b6107d3565b6040516001600160a01b03909116815260200161024b565b3480156102e857600080fd5b506102fc6102f7366004612337565b610868565b005b34801561030a57600080fd5b5061029761097e565b34801561031f57600080fd5b506102fc61032e36600461242e565b610a0c565b34801561033f57600080fd5b50600854610274565b34801561035457600080fd5b506102fc610363366004612255565b610be3565b34801561037457600080fd5b50610274610383366004612337565b610c14565b34801561039457600080fd5b506102fc610caa565b3480156103a957600080fd5b506102fc6103b8366004612255565b610d03565b3480156103c957600080fd5b50610274600a81565b3480156103de57600080fd5b506102746103ed366004612415565b610d1e565b3480156103fe57600080fd5b506102c461040d366004612415565b610db1565b34801561041e57600080fd5b5061027461271081565b34801561043457600080fd5b50610274610443366004612207565b610e28565b34801561045457600080fd5b506102fc610eaf565b34801561046957600080fd5b50600a546001600160a01b03166102c4565b34801561048757600080fd5b506102fc61049636600461239b565b610ee5565b3480156104a757600080fd5b50610297610f26565b6102fc6104be366004612415565b610f35565b3480156104cf57600080fd5b506102fc6104de36600461230d565b611123565b3480156104ef57600080fd5b50601154610274565b34801561050457600080fd5b50610274610513366004612207565b61112e565b34801561052457600080fd5b506102fc6105333660046123d0565b611188565b34801561054457600080fd5b506102fc610553366004612291565b6111da565b34801561056457600080fd5b50610274662386f26fc1000081565b34801561057f57600080fd5b5061027461058e366004612207565b611212565b34801561059f57600080fd5b506102976105ae366004612415565b611268565b3480156105bf57600080fd5b50600f54610274565b3480156105d457600080fd5b506102976105e3366004612415565b611332565b3480156105f457600080fd5b506102976113e9565b34801561060957600080fd5b5061023f610618366004612222565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065257600080fd5b506102fc610661366004612415565b6113f8565b34801561067257600080fd5b506102fc610681366004612207565b611427565b34801561069257600080fd5b506102fc6106a136600461239b565b6114bf565b60006001600160e01b0319821663780e9d6360e01b14806106cb57506106cb82611551565b92915050565b6000818152600260205260408120546001600160a01b031661072e5760405162461bcd60e51b81526020600482015260116024820152702727a722ac24a9aa22a72a2faa27a5a2a760791b60448201526064015b60405180910390fd5b5060009081526012602052604090205490565b60606000805461075090612682565b80601f016020809104026020016040519081016040528092919081815260200182805461077c90612682565b80156107c95780601f1061079e576101008083540402835291602001916107c9565b820191906000526020600020905b8154815290600101906020018083116107ac57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661084c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610725565b506000908152600460205260409020546001600160a01b031690565b600061087382610db1565b9050806001600160a01b0316836001600160a01b031614156108e15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610725565b336001600160a01b03821614806108fd57506108fd8133610618565b61096f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610725565b61097983836115a1565b505050565b600b805461098b90612682565b80601f01602080910402602001604051908101604052809291908181526020018280546109b790612682565b8015610a045780601f106109d957610100808354040283529160200191610a04565b820191906000526020600020905b8154815290600101906020018083116109e757829003601f168201915b505050505081565b80821415610a505760405162461bcd60e51b8152602060048201526011602482015270135554d517d09157d11251919154915395607a1b6044820152606401610725565b33610a5a83610db1565b6001600160a01b031614610aa45760405162461bcd60e51b815260206004820152601160248201527026aaa9aa2fa7aba72fa82922a220aa27a960791b6044820152606401610725565b33610aae82610db1565b6001600160a01b031614610af45760405162461bcd60e51b815260206004820152600d60248201526c4d5553545f4f574e5f5052455960981b6044820152606401610725565b600081815260126020526040808220548483529120541015610b585760405162461bcd60e51b815260206004820152601d60248201527f505245595f4d4f52455f4c4556454c5f5448414e5f5052454441544f520000006044820152606401610725565b610b618161160f565b60008181526012602052604080822054848352908220805491929091610b889084906125f4565b90915550506000818152601260209081526040808320839055848352918290205491519182528291849133917f16624d84ec04ca9f43e298b22580617d260f918ff3eede3e717653a3c28f3845910160405180910390a45050565b610bed33826116b6565b610c095760405162461bcd60e51b8152600401610725906125a3565b6109798383836117a9565b6000610c1f83610e28565b8210610c815760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610725565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610cd45760405162461bcd60e51b81526004016107259061256e565b60405133904780156108fc02916000818181858888f19350505050158015610d00573d6000803e3d6000fd5b50565b610979838383604051806020016040528060008152506111da565b6000610d2960085490565b8210610d8c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610725565b60088281548110610d9f57610d9f61272e565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106cb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610725565b60006001600160a01b038216610e935760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610725565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ed95760405162461bcd60e51b81526004016107259061256e565b610ee36000611954565b565b600a546001600160a01b03163314610f0f5760405162461bcd60e51b81526004016107259061256e565b8051610f2290600c9060208401906120a5565b5050565b60606001805461075090612682565b600f54431015610f7a5760405162461bcd60e51b815260206004820152601060248201526f14d0531157d393d517d4d5105495115160821b6044820152606401610725565b600a811115610fcb5760405162461bcd60e51b815260206004820152601760248201527f5155414e544954595f41424f56455f4d41585f4d494e540000000000000000006044820152606401610725565b61271081601154610fdc91906125f4565b11156110205760405162461bcd60e51b8152602060048201526013602482015272574f554c445f4558434545445f535550504c5960681b6044820152606401610725565b61103181662386f26fc10000612620565b3410156110715760405162461bcd60e51b815260206004820152600e60248201526d09c9ea8be8a9c9eaa8e90be8aa8960931b6044820152606401610725565b3332146110b85760405162461bcd60e51b815260206004820152601560248201527410d3d395149050d514d7d0d0539393d517d3525395605a1b6044820152606401610725565b80601160008282546110ca91906125f4565b90915550600090505b81811015610f2257601080549060006110eb836126bd565b91905055506110fc336010546119a6565b6010546000908152601260205260409020600190558061111b816126bd565b9150506110d3565b610f223383836119c0565b6000808061113b84610e28565b905060005b8181101561117f5760006111548683610c14565b905061115f816106d1565b61116990856125f4565b9350508080611177906126bd565b915050611140565b50909392505050565b600a546001600160a01b031633146111b25760405162461bcd60e51b81526004016107259061256e565b81516111c590600d9060208501906120a5565b50600e805460ff191691151591909117905550565b6111e433836116b6565b6112005760405162461bcd60e51b8152600401610725906125a3565b61120c84848484611a8f565b50505050565b6000808061121f84610e28565b905060005b8181101561117f5760006112388683610c14565b90506000611245826106d1565b905084811115611253578094505b50508080611260906126bd565b915050611224565b60606000611274611ac2565b600e5490915060ff16156112e257600061128d84611332565b905060008251116112ad57604051806020016040528060008152506112da565b816112b785611ad1565b826040516020016112ca9392919061247c565b6040516020818303038152906040525b949350505050565b60006112ed846106d1565b9050600082511161130d57604051806020016040528060008152506112da565b8161131785611ad1565b61132083611ad1565b6040516020016112ca9392919061247c565b6060600061133f836106d1565b9050600a81101561136c5750506040805180820190915260048152630ccd2e6d60e31b6020820152919050565b6064811015611398575050604080518082019091526005815264736861726b60d81b6020820152919050565b6103e88110156113c55750506040805180820190915260058152647768616c6560d81b6020820152919050565b505060408051808201909152600681526535b930b5b2b760d11b6020820152919050565b6060600c805461075090612682565b600a546001600160a01b031633146114225760405162461bcd60e51b81526004016107259061256e565b600f55565b600a546001600160a01b031633146114515760405162461bcd60e51b81526004016107259061256e565b6001600160a01b0381166114b65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610725565b610d0081611954565b600a546001600160a01b031633146114e95760405162461bcd60e51b81526004016107259061256e565b600b80546114f690612682565b15905061153e5760405162461bcd60e51b8152602060048201526016602482015275141493d59153905390d157d053149150511657d4d15560521b6044820152606401610725565b8051610f2290600b9060208401906120a5565b60006001600160e01b031982166380ac58cd60e01b148061158257506001600160e01b03198216635b5e139f60e01b145b806106cb57506301ffc9a760e01b6001600160e01b03198316146106cb565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115d682610db1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061161a82610db1565b905061162881600084611bcf565b6116336000836115a1565b6001600160a01b038116600090815260036020526040812080546001929061165c90849061263f565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000818152600260205260408120546001600160a01b031661172f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610725565b600061173a83610db1565b9050806001600160a01b0316846001600160a01b031614806117755750836001600160a01b031661176a846107d3565b6001600160a01b0316145b806112da57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166112da565b826001600160a01b03166117bc82610db1565b6001600160a01b0316146118245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610725565b6001600160a01b0382166118865760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610725565b611891838383611bcf565b61189c6000826115a1565b6001600160a01b03831660009081526003602052604081208054600192906118c590849061263f565b90915550506001600160a01b03821660009081526003602052604081208054600192906118f39084906125f4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f22828260405180602001604052806000815250611c87565b816001600160a01b0316836001600160a01b03161415611a225760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610725565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a9a8484846117a9565b611aa684848484611cba565b61120c5760405162461bcd60e51b81526004016107259061251c565b6060600d805461075090612682565b606081611af55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b1f5780611b09816126bd565b9150611b189050600a8361260c565b9150611af9565b60008167ffffffffffffffff811115611b3a57611b3a612744565b6040519080825280601f01601f191660200182016040528015611b64576020820181803683370190505b5090505b84156112da57611b7960018361263f565b9150611b86600a866126d8565b611b919060306125f4565b60f81b818381518110611ba657611ba661272e565b60200101906001600160f81b031916908160001a905350611bc8600a8661260c565b9450611b68565b6001600160a01b038316611c2a57611c2581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c4d565b816001600160a01b0316836001600160a01b031614611c4d57611c4d8382611dc7565b6001600160a01b038216611c645761097981611e64565b826001600160a01b0316826001600160a01b031614610979576109798282611f13565b611c918383611f57565b611c9e6000848484611cba565b6109795760405162461bcd60e51b81526004016107259061251c565b60006001600160a01b0384163b15611dbc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cfe9033908990889088906004016124cc565b602060405180830381600087803b158015611d1857600080fd5b505af1925050508015611d48575060408051601f3d908101601f19168201909252611d459181019061237e565b60015b611da2573d808015611d76576040519150601f19603f3d011682016040523d82523d6000602084013e611d7b565b606091505b508051611d9a5760405162461bcd60e51b81526004016107259061251c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112da565b506001949350505050565b60006001611dd484610e28565b611dde919061263f565b600083815260076020526040902054909150808214611e31576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e769060019061263f565b60008381526009602052604081205460088054939450909284908110611e9e57611e9e61272e565b906000526020600020015490508060088381548110611ebf57611ebf61272e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ef757611ef7612718565b6001900381819060005260206000200160009055905550505050565b6000611f1e83610e28565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611fad5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610725565b6000818152600260205260409020546001600160a01b0316156120125760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610725565b61201e60008383611bcf565b6001600160a01b03821660009081526003602052604081208054600192906120479084906125f4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120b190612682565b90600052602060002090601f0160209004810192826120d35760008555612119565b82601f106120ec57805160ff1916838001178555612119565b82800160010185558215612119579182015b828111156121195782518255916020019190600101906120fe565b50612125929150612129565b5090565b5b80821115612125576000815560010161212a565b600067ffffffffffffffff8084111561215957612159612744565b604051601f8501601f19908116603f0116810190828211818310171561218157612181612744565b8160405280935085815286868601111561219a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146121cb57600080fd5b919050565b803580151581146121cb57600080fd5b600082601f8301126121f157600080fd5b6122008383356020850161213e565b9392505050565b60006020828403121561221957600080fd5b612200826121b4565b6000806040838503121561223557600080fd5b61223e836121b4565b915061224c602084016121b4565b90509250929050565b60008060006060848603121561226a57600080fd5b612273846121b4565b9250612281602085016121b4565b9150604084013590509250925092565b600080600080608085870312156122a757600080fd5b6122b0856121b4565b93506122be602086016121b4565b925060408501359150606085013567ffffffffffffffff8111156122e157600080fd5b8501601f810187136122f257600080fd5b6123018782356020840161213e565b91505092959194509250565b6000806040838503121561232057600080fd5b612329836121b4565b915061224c602084016121d0565b6000806040838503121561234a57600080fd5b612353836121b4565b946020939093013593505050565b60006020828403121561237357600080fd5b81356122008161275a565b60006020828403121561239057600080fd5b81516122008161275a565b6000602082840312156123ad57600080fd5b813567ffffffffffffffff8111156123c457600080fd5b6112da848285016121e0565b600080604083850312156123e357600080fd5b823567ffffffffffffffff8111156123fa57600080fd5b612406858286016121e0565b92505061224c602084016121d0565b60006020828403121561242757600080fd5b5035919050565b6000806040838503121561244157600080fd5b50508035926020909101359150565b60008151808452612468816020860160208601612656565b601f01601f19169290920160200192915050565b6000845161248e818460208901612656565b8451908301906124a2818360208901612656565b602f60f81b910190815283516124bf816001840160208801612656565b0160010195945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124ff90830184612450565b9695505050505050565b6020815260006122006020830184612450565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612607576126076126ec565b500190565b60008261261b5761261b612702565b500490565b600081600019048311821515161561263a5761263a6126ec565b500290565b600082821015612651576126516126ec565b500390565b60005b83811015612671578181015183820152602001612659565b8381111561120c5750506000910152565b600181811c9082168061269657607f821691505b602082108114156126b757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126d1576126d16126ec565b5060010190565b6000826126e7576126e7612702565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d0057600080fdfea264697066735822122066c86c1fa6456bc522cc8fca02920c81f055d4e3ce97a129cefc8cdbf8ecc54564736f6c63430008060033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80638da5cb5b11610123578063c002d23d116100ab578063e8a3d4851161006f578063e8a3d485146105e8578063e985e9c5146105fd578063ec17b20e14610646578063f2fde38b14610666578063ffe630b51461068657600080fd5b8063c002d23d14610558578063c2252b5514610573578063c87b56dd14610593578063d91c98d3146105b3578063e6c3b1f6146105c857600080fd5b8063a22cb465116100f2578063a22cb465146104c3578063a4f4f8af146104e3578063a880e9a4146104f8578063b64b21ca14610518578063b88d4fde1461053857600080fd5b80638da5cb5b1461045d578063938e3d7b1461047b57806395d89b411461049b578063a0712d68146104b057600080fd5b80632f745c59116101a65780634f6ccce7116101755780634f6ccce7146103d25780636352211e146103f257806363610e7a1461041257806370a0823114610428578063715018a61461044857600080fd5b80632f745c59146103685780633ccfd60b1461038857806342842e0e1461039d5780634882608c146103bd57600080fd5b8063095ea7b3116101ed578063095ea7b3146102dc5780630f7309e8146102fe578063165e0dc61461031357806318160ddd1461033357806323b872dd1461034857600080fd5b806301ffc9a71461021f57806305c58df21461025457806306fdde0314610282578063081812fc146102a4575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612361565b6106a6565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004612415565b6106d1565b60405190815260200161024b565b34801561028e57600080fd5b50610297610741565b60405161024b9190612509565b3480156102b057600080fd5b506102c46102bf366004612415565b6107d3565b6040516001600160a01b03909116815260200161024b565b3480156102e857600080fd5b506102fc6102f7366004612337565b610868565b005b34801561030a57600080fd5b5061029761097e565b34801561031f57600080fd5b506102fc61032e36600461242e565b610a0c565b34801561033f57600080fd5b50600854610274565b34801561035457600080fd5b506102fc610363366004612255565b610be3565b34801561037457600080fd5b50610274610383366004612337565b610c14565b34801561039457600080fd5b506102fc610caa565b3480156103a957600080fd5b506102fc6103b8366004612255565b610d03565b3480156103c957600080fd5b50610274600a81565b3480156103de57600080fd5b506102746103ed366004612415565b610d1e565b3480156103fe57600080fd5b506102c461040d366004612415565b610db1565b34801561041e57600080fd5b5061027461271081565b34801561043457600080fd5b50610274610443366004612207565b610e28565b34801561045457600080fd5b506102fc610eaf565b34801561046957600080fd5b50600a546001600160a01b03166102c4565b34801561048757600080fd5b506102fc61049636600461239b565b610ee5565b3480156104a757600080fd5b50610297610f26565b6102fc6104be366004612415565b610f35565b3480156104cf57600080fd5b506102fc6104de36600461230d565b611123565b3480156104ef57600080fd5b50601154610274565b34801561050457600080fd5b50610274610513366004612207565b61112e565b34801561052457600080fd5b506102fc6105333660046123d0565b611188565b34801561054457600080fd5b506102fc610553366004612291565b6111da565b34801561056457600080fd5b50610274662386f26fc1000081565b34801561057f57600080fd5b5061027461058e366004612207565b611212565b34801561059f57600080fd5b506102976105ae366004612415565b611268565b3480156105bf57600080fd5b50600f54610274565b3480156105d457600080fd5b506102976105e3366004612415565b611332565b3480156105f457600080fd5b506102976113e9565b34801561060957600080fd5b5061023f610618366004612222565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065257600080fd5b506102fc610661366004612415565b6113f8565b34801561067257600080fd5b506102fc610681366004612207565b611427565b34801561069257600080fd5b506102fc6106a136600461239b565b6114bf565b60006001600160e01b0319821663780e9d6360e01b14806106cb57506106cb82611551565b92915050565b6000818152600260205260408120546001600160a01b031661072e5760405162461bcd60e51b81526020600482015260116024820152702727a722ac24a9aa22a72a2faa27a5a2a760791b60448201526064015b60405180910390fd5b5060009081526012602052604090205490565b60606000805461075090612682565b80601f016020809104026020016040519081016040528092919081815260200182805461077c90612682565b80156107c95780601f1061079e576101008083540402835291602001916107c9565b820191906000526020600020905b8154815290600101906020018083116107ac57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661084c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610725565b506000908152600460205260409020546001600160a01b031690565b600061087382610db1565b9050806001600160a01b0316836001600160a01b031614156108e15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610725565b336001600160a01b03821614806108fd57506108fd8133610618565b61096f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610725565b61097983836115a1565b505050565b600b805461098b90612682565b80601f01602080910402602001604051908101604052809291908181526020018280546109b790612682565b8015610a045780601f106109d957610100808354040283529160200191610a04565b820191906000526020600020905b8154815290600101906020018083116109e757829003601f168201915b505050505081565b80821415610a505760405162461bcd60e51b8152602060048201526011602482015270135554d517d09157d11251919154915395607a1b6044820152606401610725565b33610a5a83610db1565b6001600160a01b031614610aa45760405162461bcd60e51b815260206004820152601160248201527026aaa9aa2fa7aba72fa82922a220aa27a960791b6044820152606401610725565b33610aae82610db1565b6001600160a01b031614610af45760405162461bcd60e51b815260206004820152600d60248201526c4d5553545f4f574e5f5052455960981b6044820152606401610725565b600081815260126020526040808220548483529120541015610b585760405162461bcd60e51b815260206004820152601d60248201527f505245595f4d4f52455f4c4556454c5f5448414e5f5052454441544f520000006044820152606401610725565b610b618161160f565b60008181526012602052604080822054848352908220805491929091610b889084906125f4565b90915550506000818152601260209081526040808320839055848352918290205491519182528291849133917f16624d84ec04ca9f43e298b22580617d260f918ff3eede3e717653a3c28f3845910160405180910390a45050565b610bed33826116b6565b610c095760405162461bcd60e51b8152600401610725906125a3565b6109798383836117a9565b6000610c1f83610e28565b8210610c815760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610725565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610cd45760405162461bcd60e51b81526004016107259061256e565b60405133904780156108fc02916000818181858888f19350505050158015610d00573d6000803e3d6000fd5b50565b610979838383604051806020016040528060008152506111da565b6000610d2960085490565b8210610d8c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610725565b60088281548110610d9f57610d9f61272e565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106cb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610725565b60006001600160a01b038216610e935760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610725565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ed95760405162461bcd60e51b81526004016107259061256e565b610ee36000611954565b565b600a546001600160a01b03163314610f0f5760405162461bcd60e51b81526004016107259061256e565b8051610f2290600c9060208401906120a5565b5050565b60606001805461075090612682565b600f54431015610f7a5760405162461bcd60e51b815260206004820152601060248201526f14d0531157d393d517d4d5105495115160821b6044820152606401610725565b600a811115610fcb5760405162461bcd60e51b815260206004820152601760248201527f5155414e544954595f41424f56455f4d41585f4d494e540000000000000000006044820152606401610725565b61271081601154610fdc91906125f4565b11156110205760405162461bcd60e51b8152602060048201526013602482015272574f554c445f4558434545445f535550504c5960681b6044820152606401610725565b61103181662386f26fc10000612620565b3410156110715760405162461bcd60e51b815260206004820152600e60248201526d09c9ea8be8a9c9eaa8e90be8aa8960931b6044820152606401610725565b3332146110b85760405162461bcd60e51b815260206004820152601560248201527410d3d395149050d514d7d0d0539393d517d3525395605a1b6044820152606401610725565b80601160008282546110ca91906125f4565b90915550600090505b81811015610f2257601080549060006110eb836126bd565b91905055506110fc336010546119a6565b6010546000908152601260205260409020600190558061111b816126bd565b9150506110d3565b610f223383836119c0565b6000808061113b84610e28565b905060005b8181101561117f5760006111548683610c14565b905061115f816106d1565b61116990856125f4565b9350508080611177906126bd565b915050611140565b50909392505050565b600a546001600160a01b031633146111b25760405162461bcd60e51b81526004016107259061256e565b81516111c590600d9060208501906120a5565b50600e805460ff191691151591909117905550565b6111e433836116b6565b6112005760405162461bcd60e51b8152600401610725906125a3565b61120c84848484611a8f565b50505050565b6000808061121f84610e28565b905060005b8181101561117f5760006112388683610c14565b90506000611245826106d1565b905084811115611253578094505b50508080611260906126bd565b915050611224565b60606000611274611ac2565b600e5490915060ff16156112e257600061128d84611332565b905060008251116112ad57604051806020016040528060008152506112da565b816112b785611ad1565b826040516020016112ca9392919061247c565b6040516020818303038152906040525b949350505050565b60006112ed846106d1565b9050600082511161130d57604051806020016040528060008152506112da565b8161131785611ad1565b61132083611ad1565b6040516020016112ca9392919061247c565b6060600061133f836106d1565b9050600a81101561136c5750506040805180820190915260048152630ccd2e6d60e31b6020820152919050565b6064811015611398575050604080518082019091526005815264736861726b60d81b6020820152919050565b6103e88110156113c55750506040805180820190915260058152647768616c6560d81b6020820152919050565b505060408051808201909152600681526535b930b5b2b760d11b6020820152919050565b6060600c805461075090612682565b600a546001600160a01b031633146114225760405162461bcd60e51b81526004016107259061256e565b600f55565b600a546001600160a01b031633146114515760405162461bcd60e51b81526004016107259061256e565b6001600160a01b0381166114b65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610725565b610d0081611954565b600a546001600160a01b031633146114e95760405162461bcd60e51b81526004016107259061256e565b600b80546114f690612682565b15905061153e5760405162461bcd60e51b8152602060048201526016602482015275141493d59153905390d157d053149150511657d4d15560521b6044820152606401610725565b8051610f2290600b9060208401906120a5565b60006001600160e01b031982166380ac58cd60e01b148061158257506001600160e01b03198216635b5e139f60e01b145b806106cb57506301ffc9a760e01b6001600160e01b03198316146106cb565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115d682610db1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061161a82610db1565b905061162881600084611bcf565b6116336000836115a1565b6001600160a01b038116600090815260036020526040812080546001929061165c90849061263f565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000818152600260205260408120546001600160a01b031661172f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610725565b600061173a83610db1565b9050806001600160a01b0316846001600160a01b031614806117755750836001600160a01b031661176a846107d3565b6001600160a01b0316145b806112da57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166112da565b826001600160a01b03166117bc82610db1565b6001600160a01b0316146118245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610725565b6001600160a01b0382166118865760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610725565b611891838383611bcf565b61189c6000826115a1565b6001600160a01b03831660009081526003602052604081208054600192906118c590849061263f565b90915550506001600160a01b03821660009081526003602052604081208054600192906118f39084906125f4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f22828260405180602001604052806000815250611c87565b816001600160a01b0316836001600160a01b03161415611a225760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610725565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a9a8484846117a9565b611aa684848484611cba565b61120c5760405162461bcd60e51b81526004016107259061251c565b6060600d805461075090612682565b606081611af55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b1f5780611b09816126bd565b9150611b189050600a8361260c565b9150611af9565b60008167ffffffffffffffff811115611b3a57611b3a612744565b6040519080825280601f01601f191660200182016040528015611b64576020820181803683370190505b5090505b84156112da57611b7960018361263f565b9150611b86600a866126d8565b611b919060306125f4565b60f81b818381518110611ba657611ba661272e565b60200101906001600160f81b031916908160001a905350611bc8600a8661260c565b9450611b68565b6001600160a01b038316611c2a57611c2581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c4d565b816001600160a01b0316836001600160a01b031614611c4d57611c4d8382611dc7565b6001600160a01b038216611c645761097981611e64565b826001600160a01b0316826001600160a01b031614610979576109798282611f13565b611c918383611f57565b611c9e6000848484611cba565b6109795760405162461bcd60e51b81526004016107259061251c565b60006001600160a01b0384163b15611dbc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cfe9033908990889088906004016124cc565b602060405180830381600087803b158015611d1857600080fd5b505af1925050508015611d48575060408051601f3d908101601f19168201909252611d459181019061237e565b60015b611da2573d808015611d76576040519150601f19603f3d011682016040523d82523d6000602084013e611d7b565b606091505b508051611d9a5760405162461bcd60e51b81526004016107259061251c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112da565b506001949350505050565b60006001611dd484610e28565b611dde919061263f565b600083815260076020526040902054909150808214611e31576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e769060019061263f565b60008381526009602052604081205460088054939450909284908110611e9e57611e9e61272e565b906000526020600020015490508060088381548110611ebf57611ebf61272e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ef757611ef7612718565b6001900381819060005260206000200160009055905550505050565b6000611f1e83610e28565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611fad5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610725565b6000818152600260205260409020546001600160a01b0316156120125760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610725565b61201e60008383611bcf565b6001600160a01b03821660009081526003602052604081208054600192906120479084906125f4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120b190612682565b90600052602060002090601f0160209004810192826120d35760008555612119565b82601f106120ec57805160ff1916838001178555612119565b82800160010185558215612119579182015b828111156121195782518255916020019190600101906120fe565b50612125929150612129565b5090565b5b80821115612125576000815560010161212a565b600067ffffffffffffffff8084111561215957612159612744565b604051601f8501601f19908116603f0116810190828211818310171561218157612181612744565b8160405280935085815286868601111561219a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146121cb57600080fd5b919050565b803580151581146121cb57600080fd5b600082601f8301126121f157600080fd5b6122008383356020850161213e565b9392505050565b60006020828403121561221957600080fd5b612200826121b4565b6000806040838503121561223557600080fd5b61223e836121b4565b915061224c602084016121b4565b90509250929050565b60008060006060848603121561226a57600080fd5b612273846121b4565b9250612281602085016121b4565b9150604084013590509250925092565b600080600080608085870312156122a757600080fd5b6122b0856121b4565b93506122be602086016121b4565b925060408501359150606085013567ffffffffffffffff8111156122e157600080fd5b8501601f810187136122f257600080fd5b6123018782356020840161213e565b91505092959194509250565b6000806040838503121561232057600080fd5b612329836121b4565b915061224c602084016121d0565b6000806040838503121561234a57600080fd5b612353836121b4565b946020939093013593505050565b60006020828403121561237357600080fd5b81356122008161275a565b60006020828403121561239057600080fd5b81516122008161275a565b6000602082840312156123ad57600080fd5b813567ffffffffffffffff8111156123c457600080fd5b6112da848285016121e0565b600080604083850312156123e357600080fd5b823567ffffffffffffffff8111156123fa57600080fd5b612406858286016121e0565b92505061224c602084016121d0565b60006020828403121561242757600080fd5b5035919050565b6000806040838503121561244157600080fd5b50508035926020909101359150565b60008151808452612468816020860160208601612656565b601f01601f19169290920160200192915050565b6000845161248e818460208901612656565b8451908301906124a2818360208901612656565b602f60f81b910190815283516124bf816001840160208801612656565b0160010195945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124ff90830184612450565b9695505050505050565b6020815260006122006020830184612450565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612607576126076126ec565b500190565b60008261261b5761261b612702565b500490565b600081600019048311821515161561263a5761263a6126ec565b500290565b600082821015612651576126516126ec565b500390565b60005b83811015612671578181015183820152602001612659565b8381111561120c5750506000910152565b600181811c9082168061269657607f821691505b602082108114156126b757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126d1576126d16126ec565b5060010190565b6000826126e7576126e7612702565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d0057600080fdfea264697066735822122066c86c1fa6456bc522cc8fca02920c81f055d4e3ce97a129cefc8cdbf8ecc54564736f6c63430008060033
Deployed Bytecode Sourcemap
43780:5778:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34734:224;;;;;;;;;;-1:-1:-1;34734:224:0;;;;;:::i;:::-;;:::i;:::-;;;6802:14:1;;6795:22;6777:41;;6765:2;6750:18;34734:224:0;;;;;;;;45907:163;;;;;;;;;;-1:-1:-1;45907:163:0;;;;;:::i;:::-;;:::i;:::-;;;17817:25:1;;;17805:2;17790:18;45907:163:0;17772:76:1;21549:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23108:221::-;;;;;;;;;;-1:-1:-1;23108:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6100:32:1;;;6082:51;;6070:2;6055:18;23108:221:0;6037:102:1;22631:411:0;;;;;;;;;;-1:-1:-1;22631:411:0;;;;;:::i;:::-;;:::i;:::-;;44115:29;;;;;;;;;;;;;:::i;45345:520::-;;;;;;;;;;-1:-1:-1;45345:520:0;;;;;:::i;:::-;;:::i;35374:113::-;;;;;;;;;;-1:-1:-1;35462:10:0;:17;35374:113;;23858:339;;;;;;;;;;-1:-1:-1;23858:339:0;;;;;:::i;:::-;;:::i;35042:256::-;;;;;;;;;;-1:-1:-1;35042:256:0;;;;;:::i;:::-;;:::i;47155:109::-;;;;;;;;;;;;;:::i;24268:185::-;;;;;;;;;;-1:-1:-1;24268:185:0;;;;;:::i;:::-;;:::i;43972:40::-;;;;;;;;;;;;44010:2;43972:40;;35564:233;;;;;;;;;;-1:-1:-1;35564:233:0;;;;;:::i;:::-;;:::i;21243:239::-;;;;;;;;;;-1:-1:-1;21243:239:0;;;;;:::i;:::-;;:::i;43868:43::-;;;;;;;;;;;;43906:5;43868:43;;20973:208;;;;;;;;;;-1:-1:-1;20973:208:0;;;;;:::i;:::-;;:::i;42452:103::-;;;;;;;;;;;;;:::i;41801:87::-;;;;;;;;;;-1:-1:-1;41874:6:0;;-1:-1:-1;;;;;41874:6:0;41801:87;;47303:117;;;;;;;;;;-1:-1:-1;47303:117:0;;;;;:::i;:::-;;:::i;21718:104::-;;;;;;;;;;;;;:::i;44624:649::-;;;;;;:::i;:::-;;:::i;23401:155::-;;;;;;;;;;-1:-1:-1;23401:155:0;;;;;:::i;:::-;;:::i;48539:93::-;;;;;;;;;;-1:-1:-1;48611:13:0;;48539:93;;49177:378;;;;;;;;;;-1:-1:-1;49177:378:0;;;;;:::i;:::-;;:::i;47538:142::-;;;;;;;;;;-1:-1:-1;47538:142:0;;;;;:::i;:::-;;:::i;24524:328::-;;;;;;;;;;-1:-1:-1;24524:328:0;;;;;:::i;:::-;;:::i;43918:47::-;;;;;;;;;;;;43955:10;43918:47;;48671:465;;;;;;;;;;-1:-1:-1;48671:465:0;;;;;:::i;:::-;;:::i;46572:529::-;;;;;;;;;;-1:-1:-1;46572:529:0;;;;;:::i;:::-;;:::i;48402:95::-;;;;;;;;;;-1:-1:-1;48475:14:0;;48402:95;;46166:356;;;;;;;;;;-1:-1:-1;46166:356:0;;;;;:::i;:::-;;:::i;48101:97::-;;;;;;;;;;;;;:::i;23627:164::-;;;;;;;;;;-1:-1:-1;23627:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23748:25:0;;;23724:4;23748:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23627:164;47728:119;;;;;;;;;;-1:-1:-1;47728:119:0;;;;;:::i;:::-;;:::i;42710:201::-;;;;;;;;;;-1:-1:-1;42710:201:0;;;;;:::i;:::-;;:::i;47874:187::-;;;;;;;;;;-1:-1:-1;47874:187:0;;;;;:::i;:::-;;:::i;34734:224::-;34836:4;-1:-1:-1;;;;;;34860:50:0;;-1:-1:-1;;;34860:50:0;;:90;;;34914:36;34938:11;34914:23;:36::i;:::-;34853:97;34734:224;-1:-1:-1;;34734:224:0:o;45907:163::-;45961:7;26451:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26451:16:0;45981:47;;;;-1:-1:-1;;;45981:47:0;;11759:2:1;45981:47:0;;;11741:21:1;11798:2;11778:18;;;11771:30;-1:-1:-1;;;11817:18:1;;;11810:47;11874:18;;45981:47:0;;;;;;;;;-1:-1:-1;46046:16:0;;;;:6;:16;;;;;;;45907:163::o;21549:100::-;21603:13;21636:5;21629:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21549:100;:::o;23108:221::-;23184:7;26451:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26451:16:0;23204:73;;;;-1:-1:-1;;;23204:73:0;;14062:2:1;23204:73:0;;;14044:21:1;14101:2;14081:18;;;14074:30;14140:34;14120:18;;;14113:62;-1:-1:-1;;;14191:18:1;;;14184:42;14243:19;;23204:73:0;14034:234:1;23204:73:0;-1:-1:-1;23297:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23297:24:0;;23108:221::o;22631:411::-;22712:13;22728:23;22743:7;22728:14;:23::i;:::-;22712:39;;22776:5;-1:-1:-1;;;;;22770:11:0;:2;-1:-1:-1;;;;;22770:11:0;;;22762:57;;;;-1:-1:-1;;;22762:57:0;;15594:2:1;22762:57:0;;;15576:21:1;15633:2;15613:18;;;15606:30;15672:34;15652:18;;;15645:62;-1:-1:-1;;;15723:18:1;;;15716:31;15764:19;;22762:57:0;15566:223:1;22762:57:0;16396:10;-1:-1:-1;;;;;22854:21:0;;;;:62;;-1:-1:-1;22879:37:0;22896:5;16396:10;23627:164;:::i;22879:37::-;22832:168;;;;-1:-1:-1;;;22832:168:0;;12105:2:1;22832:168:0;;;12087:21:1;12144:2;12124:18;;;12117:30;12183:34;12163:18;;;12156:62;12254:26;12234:18;;;12227:54;12298:19;;22832:168:0;12077:246:1;22832:168:0;23013:21;23022:2;23026:7;23013:8;:21::i;:::-;22701:341;22631:411;;:::o;44115:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45345:520::-;45434:5;45421:9;:18;;45413:48;;;;-1:-1:-1;;;45413:48:0;;15996:2:1;45413:48:0;;;15978:21:1;16035:2;16015:18;;;16008:30;-1:-1:-1;;;16054:18:1;;;16047:47;16111:18;;45413:48:0;15968:167:1;45413:48:0;16396:10;45480:18;45488:9;45480:7;:18::i;:::-;-1:-1:-1;;;;;45480:34:0;;45472:64;;;;-1:-1:-1;;;45472:64:0;;8086:2:1;45472:64:0;;;8068:21:1;8125:2;8105:18;;;8098:30;-1:-1:-1;;;8144:18:1;;;8137:47;8201:18;;45472:64:0;8058:167:1;45472:64:0;16396:10;45555:14;45563:5;45555:7;:14::i;:::-;-1:-1:-1;;;;;45555:30:0;;45547:56;;;;-1:-1:-1;;;45547:56:0;;17531:2:1;45547:56:0;;;17513:21:1;17570:2;17550:18;;;17543:30;-1:-1:-1;;;17589:18:1;;;17582:43;17642:18;;45547:56:0;17503:163:1;45547:56:0;45643:13;;;;:6;:13;;;;;;;45622:17;;;;;;:34;;45614:76;;;;-1:-1:-1;;;45614:76:0;;16760:2:1;45614:76:0;;;16742:21:1;16799:2;16779:18;;;16772:30;16838:31;16818:18;;;16811:59;16887:18;;45614:76:0;16732:179:1;45614:76:0;45701:12;45707:5;45701;:12::i;:::-;45745:13;;;;:6;:13;;;;;;;45724:17;;;;;;:34;;45745:13;;45724:17;;:34;;45745:13;;45724:34;:::i;:::-;;;;-1:-1:-1;;45785:1:0;45769:13;;;:6;:13;;;;;;;;:17;;;45839;;;;;;;;45802:55;;17817:25:1;;;45769:13:0;;45821:9;;16396:10;;45802:55;;17790:18:1;45802:55:0;;;;;;;45345:520;;:::o;23858:339::-;24053:41;16396:10;24086:7;24053:18;:41::i;:::-;24045:103;;;;-1:-1:-1;;;24045:103:0;;;;;;;:::i;:::-;24161:28;24171:4;24177:2;24181:7;24161:9;:28::i;35042:256::-;35139:7;35175:23;35192:5;35175:16;:23::i;:::-;35167:5;:31;35159:87;;;;-1:-1:-1;;;35159:87:0;;7255:2:1;35159:87:0;;;7237:21:1;7294:2;7274:18;;;7267:30;7333:34;7313:18;;;7306:62;-1:-1:-1;;;7384:18:1;;;7377:41;7435:19;;35159:87:0;7227:233:1;35159:87:0;-1:-1:-1;;;;;;35264:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35042:256::o;47155:109::-;41874:6;;-1:-1:-1;;;;;41874:6:0;16396:10;42021:23;42013:68;;;;-1:-1:-1;;;42013:68:0;;;;;;;:::i;:::-;47205:51:::1;::::0;47213:10:::1;::::0;47234:21:::1;47205:51:::0;::::1;;;::::0;::::1;::::0;;;47234:21;47213:10;47205:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47155:109::o:0;24268:185::-;24406:39;24423:4;24429:2;24433:7;24406:39;;;;;;;;;;;;:16;:39::i;35564:233::-;35639:7;35675:30;35462:10;:17;;35374:113;35675:30;35667:5;:38;35659:95;;;;-1:-1:-1;;;35659:95:0;;17118:2:1;35659:95:0;;;17100:21:1;17157:2;17137:18;;;17130:30;17196:34;17176:18;;;17169:62;-1:-1:-1;;;17247:18:1;;;17240:42;17299:19;;35659:95:0;17090:234:1;35659:95:0;35772:10;35783:5;35772:17;;;;;;;;:::i;:::-;;;;;;;;;35765:24;;35564:233;;;:::o;21243:239::-;21315:7;21351:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21351:16:0;21386:19;21378:73;;;;-1:-1:-1;;;21378:73:0;;12941:2:1;21378:73:0;;;12923:21:1;12980:2;12960:18;;;12953:30;13019:34;12999:18;;;12992:62;-1:-1:-1;;;13070:18:1;;;13063:39;13119:19;;21378:73:0;12913:231:1;20973:208:0;21045:7;-1:-1:-1;;;;;21073:19:0;;21065:74;;;;-1:-1:-1;;;21065:74:0;;12530:2:1;21065:74:0;;;12512:21:1;12569:2;12549:18;;;12542:30;12608:34;12588:18;;;12581:62;-1:-1:-1;;;12659:18:1;;;12652:40;12709:19;;21065:74:0;12502:232:1;21065:74:0;-1:-1:-1;;;;;;21157:16:0;;;;;:9;:16;;;;;;;20973:208::o;42452:103::-;41874:6;;-1:-1:-1;;;;;41874:6:0;16396:10;42021:23;42013:68;;;;-1:-1:-1;;;42013:68:0;;;;;;;:::i;:::-;42517:30:::1;42544:1;42517:18;:30::i;:::-;42452:103::o:0;47303:117::-;41874:6;;-1:-1:-1;;;;;41874:6:0;16396:10;42021:23;42013:68;;;;-1:-1:-1;;;42013:68:0;;;;;;;:::i;:::-;47385:27;;::::1;::::0;:12:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47303:117:::0;:::o;21718:104::-;21774:13;21807:7;21800:14;;;;;:::i;44624:649::-;44709:14;;44693:12;:30;;44685:59;;;;-1:-1:-1;;;44685:59:0;;8839:2:1;44685:59:0;;;8821:21:1;8878:2;8858:18;;;8851:30;-1:-1:-1;;;8897:18:1;;;8890:46;8953:18;;44685:59:0;8811:166:1;44685:59:0;44010:2;44763:9;:24;;44755:60;;;;-1:-1:-1;;;44755:60:0;;11407:2:1;44755:60:0;;;11389:21:1;11446:2;11426:18;;;11419:30;11485:25;11465:18;;;11458:53;11528:18;;44755:60:0;11379:173:1;44755:60:0;43906:5;44850:9;44834:13;;:25;;;;:::i;:::-;:40;;44826:72;;;;-1:-1:-1;;;44826:72:0;;14475:2:1;44826:72:0;;;14457:21:1;14514:2;14494:18;;;14487:30;-1:-1:-1;;;14533:18:1;;;14526:49;14592:18;;44826:72:0;14447:169:1;44826:72:0;44930:22;44943:9;43955:10;44930:22;:::i;:::-;44917:9;:35;;44909:62;;;;-1:-1:-1;;;44909:62:0;;9541:2:1;44909:62:0;;;9523:21:1;9580:2;9560:18;;;9553:30;-1:-1:-1;;;9599:18:1;;;9592:44;9653:18;;44909:62:0;9513:164:1;44909:62:0;44990:10;45004:9;44990:23;44982:57;;;;-1:-1:-1;;;44982:57:0;;13351:2:1;44982:57:0;;;13333:21:1;13390:2;13370:18;;;13363:30;-1:-1:-1;;;13409:18:1;;;13402:51;13470:18;;44982:57:0;13323:171:1;44982:57:0;45067:9;45050:13;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;45092:9:0;;-1:-1:-1;45087:179:0;45111:9;45107:1;:13;45087:179;;;45142:15;:17;;;:15;:17;;;:::i;:::-;;;;;;45174:38;45184:10;45196:15;;45174:9;:38::i;:::-;45234:15;;45227:23;;;;:6;:23;;;;;45253:1;45227:27;;45122:3;;;;:::i;:::-;;;;45087:179;;23401:155;23496:52;16396:10;23529:8;23539;23496:18;:52::i;49177:378::-;49236:7;;;49318:19;49328:8;49318:9;:19::i;:::-;49290:47;;49353:9;49348:171;49372:17;49368:1;:21;49348:171;;;49411:16;49430:32;49450:8;49460:1;49430:19;:32::i;:::-;49411:51;;49492:15;49498:8;49492:5;:15::i;:::-;49477:30;;;;:::i;:::-;;;49396:123;49391:3;;;;;:::i;:::-;;;;49348:171;;;-1:-1:-1;49536:11:0;;49177:378;-1:-1:-1;;;49177:378:0:o;47538:142::-;41874:6;;-1:-1:-1;;;;;41874:6:0;16396:10;42021:23;42013:68;;;;-1:-1:-1;;;42013:68:0;;;;;;;:::i;:::-;47624:24;;::::1;::::0;:13:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;47659:5:0::1;:13:::0;;-1:-1:-1;;47659:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;47538:142:0:o;24524:328::-;24699:41;16396:10;24732:7;24699:18;:41::i;:::-;24691:103;;;;-1:-1:-1;;;24691:103:0;;;;;;;:::i;:::-;24805:39;24819:4;24825:2;24829:7;24838:5;24805:13;:39::i;:::-;24524:328;;;;:::o;48671:465::-;48728:7;;;48808:19;48818:8;48808:9;:19::i;:::-;48780:47;;48843:9;48838:264;48862:17;48858:1;:21;48838:264;;;48901:16;48920:32;48940:8;48950:1;48920:19;:32::i;:::-;48901:51;;48967:14;48984:15;48990:8;48984:5;:15::i;:::-;48967:32;;49027:9;49018:6;:18;49014:77;;;49069:6;49057:18;;49014:77;48886:216;;48881:3;;;;;:::i;:::-;;;;48838:264;;46572:529;46653:13;46679:21;46703:10;:8;:10::i;:::-;46730:5;;46679:34;;-1:-1:-1;46730:5:0;;46726:198;;;46752:19;46774:18;46784:7;46774:9;:18::i;:::-;46752:40;;46838:1;46820:7;46814:21;:25;:98;;;;;;;;;;;;;;;;;46866:7;46875:18;:7;:16;:18::i;:::-;46900:5;46849:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46814:98;46807:105;46572:529;-1:-1:-1;;;;46572:529:0:o;46726:198::-;46934:14;46951;46957:7;46951:5;:14::i;:::-;46934:31;;47007:1;46989:7;46983:21;:25;:110;;;;;;;;;;;;;;;;;47035:7;47044:18;:7;:16;:18::i;:::-;47069:17;:6;:15;:17::i;:::-;47018:69;;;;;;;;;;:::i;46166:356::-;46224:13;46250:14;46267:15;46273:8;46267:5;:15::i;:::-;46250:32;;46306:2;46297:6;:11;46293:57;;;-1:-1:-1;;46325:13:0;;;;;;;;;;;;-1:-1:-1;;;46325:13:0;;;;;46166:356;-1:-1:-1;46166:356:0:o;46293:57::-;46373:3;46364:6;:12;46360:59;;;-1:-1:-1;;46393:14:0;;;;;;;;;;;;-1:-1:-1;;;46393:14:0;;;;;46166:356;-1:-1:-1;46166:356:0:o;46360:59::-;46442:4;46433:6;:13;46429:60;;;-1:-1:-1;;46463:14:0;;;;;;;;;;;;-1:-1:-1;;;46463:14:0;;;;;46166:356;-1:-1:-1;46166:356:0:o;46429:60::-;-1:-1:-1;;46499:15:0;;;;;;;;;;;;-1:-1:-1;;;46499:15:0;;;;;46166:356;-1:-1:-1;46166:356:0:o;48101:97::-;48145:13;48178:12;48171:19;;;;;:::i;47728:119::-;41874:6;;-1:-1:-1;;;;;41874:6:0;16396:10;42021:23;42013:68;;;;-1:-1:-1;;;42013:68:0;;;;;;;:::i;:::-;47808:14:::1;:31:::0;47728:119::o;42710:201::-;41874:6;;-1:-1:-1;;;;;41874:6:0;16396:10;42021:23;42013:68;;;;-1:-1:-1;;;42013:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42799:22:0;::::1;42791:73;;;::::0;-1:-1:-1;;;42791:73:0;;8432:2:1;42791:73:0::1;::::0;::::1;8414:21:1::0;8471:2;8451:18;;;8444:30;8510:34;8490:18;;;8483:62;-1:-1:-1;;;8561:18:1;;;8554:36;8607:19;;42791:73:0::1;8404:228:1::0;42791:73:0::1;42875:28;42894:8;42875:18;:28::i;47874:187::-:0;41874:6;;-1:-1:-1;;;;;41874:6:0;16396:10;42021:23;42013:68;;;;-1:-1:-1;;;42013:68:0;;;;;;;:::i;:::-;47968:10:::1;47962:24;;;;;:::i;:::-;:29:::0;;-1:-1:-1;47954:64:0::1;;;::::0;-1:-1:-1;;;47954:64:0;;10643:2:1;47954:64:0::1;::::0;::::1;10625:21:1::0;10682:2;10662:18;;;10655:30;-1:-1:-1;;;10701:18:1;;;10694:52;10763:18;;47954:64:0::1;10615:172:1::0;47954:64:0::1;48029:24:::0;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;20604:305::-:0;20706:4;-1:-1:-1;;;;;;20743:40:0;;-1:-1:-1;;;20743:40:0;;:105;;-1:-1:-1;;;;;;;20800:48:0;;-1:-1:-1;;;20800:48:0;20743:105;:158;;;-1:-1:-1;;;;;;;;;;19322:40:0;;;20865:36;19213:157;30344:174;30419:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30419:29:0;-1:-1:-1;;;;;30419:29:0;;;;;;;;:24;;30473:23;30419:24;30473:14;:23::i;:::-;-1:-1:-1;;;;;30464:46:0;;;;;;;;;;;30344:174;;:::o;28951:360::-;29011:13;29027:23;29042:7;29027:14;:23::i;:::-;29011:39;;29063:48;29084:5;29099:1;29103:7;29063:20;:48::i;:::-;29152:29;29169:1;29173:7;29152:8;:29::i;:::-;-1:-1:-1;;;;;29194:16:0;;;;;;:9;:16;;;;;:21;;29214:1;;29194:16;:21;;29214:1;;29194:21;:::i;:::-;;;;-1:-1:-1;;29233:16:0;;;;:7;:16;;;;;;29226:23;;-1:-1:-1;;;;;;29226:23:0;;;29267:36;29241:7;;29233:16;-1:-1:-1;;;;;29267:36:0;;;;;29233:16;;29267:36;29000:311;28951:360;:::o;26656:348::-;26749:4;26451:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26451:16:0;26766:73;;;;-1:-1:-1;;;26766:73:0;;10994:2:1;26766:73:0;;;10976:21:1;11033:2;11013:18;;;11006:30;11072:34;11052:18;;;11045:62;-1:-1:-1;;;11123:18:1;;;11116:42;11175:19;;26766:73:0;10966:234:1;26766:73:0;26850:13;26866:23;26881:7;26866:14;:23::i;:::-;26850:39;;26919:5;-1:-1:-1;;;;;26908:16:0;:7;-1:-1:-1;;;;;26908:16:0;;:51;;;;26952:7;-1:-1:-1;;;;;26928:31:0;:20;26940:7;26928:11;:20::i;:::-;-1:-1:-1;;;;;26928:31:0;;26908:51;:87;;;-1:-1:-1;;;;;;23748:25:0;;;23724:4;23748:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26963:32;23627:164;29648:578;29807:4;-1:-1:-1;;;;;29780:31:0;:23;29795:7;29780:14;:23::i;:::-;-1:-1:-1;;;;;29780:31:0;;29772:85;;;;-1:-1:-1;;;29772:85:0;;15184:2:1;29772:85:0;;;15166:21:1;15223:2;15203:18;;;15196:30;15262:34;15242:18;;;15235:62;-1:-1:-1;;;15313:18:1;;;15306:39;15362:19;;29772:85:0;15156:231:1;29772:85:0;-1:-1:-1;;;;;29876:16:0;;29868:65;;;;-1:-1:-1;;;29868:65:0;;9884:2:1;29868:65:0;;;9866:21:1;9923:2;9903:18;;;9896:30;9962:34;9942:18;;;9935:62;-1:-1:-1;;;10013:18:1;;;10006:34;10057:19;;29868:65:0;9856:226:1;29868:65:0;29946:39;29967:4;29973:2;29977:7;29946:20;:39::i;:::-;30050:29;30067:1;30071:7;30050:8;:29::i;:::-;-1:-1:-1;;;;;30092:15:0;;;;;;:9;:15;;;;;:20;;30111:1;;30092:15;:20;;30111:1;;30092:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30123:13:0;;;;;;:9;:13;;;;;:18;;30140:1;;30123:13;:18;;30140:1;;30123:18;:::i;:::-;;;;-1:-1:-1;;30152:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30152:21:0;-1:-1:-1;;;;;30152:21:0;;;;;;;;;30191:27;;30152:16;;30191:27;;;;;;;29648:578;;;:::o;43071:191::-;43164:6;;;-1:-1:-1;;;;;43181:17:0;;;-1:-1:-1;;;;;;43181:17:0;;;;;;;43214:40;;43164:6;;;43181:17;43164:6;;43214:40;;43145:16;;43214:40;43134:128;43071:191;:::o;27346:110::-;27422:26;27432:2;27436:7;27422:26;;;;;;;;;;;;:9;:26::i;30660:315::-;30815:8;-1:-1:-1;;;;;30806:17:0;:5;-1:-1:-1;;;;;30806:17:0;;;30798:55;;;;-1:-1:-1;;;30798:55:0;;10289:2:1;30798:55:0;;;10271:21:1;10328:2;10308:18;;;10301:30;10367:27;10347:18;;;10340:55;10412:18;;30798:55:0;10261:175:1;30798:55:0;-1:-1:-1;;;;;30864:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;30864:46:0;;;;;;;;;;30926:41;;6777::1;;;30926::0;;6750:18:1;30926:41:0;;;;;;;30660:315;;;:::o;25734:::-;25891:28;25901:4;25907:2;25911:7;25891:9;:28::i;:::-;25938:48;25961:4;25967:2;25971:7;25980:5;25938:22;:48::i;:::-;25930:111;;;;-1:-1:-1;;;25930:111:0;;;;;;;:::i;48252:114::-;48312:13;48345;48338:20;;;;;:::i;16756:723::-;16812:13;17033:10;17029:53;;-1:-1:-1;;17060:10:0;;;;;;;;;;;;-1:-1:-1;;;17060:10:0;;;;;16756:723::o;17029:53::-;17107:5;17092:12;17148:78;17155:9;;17148:78;;17181:8;;;;:::i;:::-;;-1:-1:-1;17204:10:0;;-1:-1:-1;17212:2:0;17204:10;;:::i;:::-;;;17148:78;;;17236:19;17268:6;17258:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17258:17:0;;17236:39;;17286:154;17293:10;;17286:154;;17320:11;17330:1;17320:11;;:::i;:::-;;-1:-1:-1;17389:10:0;17397:2;17389:5;:10;:::i;:::-;17376:24;;:2;:24;:::i;:::-;17363:39;;17346:6;17353;17346:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17346:56:0;;;;;;;;-1:-1:-1;17417:11:0;17426:2;17417:11;;:::i;:::-;;;17286:154;;36410:589;-1:-1:-1;;;;;36616:18:0;;36612:187;;36651:40;36683:7;37826:10;:17;;37799:24;;;;:15;:24;;;;;:44;;;37854:24;;;;;;;;;;;;37722:164;36651:40;36612:187;;;36721:2;-1:-1:-1;;;;;36713:10:0;:4;-1:-1:-1;;;;;36713:10:0;;36709:90;;36740:47;36773:4;36779:7;36740:32;:47::i;:::-;-1:-1:-1;;;;;36813:16:0;;36809:183;;36846:45;36883:7;36846:36;:45::i;36809:183::-;36919:4;-1:-1:-1;;;;;36913:10:0;:2;-1:-1:-1;;;;;36913:10:0;;36909:83;;36940:40;36968:2;36972:7;36940:27;:40::i;27683:321::-;27813:18;27819:2;27823:7;27813:5;:18::i;:::-;27864:54;27895:1;27899:2;27903:7;27912:5;27864:22;:54::i;:::-;27842:154;;;;-1:-1:-1;;;27842:154:0;;;;;;;:::i;31540:799::-;31695:4;-1:-1:-1;;;;;31716:13:0;;8768:20;8816:8;31712:620;;31752:72;;-1:-1:-1;;;31752:72:0;;-1:-1:-1;;;;;31752:36:0;;;;;:72;;16396:10;;31803:4;;31809:7;;31818:5;;31752:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31752:72:0;;;;;;;;-1:-1:-1;;31752:72:0;;;;;;;;;;;;:::i;:::-;;;31748:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31994:13:0;;31990:272;;32037:60;;-1:-1:-1;;;32037:60:0;;;;;;;:::i;31990:272::-;32212:6;32206:13;32197:6;32193:2;32189:15;32182:38;31748:529;-1:-1:-1;;;;;;31875:51:0;-1:-1:-1;;;31875:51:0;;-1:-1:-1;31868:58:0;;31712:620;-1:-1:-1;32316:4:0;31540:799;;;;;;:::o;38513:988::-;38779:22;38829:1;38804:22;38821:4;38804:16;:22::i;:::-;:26;;;;:::i;:::-;38841:18;38862:26;;;:17;:26;;;;;;38779:51;;-1:-1:-1;38995:28:0;;;38991:328;;-1:-1:-1;;;;;39062:18:0;;39040:19;39062:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39113:30;;;;;;:44;;;39230:30;;:17;:30;;;;;:43;;;38991:328;-1:-1:-1;39415:26:0;;;;:17;:26;;;;;;;;39408:33;;;-1:-1:-1;;;;;39459:18:0;;;;;:12;:18;;;;;:34;;;;;;;39452:41;38513:988::o;39796:1079::-;40074:10;:17;40049:22;;40074:21;;40094:1;;40074:21;:::i;:::-;40106:18;40127:24;;;:15;:24;;;;;;40500:10;:26;;40049:46;;-1:-1:-1;40127:24:0;;40049:46;;40500:26;;;;;;:::i;:::-;;;;;;;;;40478:48;;40564:11;40539:10;40550;40539:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40644:28;;;:15;:28;;;;;;;:41;;;40816:24;;;;;40809:31;40851:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39867:1008;;;39796:1079;:::o;37300:221::-;37385:14;37402:20;37419:2;37402:16;:20::i;:::-;-1:-1:-1;;;;;37433:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37478:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37300:221:0:o;28340:382::-;-1:-1:-1;;;;;28420:16:0;;28412:61;;;;-1:-1:-1;;;28412:61:0;;13701:2:1;28412:61:0;;;13683:21:1;;;13720:18;;;13713:30;13779:34;13759:18;;;13752:62;13831:18;;28412:61:0;13673:182:1;28412:61:0;26427:4;26451:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26451:16:0;:30;28484:58;;;;-1:-1:-1;;;28484:58:0;;9184:2:1;28484:58:0;;;9166:21:1;9223:2;9203:18;;;9196:30;9262;9242:18;;;9235:58;9310:18;;28484:58:0;9156:178:1;28484:58:0;28555:45;28584:1;28588:2;28592:7;28555:20;:45::i;:::-;-1:-1:-1;;;;;28613:13:0;;;;;;:9;:13;;;;;:18;;28630:1;;28613:13;:18;;28630:1;;28613:18;:::i;:::-;;;;-1:-1:-1;;28642:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28642:21:0;-1:-1:-1;;;;;28642:21:0;;;;;;;;28681:33;;28642:16;;;28681:33;;28642:16;;28681:33;28340:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:221;1036:5;1089:3;1082:4;1074:6;1070:17;1066:27;1056:2;;1107:1;1104;1097:12;1056:2;1129:79;1204:3;1195:6;1182:20;1175:4;1167:6;1163:17;1129:79;:::i;:::-;1120:88;1046:168;-1:-1:-1;;;1046:168:1:o;1219:186::-;1278:6;1331:2;1319:9;1310:7;1306:23;1302:32;1299:2;;;1347:1;1344;1337:12;1299:2;1370:29;1389:9;1370:29;:::i;1410:260::-;1478:6;1486;1539:2;1527:9;1518:7;1514:23;1510:32;1507:2;;;1555:1;1552;1545:12;1507:2;1578:29;1597:9;1578:29;:::i;:::-;1568:39;;1626:38;1660:2;1649:9;1645:18;1626:38;:::i;:::-;1616:48;;1497:173;;;;;:::o;1675:328::-;1752:6;1760;1768;1821:2;1809:9;1800:7;1796:23;1792:32;1789:2;;;1837:1;1834;1827:12;1789:2;1860:29;1879:9;1860:29;:::i;:::-;1850:39;;1908:38;1942:2;1931:9;1927:18;1908:38;:::i;:::-;1898:48;;1993:2;1982:9;1978:18;1965:32;1955:42;;1779:224;;;;;:::o;2008:666::-;2103:6;2111;2119;2127;2180:3;2168:9;2159:7;2155:23;2151:33;2148:2;;;2197:1;2194;2187:12;2148:2;2220:29;2239:9;2220:29;:::i;:::-;2210:39;;2268:38;2302:2;2291:9;2287:18;2268:38;:::i;:::-;2258:48;;2353:2;2342:9;2338:18;2325:32;2315:42;;2408:2;2397:9;2393:18;2380:32;2435:18;2427:6;2424:30;2421:2;;;2467:1;2464;2457:12;2421:2;2490:22;;2543:4;2535:13;;2531:27;-1:-1:-1;2521:2:1;;2572:1;2569;2562:12;2521:2;2595:73;2660:7;2655:2;2642:16;2637:2;2633;2629:11;2595:73;:::i;:::-;2585:83;;;2138:536;;;;;;;:::o;2679:254::-;2744:6;2752;2805:2;2793:9;2784:7;2780:23;2776:32;2773:2;;;2821:1;2818;2811:12;2773:2;2844:29;2863:9;2844:29;:::i;:::-;2834:39;;2892:35;2923:2;2912:9;2908:18;2892:35;:::i;2938:254::-;3006:6;3014;3067:2;3055:9;3046:7;3042:23;3038:32;3035:2;;;3083:1;3080;3073:12;3035:2;3106:29;3125:9;3106:29;:::i;:::-;3096:39;3182:2;3167:18;;;;3154:32;;-1:-1:-1;;;3025:167:1:o;3197:245::-;3255:6;3308:2;3296:9;3287:7;3283:23;3279:32;3276:2;;;3324:1;3321;3314:12;3276:2;3363:9;3350:23;3382:30;3406:5;3382:30;:::i;3447:249::-;3516:6;3569:2;3557:9;3548:7;3544:23;3540:32;3537:2;;;3585:1;3582;3575:12;3537:2;3617:9;3611:16;3636:30;3660:5;3636:30;:::i;3701:322::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:2;;;3839:1;3836;3829:12;3791:2;3879:9;3866:23;3912:18;3904:6;3901:30;3898:2;;;3944:1;3941;3934:12;3898:2;3967:50;4009:7;4000:6;3989:9;3985:22;3967:50;:::i;4028:390::-;4103:6;4111;4164:2;4152:9;4143:7;4139:23;4135:32;4132:2;;;4180:1;4177;4170:12;4132:2;4220:9;4207:23;4253:18;4245:6;4242:30;4239:2;;;4285:1;4282;4275:12;4239:2;4308:50;4350:7;4341:6;4330:9;4326:22;4308:50;:::i;:::-;4298:60;;;4377:35;4408:2;4397:9;4393:18;4377:35;:::i;4423:180::-;4482:6;4535:2;4523:9;4514:7;4510:23;4506:32;4503:2;;;4551:1;4548;4541:12;4503:2;-1:-1:-1;4574:23:1;;4493:110;-1:-1:-1;4493:110:1:o;4608:248::-;4676:6;4684;4737:2;4725:9;4716:7;4712:23;4708:32;4705:2;;;4753:1;4750;4743:12;4705:2;-1:-1:-1;;4776:23:1;;;4846:2;4831:18;;;4818:32;;-1:-1:-1;4695:161:1:o;4861:257::-;4902:3;4940:5;4934:12;4967:6;4962:3;4955:19;4983:63;5039:6;5032:4;5027:3;5023:14;5016:4;5009:5;5005:16;4983:63;:::i;:::-;5100:2;5079:15;-1:-1:-1;;5075:29:1;5066:39;;;;5107:4;5062:50;;4910:208;-1:-1:-1;;4910:208:1:o;5123:808::-;5451:3;5489:6;5483:13;5505:53;5551:6;5546:3;5539:4;5531:6;5527:17;5505:53;:::i;:::-;5621:13;;5580:16;;;;5643:57;5621:13;5580:16;5677:4;5665:17;;5643:57;:::i;:::-;-1:-1:-1;;;5722:20:1;;5751:18;;;5794:13;;5816:65;5794:13;5868:1;5857:13;;5850:4;5838:17;;5816:65;:::i;:::-;5901:20;5923:1;5897:28;;5459:472;-1:-1:-1;;;;;5459:472:1:o;6144:488::-;-1:-1:-1;;;;;6413:15:1;;;6395:34;;6465:15;;6460:2;6445:18;;6438:43;6512:2;6497:18;;6490:34;;;6560:3;6555:2;6540:18;;6533:31;;;6338:4;;6581:45;;6606:19;;6598:6;6581:45;:::i;:::-;6573:53;6347:285;-1:-1:-1;;;;;;6347:285:1:o;6829:219::-;6978:2;6967:9;6960:21;6941:4;6998:44;7038:2;7027:9;7023:18;7015:6;6998:44;:::i;7465:414::-;7667:2;7649:21;;;7706:2;7686:18;;;7679:30;7745:34;7740:2;7725:18;;7718:62;-1:-1:-1;;;7811:2:1;7796:18;;7789:48;7869:3;7854:19;;7639:240::o;14621:356::-;14823:2;14805:21;;;14842:18;;;14835:30;14901:34;14896:2;14881:18;;14874:62;14968:2;14953:18;;14795:182::o;16140:413::-;16342:2;16324:21;;;16381:2;16361:18;;;16354:30;16420:34;16415:2;16400:18;;16393:62;-1:-1:-1;;;16486:2:1;16471:18;;16464:47;16543:3;16528:19;;16314:239::o;17853:128::-;17893:3;17924:1;17920:6;17917:1;17914:13;17911:2;;;17930:18;;:::i;:::-;-1:-1:-1;17966:9:1;;17901:80::o;17986:120::-;18026:1;18052;18042:2;;18057:18;;:::i;:::-;-1:-1:-1;18091:9:1;;18032:74::o;18111:168::-;18151:7;18217:1;18213;18209:6;18205:14;18202:1;18199:21;18194:1;18187:9;18180:17;18176:45;18173:2;;;18224:18;;:::i;:::-;-1:-1:-1;18264:9:1;;18163:116::o;18284:125::-;18324:4;18352:1;18349;18346:8;18343:2;;;18357:18;;:::i;:::-;-1:-1:-1;18394:9:1;;18333:76::o;18414:258::-;18486:1;18496:113;18510:6;18507:1;18504:13;18496:113;;;18586:11;;;18580:18;18567:11;;;18560:39;18532:2;18525:10;18496:113;;;18627:6;18624:1;18621:13;18618:2;;;-1:-1:-1;;18662:1:1;18644:16;;18637:27;18467:205::o;18677:380::-;18756:1;18752:12;;;;18799;;;18820:2;;18874:4;18866:6;18862:17;18852:27;;18820:2;18927;18919:6;18916:14;18896:18;18893:38;18890:2;;;18973:10;18968:3;18964:20;18961:1;18954:31;19008:4;19005:1;18998:15;19036:4;19033:1;19026:15;18890:2;;18732:325;;;:::o;19062:135::-;19101:3;-1:-1:-1;;19122:17:1;;19119:2;;;19142:18;;:::i;:::-;-1:-1:-1;19189:1:1;19178:13;;19109:88::o;19202:112::-;19234:1;19260;19250:2;;19265:18;;:::i;:::-;-1:-1:-1;19299:9:1;;19240:74::o;19319:127::-;19380:10;19375:3;19371:20;19368:1;19361:31;19411:4;19408:1;19401:15;19435:4;19432:1;19425:15;19451:127;19512:10;19507:3;19503:20;19500:1;19493:31;19543:4;19540:1;19533:15;19567:4;19564:1;19557:15;19583:127;19644:10;19639:3;19635:20;19632:1;19625:31;19675:4;19672:1;19665:15;19699:4;19696:1;19689:15;19715:127;19776:10;19771:3;19767:20;19764:1;19757:31;19807:4;19804:1;19797:15;19831:4;19828:1;19821:15;19847:127;19908:10;19903:3;19899:20;19896:1;19889:31;19939:4;19936:1;19929:15;19963:4;19960:1;19953:15;19979:131;-1:-1:-1;;;;;;20053:32:1;;20043:43;;20033:2;;20100:1;20097;20090:12
Swarm Source
ipfs://66c86c1fa6456bc522cc8fca02920c81f055d4e3ce97a129cefc8cdbf8ecc545
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.