Overview
TokenID
3072
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GalacticMonke
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import "./Ownable.sol"; import "./ERC721EnumerableB.sol"; import "./Strings.sol"; interface ApeContract { function ownerOf(uint256 id) external view returns (address); } /** * @title GalacticMonke smart contract * @author Michael Zen * @dev Inline assembly used for gas savings */ contract GalacticMonke is Ownable, ERC721EnumerableB { using Strings for uint256; mapping(address => bool) private authorized; string private _baseTokenURI = ""; string private preRevealURI; bool public isActive = false; uint256 public revealMaxId; uint256 public revealTime; uint256 private nextMonkeId = 151; // Track which apes have been used to mint bool[9999] apeMinted; modifier onlyAuthorized() { require( owner() == msg.sender || authorized[msg.sender], "Ownable: caller is not the owner" ); _; } error Ape_Already_Minted(uint256 apeId); error Not_Ape_Owner(uint256 apeId, address apeOwner); constructor() ERC721B("GalacticMonkes", "MONKES") {} //external fallback() external {} /** * @notice Mint token for each valid id * @dev Multiple checks to ensure ids are valid * @dev msg.sender must be holder of all apeIds * @param apeIds Array of ape ids to mint for msg.sender */ function mint(uint256[] calldata apeIds) external { require(isActive, "Minting not active"); uint256 next = nextMonkeId; uint256 id; bool minted; ApeContract apeContract = ApeContract( 0x12d2D1beD91c24f878F37E66bd829Ce7197e4d14 ); address apeOwner; for (uint256 i = 0; i < apeIds.length; i++) { id = apeIds[i]; minted = apeMinted[id]; if (minted) { revert Ape_Already_Minted(id); } apeOwner = apeContract.ownerOf(id); if (msg.sender != apeOwner) { revert Not_Ape_Owner({apeId: id, apeOwner: apeOwner}); } _safeMint(msg.sender, next + i, ""); apeMinted[id] = true; } nextMonkeId += apeIds.length; } /** * @notice Used to mint for genesis holders or unclaimed monkes * @dev The ids and receivers arrays must be the same length * @param monkeIds The monke token ids to mint * @param receivers Addresses that will receive the monkes */ function manualMint( uint256[] calldata monkeIds, address[] calldata receivers ) public onlyAuthorized { uint256 id; for (uint256 i = 0; i < monkeIds.length; i++) { id = monkeIds[i]; _safeMint(receivers[i], id, ""); } require(totalSupply() < 10150, "Mint exceeds max supply"); } /** * @notice Sets isActive to the inverse */ function toggleActive() public onlyOwner { isActive = !isActive; } function setNextMonkeId(uint256 id) public onlyAuthorized { nextMonkeId = id; } /** * @notice Determines if given Ape Ids can be used to mint. */ function canMint(uint256[] calldata apeIds) public view returns (bool[] memory) { require(apeIds.length > 0, "No Ape Ids given."); bool[] memory mintables = new bool[](apeIds.length); for (uint256 i = 0; i < apeIds.length; i++) { uint256 id = apeIds[i]; if (id < 0 || id > 9998) { mintables[i] = false; } else { bool minted = apeMinted[id]; mintables[i] = !minted; } } return mintables; } /** * @notice Set reveal timestamp and monke id * @param _id Highest monke id to reveal * @param _time Timestamp used to calculate reveal timestamp */ function setRevealData( uint256 _id, uint256 _time, bool automatic ) public onlyAuthorized { uint256 id = _id; uint256 time = _time; if (automatic) { if (id == 0) { uint256 supply = totalSupply(); if (supply > 0) { id = totalSupply() - 1; } } if (time == 0) { time = block.timestamp; } } revealMaxId = id; revealTime = time; } /** * @notice Returns current reveal data * @dev revealData.time needs to have 3600 added once retreived */ function getRevealData() public view returns (uint256, uint256) { return (revealMaxId, revealTime); } function giveAuthorization(address target) public onlyOwner { authorized[target] = true; } function revokeAuthorization(address target) public onlyOwner { authorized[target] = false; } /** * @notice Set _baseTokenURI * @param _newBaseURI URI used for revealed monkes */ function setBaseURI(string calldata _newBaseURI) public onlyOwner { _baseTokenURI = _newBaseURI; } /** * @notice Set preRevealURI * @param _preRevealURI URI used for pre-revealed monkes */ function setPreReveaURI(string calldata _preRevealURI) public onlyOwner { preRevealURI = _preRevealURI; } /** * @notice Returns URI for given monke token id * @param tokenId Monke token id */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); // Give one hour buffer in case revealData.time was set automatically if ( revealMaxId > 0 && tokenId <= revealMaxId && block.timestamp >= revealTime + 3600 ) { return string(abi.encodePacked(_baseTokenURI, tokenId.toString())); } else { return string(abi.encodePacked(preRevealURI)); } } function balanceOf( address owner, uint256 start, uint256 end ) public view returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); require(end < _owners.length, "end must be less than total supply"); uint256 count = 0; for (uint256 i = start; i <= end; ++i) { if (owner == _owners[i]) { ++count; } } return count; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @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); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; import "./ERC165.sol"; import "./IERC721.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./IERC721Receiver.sol"; /************************* * @author: Squeebo * * @license: BSD-3-Clause * **************************/ abstract contract ERC721B is ERC165, IERC721, IERC721Metadata { using Address for address; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address address[] internal _owners; // 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" ); uint256 count = 0; uint256 length = _owners.length; for (uint256 i = 0; i < length; ++i) { if (owner == _owners[i]) { ++count; } } delete length; return count; } /** * @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 {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721B.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( msg.sender == owner || isApprovedForAll(owner, msg.sender), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != msg.sender, "ERC721: approve to caller"); _operatorApprovals[msg.sender][operator] = approved; emit ApprovalForAll(msg.sender, 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(msg.sender, 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(msg.sender, 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 tokenId < _owners.length && _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 = ERC721B.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); _owners.push(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 = ERC721B.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _owners[tokenId] = address(0); 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( ERC721B.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); _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(ERC721B.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( msg.sender, 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 {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721B.sol"; import "./IERC721Enumerable.sol"; /************************* * @author: Squeebo * * @license: BSD-3-Clause * **************************/ /** * @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 ERC721EnumerableB is ERC721B, IERC721Enumerable { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721B) 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 tokenId) { require( index < this.balanceOf(owner), "ERC721Enumerable: owner index out of bounds" ); uint256 count; uint256 length = _owners.length; for (uint256 i; i < length; ++i) { if (owner == _owners[i]) { if (count == index) { delete count; delete length; return i; } else ++count; } } delete count; delete length; require(false, "ERC721Enumerable: owner index out of bounds"); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _owners.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require( index < this.totalSupply(), "ERC721Enumerable: global index out of bounds" ); return index; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"apeId","type":"uint256"}],"name":"Ape_Already_Minted","type":"error"},{"inputs":[{"internalType":"uint256","name":"apeId","type":"uint256"},{"internalType":"address","name":"apeOwner","type":"address"}],"name":"Not_Ape_Owner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"nonpayable","type":"fallback"},{"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"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"apeIds","type":"uint256[]"}],"name":"canMint","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRevealData","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"giveAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"monkeIds","type":"uint256[]"},{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"manualMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"apeIds","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealMaxId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"revokeAuthorization","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"setNextMonkeId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_preRevealURI","type":"string"}],"name":"setPreReveaURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_time","type":"uint256"},{"internalType":"bool","name":"automatic","type":"bool"}],"name":"setRevealData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleActive","outputs":[],"stateMutability":"nonpayable","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":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b9160079162000121565b506009805460ff191690556097600c553480156200003857600080fd5b506040518060400160405280600e81526020016d47616c61637469634d6f6e6b657360901b815250604051806040016040528060068152602001654d4f4e4b455360d01b8152506200009962000093620000cd60201b60201c565b620000d1565b8151620000ae90600190602085019062000121565b508051620000c490600290602084019062000121565b50505062000204565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200012f90620001c7565b90600052602060002090601f0160209004810192826200015357600085556200019e565b82601f106200016e57805160ff19168380011785556200019e565b828001600101855582156200019e579182015b828111156200019e57825182559160200191906001019062000181565b50620001ac929150620001b0565b5090565b5b80821115620001ac5760008155600101620001b1565b600181811c90821680620001dc57607f821691505b60208210811415620001fe57634e487b7160e01b600052602260045260246000fd5b50919050565b61253e80620002146000396000f3fe608060405234801561001057600080fd5b50600436106101f15760003560e01c806355f804b31161010e578063b48028e3116100a7578063ca3261c611610079578063ca3261c614610418578063e280235f1461042b578063e985e9c514610446578063f2fde38b14610459578063f8e93ef91461046c57005b8063b48028e3146103d6578063b88d4fde146103e9578063ba829d71146103fc578063c87b56dd1461040557005b80638da5cb5b116100e05780638da5cb5b1461038a57806395d89b411461039b578063a22cb465146103a3578063a822562a146103b657005b806355f804b3146103495780636352211e1461035c57806370a082311461036f578063715018a61461038257005b806323b872dd1161018b5780633209cdd41161015d5780633209cdd4146102f457806336a5406d146103075780633bac6a7d1461031057806342842e0e146103235780634f6ccce71461033657005b806323b872dd146102b357806329c68dc1146102c65780632d760d57146102ce5780632f745c59146102e157005b806314a5858f116101c457806314a5858f1461026e57806318160ddd1461028157806318205b431461029357806322f3e2d4146102a657005b806301ffc9a7146101f357806306fdde031461021b578063081812fc14610230578063095ea7b31461025b575b005b610206610201366004611c7a565b61047f565b60405190151581526020015b60405180910390f35b6102236104aa565b6040516102129190611cf6565b61024361023e366004611d09565b61053c565b6040516001600160a01b039091168152602001610212565b6101f1610269366004611d37565b6105c9565b6101f161027c366004611d73565b6106df565b6003545b604051908152602001610212565b6101f16102a1366004611da8565b610782565b6009546102069060ff1681565b6101f16102c1366004611e1a565b6107b8565b6101f16107e9565b6102856102dc366004611e5b565b610827565b6102856102ef366004611d37565b61090d565b6101f1610302366004611edc565b610a26565b610285600a5481565b6101f161031e366004611d09565b610b53565b6101f1610331366004611e1a565b610bab565b610285610344366004611d09565b610bc6565b6101f1610357366004611da8565b610c91565b61024361036a366004611d09565b610cc7565b61028561037d366004611f48565b610d53565b6101f1610de2565b6000546001600160a01b0316610243565b610223610e18565b6101f16103b1366004611f65565b610e27565b6103c96103c4366004611f9a565b610eec565b6040516102129190611fdc565b6101f16103e4366004611f48565b611042565b6101f16103f7366004612038565b61108d565b610285600b5481565b610223610413366004611d09565b6110c5565b6101f1610426366004611f48565b6111b0565b600a54600b5460408051928352602083019190915201610212565b610206610454366004612118565b6111fe565b6101f1610467366004611f48565b61122c565b6101f161047a366004611f9a565b6112c7565b60006001600160e01b0319821663780e9d6360e01b14806104a457506104a4826114d2565b92915050565b6060600180546104b990612151565b80601f01602080910402602001604051908101604052809291908181526020018280546104e590612151565b80156105325780601f1061050757610100808354040283529160200191610532565b820191906000526020600020905b81548152906001019060200180831161051557829003601f168201915b5050505050905090565b600061054782611522565b6105ad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105d482610cc7565b9050806001600160a01b0316836001600160a01b031614156106425760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105a4565b336001600160a01b038216148061065e575061065e81336111fe565b6106d05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105a4565b6106da838361156c565b505050565b336106f26000546001600160a01b031690565b6001600160a01b0316148061071657503360009081526006602052604090205460ff165b6107325760405162461bcd60e51b81526004016105a49061218c565b82828215610774578161076c57600061074a60035490565b9050801561076a57600161075d60035490565b61076791906121d7565b92505b505b806107745750425b600a91909155600b55505050565b6000546001600160a01b031633146107ac5760405162461bcd60e51b81526004016105a49061218c565b6106da60088383611bd4565b6107c233826115da565b6107de5760405162461bcd60e51b81526004016105a4906121ee565b6106da8383836116a4565b6000546001600160a01b031633146108135760405162461bcd60e51b81526004016105a49061218c565b6009805460ff19811660ff90911615179055565b60006001600160a01b03841661084f5760405162461bcd60e51b81526004016105a49061223f565b60035482106108ab5760405162461bcd60e51b815260206004820152602260248201527f656e64206d757374206265206c657373207468616e20746f74616c20737570706044820152616c7960f01b60648201526084016105a4565b6000835b83811161090457600381815481106108c9576108c9612289565b6000918252602090912001546001600160a01b03878116911614156108f4576108f18261229f565b91505b6108fd8161229f565b90506108af565b50949350505050565b6040516370a0823160e01b81526001600160a01b038316600482015260009030906370a0823190602401602060405180830381865afa158015610954573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097891906122ba565b82106109965760405162461bcd60e51b81526004016105a4906122d3565b600354600090815b81811015610a0657600381815481106109b9576109b9612289565b6000918252602090912001546001600160a01b03878116911614156109f657848314156109ea5792506104a4915050565b6109f38361229f565b92505b6109ff8161229f565b905061099e565b506000915081905060405162461bcd60e51b81526004016105a4906122d3565b33610a396000546001600160a01b031690565b6001600160a01b03161480610a5d57503360009081526006602052604090205460ff165b610a795760405162461bcd60e51b81526004016105a49061218c565b6000805b84811015610af257858582818110610a9757610a97612289565b905060200201359150610ae0848483818110610ab557610ab5612289565b9050602002016020810190610aca9190611f48565b83604051806020016040528060008152506117fa565b80610aea8161229f565b915050610a7d565b506127a6610aff60035490565b10610b4c5760405162461bcd60e51b815260206004820152601760248201527f4d696e742065786365656473206d617820737570706c7900000000000000000060448201526064016105a4565b5050505050565b33610b666000546001600160a01b031690565b6001600160a01b03161480610b8a57503360009081526006602052604090205460ff165b610ba65760405162461bcd60e51b81526004016105a49061218c565b600c55565b6106da8383836040518060200160405280600081525061108d565b6000306001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2a91906122ba565b8210610c8d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105a4565b5090565b6000546001600160a01b03163314610cbb5760405162461bcd60e51b81526004016105a49061218c565b6106da60078383611bd4565b60008060038381548110610cdd57610cdd612289565b6000918252602090912001546001600160a01b03169050806104a45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105a4565b60006001600160a01b038216610d7b5760405162461bcd60e51b81526004016105a49061223f565b600354600090815b81811015610dd95760038181548110610d9e57610d9e612289565b6000918252602090912001546001600160a01b0386811691161415610dc957610dc68361229f565b92505b610dd28161229f565b9050610d83565b50909392505050565b6000546001600160a01b03163314610e0c5760405162461bcd60e51b81526004016105a49061218c565b610e16600061182d565b565b6060600280546104b990612151565b6001600160a01b038216331415610e805760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105a4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b606081610f2f5760405162461bcd60e51b815260206004820152601160248201527027379020b8329024b2399033b4bb32b71760791b60448201526064016105a4565b60008267ffffffffffffffff811115610f4a57610f4a612022565b604051908082528060200260200182016040528015610f73578160200160208202803683370190505b50905060005b8381101561103a576000858583818110610f9557610f95612289565b602002919091013591505061270e811115610fd3576000838381518110610fbe57610fbe612289565b91151560209283029190910190910152611027565b6000600d8261270f8110610fe957610fe9612289565b602091828204019190069054906101000a900460ff169050801584848151811061101557611015612289565b91151560209283029190910190910152505b50806110328161229f565b915050610f79565b509392505050565b6000546001600160a01b0316331461106c5760405162461bcd60e51b81526004016105a49061218c565b6001600160a01b03166000908152600660205260409020805460ff19169055565b61109733836115da565b6110b35760405162461bcd60e51b81526004016105a4906121ee565b6110bf8484848461187d565b50505050565b60606110d082611522565b6111345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105a4565b6000600a541180156111485750600a548211155b80156111625750600b5461115e90610e1061231e565b4210155b15611199576007611172836118b0565b6040516020016111839291906123d0565b6040516020818303038152906040529050919050565b600860405160200161118391906123f5565b919050565b6000546001600160a01b031633146111da5760405162461bcd60e51b81526004016105a49061218c565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b031633146112565760405162461bcd60e51b81526004016105a49061218c565b6001600160a01b0381166112bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105a4565b6112c48161182d565b50565b60095460ff1661130e5760405162461bcd60e51b81526020600482015260126024820152714d696e74696e67206e6f742061637469766560701b60448201526064016105a4565b600c546000807312d2d1bed91c24f878f37e66bd829ce7197e4d1481805b868110156114ae5787878281811061134657611346612289565b905060200201359450600d8561270f811061136357611363612289565b602081049091015460ff601f9092166101000a9004169350831561139d57604051630aff316960e21b8152600481018690526024016105a4565b6040516331a9108f60e11b8152600481018690526001600160a01b03841690636352211e90602401602060405180830381865afa1580156113e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114069190612401565b9150336001600160a01b03831614611443576040516346ea9faf60e11b8152600481018690526001600160a01b03831660248201526044016105a4565b61146633611451838961231e565b604051806020016040528060008152506117fa565b6001600d8661270f811061147c5761147c612289565b602091828204019190066101000a81548160ff02191690831515021790555080806114a69061229f565b91505061132c565b5086869050600c60008282546114c4919061231e565b909155505050505050505050565b60006001600160e01b031982166380ac58cd60e01b148061150357506001600160e01b03198216635b5e139f60e01b145b806104a457506301ffc9a760e01b6001600160e01b03198316146104a4565b600354600090821080156104a4575060006001600160a01b03166003838154811061154f5761154f612289565b6000918252602090912001546001600160a01b0316141592915050565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115a182610cc7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115e582611522565b6116465760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105a4565b600061165183610cc7565b9050806001600160a01b0316846001600160a01b0316148061168c5750836001600160a01b03166116818461053c565b6001600160a01b0316145b8061169c575061169c81856111fe565b949350505050565b826001600160a01b03166116b782610cc7565b6001600160a01b03161461171f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105a4565b6001600160a01b0382166117815760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105a4565b61178c60008261156c565b81600382815481106117a0576117a0612289565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b61180483836119ae565b6118116000848484611ad6565b6106da5760405162461bcd60e51b81526004016105a49061241e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6118888484846116a4565b61189484848484611ad6565b6110bf5760405162461bcd60e51b81526004016105a49061241e565b6060816118d45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118fe57806118e88161229f565b91506118f79050600a83612486565b91506118d8565b60008167ffffffffffffffff81111561191957611919612022565b6040519080825280601f01601f191660200182016040528015611943576020820181803683370190505b5090505b841561169c576119586001836121d7565b9150611965600a8661249a565b61197090603061231e565b60f81b81838151811061198557611985612289565b60200101906001600160f81b031916908160001a9053506119a7600a86612486565b9450611947565b6001600160a01b038216611a045760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105a4565b611a0d81611522565b15611a5a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105a4565b6003805460018101825560009182527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611bc957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b1a9033908990889088906004016124ae565b6020604051808303816000875af1925050508015611b55575060408051601f3d908101601f19168201909252611b52918101906124eb565b60015b611baf573d808015611b83576040519150601f19603f3d011682016040523d82523d6000602084013e611b88565b606091505b508051611ba75760405162461bcd60e51b81526004016105a49061241e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061169c565b506001949350505050565b828054611be090612151565b90600052602060002090601f016020900481019282611c025760008555611c48565b82601f10611c1b5782800160ff19823516178555611c48565b82800160010185558215611c48579182015b82811115611c48578235825591602001919060010190611c2d565b50610c8d9291505b80821115610c8d5760008155600101611c50565b6001600160e01b0319811681146112c457600080fd5b600060208284031215611c8c57600080fd5b8135611c9781611c64565b9392505050565b60005b83811015611cb9578181015183820152602001611ca1565b838111156110bf5750506000910152565b60008151808452611ce2816020860160208601611c9e565b601f01601f19169290920160200192915050565b602081526000611c976020830184611cca565b600060208284031215611d1b57600080fd5b5035919050565b6001600160a01b03811681146112c457600080fd5b60008060408385031215611d4a57600080fd5b8235611d5581611d22565b946020939093013593505050565b803580151581146111ab57600080fd5b600080600060608486031215611d8857600080fd5b8335925060208401359150611d9f60408501611d63565b90509250925092565b60008060208385031215611dbb57600080fd5b823567ffffffffffffffff80821115611dd357600080fd5b818501915085601f830112611de757600080fd5b813581811115611df657600080fd5b866020828501011115611e0857600080fd5b60209290920196919550909350505050565b600080600060608486031215611e2f57600080fd5b8335611e3a81611d22565b92506020840135611e4a81611d22565b929592945050506040919091013590565b600080600060608486031215611e7057600080fd5b8335611e7b81611d22565b95602085013595506040909401359392505050565b60008083601f840112611ea257600080fd5b50813567ffffffffffffffff811115611eba57600080fd5b6020830191508360208260051b8501011115611ed557600080fd5b9250929050565b60008060008060408587031215611ef257600080fd5b843567ffffffffffffffff80821115611f0a57600080fd5b611f1688838901611e90565b90965094506020870135915080821115611f2f57600080fd5b50611f3c87828801611e90565b95989497509550505050565b600060208284031215611f5a57600080fd5b8135611c9781611d22565b60008060408385031215611f7857600080fd5b8235611f8381611d22565b9150611f9160208401611d63565b90509250929050565b60008060208385031215611fad57600080fd5b823567ffffffffffffffff811115611fc457600080fd5b611fd085828601611e90565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b81811015612016578351151583529284019291840191600101611ff8565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561204e57600080fd5b843561205981611d22565b9350602085013561206981611d22565b925060408501359150606085013567ffffffffffffffff8082111561208d57600080fd5b818701915087601f8301126120a157600080fd5b8135818111156120b3576120b3612022565b604051601f8201601f19908116603f011681019083821181831017156120db576120db612022565b816040528281528a60208487010111156120f457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561212b57600080fd5b823561213681611d22565b9150602083013561214681611d22565b809150509250929050565b600181811c9082168061216557607f821691505b6020821081141561218657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156121e9576121e96121c1565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156122b3576122b36121c1565b5060010190565b6000602082840312156122cc57600080fd5b5051919050565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60008219821115612331576123316121c1565b500190565b8054600090600181811c908083168061235057607f831692505b602080841082141561237257634e487b7160e01b600052602260045260246000fd5b8180156123865760018114612397576123c4565b60ff198616895284890196506123c4565b60008881526020902060005b868110156123bc5781548b8201529085019083016123a3565b505084890196505b50505050505092915050565b60006123dc8285612336565b83516123ec818360208801611c9e565b01949350505050565b6000611c978284612336565b60006020828403121561241357600080fd5b8151611c9781611d22565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261249557612495612470565b500490565b6000826124a9576124a9612470565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124e190830184611cca565b9695505050505050565b6000602082840312156124fd57600080fd5b8151611c9781611c6456fea264697066735822122048876c6ffd5d227486dc91a7b02c7ab7d62dda4d712aa9e3e796136b8d59ae3f64736f6c634300080a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101f15760003560e01c806355f804b31161010e578063b48028e3116100a7578063ca3261c611610079578063ca3261c614610418578063e280235f1461042b578063e985e9c514610446578063f2fde38b14610459578063f8e93ef91461046c57005b8063b48028e3146103d6578063b88d4fde146103e9578063ba829d71146103fc578063c87b56dd1461040557005b80638da5cb5b116100e05780638da5cb5b1461038a57806395d89b411461039b578063a22cb465146103a3578063a822562a146103b657005b806355f804b3146103495780636352211e1461035c57806370a082311461036f578063715018a61461038257005b806323b872dd1161018b5780633209cdd41161015d5780633209cdd4146102f457806336a5406d146103075780633bac6a7d1461031057806342842e0e146103235780634f6ccce71461033657005b806323b872dd146102b357806329c68dc1146102c65780632d760d57146102ce5780632f745c59146102e157005b806314a5858f116101c457806314a5858f1461026e57806318160ddd1461028157806318205b431461029357806322f3e2d4146102a657005b806301ffc9a7146101f357806306fdde031461021b578063081812fc14610230578063095ea7b31461025b575b005b610206610201366004611c7a565b61047f565b60405190151581526020015b60405180910390f35b6102236104aa565b6040516102129190611cf6565b61024361023e366004611d09565b61053c565b6040516001600160a01b039091168152602001610212565b6101f1610269366004611d37565b6105c9565b6101f161027c366004611d73565b6106df565b6003545b604051908152602001610212565b6101f16102a1366004611da8565b610782565b6009546102069060ff1681565b6101f16102c1366004611e1a565b6107b8565b6101f16107e9565b6102856102dc366004611e5b565b610827565b6102856102ef366004611d37565b61090d565b6101f1610302366004611edc565b610a26565b610285600a5481565b6101f161031e366004611d09565b610b53565b6101f1610331366004611e1a565b610bab565b610285610344366004611d09565b610bc6565b6101f1610357366004611da8565b610c91565b61024361036a366004611d09565b610cc7565b61028561037d366004611f48565b610d53565b6101f1610de2565b6000546001600160a01b0316610243565b610223610e18565b6101f16103b1366004611f65565b610e27565b6103c96103c4366004611f9a565b610eec565b6040516102129190611fdc565b6101f16103e4366004611f48565b611042565b6101f16103f7366004612038565b61108d565b610285600b5481565b610223610413366004611d09565b6110c5565b6101f1610426366004611f48565b6111b0565b600a54600b5460408051928352602083019190915201610212565b610206610454366004612118565b6111fe565b6101f1610467366004611f48565b61122c565b6101f161047a366004611f9a565b6112c7565b60006001600160e01b0319821663780e9d6360e01b14806104a457506104a4826114d2565b92915050565b6060600180546104b990612151565b80601f01602080910402602001604051908101604052809291908181526020018280546104e590612151565b80156105325780601f1061050757610100808354040283529160200191610532565b820191906000526020600020905b81548152906001019060200180831161051557829003601f168201915b5050505050905090565b600061054782611522565b6105ad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105d482610cc7565b9050806001600160a01b0316836001600160a01b031614156106425760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105a4565b336001600160a01b038216148061065e575061065e81336111fe565b6106d05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105a4565b6106da838361156c565b505050565b336106f26000546001600160a01b031690565b6001600160a01b0316148061071657503360009081526006602052604090205460ff165b6107325760405162461bcd60e51b81526004016105a49061218c565b82828215610774578161076c57600061074a60035490565b9050801561076a57600161075d60035490565b61076791906121d7565b92505b505b806107745750425b600a91909155600b55505050565b6000546001600160a01b031633146107ac5760405162461bcd60e51b81526004016105a49061218c565b6106da60088383611bd4565b6107c233826115da565b6107de5760405162461bcd60e51b81526004016105a4906121ee565b6106da8383836116a4565b6000546001600160a01b031633146108135760405162461bcd60e51b81526004016105a49061218c565b6009805460ff19811660ff90911615179055565b60006001600160a01b03841661084f5760405162461bcd60e51b81526004016105a49061223f565b60035482106108ab5760405162461bcd60e51b815260206004820152602260248201527f656e64206d757374206265206c657373207468616e20746f74616c20737570706044820152616c7960f01b60648201526084016105a4565b6000835b83811161090457600381815481106108c9576108c9612289565b6000918252602090912001546001600160a01b03878116911614156108f4576108f18261229f565b91505b6108fd8161229f565b90506108af565b50949350505050565b6040516370a0823160e01b81526001600160a01b038316600482015260009030906370a0823190602401602060405180830381865afa158015610954573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097891906122ba565b82106109965760405162461bcd60e51b81526004016105a4906122d3565b600354600090815b81811015610a0657600381815481106109b9576109b9612289565b6000918252602090912001546001600160a01b03878116911614156109f657848314156109ea5792506104a4915050565b6109f38361229f565b92505b6109ff8161229f565b905061099e565b506000915081905060405162461bcd60e51b81526004016105a4906122d3565b33610a396000546001600160a01b031690565b6001600160a01b03161480610a5d57503360009081526006602052604090205460ff165b610a795760405162461bcd60e51b81526004016105a49061218c565b6000805b84811015610af257858582818110610a9757610a97612289565b905060200201359150610ae0848483818110610ab557610ab5612289565b9050602002016020810190610aca9190611f48565b83604051806020016040528060008152506117fa565b80610aea8161229f565b915050610a7d565b506127a6610aff60035490565b10610b4c5760405162461bcd60e51b815260206004820152601760248201527f4d696e742065786365656473206d617820737570706c7900000000000000000060448201526064016105a4565b5050505050565b33610b666000546001600160a01b031690565b6001600160a01b03161480610b8a57503360009081526006602052604090205460ff165b610ba65760405162461bcd60e51b81526004016105a49061218c565b600c55565b6106da8383836040518060200160405280600081525061108d565b6000306001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2a91906122ba565b8210610c8d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105a4565b5090565b6000546001600160a01b03163314610cbb5760405162461bcd60e51b81526004016105a49061218c565b6106da60078383611bd4565b60008060038381548110610cdd57610cdd612289565b6000918252602090912001546001600160a01b03169050806104a45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105a4565b60006001600160a01b038216610d7b5760405162461bcd60e51b81526004016105a49061223f565b600354600090815b81811015610dd95760038181548110610d9e57610d9e612289565b6000918252602090912001546001600160a01b0386811691161415610dc957610dc68361229f565b92505b610dd28161229f565b9050610d83565b50909392505050565b6000546001600160a01b03163314610e0c5760405162461bcd60e51b81526004016105a49061218c565b610e16600061182d565b565b6060600280546104b990612151565b6001600160a01b038216331415610e805760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105a4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b606081610f2f5760405162461bcd60e51b815260206004820152601160248201527027379020b8329024b2399033b4bb32b71760791b60448201526064016105a4565b60008267ffffffffffffffff811115610f4a57610f4a612022565b604051908082528060200260200182016040528015610f73578160200160208202803683370190505b50905060005b8381101561103a576000858583818110610f9557610f95612289565b602002919091013591505061270e811115610fd3576000838381518110610fbe57610fbe612289565b91151560209283029190910190910152611027565b6000600d8261270f8110610fe957610fe9612289565b602091828204019190069054906101000a900460ff169050801584848151811061101557611015612289565b91151560209283029190910190910152505b50806110328161229f565b915050610f79565b509392505050565b6000546001600160a01b0316331461106c5760405162461bcd60e51b81526004016105a49061218c565b6001600160a01b03166000908152600660205260409020805460ff19169055565b61109733836115da565b6110b35760405162461bcd60e51b81526004016105a4906121ee565b6110bf8484848461187d565b50505050565b60606110d082611522565b6111345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105a4565b6000600a541180156111485750600a548211155b80156111625750600b5461115e90610e1061231e565b4210155b15611199576007611172836118b0565b6040516020016111839291906123d0565b6040516020818303038152906040529050919050565b600860405160200161118391906123f5565b919050565b6000546001600160a01b031633146111da5760405162461bcd60e51b81526004016105a49061218c565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b031633146112565760405162461bcd60e51b81526004016105a49061218c565b6001600160a01b0381166112bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105a4565b6112c48161182d565b50565b60095460ff1661130e5760405162461bcd60e51b81526020600482015260126024820152714d696e74696e67206e6f742061637469766560701b60448201526064016105a4565b600c546000807312d2d1bed91c24f878f37e66bd829ce7197e4d1481805b868110156114ae5787878281811061134657611346612289565b905060200201359450600d8561270f811061136357611363612289565b602081049091015460ff601f9092166101000a9004169350831561139d57604051630aff316960e21b8152600481018690526024016105a4565b6040516331a9108f60e11b8152600481018690526001600160a01b03841690636352211e90602401602060405180830381865afa1580156113e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114069190612401565b9150336001600160a01b03831614611443576040516346ea9faf60e11b8152600481018690526001600160a01b03831660248201526044016105a4565b61146633611451838961231e565b604051806020016040528060008152506117fa565b6001600d8661270f811061147c5761147c612289565b602091828204019190066101000a81548160ff02191690831515021790555080806114a69061229f565b91505061132c565b5086869050600c60008282546114c4919061231e565b909155505050505050505050565b60006001600160e01b031982166380ac58cd60e01b148061150357506001600160e01b03198216635b5e139f60e01b145b806104a457506301ffc9a760e01b6001600160e01b03198316146104a4565b600354600090821080156104a4575060006001600160a01b03166003838154811061154f5761154f612289565b6000918252602090912001546001600160a01b0316141592915050565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115a182610cc7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115e582611522565b6116465760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105a4565b600061165183610cc7565b9050806001600160a01b0316846001600160a01b0316148061168c5750836001600160a01b03166116818461053c565b6001600160a01b0316145b8061169c575061169c81856111fe565b949350505050565b826001600160a01b03166116b782610cc7565b6001600160a01b03161461171f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105a4565b6001600160a01b0382166117815760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105a4565b61178c60008261156c565b81600382815481106117a0576117a0612289565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b61180483836119ae565b6118116000848484611ad6565b6106da5760405162461bcd60e51b81526004016105a49061241e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6118888484846116a4565b61189484848484611ad6565b6110bf5760405162461bcd60e51b81526004016105a49061241e565b6060816118d45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118fe57806118e88161229f565b91506118f79050600a83612486565b91506118d8565b60008167ffffffffffffffff81111561191957611919612022565b6040519080825280601f01601f191660200182016040528015611943576020820181803683370190505b5090505b841561169c576119586001836121d7565b9150611965600a8661249a565b61197090603061231e565b60f81b81838151811061198557611985612289565b60200101906001600160f81b031916908160001a9053506119a7600a86612486565b9450611947565b6001600160a01b038216611a045760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105a4565b611a0d81611522565b15611a5a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105a4565b6003805460018101825560009182527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611bc957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b1a9033908990889088906004016124ae565b6020604051808303816000875af1925050508015611b55575060408051601f3d908101601f19168201909252611b52918101906124eb565b60015b611baf573d808015611b83576040519150601f19603f3d011682016040523d82523d6000602084013e611b88565b606091505b508051611ba75760405162461bcd60e51b81526004016105a49061241e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061169c565b506001949350505050565b828054611be090612151565b90600052602060002090601f016020900481019282611c025760008555611c48565b82601f10611c1b5782800160ff19823516178555611c48565b82800160010185558215611c48579182015b82811115611c48578235825591602001919060010190611c2d565b50610c8d9291505b80821115610c8d5760008155600101611c50565b6001600160e01b0319811681146112c457600080fd5b600060208284031215611c8c57600080fd5b8135611c9781611c64565b9392505050565b60005b83811015611cb9578181015183820152602001611ca1565b838111156110bf5750506000910152565b60008151808452611ce2816020860160208601611c9e565b601f01601f19169290920160200192915050565b602081526000611c976020830184611cca565b600060208284031215611d1b57600080fd5b5035919050565b6001600160a01b03811681146112c457600080fd5b60008060408385031215611d4a57600080fd5b8235611d5581611d22565b946020939093013593505050565b803580151581146111ab57600080fd5b600080600060608486031215611d8857600080fd5b8335925060208401359150611d9f60408501611d63565b90509250925092565b60008060208385031215611dbb57600080fd5b823567ffffffffffffffff80821115611dd357600080fd5b818501915085601f830112611de757600080fd5b813581811115611df657600080fd5b866020828501011115611e0857600080fd5b60209290920196919550909350505050565b600080600060608486031215611e2f57600080fd5b8335611e3a81611d22565b92506020840135611e4a81611d22565b929592945050506040919091013590565b600080600060608486031215611e7057600080fd5b8335611e7b81611d22565b95602085013595506040909401359392505050565b60008083601f840112611ea257600080fd5b50813567ffffffffffffffff811115611eba57600080fd5b6020830191508360208260051b8501011115611ed557600080fd5b9250929050565b60008060008060408587031215611ef257600080fd5b843567ffffffffffffffff80821115611f0a57600080fd5b611f1688838901611e90565b90965094506020870135915080821115611f2f57600080fd5b50611f3c87828801611e90565b95989497509550505050565b600060208284031215611f5a57600080fd5b8135611c9781611d22565b60008060408385031215611f7857600080fd5b8235611f8381611d22565b9150611f9160208401611d63565b90509250929050565b60008060208385031215611fad57600080fd5b823567ffffffffffffffff811115611fc457600080fd5b611fd085828601611e90565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b81811015612016578351151583529284019291840191600101611ff8565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561204e57600080fd5b843561205981611d22565b9350602085013561206981611d22565b925060408501359150606085013567ffffffffffffffff8082111561208d57600080fd5b818701915087601f8301126120a157600080fd5b8135818111156120b3576120b3612022565b604051601f8201601f19908116603f011681019083821181831017156120db576120db612022565b816040528281528a60208487010111156120f457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561212b57600080fd5b823561213681611d22565b9150602083013561214681611d22565b809150509250929050565b600181811c9082168061216557607f821691505b6020821081141561218657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156121e9576121e96121c1565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156122b3576122b36121c1565b5060010190565b6000602082840312156122cc57600080fd5b5051919050565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60008219821115612331576123316121c1565b500190565b8054600090600181811c908083168061235057607f831692505b602080841082141561237257634e487b7160e01b600052602260045260246000fd5b8180156123865760018114612397576123c4565b60ff198616895284890196506123c4565b60008881526020902060005b868110156123bc5781548b8201529085019083016123a3565b505084890196505b50505050505092915050565b60006123dc8285612336565b83516123ec818360208801611c9e565b01949350505050565b6000611c978284612336565b60006020828403121561241357600080fd5b8151611c9781611d22565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261249557612495612470565b500490565b6000826124a9576124a9612470565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124e190830184611cca565b9695505050505050565b6000602082840312156124fd57600080fd5b8151611c9781611c6456fea264697066735822122048876c6ffd5d227486dc91a7b02c7ab7d62dda4d712aa9e3e796136b8d59ae3f64736f6c634300080a0033
Deployed Bytecode Sourcemap
350:6315:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;563:291:4;;;;;;:::i;:::-;;:::i;:::-;;;565:14:13;;558:22;540:41;;528:2;513:18;563:291:4;;;;;;;;2464:98:3;;;:::i;:::-;;;;;;;:::i;3244:295::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:13;;;1674:51;;1662:2;1647:18;3244:295:3;1528:203:13;2785:398:3;;;;;;:::i;:::-;;:::i;3928:542:5:-;;;;;;:::i;:::-;;:::i;1755:108:4:-;1842:7;:14;1755:108;;;2824:25:13;;;2812:2;2797:18;1755:108:4;2678:177:13;5270:117:5;;;;;;:::i;:::-;;:::i;562:28::-;;;;;;;;;4252:362:3;;;;;;:::i;:::-;;:::i;2926:78:5:-;;;:::i;6151:512::-;;;;;;:::i;:::-;;:::i;933:751:4:-;;;;;;:::i;:::-;;:::i;2499:361:5:-;;;;;;:::i;:::-;;:::i;596:26::-;;;;;;3010:91;;;;;;:::i;:::-;;:::i;4680:179:3:-;;;;;;:::i;:::-;;:::i;1935:284:4:-;;;;;;:::i;:::-;;:::i;5045:110:5:-;;;;;;:::i;:::-;;:::i;2089:313:3:-;;;;;;:::i;:::-;;:::i;1532:500::-;;;;;;:::i;:::-;;:::i;1620:92:11:-;;;:::i;988:85::-;1034:7;1060:6;-1:-1:-1;;;;;1060:6:11;988:85;;2626:102:3;;;:::i;3606:312::-;;;;;;:::i;:::-;;:::i;3187:560:5:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4830:105::-;;;;;;:::i;:::-;;:::i;4925:352:3:-;;;;;;:::i;:::-;;:::i;628:25:5:-;;;;;;5498:647;;;;;;:::i;:::-;;:::i;4722:102::-;;;;;;:::i;:::-;;:::i;4603:113::-;4685:11;;4698:10;;4603:113;;;8694:25:13;;;8750:2;8735:18;;8728:34;;;;8667:18;4603:113:5;8520:248:13;3984:206:3;;;;;;:::i;:::-;;:::i;1861:223:11:-;;;;;;:::i;:::-;;:::i;1389:841:5:-;;;;;;:::i;:::-;;:::i;563:291:4:-;706:4;-1:-1:-1;;;;;;745:50:4;;-1:-1:-1;;;745:50:4;;:102;;;811:36;835:11;811:23;:36::i;:::-;726:121;563:291;-1:-1:-1;;563:291:4:o;2464:98:3:-;2518:13;2550:5;2543:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2464:98;:::o;3244:295::-;3360:7;3404:16;3412:7;3404;:16::i;:::-;3383:107;;;;-1:-1:-1;;;3383:107:3;;9753:2:13;3383:107:3;;;9735:21:13;9792:2;9772:18;;;9765:30;9831:34;9811:18;;;9804:62;-1:-1:-1;;;9882:18:13;;;9875:42;9934:19;;3383:107:3;;;;;;;;;-1:-1:-1;3508:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;3508:24:3;;3244:295::o;2785:398::-;2865:13;2881:24;2897:7;2881:15;:24::i;:::-;2865:40;;2929:5;-1:-1:-1;;;;;2923:11:3;:2;-1:-1:-1;;;;;2923:11:3;;;2915:57;;;;-1:-1:-1;;;2915:57:3;;10166:2:13;2915:57:3;;;10148:21:13;10205:2;10185:18;;;10178:30;10244:34;10224:18;;;10217:62;-1:-1:-1;;;10295:18:13;;;10288:31;10336:19;;2915:57:3;9964:397:13;2915:57:3;3004:10;-1:-1:-1;;;;;3004:19:3;;;;:58;;;3027:35;3044:5;3051:10;3027:16;:35::i;:::-;2983:161;;;;-1:-1:-1;;;2983:161:3;;10568:2:13;2983:161:3;;;10550:21:13;10607:2;10587:18;;;10580:30;10646:34;10626:18;;;10619:62;10717:26;10697:18;;;10690:54;10761:19;;2983:161:3;10366:420:13;2983:161:3;3155:21;3164:2;3168:7;3155:8;:21::i;:::-;2855:328;2785:398;;:::o;3928:542:5:-;841:10;830:7;1034::11;1060:6;-1:-1:-1;;;;;1060:6:11;;988:85;830:7:5;-1:-1:-1;;;;;830:21:5;;:47;;;-1:-1:-1;866:10:5;855:22;;;;:10;:22;;;;;;;;830:47;809:126;;;;-1:-1:-1;;;809:126:5;;;;;;;:::i;:::-;4070:3;4098:5;4114:296;::::1;;;4147:7:::0;4143:173:::1;;4174:14;4191:13;1842:7:4::0;:14;;1755:108;4191:13:5::1;4174:30:::0;-1:-1:-1;4227:10:5;;4223:79:::1;;4282:1;4266:13;1842:7:4::0;:14;;1755:108;4266:13:5::1;:17;;;;:::i;:::-;4261:22;;4223:79;4156:160;4143:173;4334:9:::0;4330:70:::1;;-1:-1:-1::0;4370:15:5::1;4330:70;4420:11;:16:::0;;;;4446:10:::1;:17:::0;-1:-1:-1;;;3928:542:5:o;5270:117::-;1034:7:11;1060:6;-1:-1:-1;;;;;1060:6:11;666:10:1;1200:23:11;1192:68;;;;-1:-1:-1;;;1192:68:11;;;;;;;:::i;:::-;5352:28:5::1;:12;5367:13:::0;;5352:28:::1;:::i;4252:362:3:-:0;4454:39;4473:10;4485:7;4454:18;:39::i;:::-;4433:135;;;;-1:-1:-1;;;4433:135:3;;;;;;;:::i;:::-;4579:28;4589:4;4595:2;4599:7;4579:9;:28::i;2926:78:5:-;1034:7:11;1060:6;-1:-1:-1;;;;;1060:6:11;666:10:1;1200:23:11;1192:68;;;;-1:-1:-1;;;1192:68:11;;;;;;;:::i;:::-;2989:8:5::1;::::0;;-1:-1:-1;;2977:20:5;::::1;2989:8;::::0;;::::1;2988:9;2977:20;::::0;;2926:78::o;6151:512::-;6264:7;-1:-1:-1;;;;;6304:19:5;;6283:108;;;;-1:-1:-1;;;6283:108:5;;;;;;;:::i;:::-;6415:7;:14;6409:20;;6401:67;;;;-1:-1:-1;;;6401:67:5;;12445:2:13;6401:67:5;;;12427:21:13;12484:2;12464:18;;;12457:30;12523:34;12503:18;;;12496:62;-1:-1:-1;;;12574:18:13;;;12567:32;12616:19;;6401:67:5;12243:398:13;6401:67:5;6479:13;6523:5;6506:128;6535:3;6530:1;:8;6506:128;;6572:7;6580:1;6572:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;6563:19:5;;;6572:10;;6563:19;6559:65;;;6602:7;;;:::i;:::-;;;6559:65;6540:3;;;:::i;:::-;;;6506:128;;;-1:-1:-1;6651:5:5;6151:512;-1:-1:-1;;;;6151:512:5:o;933:751:4:-;1130:21;;-1:-1:-1;;;1130:21:4;;-1:-1:-1;;;;;1692:32:13;;1130:21:4;;;1674:51:13;1070:15:4;;1130:4;;:14;;1647:18:13;;1130:21:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1122:5;:29;1101:119;;;;-1:-1:-1;;;1101:119:4;;;;;;;:::i;:::-;1271:7;:14;1231:13;;;1295:266;1315:6;1311:1;:10;1295:266;;;1355:7;1363:1;1355:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1346:19:4;;;1355:10;;1346:19;1342:209;;;1398:5;1389;:14;1385:151;;;1503:1;-1:-1:-1;1496:8:4;;-1:-1:-1;;1496:8:4;1385:151;1529:7;;;:::i;:::-;;;1385:151;1323:3;;;:::i;:::-;;;1295:266;;;-1:-1:-1;1571:12:4;;-1:-1:-1;1571:12:4;;-1:-1:-1;1616:61:4;;-1:-1:-1;;;1616:61:4;;;;;;;:::i;2499:361:5:-;841:10;830:7;1034::11;1060:6;-1:-1:-1;;;;;1060:6:11;;988:85;830:7:5;-1:-1:-1;;;;;830:21:5;;:47;;;-1:-1:-1;866:10:5;855:22;;;;:10;:22;;;;;;;;830:47;809:126;;;;-1:-1:-1;;;809:126:5;;;;;;;:::i;:::-;2632:10:::1;::::0;2653:133:::1;2673:19:::0;;::::1;2653:133;;;2718:8;;2727:1;2718:11;;;;;;;:::i;:::-;;;;;;;2713:16;;2744:31;2754:9;;2764:1;2754:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;2768:2;2744:31;;;;;;;;;;;::::0;:9:::1;:31::i;:::-;2694:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2653:133;;;;2820:5;2804:13;1842:7:4::0;:14;;1755:108;2804:13:5::1;:21;2796:57;;;::::0;-1:-1:-1;;;2796:57:5;;13721:2:13;2796:57:5::1;::::0;::::1;13703:21:13::0;13760:2;13740:18;;;13733:30;13799:25;13779:18;;;13772:53;13842:18;;2796:57:5::1;13519:347:13::0;2796:57:5::1;2622:238;2499:361:::0;;;;:::o;3010:91::-;841:10;830:7;1034::11;1060:6;-1:-1:-1;;;;;1060:6:11;;988:85;830:7:5;-1:-1:-1;;;;;830:21:5;;:47;;;-1:-1:-1;866:10:5;855:22;;;;:10;:22;;;;;;;;830:47;809:126;;;;-1:-1:-1;;;809:126:5;;;;;;;:::i;:::-;3078:11:::1;:16:::0;3010:91::o;4680:179:3:-;4813:39;4830:4;4836:2;4840:7;4813:39;;;;;;;;;;;;:16;:39::i;1935:284:4:-;2050:7;2102:4;-1:-1:-1;;;;;2102:16:4;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2094:5;:26;2073:117;;;;-1:-1:-1;;;2073:117:4;;14073:2:13;2073:117:4;;;14055:21:13;14112:2;14092:18;;;14085:30;14151:34;14131:18;;;14124:62;-1:-1:-1;;;14202:18:13;;;14195:42;14254:19;;2073:117:4;13871:408:13;2073:117:4;-1:-1:-1;2207:5:4;1935:284::o;5045:110:5:-;1034:7:11;1060:6;-1:-1:-1;;;;;1060:6:11;666:10:1;1200:23:11;1192:68;;;;-1:-1:-1;;;1192:68:11;;;;;;;:::i;:::-;5121:27:5::1;:13;5137:11:::0;;5121:27:::1;:::i;2089:313:3:-:0;2201:7;2224:13;2240:7;2248;2240:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;2240:16:3;;-1:-1:-1;2287:19:3;2266:107;;;;-1:-1:-1;;;2266:107:3;;14486:2:13;2266:107:3;;;14468:21:13;14525:2;14505:18;;;14498:30;14564:34;14544:18;;;14537:62;-1:-1:-1;;;14615:18:13;;;14608:39;14664:19;;2266:107:3;14284:405:13;1532:500:3;1644:7;-1:-1:-1;;;;;1688:19:3;;1667:108;;;;-1:-1:-1;;;1667:108:3;;;;;;;:::i;:::-;1830:7;:14;1786:13;;;1854:126;1878:6;1874:1;:10;1854:126;;;1918:7;1926:1;1918:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1909:19:3;;;1918:10;;1909:19;1905:65;;;1948:7;;;:::i;:::-;;;1905:65;1886:3;;;:::i;:::-;;;1854:126;;;-1:-1:-1;2020:5:3;;1532:500;-1:-1:-1;;;1532:500:3:o;1620:92:11:-;1034:7;1060:6;-1:-1:-1;;;;;1060:6:11;666:10:1;1200:23:11;1192:68;;;;-1:-1:-1;;;1192:68:11;;;;;;;:::i;:::-;1684:21:::1;1702:1;1684:9;:21::i;:::-;1620:92::o:0;2626:102:3:-;2682:13;2714:7;2707:14;;;;;:::i;3606:312::-;-1:-1:-1;;;;;3736:22:3;;3748:10;3736:22;;3728:60;;;;-1:-1:-1;;;3728:60:3;;14896:2:13;3728:60:3;;;14878:21:13;14935:2;14915:18;;;14908:30;14974:27;14954:18;;;14947:55;15019:18;;3728:60:3;14694:349:13;3728:60:3;3818:10;3799:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;3799:40:3;;;;;;;;;;;;:51;;-1:-1:-1;;3799:51:3;;;;;;;;;;3865:46;;540:41:13;;;3799:40:3;;3818:10;3865:46;;513:18:13;3865:46:3;;;;;;;3606:312;;:::o;3187:560:5:-;3276:13;3313:17;3305:47;;;;-1:-1:-1;;;3305:47:5;;15250:2:13;3305:47:5;;;15232:21:13;15289:2;15269:18;;;15262:30;-1:-1:-1;;;15308:18:13;;;15301:47;15365:18;;3305:47:5;15048:341:13;3305:47:5;3362:23;3399:6;3388:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3388:25:5;;3362:51;;3429:9;3424:290;3444:17;;;3424:290;;;3482:10;3495:6;;3502:1;3495:9;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;3538:4:5;3533:9;;3519:185;;;3577:5;3562:9;3572:1;3562:12;;;;;;;;:::i;:::-;:20;;;:12;;;;;;;;;;;:20;3519:185;;;3621:11;3635:9;3645:2;3635:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3621:27;;3683:6;3682:7;3667:9;3677:1;3667:12;;;;;;;;:::i;:::-;:22;;;:12;;;;;;;;;;;:22;-1:-1:-1;3519:185:5;-1:-1:-1;3463:3:5;;;;:::i;:::-;;;;3424:290;;;-1:-1:-1;3731:9:5;3187:560;-1:-1:-1;;;3187:560:5:o;4830:105::-;1034:7:11;1060:6;-1:-1:-1;;;;;1060:6:11;666:10:1;1200:23:11;1192:68;;;;-1:-1:-1;;;1192:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;4902:18:5::1;4923:5;4902:18:::0;;;:10:::1;:18;::::0;;;;:26;;-1:-1:-1;;4902:26:5::1;::::0;;4830:105::o;4925:352:3:-;5107:39;5126:10;5138:7;5107:18;:39::i;:::-;5086:135;;;;-1:-1:-1;;;5086:135:3;;;;;;;:::i;:::-;5231:39;5245:4;5251:2;5255:7;5264:5;5231:13;:39::i;:::-;4925:352;;;;:::o;5498:647:5:-;5611:13;5661:16;5669:7;5661;:16::i;:::-;5640:110;;;;-1:-1:-1;;;5640:110:5;;15596:2:13;5640:110:5;;;15578:21:13;15635:2;15615:18;;;15608:30;15674:34;15654:18;;;15647:62;-1:-1:-1;;;15725:18:13;;;15718:45;15780:19;;5640:110:5;15394:411:13;5640:110:5;5870:1;5856:11;;:15;:53;;;;;5898:11;;5887:7;:22;;5856:53;:105;;;;-1:-1:-1;5944:10:5;;:17;;5957:4;5944:17;:::i;:::-;5925:15;:36;;5856:105;5839:300;;;6017:13;6032:18;:7;:16;:18::i;:::-;6000:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5986:66;;5498:647;;;:::o;5839:300::-;6114:12;6097:30;;;;;;;;:::i;5839:300::-;5498:647;;;:::o;4722:102::-;1034:7:11;1060:6;-1:-1:-1;;;;;1060:6:11;666:10:1;1200:23:11;1192:68;;;;-1:-1:-1;;;1192:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;4792:18:5::1;;::::0;;;:10:::1;:18;::::0;;;;:25;;-1:-1:-1;;4792:25:5::1;4813:4;4792:25;::::0;;4722:102::o;3984:206:3:-;-1:-1:-1;;;;;4148:25:3;;;4121:4;4148:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;3984:206::o;1861:223:11:-;1034:7;1060:6;-1:-1:-1;;;;;1060:6:11;666:10:1;1200:23:11;1192:68;;;;-1:-1:-1;;;1192:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1962:22:11;::::1;1941:107;;;::::0;-1:-1:-1;;;1941:107:11;;17832:2:13;1941:107:11::1;::::0;::::1;17814:21:13::0;17871:2;17851:18;;;17844:30;17910:34;17890:18;;;17883:62;-1:-1:-1;;;17961:18:13;;;17954:36;18007:19;;1941:107:11::1;17630:402:13::0;1941:107:11::1;2058:19;2068:8;2058:9;:19::i;:::-;1861:223:::0;:::o;1389:841:5:-;1457:8;;;;1449:39;;;;-1:-1:-1;;;1449:39:5;;18239:2:13;1449:39:5;;;18221:21:13;18278:2;18258:18;;;18251:30;-1:-1:-1;;;18297:18:13;;;18290:48;18355:18;;1449:39:5;18037:342:13;1449:39:5;1514:11;;1499:12;;1627:42;1499:12;;1716:469;1736:17;;;1716:469;;;1779:6;;1786:1;1779:9;;;;;;;:::i;:::-;;;;;;;1774:14;;1811:9;1821:2;1811:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;1839:74:5;;;;1876:22;;-1:-1:-1;;;1876:22:5;;;;;2824:25:13;;;2797:18;;1876:22:5;2678:177:13;1839:74:5;1938:23;;-1:-1:-1;;;1938:23:5;;;;;2824:25:13;;;-1:-1:-1;;;;;1938:19:5;;;;;2797:18:13;;1938:23:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1927:34;-1:-1:-1;1980:10:5;-1:-1:-1;;;;;1980:22:5;;;1976:114;;2029:46;;-1:-1:-1;;;2029:46:5;;;;;18814:25:13;;;-1:-1:-1;;;;;18875:32:13;;18855:18;;;18848:60;18787:18;;2029:46:5;18640:274:13;1976:114:5;2104:35;2114:10;2126:8;2133:1;2126:4;:8;:::i;:::-;2104:35;;;;;;;;;;;;:9;:35::i;:::-;2170:4;2154:9;2164:2;2154:13;;;;;;;:::i;:::-;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;1755:3;;;;;:::i;:::-;;;;1716:469;;;;2210:6;;:13;;2195:11;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;;;1389:841:5:o;1129:344:3:-;1271:4;-1:-1:-1;;;;;;1310:40:3;;-1:-1:-1;;;1310:40:3;;:104;;-1:-1:-1;;;;;;;1366:48:3;;-1:-1:-1;;;1366:48:3;1310:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:2;;;1430:36:3;763:155:2;6783:153:3;6881:7;:14;6848:4;;6871:24;;:58;;;;;6927:1;-1:-1:-1;;;;;6899:30:3;:7;6907;6899:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;6899:16:3;:30;;6864:65;6783:153;-1:-1:-1;;6783:153:3:o;10674:172::-;10748:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;10748:29:3;-1:-1:-1;;;;;10748:29:3;;;;;;;;:24;;10801;10748;10801:15;:24::i;:::-;-1:-1:-1;;;;;10792:47:3;;;;;;;;;;;10674:172;;:::o;7094:439::-;7219:4;7260:16;7268:7;7260;:16::i;:::-;7239:107;;;;-1:-1:-1;;;7239:107:3;;19121:2:13;7239:107:3;;;19103:21:13;19160:2;19140:18;;;19133:30;19199:34;19179:18;;;19172:62;-1:-1:-1;;;19250:18:13;;;19243:42;19302:19;;7239:107:3;18919:408:13;7239:107:3;7356:13;7372:24;7388:7;7372:15;:24::i;:::-;7356:40;;7425:5;-1:-1:-1;;;;;7414:16:3;:7;-1:-1:-1;;;;;7414:16:3;;:63;;;;7470:7;-1:-1:-1;;;;;7446:31:3;:20;7458:7;7446:11;:20::i;:::-;-1:-1:-1;;;;;7446:31:3;;7414:63;:111;;;;7493:32;7510:5;7517:7;7493:16;:32::i;:::-;7406:120;7094:439;-1:-1:-1;;;;7094:439:3:o;10027:536::-;10195:4;-1:-1:-1;;;;;10167:32:3;:24;10183:7;10167:15;:24::i;:::-;-1:-1:-1;;;;;10167:32:3;;10146:120;;;;-1:-1:-1;;;10146:120:3;;19534:2:13;10146:120:3;;;19516:21:13;19573:2;19553:18;;;19546:30;19612:34;19592:18;;;19585:62;-1:-1:-1;;;19663:18:13;;;19656:39;19712:19;;10146:120:3;19332:405:13;10146:120:3;-1:-1:-1;;;;;10284:16:3;;10276:65;;;;-1:-1:-1;;;10276:65:3;;19944:2:13;10276:65:3;;;19926:21:13;19983:2;19963:18;;;19956:30;20022:34;20002:18;;;19995:62;-1:-1:-1;;;20073:18:13;;;20066:34;20117:19;;10276:65:3;19742:400:13;10276:65:3;10453:29;10470:1;10474:7;10453:8;:29::i;:::-;10511:2;10492:7;10500;10492:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;10492:21:3;-1:-1:-1;;;;;10492:21:3;;;;;;10529:27;;10548:7;;10529:27;;;;;;;;;;10492:16;10529:27;10027:536;;;:::o;8192:311::-;8317:18;8323:2;8327:7;8317:5;:18::i;:::-;8366:54;8397:1;8401:2;8405:7;8414:5;8366:22;:54::i;:::-;8345:151;;;;-1:-1:-1;;;8345:151:3;;;;;;;:::i;2090:169:11:-;2145:16;2164:6;;-1:-1:-1;;;;;2180:17:11;;;-1:-1:-1;;;;;;2180:17:11;;;;;;2212:40;;2164:6;;;;;;;2212:40;;2145:16;2212:40;2135:124;2090:169;:::o;6139:341:3:-;6290:28;6300:4;6306:2;6310:7;6290:9;:28::i;:::-;6349:48;6372:4;6378:2;6382:7;6391:5;6349:22;:48::i;:::-;6328:145;;;;-1:-1:-1;;;6328:145:3;;;;;;;:::i;275:703:12:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:12;;;;;;;;;;;;-1:-1:-1;;;574:10:12;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:12;;-1:-1:-1;720:2:12;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:12;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:12;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:12;;;;;;;;-1:-1:-1;919:11:12;928:2;919:11;;:::i;:::-;;;791:150;;8825:338:3;-1:-1:-1;;;;;8904:16:3;;8896:61;;;;-1:-1:-1;;;8896:61:3;;21142:2:13;8896:61:3;;;21124:21:13;;;21161:18;;;21154:30;21220:34;21200:18;;;21193:62;21272:18;;8896:61:3;20940:356:13;8896:61:3;8976:16;8984:7;8976;:16::i;:::-;8975:17;8967:58;;;;-1:-1:-1;;;8967:58:3;;21503:2:13;8967:58:3;;;21485:21:13;21542:2;21522:18;;;21515:30;21581;21561:18;;;21554:58;21629:18;;8967:58:3;21301:352:13;8967:58:3;9091:7;:16;;;;;;;-1:-1:-1;9091:16:3;;;;;;;-1:-1:-1;;;;;;9091:16:3;-1:-1:-1;;;;;9091:16:3;;;;;;;;9123:33;;9148:7;;-1:-1:-1;9123:33:3;;-1:-1:-1;;9123:33:3;8825:338;;:::o;11399:948::-;11549:4;-1:-1:-1;;;;;11569:13:3;;1034:20:0;1080:8;11565:776:3;;11620:168;;-1:-1:-1;;;11620:168:3;;-1:-1:-1;;;;;11620:36:3;;;;;:168;;11678:10;;11710:4;;11736:7;;11765:5;;11620:168;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11620:168:3;;;;;;;;-1:-1:-1;;11620:168:3;;;;;;;;;;;;:::i;:::-;;;11600:689;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11967:13:3;;11963:312;;12009:106;;-1:-1:-1;;;12009:106:3;;;;;;;:::i;11963:312::-;12227:6;12221:13;12212:6;12208:2;12204:15;12197:38;11600:689;-1:-1:-1;;;;;;11850:51:3;-1:-1:-1;;;11850:51:3;;-1:-1:-1;11843:58:3;;11565:776;-1:-1:-1;12326:4:3;11399:948;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:13;-1:-1:-1;;;;;;88:32:13;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:13:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:13;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:13;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:13:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:13;;1343:180;-1:-1:-1;1343:180:13:o;1736:131::-;-1:-1:-1;;;;;1811:31:13;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:13:o;2192:160::-;2257:20;;2313:13;;2306:21;2296:32;;2286:60;;2342:1;2339;2332:12;2357:316;2431:6;2439;2447;2500:2;2488:9;2479:7;2475:23;2471:32;2468:52;;;2516:1;2513;2506:12;2468:52;2552:9;2539:23;2529:33;;2609:2;2598:9;2594:18;2581:32;2571:42;;2632:35;2663:2;2652:9;2648:18;2632:35;:::i;:::-;2622:45;;2357:316;;;;;:::o;2860:592::-;2931:6;2939;2992:2;2980:9;2971:7;2967:23;2963:32;2960:52;;;3008:1;3005;2998:12;2960:52;3048:9;3035:23;3077:18;3118:2;3110:6;3107:14;3104:34;;;3134:1;3131;3124:12;3104:34;3172:6;3161:9;3157:22;3147:32;;3217:7;3210:4;3206:2;3202:13;3198:27;3188:55;;3239:1;3236;3229:12;3188:55;3279:2;3266:16;3305:2;3297:6;3294:14;3291:34;;;3321:1;3318;3311:12;3291:34;3366:7;3361:2;3352:6;3348:2;3344:15;3340:24;3337:37;3334:57;;;3387:1;3384;3377:12;3334:57;3418:2;3410:11;;;;;3440:6;;-1:-1:-1;2860:592:13;;-1:-1:-1;;;;2860:592:13:o;3457:456::-;3534:6;3542;3550;3603:2;3591:9;3582:7;3578:23;3574:32;3571:52;;;3619:1;3616;3609:12;3571:52;3658:9;3645:23;3677:31;3702:5;3677:31;:::i;:::-;3727:5;-1:-1:-1;3784:2:13;3769:18;;3756:32;3797:33;3756:32;3797:33;:::i;:::-;3457:456;;3849:7;;-1:-1:-1;;;3903:2:13;3888:18;;;;3875:32;;3457:456::o;3918:383::-;3995:6;4003;4011;4064:2;4052:9;4043:7;4039:23;4035:32;4032:52;;;4080:1;4077;4070:12;4032:52;4119:9;4106:23;4138:31;4163:5;4138:31;:::i;:::-;4188:5;4240:2;4225:18;;4212:32;;-1:-1:-1;4291:2:13;4276:18;;;4263:32;;3918:383;-1:-1:-1;;;3918:383:13:o;4306:367::-;4369:8;4379:6;4433:3;4426:4;4418:6;4414:17;4410:27;4400:55;;4451:1;4448;4441:12;4400:55;-1:-1:-1;4474:20:13;;4517:18;4506:30;;4503:50;;;4549:1;4546;4539:12;4503:50;4586:4;4578:6;4574:17;4562:29;;4646:3;4639:4;4629:6;4626:1;4622:14;4614:6;4610:27;4606:38;4603:47;4600:67;;;4663:1;4660;4653:12;4600:67;4306:367;;;;;:::o;4678:773::-;4800:6;4808;4816;4824;4877:2;4865:9;4856:7;4852:23;4848:32;4845:52;;;4893:1;4890;4883:12;4845:52;4933:9;4920:23;4962:18;5003:2;4995:6;4992:14;4989:34;;;5019:1;5016;5009:12;4989:34;5058:70;5120:7;5111:6;5100:9;5096:22;5058:70;:::i;:::-;5147:8;;-1:-1:-1;5032:96:13;-1:-1:-1;5235:2:13;5220:18;;5207:32;;-1:-1:-1;5251:16:13;;;5248:36;;;5280:1;5277;5270:12;5248:36;;5319:72;5383:7;5372:8;5361:9;5357:24;5319:72;:::i;:::-;4678:773;;;;-1:-1:-1;5410:8:13;-1:-1:-1;;;;4678:773:13:o;5456:247::-;5515:6;5568:2;5556:9;5547:7;5543:23;5539:32;5536:52;;;5584:1;5581;5574:12;5536:52;5623:9;5610:23;5642:31;5667:5;5642:31;:::i;5708:315::-;5773:6;5781;5834:2;5822:9;5813:7;5809:23;5805:32;5802:52;;;5850:1;5847;5840:12;5802:52;5889:9;5876:23;5908:31;5933:5;5908:31;:::i;:::-;5958:5;-1:-1:-1;5982:35:13;6013:2;5998:18;;5982:35;:::i;:::-;5972:45;;5708:315;;;;;:::o;6028:437::-;6114:6;6122;6175:2;6163:9;6154:7;6150:23;6146:32;6143:52;;;6191:1;6188;6181:12;6143:52;6231:9;6218:23;6264:18;6256:6;6253:30;6250:50;;;6296:1;6293;6286:12;6250:50;6335:70;6397:7;6388:6;6377:9;6373:22;6335:70;:::i;:::-;6424:8;;6309:96;;-1:-1:-1;6028:437:13;-1:-1:-1;;;;6028:437:13:o;6470:642::-;6635:2;6687:21;;;6757:13;;6660:18;;;6779:22;;;6606:4;;6635:2;6858:15;;;;6832:2;6817:18;;;6606:4;6901:185;6915:6;6912:1;6909:13;6901:185;;;6990:13;;6983:21;6976:29;6964:42;;7061:15;;;;7026:12;;;;6937:1;6930:9;6901:185;;;-1:-1:-1;7103:3:13;;6470:642;-1:-1:-1;;;;;;6470:642:13:o;7117:127::-;7178:10;7173:3;7169:20;7166:1;7159:31;7209:4;7206:1;7199:15;7233:4;7230:1;7223:15;7249:1266;7344:6;7352;7360;7368;7421:3;7409:9;7400:7;7396:23;7392:33;7389:53;;;7438:1;7435;7428:12;7389:53;7477:9;7464:23;7496:31;7521:5;7496:31;:::i;:::-;7546:5;-1:-1:-1;7603:2:13;7588:18;;7575:32;7616:33;7575:32;7616:33;:::i;:::-;7668:7;-1:-1:-1;7722:2:13;7707:18;;7694:32;;-1:-1:-1;7777:2:13;7762:18;;7749:32;7800:18;7830:14;;;7827:34;;;7857:1;7854;7847:12;7827:34;7895:6;7884:9;7880:22;7870:32;;7940:7;7933:4;7929:2;7925:13;7921:27;7911:55;;7962:1;7959;7952:12;7911:55;7998:2;7985:16;8020:2;8016;8013:10;8010:36;;;8026:18;;:::i;:::-;8101:2;8095:9;8069:2;8155:13;;-1:-1:-1;;8151:22:13;;;8175:2;8147:31;8143:40;8131:53;;;8199:18;;;8219:22;;;8196:46;8193:72;;;8245:18;;:::i;:::-;8285:10;8281:2;8274:22;8320:2;8312:6;8305:18;8360:7;8355:2;8350;8346;8342:11;8338:20;8335:33;8332:53;;;8381:1;8378;8371:12;8332:53;8437:2;8432;8428;8424:11;8419:2;8411:6;8407:15;8394:46;8482:1;8477:2;8472;8464:6;8460:15;8456:24;8449:35;8503:6;8493:16;;;;;;;7249:1266;;;;;;;:::o;8773:388::-;8841:6;8849;8902:2;8890:9;8881:7;8877:23;8873:32;8870:52;;;8918:1;8915;8908:12;8870:52;8957:9;8944:23;8976:31;9001:5;8976:31;:::i;:::-;9026:5;-1:-1:-1;9083:2:13;9068:18;;9055:32;9096:33;9055:32;9096:33;:::i;:::-;9148:7;9138:17;;;8773:388;;;;;:::o;9166:380::-;9245:1;9241:12;;;;9288;;;9309:61;;9363:4;9355:6;9351:17;9341:27;;9309:61;9416:2;9408:6;9405:14;9385:18;9382:38;9379:161;;;9462:10;9457:3;9453:20;9450:1;9443:31;9497:4;9494:1;9487:15;9525:4;9522:1;9515:15;9379:161;;9166:380;;;:::o;10791:356::-;10993:2;10975:21;;;11012:18;;;11005:30;11071:34;11066:2;11051:18;;11044:62;11138:2;11123:18;;10791:356::o;11152:127::-;11213:10;11208:3;11204:20;11201:1;11194:31;11244:4;11241:1;11234:15;11268:4;11265:1;11258:15;11284:125;11324:4;11352:1;11349;11346:8;11343:34;;;11357:18;;:::i;:::-;-1:-1:-1;11394:9:13;;11284:125::o;11414:413::-;11616:2;11598:21;;;11655:2;11635:18;;;11628:30;11694:34;11689:2;11674:18;;11667:62;-1:-1:-1;;;11760:2:13;11745:18;;11738:47;11817:3;11802:19;;11414:413::o;11832:406::-;12034:2;12016:21;;;12073:2;12053:18;;;12046:30;12112:34;12107:2;12092:18;;12085:62;-1:-1:-1;;;12178:2:13;12163:18;;12156:40;12228:3;12213:19;;11832:406::o;12646:127::-;12707:10;12702:3;12698:20;12695:1;12688:31;12738:4;12735:1;12728:15;12762:4;12759:1;12752:15;12778:135;12817:3;-1:-1:-1;;12838:17:13;;12835:43;;;12858:18;;:::i;:::-;-1:-1:-1;12905:1:13;12894:13;;12778:135::o;12918:184::-;12988:6;13041:2;13029:9;13020:7;13016:23;13012:32;13009:52;;;13057:1;13054;13047:12;13009:52;-1:-1:-1;13080:16:13;;12918:184;-1:-1:-1;12918:184:13:o;13107:407::-;13309:2;13291:21;;;13348:2;13328:18;;;13321:30;13387:34;13382:2;13367:18;;13360:62;-1:-1:-1;;;13453:2:13;13438:18;;13431:41;13504:3;13489:19;;13107:407::o;15810:128::-;15850:3;15881:1;15877:6;15874:1;15871:13;15868:39;;;15887:18;;:::i;:::-;-1:-1:-1;15923:9:13;;15810:128::o;16069:973::-;16154:12;;16119:3;;16209:1;16229:18;;;;16282;;;;16309:61;;16363:4;16355:6;16351:17;16341:27;;16309:61;16389:2;16437;16429:6;16426:14;16406:18;16403:38;16400:161;;;16483:10;16478:3;16474:20;16471:1;16464:31;16518:4;16515:1;16508:15;16546:4;16543:1;16536:15;16400:161;16577:18;16604:104;;;;16722:1;16717:319;;;;16570:466;;16604:104;-1:-1:-1;;16637:24:13;;16625:37;;16682:16;;;;-1:-1:-1;16604:104:13;;16717:319;16016:1;16009:14;;;16053:4;16040:18;;16811:1;16825:165;16839:6;16836:1;16833:13;16825:165;;;16917:14;;16904:11;;;16897:35;16960:16;;;;16854:10;;16825:165;;;16829:3;;17019:6;17014:3;17010:16;17003:23;;16570:466;;;;;;;16069:973;;;;:::o;17047:376::-;17223:3;17251:38;17285:3;17277:6;17251:38;:::i;:::-;17318:6;17312:13;17334:52;17379:6;17375:2;17368:4;17360:6;17356:17;17334:52;:::i;:::-;17402:15;;17047:376;-1:-1:-1;;;;17047:376:13:o;17428:197::-;17556:3;17581:38;17615:3;17607:6;17581:38;:::i;18384:251::-;18454:6;18507:2;18495:9;18486:7;18482:23;18478:32;18475:52;;;18523:1;18520;18513:12;18475:52;18555:9;18549:16;18574:31;18599:5;18574:31;:::i;20147:414::-;20349:2;20331:21;;;20388:2;20368:18;;;20361:30;20427:34;20422:2;20407:18;;20400:62;-1:-1:-1;;;20493:2:13;20478:18;;20471:48;20551:3;20536:19;;20147:414::o;20566:127::-;20627:10;20622:3;20618:20;20615:1;20608:31;20658:4;20655:1;20648:15;20682:4;20679:1;20672:15;20698:120;20738:1;20764;20754:35;;20769:18;;:::i;:::-;-1:-1:-1;20803:9:13;;20698:120::o;20823:112::-;20855:1;20881;20871:35;;20886:18;;:::i;:::-;-1:-1:-1;20920:9:13;;20823:112::o;21658:489::-;-1:-1:-1;;;;;21927:15:13;;;21909:34;;21979:15;;21974:2;21959:18;;21952:43;22026:2;22011:18;;22004:34;;;22074:3;22069:2;22054:18;;22047:31;;;21852:4;;22095:46;;22121:19;;22113:6;22095:46;:::i;:::-;22087:54;21658:489;-1:-1:-1;;;;;;21658:489:13:o;22152:249::-;22221:6;22274:2;22262:9;22253:7;22249:23;22245:32;22242:52;;;22290:1;22287;22280:12;22242:52;22322:9;22316:16;22341:30;22365:5;22341:30;:::i
Swarm Source
ipfs://48876c6ffd5d227486dc91a7b02c7ab7d62dda4d712aa9e3e796136b8d59ae3f
Loading...
Loading
Loading...
Loading
[ 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.