ERC-721
Overview
Max Total Supply
0 BPVw
Holders
431
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BPVwLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BopoVerse
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-31 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** * @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); } } /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 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; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } contract BopoVerse is ERC721URIStorage, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter public publicSupply; Counters.Counter public whitelistSupply; Counters.Counter public diamondSupply; Counters.Counter public airdropSupply; string private baseURI; uint256 public cost = 0.3 ether; uint256 public whitelistCost = 0.2 ether; uint256 public diamondCost = 0.2 ether; uint256 public maxPublicSupply = 7777; uint256 public maxDiamonfSupply = 1000; uint256 public maxWhitelistSupply = 1000; uint256 public maxAirdropSupply = 777; uint256 public pendingRevival = 1; bytes32 private merkleRoot; bool public publicSale = false; bool public daimondSale = false; bool public whitelistSale = false; address private diamondClub; constructor(address _diamondClub, string memory _baseUri) ERC721("BopoVerse BPVw", "BPVw") { baseURI = _baseUri; diamondClub = _diamondClub; } function setMaxSupply(uint256 _maxSupply) external onlyOwner { maxPublicSupply = _maxSupply; } function setMaxDiamondSupply(uint256 _maxDaimondSupply) external onlyOwner { maxDiamonfSupply = _maxDaimondSupply; } function setMaxWhitelistSupply(uint256 _maxWhitelistSupply) external onlyOwner { maxWhitelistSupply = _maxWhitelistSupply; } function setMaxAirdropSupply(uint256 _maxAirdropSupply) external onlyOwner { maxAirdropSupply = _maxAirdropSupply; } function setDiamontAddress(address _diamondClub) external onlyOwner { diamondClub = _diamondClub; } function mint(uint256 _mintAmount) public payable { require(publicSale, "Sale is not started"); require(maxPublicSupply >= (publicSupply.current() + _mintAmount), "Out of limit nft amount"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); for (uint256 i; i < _mintAmount; i++) { publicSupply.increment(); _safeMint(msg.sender, publicSupply.current()); setBaseUriToken(publicSupply.current()); } } function whitelistMint(bytes32[] memory _data, uint256 _mintAmount) public payable { require(whitelistSale, "Sale is not started"); require(MerkleProof.verify(_data, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Not in whitelist"); require(maxPublicSupply >= (publicSupply.current() + _mintAmount), "Out of limit nft amount"); require(maxWhitelistSupply >= (whitelistSupply.current() + _mintAmount), "Out of limit nft amount"); require(msg.value >= whitelistCost * _mintAmount, "Insufficient funds!"); for (uint256 i; i < _mintAmount; i++) { publicSupply.increment(); whitelistSupply.increment(); _safeMint(msg.sender, publicSupply.current()); setBaseUriToken(publicSupply.current()); } } function daimondMint(uint256 _mintAmount) public payable{ require(daimondSale, "Sale is not started"); uint256 balanceOfDaimond = IERC721(diamondClub).balanceOf(msg.sender); require(balanceOfDaimond > 0, "Not your own daimond club nft"); require(maxPublicSupply >= (publicSupply.current() + _mintAmount), "Out of limit nft amount"); require(maxDiamonfSupply >= (diamondSupply.current() + _mintAmount), "Out of limit nft amount"); require(msg.value >= diamondCost * _mintAmount, "Insufficient funds!"); for (uint256 i; i < _mintAmount; i++) { publicSupply.increment(); diamondSupply.increment(); _safeMint(msg.sender, publicSupply.current()); setBaseUriToken(publicSupply.current()); } } function airdrop(uint256 _mintAmount, address _receiver) external onlyOwner { require(maxPublicSupply >= (publicSupply.current() + _mintAmount), "Out of limit nft amount"); require(maxAirdropSupply >= (airdropSupply.current() + _mintAmount), "Out of limit nft amount"); for (uint256 i; i < _mintAmount; i++) { publicSupply.increment(); airdropSupply.increment(); _safeMint(_receiver, publicSupply.current()); setBaseUriToken(publicSupply.current()); } } function mintForAddress(address[] memory _receiver) external onlyOwner { require(maxPublicSupply >= (publicSupply.current() + _receiver.length), "Out of limit nft amount"); require(maxAirdropSupply >= (airdropSupply.current() + _receiver.length), "Out of limit nft amount"); for (uint256 i = 0; i < _receiver.length; i++) { publicSupply.increment(); airdropSupply.increment(); _safeMint(_receiver[i], publicSupply.current()); setBaseUriToken(publicSupply.current()); } } function updateWhitelistData(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } function setCost(uint256 _cost) external onlyOwner { cost = _cost; } function setWhitelistCost(uint256 _whitelistCost) external onlyOwner { whitelistCost = _whitelistCost; } function setDiamondCost(uint256 _diamondCost) external onlyOwner { diamondCost = _diamondCost; } function setBaseUri(string memory _uriPrefix) external onlyOwner { baseURI = _uriPrefix; } function setPublicSale() external onlyOwner { publicSale = !publicSale; } function setWhitelistSale() external onlyOwner { whitelistSale = !whitelistSale; } function setDaimondSale() external onlyOwner { daimondSale = !daimondSale; } function withdraw(address payable recipient) external onlyOwner { uint256 balance = address(this).balance; recipient.transfer(balance); } function reveal(string[] memory nftData) external onlyOwner{ uint256 newTokenCounter = publicSupply.current(); uint256 mintcounters = 0; for(uint256 i = pendingRevival; i <= newTokenCounter ; i++){ _setTokenURI(i, nftData[mintcounters]); mintcounters++; } pendingRevival = (newTokenCounter+1); } function setBaseUriToken(uint256 _tokenId) private { string memory tokenUri = string(abi.encodePacked(baseURI, '/', Strings.toString(_tokenId))); _setTokenURI(_tokenId, tokenUri); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_diamondClub","type":"address"},{"internalType":"string","name":"_baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropSupply","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"daimondMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"daimondSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"diamondCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"diamondSupply","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAirdropSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDiamonfSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_receiver","type":"address[]"}],"name":"mintForAddress","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":"pendingRevival","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSupply","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"nftData","type":"string[]"}],"name":"reveal","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":"_uriPrefix","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setDaimondSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_diamondCost","type":"uint256"}],"name":"setDiamondCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_diamondClub","type":"address"}],"name":"setDiamontAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAirdropSupply","type":"uint256"}],"name":"setMaxAirdropSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxDaimondSupply","type":"uint256"}],"name":"setMaxDiamondSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWhitelistSupply","type":"uint256"}],"name":"setMaxWhitelistSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistCost","type":"uint256"}],"name":"setWhitelistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"updateWhitelistData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_data","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSupply","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052670429d069189e0000600d556702c68af0bb140000600e819055600f55611e616010556103e8601181905560125561030960135560016014556016805462ffffff191690553480156200005657600080fd5b506040516200311838038062003118833981016040819052620000799162000257565b604080518082018252600e81526d426f706f5665727365204250567760901b6020808301918252835180850190945260048452634250567760e01b908401528151919291620000cb916000916200019b565b508051620000e19060019060208401906200019b565b505050620000fe620000f86200014560201b60201c565b62000149565b80516200011390600c9060208401906200019b565b5050601680546001600160a01b039092166301000000026301000000600160b81b031990921691909117905562000394565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a99062000357565b90600052602060002090601f016020900481019282620001cd576000855562000218565b82601f10620001e857805160ff191683800117855562000218565b8280016001018555821562000218579182015b8281111562000218578251825591602001919060010190620001fb565b50620002269291506200022a565b5090565b5b808211156200022657600081556001016200022b565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156200026b57600080fd5b82516001600160a01b03811681146200028357600080fd5b602084810151919350906001600160401b0380821115620002a357600080fd5b818601915086601f830112620002b857600080fd5b815181811115620002cd57620002cd62000241565b604051601f8201601f19908116603f01168101908382118183101715620002f857620002f862000241565b8160405282815289868487010111156200031157600080fd5b600093505b8284101562000335578484018601518185018701529285019262000316565b82841115620003475760008684830101525b8096505050505050509250929050565b600181811c908216806200036c57607f821691505b602082108114156200038e57634e487b7160e01b600052602260045260246000fd5b50919050565b612d7480620003a46000396000f3fe6080604052600436106102e45760003560e01c806370a0823111610190578063b88d4fde116100dc578063d90bd7d911610095578063ea5bbc4b1161006f578063ea5bbc4b14610874578063f2fde38b1461088a578063f55330bf146108aa578063fb3ed5c7146108bf57600080fd5b8063d90bd7d9146107f5578063e7b99ec714610815578063e985e9c51461082b57600080fd5b8063b88d4fde14610740578063b9a137e114610760578063bc63f02e14610780578063c87b56dd146107a0578063cef216e2146107c0578063d49479eb146107d557600080fd5b8063953f049d11610149578063a0712d6811610123578063a0712d68146106d7578063a0bcfc7f146106ea578063a22cb4651461070a578063a659c07e1461072a57600080fd5b8063953f049d1461069957806395d89b41146106af5780639d1b7ddf146106c457600080fd5b806370a08231146105f1578063715018a61461061157806377d99ff914610626578063898dd01f146106465780638b93b0f5146106655780638da5cb5b1461067b57600080fd5b806333e614131161024f57806350dd12781161020857806356f8f78c116101e257806356f8f78c146105855780635e84d7231461059a5780636352211e146105b15780636f8b44b0146105d157600080fd5b806350dd12781461052557806351cff8d91461054557806354e5c18c1461056557600080fd5b806333e614131461047757806342842e0e1461048e57806344a0d68a146104ae57806346aa47eb146104ce578063483e1c38146104ee5780634c66866f1461050557600080fd5b80631f69f030116102a15780631f69f030146103de57806323b872dd146103f457806326a74d8e146104145780632904e6d91461042a57806331ffd6f11461043d57806333bc1c5c1461045d57600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc1461034057806308b38e6414610378578063095ea7b31461039a57806313faede6146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004612402565b6108d6565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610928565b6040516103159190612477565b34801561034c57600080fd5b5061036061035b36600461248a565b6109ba565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b506103986103933660046124b8565b610a47565b005b3480156103a657600080fd5b506103986103b53660046124d5565b610a9d565b3480156103c657600080fd5b506103d0600d5481565b604051908152602001610315565b3480156103ea57600080fd5b506103d0600f5481565b34801561040057600080fd5b5061039861040f366004612501565b610bb3565b34801561042057600080fd5b506103d060105481565b6103986104383660046125ad565b610be4565b34801561044957600080fd5b506016546103099062010000900460ff1681565b34801561046957600080fd5b506016546103099060ff1681565b34801561048357600080fd5b506009546103d09081565b34801561049a57600080fd5b506103986104a9366004612501565b610d80565b3480156104ba57600080fd5b506103986104c936600461248a565b610d9b565b3480156104da57600080fd5b506103986104e93660046126c1565b610dca565b3480156104fa57600080fd5b50600a546103d09081565b34801561051157600080fd5b5061039861052036600461248a565b610e67565b34801561053157600080fd5b50610398610540366004612772565b610e96565b34801561055157600080fd5b506103986105603660046124b8565b610f90565b34801561057157600080fd5b5061039861058036600461248a565b610ff2565b34801561059157600080fd5b50610398611021565b3480156105a657600080fd5b506008546103d09081565b3480156105bd57600080fd5b506103606105cc36600461248a565b61105f565b3480156105dd57600080fd5b506103986105ec36600461248a565b6110d6565b3480156105fd57600080fd5b506103d061060c3660046124b8565b611105565b34801561061d57600080fd5b5061039861118c565b34801561063257600080fd5b5061039861064136600461248a565b6111c2565b34801561065257600080fd5b5060165461030990610100900460ff1681565b34801561067157600080fd5b506103d060135481565b34801561068757600080fd5b506007546001600160a01b0316610360565b3480156106a557600080fd5b506103d060125481565b3480156106bb57600080fd5b506103336111f1565b6103986106d236600461248a565b611200565b6103986106e536600461248a565b6113e5565b3480156106f657600080fd5b5061039861070536600461280c565b6114ad565b34801561071657600080fd5b50610398610725366004612841565b6114ea565b34801561073657600080fd5b506103d060145481565b34801561074c57600080fd5b5061039861075b36600461287f565b6114f5565b34801561076c57600080fd5b5061039861077b36600461248a565b61152d565b34801561078c57600080fd5b5061039861079b3660046128ff565b61155c565b3480156107ac57600080fd5b506103336107bb36600461248a565b611642565b3480156107cc57600080fd5b506103986117b9565b3480156107e157600080fd5b506103986107f036600461248a565b611802565b34801561080157600080fd5b5061039861081036600461248a565b611831565b34801561082157600080fd5b506103d0600e5481565b34801561083757600080fd5b50610309610846366004612924565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561088057600080fd5b506103d060115481565b34801561089657600080fd5b506103986108a53660046124b8565b611860565b3480156108b657600080fd5b506103986118fb565b3480156108cb57600080fd5b50600b546103d09081565b60006001600160e01b031982166380ac58cd60e01b148061090757506001600160e01b03198216635b5e139f60e01b145b8061092257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461093790612952565b80601f016020809104026020016040519081016040528092919081815260200182805461096390612952565b80156109b05780601f10610985576101008083540402835291602001916109b0565b820191906000526020600020905b81548152906001019060200180831161099357829003601f168201915b5050505050905090565b60006109c582611942565b610a2b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6007546001600160a01b03163314610a715760405162461bcd60e51b8152600401610a229061298d565b601680546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b6000610aa88261105f565b9050806001600160a01b0316836001600160a01b03161415610b165760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a22565b336001600160a01b0382161480610b325750610b328133610846565b610ba45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a22565b610bae838361195f565b505050565b610bbd33826119cd565b610bd95760405162461bcd60e51b8152600401610a22906129c2565b610bae838383611ab6565b60165462010000900460ff16610c0c5760405162461bcd60e51b8152600401610a2290612a13565b6015546040516bffffffffffffffffffffffff193360601b166020820152610c4e91849160340160405160208183030381529060405280519060200120611c52565b610c8d5760405162461bcd60e51b815260206004820152601060248201526f139bdd081a5b881dda1a5d195b1a5cdd60821b6044820152606401610a22565b80610c9760085490565b610ca19190612a56565b6010541015610cc25760405162461bcd60e51b8152600401610a2290612a6e565b80610ccc60095490565b610cd69190612a56565b6012541015610cf75760405162461bcd60e51b8152600401610a2290612a6e565b80600e54610d059190612aa5565b341015610d245760405162461bcd60e51b8152600401610a2290612ac4565b60005b81811015610bae57610d3d600880546001019055565b610d4b600980546001019055565b610d5d33610d5860085490565b611c68565b610d6e610d6960085490565b611c82565b80610d7881612af1565b915050610d27565b610bae838383604051806020016040528060008152506114f5565b6007546001600160a01b03163314610dc55760405162461bcd60e51b8152600401610a229061298d565b600d55565b6007546001600160a01b03163314610df45760405162461bcd60e51b8152600401610a229061298d565b6000610dff60085490565b6014549091506000905b828111610e5357610e3381858481518110610e2657610e26612b0c565b6020026020010151611cb7565b81610e3d81612af1565b9250508080610e4b90612af1565b915050610e09565b50610e5f826001612a56565b601455505050565b6007546001600160a01b03163314610e915760405162461bcd60e51b8152600401610a229061298d565b601355565b6007546001600160a01b03163314610ec05760405162461bcd60e51b8152600401610a229061298d565b8051600854610ecf9190612a56565b6010541015610ef05760405162461bcd60e51b8152600401610a2290612a6e565b8051600b54610eff9190612a56565b6013541015610f205760405162461bcd60e51b8152600401610a2290612a6e565b60005b8151811015610f8c57610f3a600880546001019055565b610f48600b80546001019055565b610f6e828281518110610f5d57610f5d612b0c565b6020026020010151610d5860085490565b610f7a610d6960085490565b80610f8481612af1565b915050610f23565b5050565b6007546001600160a01b03163314610fba5760405162461bcd60e51b8152600401610a229061298d565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610bae573d6000803e3d6000fd5b6007546001600160a01b0316331461101c5760405162461bcd60e51b8152600401610a229061298d565b601255565b6007546001600160a01b0316331461104b5760405162461bcd60e51b8152600401610a229061298d565b6016805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b0316806109225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a22565b6007546001600160a01b031633146111005760405162461bcd60e51b8152600401610a229061298d565b601055565b60006001600160a01b0382166111705760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a22565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146111b65760405162461bcd60e51b8152600401610a229061298d565b6111c06000611d42565b565b6007546001600160a01b031633146111ec5760405162461bcd60e51b8152600401610a229061298d565b601155565b60606001805461093790612952565b601654610100900460ff166112275760405162461bcd60e51b8152600401610a2290612a13565b6016546040516370a0823160e01b8152336004820152600091630100000090046001600160a01b0316906370a082319060240160206040518083038186803b15801561127257600080fd5b505afa158015611286573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112aa9190612b22565b9050600081116112fc5760405162461bcd60e51b815260206004820152601d60248201527f4e6f7420796f7572206f776e206461696d6f6e6420636c7562206e66740000006044820152606401610a22565b8161130660085490565b6113109190612a56565b60105410156113315760405162461bcd60e51b8152600401610a2290612a6e565b8161133b600a5490565b6113459190612a56565b60115410156113665760405162461bcd60e51b8152600401610a2290612a6e565b81600f546113749190612aa5565b3410156113935760405162461bcd60e51b8152600401610a2290612ac4565b60005b82811015610bae576113ac600880546001019055565b6113ba600a80546001019055565b6113c733610d5860085490565b6113d3610d6960085490565b806113dd81612af1565b915050611396565b60165460ff166114075760405162461bcd60e51b8152600401610a2290612a13565b8061141160085490565b61141b9190612a56565b601054101561143c5760405162461bcd60e51b8152600401610a2290612a6e565b80600d5461144a9190612aa5565b3410156114695760405162461bcd60e51b8152600401610a2290612ac4565b60005b81811015610f8c57611482600880546001019055565b61148f33610d5860085490565b61149b610d6960085490565b806114a581612af1565b91505061146c565b6007546001600160a01b031633146114d75760405162461bcd60e51b8152600401610a229061298d565b8051610f8c90600c906020840190612353565b610f8c338383611d94565b6114ff33836119cd565b61151b5760405162461bcd60e51b8152600401610a22906129c2565b61152784848484611e63565b50505050565b6007546001600160a01b031633146115575760405162461bcd60e51b8152600401610a229061298d565b600f55565b6007546001600160a01b031633146115865760405162461bcd60e51b8152600401610a229061298d565b8161159060085490565b61159a9190612a56565b60105410156115bb5760405162461bcd60e51b8152600401610a2290612a6e565b816115c5600b5490565b6115cf9190612a56565b60135410156115f05760405162461bcd60e51b8152600401610a2290612a6e565b60005b82811015610bae57611609600880546001019055565b611617600b80546001019055565b61162482610d5860085490565b611630610d6960085490565b8061163a81612af1565b9150506115f3565b606061164d82611942565b6116b35760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610a22565b600082815260066020526040812080546116cc90612952565b80601f01602080910402602001604051908101604052809291908181526020018280546116f890612952565b80156117455780601f1061171a57610100808354040283529160200191611745565b820191906000526020600020905b81548152906001019060200180831161172857829003601f168201915b50505050509050600061176360408051602081019091526000815290565b9050805160001415611776575092915050565b8151156117a8578082604051602001611790929190612b57565b60405160208183030381529060405292505050919050565b6117b184611e96565b949350505050565b6007546001600160a01b031633146117e35760405162461bcd60e51b8152600401610a229061298d565b6016805462ff0000198116620100009182900460ff1615909102179055565b6007546001600160a01b0316331461182c5760405162461bcd60e51b8152600401610a229061298d565b600e55565b6007546001600160a01b0316331461185b5760405162461bcd60e51b8152600401610a229061298d565b601555565b6007546001600160a01b0316331461188a5760405162461bcd60e51b8152600401610a229061298d565b6001600160a01b0381166118ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a22565b6118f881611d42565b50565b6007546001600160a01b031633146119255760405162461bcd60e51b8152600401610a229061298d565b6016805461ff001981166101009182900460ff1615909102179055565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119948261105f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119d882611942565b611a395760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a22565b6000611a448361105f565b9050806001600160a01b0316846001600160a01b03161480611a8b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806117b15750836001600160a01b0316611aa4846109ba565b6001600160a01b031614949350505050565b826001600160a01b0316611ac98261105f565b6001600160a01b031614611b2d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a22565b6001600160a01b038216611b8f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a22565b611b9a60008261195f565b6001600160a01b0383166000908152600360205260408120805460019290611bc3908490612b86565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bf1908490612a56565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611c5f8584611f6e565b14949350505050565b610f8c828260405180602001604052806000815250611fe2565b6000600c611c8f83612015565b604051602001611ca0929190612b9d565b6040516020818303038152906040529050610f8c82825b611cc082611942565b611d235760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610a22565b60008281526006602090815260409091208251610bae92840190612353565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611df65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a22565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e6e848484611ab6565b611e7a84848484612113565b6115275760405162461bcd60e51b8152600401610a2290612c54565b6060611ea182611942565b611f055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a22565b6000611f1c60408051602081019091526000815290565b90506000815111611f3c5760405180602001604052806000815250611f67565b80611f4684612015565b604051602001611f57929190612b57565b6040516020818303038152906040525b9392505050565b600081815b8451811015611fda576000858281518110611f9057611f90612b0c565b60200260200101519050808311611fb65760008381526020829052604090209250611fc7565b600081815260208490526040902092505b5080611fd281612af1565b915050611f73565b509392505050565b611fec8383612220565b611ff96000848484612113565b610bae5760405162461bcd60e51b8152600401610a2290612c54565b6060816120395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612063578061204d81612af1565b915061205c9050600a83612cbc565b915061203d565b60008167ffffffffffffffff81111561207e5761207e612542565b6040519080825280601f01601f1916602001820160405280156120a8576020820181803683370190505b5090505b84156117b1576120bd600183612b86565b91506120ca600a86612cd0565b6120d5906030612a56565b60f81b8183815181106120ea576120ea612b0c565b60200101906001600160f81b031916908160001a90535061210c600a86612cbc565b94506120ac565b60006001600160a01b0384163b1561221557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612157903390899088908890600401612ce4565b602060405180830381600087803b15801561217157600080fd5b505af19250505080156121a1575060408051601f3d908101601f1916820190925261219e91810190612d21565b60015b6121fb573d8080156121cf576040519150601f19603f3d011682016040523d82523d6000602084013e6121d4565b606091505b5080516121f35760405162461bcd60e51b8152600401610a2290612c54565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117b1565b506001949350505050565b6001600160a01b0382166122765760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a22565b61227f81611942565b156122cc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a22565b6001600160a01b03821660009081526003602052604081208054600192906122f5908490612a56565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461235f90612952565b90600052602060002090601f01602090048101928261238157600085556123c7565b82601f1061239a57805160ff19168380011785556123c7565b828001600101855582156123c7579182015b828111156123c75782518255916020019190600101906123ac565b506123d39291506123d7565b5090565b5b808211156123d357600081556001016123d8565b6001600160e01b0319811681146118f857600080fd5b60006020828403121561241457600080fd5b8135611f67816123ec565b60005b8381101561243a578181015183820152602001612422565b838111156115275750506000910152565b6000815180845261246381602086016020860161241f565b601f01601f19169290920160200192915050565b602081526000611f67602083018461244b565b60006020828403121561249c57600080fd5b5035919050565b6001600160a01b03811681146118f857600080fd5b6000602082840312156124ca57600080fd5b8135611f67816124a3565b600080604083850312156124e857600080fd5b82356124f3816124a3565b946020939093013593505050565b60008060006060848603121561251657600080fd5b8335612521816124a3565b92506020840135612531816124a3565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561258157612581612542565b604052919050565b600067ffffffffffffffff8211156125a3576125a3612542565b5060051b60200190565b600080604083850312156125c057600080fd5b823567ffffffffffffffff8111156125d757600080fd5b8301601f810185136125e857600080fd5b803560206125fd6125f883612589565b612558565b82815260059290921b8301810191818101908884111561261c57600080fd5b938201935b8385101561263a57843582529382019390820190612621565b98969091013596505050505050565b600067ffffffffffffffff83111561266357612663612542565b612676601f8401601f1916602001612558565b905082815283838301111561268a57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126126b257600080fd5b611f6783833560208501612649565b600060208083850312156126d457600080fd5b823567ffffffffffffffff808211156126ec57600080fd5b818501915085601f83011261270057600080fd5b813561270e6125f882612589565b81815260059190911b8301840190848101908883111561272d57600080fd5b8585015b83811015612765578035858111156127495760008081fd5b6127578b89838a01016126a1565b845250918601918601612731565b5098975050505050505050565b6000602080838503121561278557600080fd5b823567ffffffffffffffff81111561279c57600080fd5b8301601f810185136127ad57600080fd5b80356127bb6125f882612589565b81815260059190911b820183019083810190878311156127da57600080fd5b928401925b828410156128015783356127f2816124a3565b825292840192908401906127df565b979650505050505050565b60006020828403121561281e57600080fd5b813567ffffffffffffffff81111561283557600080fd5b6117b1848285016126a1565b6000806040838503121561285457600080fd5b823561285f816124a3565b91506020830135801515811461287457600080fd5b809150509250929050565b6000806000806080858703121561289557600080fd5b84356128a0816124a3565b935060208501356128b0816124a3565b925060408501359150606085013567ffffffffffffffff8111156128d357600080fd5b8501601f810187136128e457600080fd5b6128f387823560208401612649565b91505092959194509250565b6000806040838503121561291257600080fd5b823591506020830135612874816124a3565b6000806040838503121561293757600080fd5b8235612942816124a3565b91506020830135612874816124a3565b600181811c9082168061296657607f821691505b6020821081141561298757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526013908201527214d85b19481a5cc81b9bdd081cdd185c9d1959606a1b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612a6957612a69612a40565b500190565b60208082526017908201527f4f7574206f66206c696d6974206e667420616d6f756e74000000000000000000604082015260600190565b6000816000190483118215151615612abf57612abf612a40565b500290565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b6000600019821415612b0557612b05612a40565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612b3457600080fd5b5051919050565b60008151612b4d81856020860161241f565b9290920192915050565b60008351612b6981846020880161241f565b835190830190612b7d81836020880161241f565b01949350505050565b600082821015612b9857612b98612a40565b500390565b600080845481600182811c915080831680612bb957607f831692505b6020808410821415612bd957634e487b7160e01b86526022600452602486fd5b818015612bed5760018114612bfe57612c2b565b60ff19861689528489019650612c2b565b60008b81526020902060005b86811015612c235781548b820152908501908301612c0a565b505084890196505b505050505050612c4b612c4582602f60f81b815260010190565b85612b3b565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612ccb57612ccb612ca6565b500490565b600082612cdf57612cdf612ca6565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d179083018461244b565b9695505050505050565b600060208284031215612d3357600080fd5b8151611f67816123ec56fea26469706673582212203533b6f5d66494693ebcba1f5278cfa59a405790978e0059fbfadc480af7b47164736f6c6343000809003300000000000000000000000050d2b1f7e8f8c9ebb19c7fdbf78bc5b2c23323ba0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f61646d696e2e626f706f76657273652e636f6d2f4150492f4970667300000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102e45760003560e01c806370a0823111610190578063b88d4fde116100dc578063d90bd7d911610095578063ea5bbc4b1161006f578063ea5bbc4b14610874578063f2fde38b1461088a578063f55330bf146108aa578063fb3ed5c7146108bf57600080fd5b8063d90bd7d9146107f5578063e7b99ec714610815578063e985e9c51461082b57600080fd5b8063b88d4fde14610740578063b9a137e114610760578063bc63f02e14610780578063c87b56dd146107a0578063cef216e2146107c0578063d49479eb146107d557600080fd5b8063953f049d11610149578063a0712d6811610123578063a0712d68146106d7578063a0bcfc7f146106ea578063a22cb4651461070a578063a659c07e1461072a57600080fd5b8063953f049d1461069957806395d89b41146106af5780639d1b7ddf146106c457600080fd5b806370a08231146105f1578063715018a61461061157806377d99ff914610626578063898dd01f146106465780638b93b0f5146106655780638da5cb5b1461067b57600080fd5b806333e614131161024f57806350dd12781161020857806356f8f78c116101e257806356f8f78c146105855780635e84d7231461059a5780636352211e146105b15780636f8b44b0146105d157600080fd5b806350dd12781461052557806351cff8d91461054557806354e5c18c1461056557600080fd5b806333e614131461047757806342842e0e1461048e57806344a0d68a146104ae57806346aa47eb146104ce578063483e1c38146104ee5780634c66866f1461050557600080fd5b80631f69f030116102a15780631f69f030146103de57806323b872dd146103f457806326a74d8e146104145780632904e6d91461042a57806331ffd6f11461043d57806333bc1c5c1461045d57600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc1461034057806308b38e6414610378578063095ea7b31461039a57806313faede6146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004612402565b6108d6565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610928565b6040516103159190612477565b34801561034c57600080fd5b5061036061035b36600461248a565b6109ba565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b506103986103933660046124b8565b610a47565b005b3480156103a657600080fd5b506103986103b53660046124d5565b610a9d565b3480156103c657600080fd5b506103d0600d5481565b604051908152602001610315565b3480156103ea57600080fd5b506103d0600f5481565b34801561040057600080fd5b5061039861040f366004612501565b610bb3565b34801561042057600080fd5b506103d060105481565b6103986104383660046125ad565b610be4565b34801561044957600080fd5b506016546103099062010000900460ff1681565b34801561046957600080fd5b506016546103099060ff1681565b34801561048357600080fd5b506009546103d09081565b34801561049a57600080fd5b506103986104a9366004612501565b610d80565b3480156104ba57600080fd5b506103986104c936600461248a565b610d9b565b3480156104da57600080fd5b506103986104e93660046126c1565b610dca565b3480156104fa57600080fd5b50600a546103d09081565b34801561051157600080fd5b5061039861052036600461248a565b610e67565b34801561053157600080fd5b50610398610540366004612772565b610e96565b34801561055157600080fd5b506103986105603660046124b8565b610f90565b34801561057157600080fd5b5061039861058036600461248a565b610ff2565b34801561059157600080fd5b50610398611021565b3480156105a657600080fd5b506008546103d09081565b3480156105bd57600080fd5b506103606105cc36600461248a565b61105f565b3480156105dd57600080fd5b506103986105ec36600461248a565b6110d6565b3480156105fd57600080fd5b506103d061060c3660046124b8565b611105565b34801561061d57600080fd5b5061039861118c565b34801561063257600080fd5b5061039861064136600461248a565b6111c2565b34801561065257600080fd5b5060165461030990610100900460ff1681565b34801561067157600080fd5b506103d060135481565b34801561068757600080fd5b506007546001600160a01b0316610360565b3480156106a557600080fd5b506103d060125481565b3480156106bb57600080fd5b506103336111f1565b6103986106d236600461248a565b611200565b6103986106e536600461248a565b6113e5565b3480156106f657600080fd5b5061039861070536600461280c565b6114ad565b34801561071657600080fd5b50610398610725366004612841565b6114ea565b34801561073657600080fd5b506103d060145481565b34801561074c57600080fd5b5061039861075b36600461287f565b6114f5565b34801561076c57600080fd5b5061039861077b36600461248a565b61152d565b34801561078c57600080fd5b5061039861079b3660046128ff565b61155c565b3480156107ac57600080fd5b506103336107bb36600461248a565b611642565b3480156107cc57600080fd5b506103986117b9565b3480156107e157600080fd5b506103986107f036600461248a565b611802565b34801561080157600080fd5b5061039861081036600461248a565b611831565b34801561082157600080fd5b506103d0600e5481565b34801561083757600080fd5b50610309610846366004612924565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561088057600080fd5b506103d060115481565b34801561089657600080fd5b506103986108a53660046124b8565b611860565b3480156108b657600080fd5b506103986118fb565b3480156108cb57600080fd5b50600b546103d09081565b60006001600160e01b031982166380ac58cd60e01b148061090757506001600160e01b03198216635b5e139f60e01b145b8061092257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461093790612952565b80601f016020809104026020016040519081016040528092919081815260200182805461096390612952565b80156109b05780601f10610985576101008083540402835291602001916109b0565b820191906000526020600020905b81548152906001019060200180831161099357829003601f168201915b5050505050905090565b60006109c582611942565b610a2b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6007546001600160a01b03163314610a715760405162461bcd60e51b8152600401610a229061298d565b601680546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b6000610aa88261105f565b9050806001600160a01b0316836001600160a01b03161415610b165760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a22565b336001600160a01b0382161480610b325750610b328133610846565b610ba45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a22565b610bae838361195f565b505050565b610bbd33826119cd565b610bd95760405162461bcd60e51b8152600401610a22906129c2565b610bae838383611ab6565b60165462010000900460ff16610c0c5760405162461bcd60e51b8152600401610a2290612a13565b6015546040516bffffffffffffffffffffffff193360601b166020820152610c4e91849160340160405160208183030381529060405280519060200120611c52565b610c8d5760405162461bcd60e51b815260206004820152601060248201526f139bdd081a5b881dda1a5d195b1a5cdd60821b6044820152606401610a22565b80610c9760085490565b610ca19190612a56565b6010541015610cc25760405162461bcd60e51b8152600401610a2290612a6e565b80610ccc60095490565b610cd69190612a56565b6012541015610cf75760405162461bcd60e51b8152600401610a2290612a6e565b80600e54610d059190612aa5565b341015610d245760405162461bcd60e51b8152600401610a2290612ac4565b60005b81811015610bae57610d3d600880546001019055565b610d4b600980546001019055565b610d5d33610d5860085490565b611c68565b610d6e610d6960085490565b611c82565b80610d7881612af1565b915050610d27565b610bae838383604051806020016040528060008152506114f5565b6007546001600160a01b03163314610dc55760405162461bcd60e51b8152600401610a229061298d565b600d55565b6007546001600160a01b03163314610df45760405162461bcd60e51b8152600401610a229061298d565b6000610dff60085490565b6014549091506000905b828111610e5357610e3381858481518110610e2657610e26612b0c565b6020026020010151611cb7565b81610e3d81612af1565b9250508080610e4b90612af1565b915050610e09565b50610e5f826001612a56565b601455505050565b6007546001600160a01b03163314610e915760405162461bcd60e51b8152600401610a229061298d565b601355565b6007546001600160a01b03163314610ec05760405162461bcd60e51b8152600401610a229061298d565b8051600854610ecf9190612a56565b6010541015610ef05760405162461bcd60e51b8152600401610a2290612a6e565b8051600b54610eff9190612a56565b6013541015610f205760405162461bcd60e51b8152600401610a2290612a6e565b60005b8151811015610f8c57610f3a600880546001019055565b610f48600b80546001019055565b610f6e828281518110610f5d57610f5d612b0c565b6020026020010151610d5860085490565b610f7a610d6960085490565b80610f8481612af1565b915050610f23565b5050565b6007546001600160a01b03163314610fba5760405162461bcd60e51b8152600401610a229061298d565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610bae573d6000803e3d6000fd5b6007546001600160a01b0316331461101c5760405162461bcd60e51b8152600401610a229061298d565b601255565b6007546001600160a01b0316331461104b5760405162461bcd60e51b8152600401610a229061298d565b6016805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b0316806109225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a22565b6007546001600160a01b031633146111005760405162461bcd60e51b8152600401610a229061298d565b601055565b60006001600160a01b0382166111705760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a22565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146111b65760405162461bcd60e51b8152600401610a229061298d565b6111c06000611d42565b565b6007546001600160a01b031633146111ec5760405162461bcd60e51b8152600401610a229061298d565b601155565b60606001805461093790612952565b601654610100900460ff166112275760405162461bcd60e51b8152600401610a2290612a13565b6016546040516370a0823160e01b8152336004820152600091630100000090046001600160a01b0316906370a082319060240160206040518083038186803b15801561127257600080fd5b505afa158015611286573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112aa9190612b22565b9050600081116112fc5760405162461bcd60e51b815260206004820152601d60248201527f4e6f7420796f7572206f776e206461696d6f6e6420636c7562206e66740000006044820152606401610a22565b8161130660085490565b6113109190612a56565b60105410156113315760405162461bcd60e51b8152600401610a2290612a6e565b8161133b600a5490565b6113459190612a56565b60115410156113665760405162461bcd60e51b8152600401610a2290612a6e565b81600f546113749190612aa5565b3410156113935760405162461bcd60e51b8152600401610a2290612ac4565b60005b82811015610bae576113ac600880546001019055565b6113ba600a80546001019055565b6113c733610d5860085490565b6113d3610d6960085490565b806113dd81612af1565b915050611396565b60165460ff166114075760405162461bcd60e51b8152600401610a2290612a13565b8061141160085490565b61141b9190612a56565b601054101561143c5760405162461bcd60e51b8152600401610a2290612a6e565b80600d5461144a9190612aa5565b3410156114695760405162461bcd60e51b8152600401610a2290612ac4565b60005b81811015610f8c57611482600880546001019055565b61148f33610d5860085490565b61149b610d6960085490565b806114a581612af1565b91505061146c565b6007546001600160a01b031633146114d75760405162461bcd60e51b8152600401610a229061298d565b8051610f8c90600c906020840190612353565b610f8c338383611d94565b6114ff33836119cd565b61151b5760405162461bcd60e51b8152600401610a22906129c2565b61152784848484611e63565b50505050565b6007546001600160a01b031633146115575760405162461bcd60e51b8152600401610a229061298d565b600f55565b6007546001600160a01b031633146115865760405162461bcd60e51b8152600401610a229061298d565b8161159060085490565b61159a9190612a56565b60105410156115bb5760405162461bcd60e51b8152600401610a2290612a6e565b816115c5600b5490565b6115cf9190612a56565b60135410156115f05760405162461bcd60e51b8152600401610a2290612a6e565b60005b82811015610bae57611609600880546001019055565b611617600b80546001019055565b61162482610d5860085490565b611630610d6960085490565b8061163a81612af1565b9150506115f3565b606061164d82611942565b6116b35760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610a22565b600082815260066020526040812080546116cc90612952565b80601f01602080910402602001604051908101604052809291908181526020018280546116f890612952565b80156117455780601f1061171a57610100808354040283529160200191611745565b820191906000526020600020905b81548152906001019060200180831161172857829003601f168201915b50505050509050600061176360408051602081019091526000815290565b9050805160001415611776575092915050565b8151156117a8578082604051602001611790929190612b57565b60405160208183030381529060405292505050919050565b6117b184611e96565b949350505050565b6007546001600160a01b031633146117e35760405162461bcd60e51b8152600401610a229061298d565b6016805462ff0000198116620100009182900460ff1615909102179055565b6007546001600160a01b0316331461182c5760405162461bcd60e51b8152600401610a229061298d565b600e55565b6007546001600160a01b0316331461185b5760405162461bcd60e51b8152600401610a229061298d565b601555565b6007546001600160a01b0316331461188a5760405162461bcd60e51b8152600401610a229061298d565b6001600160a01b0381166118ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a22565b6118f881611d42565b50565b6007546001600160a01b031633146119255760405162461bcd60e51b8152600401610a229061298d565b6016805461ff001981166101009182900460ff1615909102179055565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119948261105f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119d882611942565b611a395760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a22565b6000611a448361105f565b9050806001600160a01b0316846001600160a01b03161480611a8b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806117b15750836001600160a01b0316611aa4846109ba565b6001600160a01b031614949350505050565b826001600160a01b0316611ac98261105f565b6001600160a01b031614611b2d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a22565b6001600160a01b038216611b8f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a22565b611b9a60008261195f565b6001600160a01b0383166000908152600360205260408120805460019290611bc3908490612b86565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bf1908490612a56565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611c5f8584611f6e565b14949350505050565b610f8c828260405180602001604052806000815250611fe2565b6000600c611c8f83612015565b604051602001611ca0929190612b9d565b6040516020818303038152906040529050610f8c82825b611cc082611942565b611d235760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610a22565b60008281526006602090815260409091208251610bae92840190612353565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611df65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a22565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e6e848484611ab6565b611e7a84848484612113565b6115275760405162461bcd60e51b8152600401610a2290612c54565b6060611ea182611942565b611f055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a22565b6000611f1c60408051602081019091526000815290565b90506000815111611f3c5760405180602001604052806000815250611f67565b80611f4684612015565b604051602001611f57929190612b57565b6040516020818303038152906040525b9392505050565b600081815b8451811015611fda576000858281518110611f9057611f90612b0c565b60200260200101519050808311611fb65760008381526020829052604090209250611fc7565b600081815260208490526040902092505b5080611fd281612af1565b915050611f73565b509392505050565b611fec8383612220565b611ff96000848484612113565b610bae5760405162461bcd60e51b8152600401610a2290612c54565b6060816120395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612063578061204d81612af1565b915061205c9050600a83612cbc565b915061203d565b60008167ffffffffffffffff81111561207e5761207e612542565b6040519080825280601f01601f1916602001820160405280156120a8576020820181803683370190505b5090505b84156117b1576120bd600183612b86565b91506120ca600a86612cd0565b6120d5906030612a56565b60f81b8183815181106120ea576120ea612b0c565b60200101906001600160f81b031916908160001a90535061210c600a86612cbc565b94506120ac565b60006001600160a01b0384163b1561221557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612157903390899088908890600401612ce4565b602060405180830381600087803b15801561217157600080fd5b505af19250505080156121a1575060408051601f3d908101601f1916820190925261219e91810190612d21565b60015b6121fb573d8080156121cf576040519150601f19603f3d011682016040523d82523d6000602084013e6121d4565b606091505b5080516121f35760405162461bcd60e51b8152600401610a2290612c54565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117b1565b506001949350505050565b6001600160a01b0382166122765760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a22565b61227f81611942565b156122cc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a22565b6001600160a01b03821660009081526003602052604081208054600192906122f5908490612a56565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461235f90612952565b90600052602060002090601f01602090048101928261238157600085556123c7565b82601f1061239a57805160ff19168380011785556123c7565b828001600101855582156123c7579182015b828111156123c75782518255916020019190600101906123ac565b506123d39291506123d7565b5090565b5b808211156123d357600081556001016123d8565b6001600160e01b0319811681146118f857600080fd5b60006020828403121561241457600080fd5b8135611f67816123ec565b60005b8381101561243a578181015183820152602001612422565b838111156115275750506000910152565b6000815180845261246381602086016020860161241f565b601f01601f19169290920160200192915050565b602081526000611f67602083018461244b565b60006020828403121561249c57600080fd5b5035919050565b6001600160a01b03811681146118f857600080fd5b6000602082840312156124ca57600080fd5b8135611f67816124a3565b600080604083850312156124e857600080fd5b82356124f3816124a3565b946020939093013593505050565b60008060006060848603121561251657600080fd5b8335612521816124a3565b92506020840135612531816124a3565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561258157612581612542565b604052919050565b600067ffffffffffffffff8211156125a3576125a3612542565b5060051b60200190565b600080604083850312156125c057600080fd5b823567ffffffffffffffff8111156125d757600080fd5b8301601f810185136125e857600080fd5b803560206125fd6125f883612589565b612558565b82815260059290921b8301810191818101908884111561261c57600080fd5b938201935b8385101561263a57843582529382019390820190612621565b98969091013596505050505050565b600067ffffffffffffffff83111561266357612663612542565b612676601f8401601f1916602001612558565b905082815283838301111561268a57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126126b257600080fd5b611f6783833560208501612649565b600060208083850312156126d457600080fd5b823567ffffffffffffffff808211156126ec57600080fd5b818501915085601f83011261270057600080fd5b813561270e6125f882612589565b81815260059190911b8301840190848101908883111561272d57600080fd5b8585015b83811015612765578035858111156127495760008081fd5b6127578b89838a01016126a1565b845250918601918601612731565b5098975050505050505050565b6000602080838503121561278557600080fd5b823567ffffffffffffffff81111561279c57600080fd5b8301601f810185136127ad57600080fd5b80356127bb6125f882612589565b81815260059190911b820183019083810190878311156127da57600080fd5b928401925b828410156128015783356127f2816124a3565b825292840192908401906127df565b979650505050505050565b60006020828403121561281e57600080fd5b813567ffffffffffffffff81111561283557600080fd5b6117b1848285016126a1565b6000806040838503121561285457600080fd5b823561285f816124a3565b91506020830135801515811461287457600080fd5b809150509250929050565b6000806000806080858703121561289557600080fd5b84356128a0816124a3565b935060208501356128b0816124a3565b925060408501359150606085013567ffffffffffffffff8111156128d357600080fd5b8501601f810187136128e457600080fd5b6128f387823560208401612649565b91505092959194509250565b6000806040838503121561291257600080fd5b823591506020830135612874816124a3565b6000806040838503121561293757600080fd5b8235612942816124a3565b91506020830135612874816124a3565b600181811c9082168061296657607f821691505b6020821081141561298757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526013908201527214d85b19481a5cc81b9bdd081cdd185c9d1959606a1b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612a6957612a69612a40565b500190565b60208082526017908201527f4f7574206f66206c696d6974206e667420616d6f756e74000000000000000000604082015260600190565b6000816000190483118215151615612abf57612abf612a40565b500290565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b6000600019821415612b0557612b05612a40565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612b3457600080fd5b5051919050565b60008151612b4d81856020860161241f565b9290920192915050565b60008351612b6981846020880161241f565b835190830190612b7d81836020880161241f565b01949350505050565b600082821015612b9857612b98612a40565b500390565b600080845481600182811c915080831680612bb957607f831692505b6020808410821415612bd957634e487b7160e01b86526022600452602486fd5b818015612bed5760018114612bfe57612c2b565b60ff19861689528489019650612c2b565b60008b81526020902060005b86811015612c235781548b820152908501908301612c0a565b505084890196505b505050505050612c4b612c4582602f60f81b815260010190565b85612b3b565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612ccb57612ccb612ca6565b500490565b600082612cdf57612cdf612ca6565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d179083018461244b565b9695505050505050565b600060208284031215612d3357600080fd5b8151611f67816123ec56fea26469706673582212203533b6f5d66494693ebcba1f5278cfa59a405790978e0059fbfadc480af7b47164736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000050d2b1f7e8f8c9ebb19c7fdbf78bc5b2c23323ba0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f61646d696e2e626f706f76657273652e636f6d2f4150492f4970667300000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _diamondClub (address): 0x50d2B1f7e8f8c9ebB19c7FDBF78BC5B2c23323BA
Arg [1] : _baseUri (string): https://admin.bopoverse.com/API/Ipfs
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000050d2b1f7e8f8c9ebb19c7fdbf78bc5b2c23323ba
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [3] : 68747470733a2f2f61646d696e2e626f706f76657273652e636f6d2f4150492f
Arg [4] : 4970667300000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
41327:6673:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26398:305;;;;;;;;;;-1:-1:-1;26398:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26398:305:0;;;;;;;;27343:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28903:221::-;;;;;;;;;;-1:-1:-1;28903:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;28903:221:0;1550:203:1;42934:113:0;;;;;;;;;;-1:-1:-1;42934:113:0;;;;;:::i;:::-;;:::i;:::-;;28426:411;;;;;;;;;;-1:-1:-1;28426:411:0;;;;;:::i;:::-;;:::i;41674:31::-;;;;;;;;;;;;;;;;;;;2612:25:1;;;2600:2;2585:18;41674:31:0;2466:177:1;41759:38:0;;;;;;;;;;;;;;;;29653:339;;;;;;;;;;-1:-1:-1;29653:339:0;;;;;:::i;:::-;;:::i;41806:37::-;;;;;;;;;;;;;;;;43565:819;;;;;;:::i;:::-;;:::i;42145:33::-;;;;;;;;;;-1:-1:-1;42145:33:0;;;;;;;;;;;42070:30;;;;;;;;;;-1:-1:-1;42070:30:0;;;;;;;;41507:39;;;;;;;;;;-1:-1:-1;41507:39:0;;;;;;30063:185;;;;;;;;;;-1:-1:-1;30063:185:0;;;;;:::i;:::-;;:::i;46468:82::-;;;;;;;;;;-1:-1:-1;46468:82:0;;;;;:::i;:::-;;:::i;47383:391::-;;;;;;;;;;-1:-1:-1;47383:391:0;;;;;:::i;:::-;;:::i;41553:37::-;;;;;;;;;;-1:-1:-1;41553:37:0;;;;;;42796:130;;;;;;;;;;-1:-1:-1;42796:130:0;;;;;:::i;:::-;;:::i;45777:563::-;;;;;;;;;;-1:-1:-1;45777:563:0;;;;;:::i;:::-;;:::i;47215:160::-;;;;;;;;;;-1:-1:-1;47215:160:0;;;;;:::i;:::-;;:::i;42650:138::-;;;;;;;;;;-1:-1:-1;42650:138:0;;;;;:::i;:::-;;:::i;46918:87::-;;;;;;;;;;;;;:::i;41464:36::-;;;;;;;;;;-1:-1:-1;41464:36:0;;;;;;27037:239;;;;;;;;;;-1:-1:-1;27037:239:0;;;;;:::i;:::-;;:::i;42396:108::-;;;;;;;;;;-1:-1:-1;42396:108:0;;;;;:::i;:::-;;:::i;26767:208::-;;;;;;;;;;-1:-1:-1;26767:208:0;;;;;:::i;:::-;;:::i;14042:103::-;;;;;;;;;;;;;:::i;42512:130::-;;;;;;;;;;-1:-1:-1;42512:130:0;;;;;:::i;:::-;;:::i;42107:31::-;;;;;;;;;;-1:-1:-1;42107:31:0;;;;;;;;;;;41942:37;;;;;;;;;;;;;;;;13391:87;;;;;;;;;;-1:-1:-1;13464:6:0;;-1:-1:-1;;;;;13464:6:0;13391:87;;41895:40;;;;;;;;;;;;;;;;27512:104;;;;;;;;;;;;;:::i;44392:819::-;;;;;;:::i;:::-;;:::i;43055:502::-;;;;;;:::i;:::-;;:::i;46806:104::-;;;;;;;;;;-1:-1:-1;46806:104:0;;;;;:::i;:::-;;:::i;29196:155::-;;;;;;;;;;-1:-1:-1;29196:155:0;;;;;:::i;:::-;;:::i;41992:33::-;;;;;;;;;;;;;;;;30319:328;;;;;;;;;;-1:-1:-1;30319:328:0;;;;;:::i;:::-;;:::i;46688:110::-;;;;;;;;;;-1:-1:-1;46688:110:0;;;;;:::i;:::-;;:::i;45223:546::-;;;;;;;;;;-1:-1:-1;45223:546:0;;;;;:::i;:::-;;:::i;39831:679::-;;;;;;;;;;-1:-1:-1;39831:679:0;;;;;:::i;:::-;;:::i;47013:96::-;;;;;;;;;;;;;:::i;46562:118::-;;;;;;;;;;-1:-1:-1;46562:118:0;;;;;:::i;:::-;;:::i;46348:112::-;;;;;;;;;;-1:-1:-1;46348:112:0;;;;;:::i;:::-;;:::i;41712:40::-;;;;;;;;;;;;;;;;29422:164;;;;;;;;;;-1:-1:-1;29422:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29543:25:0;;;29519:4;29543:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29422:164;41850:38;;;;;;;;;;;;;;;;14300:201;;;;;;;;;;-1:-1:-1;14300:201:0;;;;;:::i;:::-;;:::i;47117:90::-;;;;;;;;;;;;;:::i;41597:37::-;;;;;;;;;;-1:-1:-1;41597:37:0;;;;;;26398:305;26500:4;-1:-1:-1;;;;;;26537:40:0;;-1:-1:-1;;;26537:40:0;;:105;;-1:-1:-1;;;;;;;26594:48:0;;-1:-1:-1;;;26594:48:0;26537:105;:158;;;-1:-1:-1;;;;;;;;;;25114:40:0;;;26659:36;26517:178;26398:305;-1:-1:-1;;26398:305:0:o;27343:100::-;27397:13;27430:5;27423:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27343:100;:::o;28903:221::-;28979:7;29007:16;29015:7;29007;:16::i;:::-;28999:73;;;;-1:-1:-1;;;28999:73:0;;10716:2:1;28999:73:0;;;10698:21:1;10755:2;10735:18;;;10728:30;10794:34;10774:18;;;10767:62;-1:-1:-1;;;10845:18:1;;;10838:42;10897:19;;28999:73:0;;;;;;;;;-1:-1:-1;29092:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29092:24:0;;28903:221::o;42934:113::-;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;43013:11:::1;:26:::0;;-1:-1:-1;;;;;43013:26:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;43013:26:0;;::::1;::::0;;;::::1;::::0;;42934:113::o;28426:411::-;28507:13;28523:23;28538:7;28523:14;:23::i;:::-;28507:39;;28571:5;-1:-1:-1;;;;;28565:11:0;:2;-1:-1:-1;;;;;28565:11:0;;;28557:57;;;;-1:-1:-1;;;28557:57:0;;11490:2:1;28557:57:0;;;11472:21:1;11529:2;11509:18;;;11502:30;11568:34;11548:18;;;11541:62;-1:-1:-1;;;11619:18:1;;;11612:31;11660:19;;28557:57:0;11288:397:1;28557:57:0;3989:10;-1:-1:-1;;;;;28649:21:0;;;;:62;;-1:-1:-1;28674:37:0;28691:5;3989:10;29422:164;:::i;28674:37::-;28627:168;;;;-1:-1:-1;;;28627:168:0;;11892:2:1;28627:168:0;;;11874:21:1;11931:2;11911:18;;;11904:30;11970:34;11950:18;;;11943:62;12041:26;12021:18;;;12014:54;12085:19;;28627:168:0;11690:420:1;28627:168:0;28808:21;28817:2;28821:7;28808:8;:21::i;:::-;28496:341;28426:411;;:::o;29653:339::-;29848:41;3989:10;29881:7;29848:18;:41::i;:::-;29840:103;;;;-1:-1:-1;;;29840:103:0;;;;;;;:::i;:::-;29956:28;29966:4;29972:2;29976:7;29956:9;:28::i;43565:819::-;43667:13;;;;;;;43659:45;;;;-1:-1:-1;;;43659:45:0;;;;;;;:::i;:::-;43749:10;;43771:28;;-1:-1:-1;;43788:10:0;13030:2:1;13026:15;13022:53;43771:28:0;;;13010:66:1;43723:78:0;;43742:5;;13092:12:1;;43771:28:0;;;;;;;;;;;;43761:39;;;;;;43723:18;:78::i;:::-;43715:107;;;;-1:-1:-1;;;43715:107:0;;13317:2:1;43715:107:0;;;13299:21:1;13356:2;13336:18;;;13329:30;-1:-1:-1;;;13375:18:1;;;13368:46;13431:18;;43715:107:0;13115:340:1;43715:107:0;43886:11;43861:22;:12;2868:14;;2776:114;43861:22;:36;;;;:::i;:::-;43841:15;;:57;;43833:93;;;;-1:-1:-1;;;43833:93:0;;;;;;;:::i;:::-;43996:11;43968:25;:15;2868:14;;2776:114;43968:25;:39;;;;:::i;:::-;43945:18;;:63;;43937:99;;;;-1:-1:-1;;;43937:99:0;;;;;;;:::i;:::-;44084:11;44068:13;;:27;;;;:::i;:::-;44055:9;:40;;44047:72;;;;-1:-1:-1;;;44047:72:0;;;;;;;:::i;:::-;44137:9;44132:245;44152:11;44148:1;:15;44132:245;;;44185:24;:12;2987:19;;3005:1;2987:19;;;2898:127;44185:24;44224:27;:15;2987:19;;3005:1;2987:19;;;2898:127;44224:27;44266:45;44276:10;44288:22;:12;2868:14;;2776:114;44288:22;44266:9;:45::i;:::-;44326:39;44342:22;:12;2868:14;;2776:114;44342:22;44326:15;:39::i;:::-;44165:3;;;;:::i;:::-;;;;44132:245;;30063:185;30201:39;30218:4;30224:2;30228:7;30201:39;;;;;;;;;;;;:16;:39::i;46468:82::-;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;46530:4:::1;:12:::0;46468:82::o;47383:391::-;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;47463:23:::1;47489:22;:12;2868:14:::0;;2776:114;47489:22:::1;47583:14;::::0;47463:48;;-1:-1:-1;47522:20:0::1;::::0;47567:153:::1;47604:15;47599:1;:20;47567:153;;47641:38;47654:1;47657:7;47665:12;47657:21;;;;;;;;:::i;:::-;;;;;;;47641:12;:38::i;:::-;47694:14:::0;::::1;::::0;::::1;:::i;:::-;;;;47622:3;;;;;:::i;:::-;;;;47567:153;;;-1:-1:-1::0;47748:17:0::1;:15:::0;47764:1:::1;47748:17;:::i;:::-;47730:14;:36:::0;-1:-1:-1;;;47383:391:0:o;42796:130::-;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;42882:16:::1;:36:::0;42796:130::o;45777:563::-;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;45912:16;;45887:12:::1;2868:14:::0;45887:41:::1;;;;:::i;:::-;45867:15;;:62;;45859:98;;;;-1:-1:-1::0;;;45859:98:0::1;;;;;;;:::i;:::-;46023:16:::0;;45997:13:::1;2868:14:::0;45997:42:::1;;;;:::i;:::-;45976:16;;:64;;45968:100;;;;-1:-1:-1::0;;;45968:100:0::1;;;;;;;:::i;:::-;46084:9;46079:254;46103:9;:16;46099:1;:20;46079:254;;;46141:24;:12;2987:19:::0;;3005:1;2987:19;;;2898:127;46141:24:::1;46180:25;:13;2987:19:::0;;3005:1;2987:19;;;2898:127;46180:25:::1;46220:47;46230:9;46240:1;46230:12;;;;;;;;:::i;:::-;;;;;;;46244:22;:12;2868:14:::0;;2776:114;46220:47:::1;46282:39;46298:22;:12;2868:14:::0;;2776:114;46282:39:::1;46121:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46079:254;;;;45777:563:::0;:::o;47215:160::-;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;47340:27:::1;::::0;47308:21:::1;::::0;-1:-1:-1;;;;;47340:18:0;::::1;::::0;:27;::::1;;;::::0;47308:21;;47290:15:::1;47340:27:::0;47290:15;47340:27;47308:21;47340:18;:27;::::1;;;;;;;;;;;;;::::0;::::1;;;;42650:138:::0;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;42740:18:::1;:40:::0;42650:138::o;46918:87::-;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;46987:10:::1;::::0;;-1:-1:-1;;46973:24:0;::::1;46987:10;::::0;;::::1;46986:11;46973:24;::::0;;46918:87::o;27037:239::-;27109:7;27145:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27145:16:0;27180:19;27172:73;;;;-1:-1:-1;;;27172:73:0;;15072:2:1;27172:73:0;;;15054:21:1;15111:2;15091:18;;;15084:30;15150:34;15130:18;;;15123:62;-1:-1:-1;;;15201:18:1;;;15194:39;15250:19;;27172:73:0;14870:405:1;42396:108:0;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;42468:15:::1;:28:::0;42396:108::o;26767:208::-;26839:7;-1:-1:-1;;;;;26867:19:0;;26859:74;;;;-1:-1:-1;;;26859:74:0;;15482:2:1;26859:74:0;;;15464:21:1;15521:2;15501:18;;;15494:30;15560:34;15540:18;;;15533:62;-1:-1:-1;;;15611:18:1;;;15604:40;15661:19;;26859:74:0;15280:406:1;26859:74:0;-1:-1:-1;;;;;;26951:16:0;;;;;:9;:16;;;;;;;26767:208::o;14042:103::-;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;14107:30:::1;14134:1;14107:18;:30::i;:::-;14042:103::o:0;42512:130::-;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;42598:16:::1;:36:::0;42512:130::o;27512:104::-;27568:13;27601:7;27594:14;;;;;:::i;44392:819::-;44467:11;;;;;;;44459:43;;;;-1:-1:-1;;;44459:43:0;;;;;;;:::i;:::-;44548:11;;44540:42;;-1:-1:-1;;;44540:42:0;;44571:10;44540:42;;;1696:51:1;44513:24:0;;44548:11;;;-1:-1:-1;;;;;44548:11:0;;44540:30;;1669:18:1;;44540:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44513:69;;44622:1;44603:16;:20;44595:62;;;;-1:-1:-1;;;44595:62:0;;16082:2:1;44595:62:0;;;16064:21:1;16121:2;16101:18;;;16094:30;16160:31;16140:18;;;16133:59;16209:18;;44595:62:0;15880:353:1;44595:62:0;44721:11;44696:22;:12;2868:14;;2776:114;44696:22;:36;;;;:::i;:::-;44676:15;;:57;;44668:93;;;;-1:-1:-1;;;44668:93:0;;;;;;;:::i;:::-;44827:11;44801:23;:13;2868:14;;2776:114;44801:23;:37;;;;:::i;:::-;44780:16;;:59;;44772:95;;;;-1:-1:-1;;;44772:95:0;;;;;;;:::i;:::-;44913:11;44899;;:25;;;;:::i;:::-;44886:9;:38;;44878:70;;;;-1:-1:-1;;;44878:70:0;;;;;;;:::i;:::-;44966:9;44961:243;44981:11;44977:1;:15;44961:243;;;45014:24;:12;2987:19;;3005:1;2987:19;;;2898:127;45014:24;45053:25;:13;2987:19;;3005:1;2987:19;;;2898:127;45053:25;45093:45;45103:10;45115:22;:12;2868:14;;2776:114;45093:45;45153:39;45169:22;:12;2868:14;;2776:114;45153:39;44994:3;;;;:::i;:::-;;;;44961:243;;43055:502;43124:10;;;;43116:42;;;;-1:-1:-1;;;43116:42:0;;;;;;;:::i;:::-;43222:11;43197:22;:12;2868:14;;2776:114;43197:22;:36;;;;:::i;:::-;43177:15;;:57;;43169:93;;;;-1:-1:-1;;;43169:93:0;;;;;;;:::i;:::-;43301:11;43294:4;;:18;;;;:::i;:::-;43281:9;:31;;43273:63;;;;-1:-1:-1;;;43273:63:0;;;;;;;:::i;:::-;43352:9;43347:203;43367:11;43363:1;:15;43347:203;;;43400:24;:12;2987:19;;3005:1;2987:19;;;2898:127;43400:24;43439:45;43449:10;43461:22;:12;2868:14;;2776:114;43439:45;43499:39;43515:22;:12;2868:14;;2776:114;43499:39;43380:3;;;;:::i;:::-;;;;43347:203;;46806:104;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;46882:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;29196:155::-:0;29291:52;3989:10;29324:8;29334;29291:18;:52::i;30319:328::-;30494:41;3989:10;30527:7;30494:18;:41::i;:::-;30486:103;;;;-1:-1:-1;;;30486:103:0;;;;;;;:::i;:::-;30600:39;30614:4;30620:2;30624:7;30633:5;30600:13;:39::i;:::-;30319:328;;;;:::o;46688:110::-;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;46764:11:::1;:26:::0;46688:110::o;45223:546::-;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;45363:11:::1;45338:22;:12;2868:14:::0;;2776:114;45338:22:::1;:36;;;;:::i;:::-;45318:15;;:57;;45310:93;;;;-1:-1:-1::0;;;45310:93:0::1;;;;;;;:::i;:::-;45469:11;45443:23;:13;2868:14:::0;;2776:114;45443:23:::1;:37;;;;:::i;:::-;45422:16;;:59;;45414:95;;;;-1:-1:-1::0;;;45414:95:0::1;;;;;;;:::i;:::-;45525:9;45520:242;45540:11;45536:1;:15;45520:242;;;45573:24;:12;2987:19:::0;;3005:1;2987:19;;;2898:127;45573:24:::1;45612:25;:13;2987:19:::0;;3005:1;2987:19;;;2898:127;45612:25:::1;45652:44;45662:9;45673:22;:12;2868:14:::0;;2776:114;45652:44:::1;45711:39;45727:22;:12;2868:14:::0;;2776:114;45711:39:::1;45553:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45520:242;;39831:679:::0;39904:13;39938:16;39946:7;39938;:16::i;:::-;39930:78;;;;-1:-1:-1;;;39930:78:0;;16440:2:1;39930:78:0;;;16422:21:1;16479:2;16459:18;;;16452:30;16518:34;16498:18;;;16491:62;-1:-1:-1;;;16569:18:1;;;16562:47;16626:19;;39930:78:0;16238:413:1;39930:78:0;40021:23;40047:19;;;:10;:19;;;;;40021:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40077:18;40098:10;28347:9;;;;;;;;;-1:-1:-1;28347:9:0;;;28270:94;40098:10;40077:31;;40190:4;40184:18;40206:1;40184:23;40180:72;;;-1:-1:-1;40231:9:0;39831:679;-1:-1:-1;;39831:679:0:o;40180:72::-;40356:23;;:27;40352:108;;40431:4;40437:9;40414:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40400:48;;;;39831:679;;;:::o;40352:108::-;40479:23;40494:7;40479:14;:23::i;:::-;40472:30;39831:679;-1:-1:-1;;;;39831:679:0:o;47013:96::-;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;47088:13:::1;::::0;;-1:-1:-1;;47071:30:0;::::1;47088:13:::0;;;;::::1;;;47087:14;47071:30:::0;;::::1;;::::0;;47013:96::o;46562:118::-;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;46642:13:::1;:30:::0;46562:118::o;46348:112::-;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;46428:10:::1;:24:::0;46348:112::o;14300:201::-;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14389:22:0;::::1;14381:73;;;::::0;-1:-1:-1;;;14381:73:0;;17523:2:1;14381:73:0::1;::::0;::::1;17505:21:1::0;17562:2;17542:18;;;17535:30;17601:34;17581:18;;;17574:62;-1:-1:-1;;;17652:18:1;;;17645:36;17698:19;;14381:73:0::1;17321:402:1::0;14381:73:0::1;14465:28;14484:8;14465:18;:28::i;:::-;14300:201:::0;:::o;47117:90::-;13464:6;;-1:-1:-1;;;;;13464:6:0;3989:10;13611:23;13603:68;;;;-1:-1:-1;;;13603:68:0;;;;;;;:::i;:::-;47188:11:::1;::::0;;-1:-1:-1;;47173:26:0;::::1;47188:11;::::0;;;::::1;;;47187:12;47173:26:::0;;::::1;;::::0;;47117:90::o;32157:127::-;32222:4;32246:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32246:16:0;:30;;;32157:127::o;36303:174::-;36378:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36378:29:0;-1:-1:-1;;;;;36378:29:0;;;;;;;;:24;;36432:23;36378:24;36432:14;:23::i;:::-;-1:-1:-1;;;;;36423:46:0;;;;;;;;;;;36303:174;;:::o;32451:348::-;32544:4;32569:16;32577:7;32569;:16::i;:::-;32561:73;;;;-1:-1:-1;;;32561:73:0;;17930:2:1;32561:73:0;;;17912:21:1;17969:2;17949:18;;;17942:30;18008:34;17988:18;;;17981:62;-1:-1:-1;;;18059:18:1;;;18052:42;18111:19;;32561:73:0;17728:408:1;32561:73:0;32645:13;32661:23;32676:7;32661:14;:23::i;:::-;32645:39;;32714:5;-1:-1:-1;;;;;32703:16:0;:7;-1:-1:-1;;;;;32703:16:0;;:52;;;-1:-1:-1;;;;;;29543:25:0;;;29519:4;29543:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32723:32;32703:87;;;;32783:7;-1:-1:-1;;;;;32759:31:0;:20;32771:7;32759:11;:20::i;:::-;-1:-1:-1;;;;;32759:31:0;;32695:96;32451:348;-1:-1:-1;;;;32451:348:0:o;35560:625::-;35719:4;-1:-1:-1;;;;;35692:31:0;:23;35707:7;35692:14;:23::i;:::-;-1:-1:-1;;;;;35692:31:0;;35684:81;;;;-1:-1:-1;;;35684:81:0;;18343:2:1;35684:81:0;;;18325:21:1;18382:2;18362:18;;;18355:30;18421:34;18401:18;;;18394:62;-1:-1:-1;;;18472:18:1;;;18465:35;18517:19;;35684:81:0;18141:401:1;35684:81:0;-1:-1:-1;;;;;35784:16:0;;35776:65;;;;-1:-1:-1;;;35776:65:0;;18749:2:1;35776:65:0;;;18731:21:1;18788:2;18768:18;;;18761:30;18827:34;18807:18;;;18800:62;-1:-1:-1;;;18878:18:1;;;18871:34;18922:19;;35776:65:0;18547:400:1;35776:65:0;35958:29;35975:1;35979:7;35958:8;:29::i;:::-;-1:-1:-1;;;;;36000:15:0;;;;;;:9;:15;;;;;:20;;36019:1;;36000:15;:20;;36019:1;;36000:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36031:13:0;;;;;;:9;:13;;;;;:18;;36048:1;;36031:13;:18;;36048:1;;36031:18;:::i;:::-;;;;-1:-1:-1;;36060:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36060:21:0;-1:-1:-1;;;;;36060:21:0;;;;;;;;;36099:27;;36060:16;;36099:27;;;;;;;28496:341;28426:411;;:::o;15891:190::-;16016:4;16069;16040:25;16053:5;16060:4;16040:12;:25::i;:::-;:33;;15891:190;-1:-1:-1;;;;15891:190:0:o;33141:110::-;33217:26;33227:2;33231:7;33217:26;;;;;;;;;;;;:9;:26::i;47786:204::-;47848:22;47897:7;47911:26;47928:8;47911:16;:26::i;:::-;47880:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47848:91;;47950:32;47963:8;47973;40666:217;40766:16;40774:7;40766;:16::i;:::-;40758:75;;;;-1:-1:-1;;;40758:75:0;;20840:2:1;40758:75:0;;;20822:21:1;20879:2;20859:18;;;20852:30;20918:34;20898:18;;;20891:62;-1:-1:-1;;;20969:18:1;;;20962:44;21023:19;;40758:75:0;20638:410:1;40758:75:0;40844:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;14661:191::-;14754:6;;;-1:-1:-1;;;;;14771:17:0;;;-1:-1:-1;;;;;;14771:17:0;;;;;;;14804:40;;14754:6;;;14771:17;14754:6;;14804:40;;14735:16;;14804:40;14724:128;14661:191;:::o;36619:315::-;36774:8;-1:-1:-1;;;;;36765:17:0;:5;-1:-1:-1;;;;;36765:17:0;;;36757:55;;;;-1:-1:-1;;;36757:55:0;;21255:2:1;36757:55:0;;;21237:21:1;21294:2;21274:18;;;21267:30;21333:27;21313:18;;;21306:55;21378:18;;36757:55:0;21053:349:1;36757:55:0;-1:-1:-1;;;;;36823:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36823:46:0;;;;;;;;;;36885:41;;540::1;;;36885::0;;513:18:1;36885:41:0;;;;;;;36619:315;;;:::o;31529:::-;31686:28;31696:4;31702:2;31706:7;31686:9;:28::i;:::-;31733:48;31756:4;31762:2;31766:7;31775:5;31733:22;:48::i;:::-;31725:111;;;;-1:-1:-1;;;31725:111:0;;;;;;;:::i;27687:334::-;27760:13;27794:16;27802:7;27794;:16::i;:::-;27786:76;;;;-1:-1:-1;;;27786:76:0;;22028:2:1;27786:76:0;;;22010:21:1;22067:2;22047:18;;;22040:30;22106:34;22086:18;;;22079:62;-1:-1:-1;;;22157:18:1;;;22150:45;22212:19;;27786:76:0;21826:411:1;27786:76:0;27875:21;27899:10;28347:9;;;;;;;;;-1:-1:-1;28347:9:0;;;28270:94;27899:10;27875:34;;27951:1;27933:7;27927:21;:25;:86;;;;;;;;;;;;;;;;;27979:7;27988:18;:7;:16;:18::i;:::-;27962:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27927:86;27920:93;27687:334;-1:-1:-1;;;27687:334:0:o;16442:675::-;16525:7;16568:4;16525:7;16583:497;16607:5;:12;16603:1;:16;16583:497;;;16641:20;16664:5;16670:1;16664:8;;;;;;;;:::i;:::-;;;;;;;16641:31;;16707:12;16691;:28;16687:382;;17193:13;17243:15;;;17279:4;17272:15;;;17326:4;17310:21;;16819:57;;16687:382;;;17193:13;17243:15;;;17279:4;17272:15;;;17326:4;17310:21;;16996:57;;16687:382;-1:-1:-1;16621:3:0;;;;:::i;:::-;;;;16583:497;;;-1:-1:-1;17097:12:0;16442:675;-1:-1:-1;;;16442:675:0:o;33478:321::-;33608:18;33614:2;33618:7;33608:5;:18::i;:::-;33659:54;33690:1;33694:2;33698:7;33707:5;33659:22;:54::i;:::-;33637:154;;;;-1:-1:-1;;;33637:154:0;;;;;;;:::i;286:723::-;342:13;563:10;559:53;;-1:-1:-1;;590:10:0;;;;;;;;;;;;-1:-1:-1;;;590:10:0;;;;;286:723::o;559:53::-;637:5;622:12;678:78;685:9;;678:78;;711:8;;;;:::i;:::-;;-1:-1:-1;734:10:0;;-1:-1:-1;742:2:0;734:10;;:::i;:::-;;;678:78;;;766:19;798:6;788:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;788:17:0;;766:39;;816:154;823:10;;816:154;;850:11;860:1;850:11;;:::i;:::-;;-1:-1:-1;919:10:0;927:2;919:5;:10;:::i;:::-;906:24;;:2;:24;:::i;:::-;893:39;;876:6;883;876:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;876:56:0;;;;;;;;-1:-1:-1;947:11:0;956:2;947:11;;:::i;:::-;;;816:154;;37499:799;37654:4;-1:-1:-1;;;;;37675:13:0;;5497:19;:23;37671:620;;37711:72;;-1:-1:-1;;;37711:72:0;;-1:-1:-1;;;;;37711:36:0;;;;;:72;;3989:10;;37762:4;;37768:7;;37777:5;;37711:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37711:72:0;;;;;;;;-1:-1:-1;;37711:72:0;;;;;;;;;;;;:::i;:::-;;;37707:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37953:13:0;;37949:272;;37996:60;;-1:-1:-1;;;37996:60:0;;;;;;;:::i;37949:272::-;38171:6;38165:13;38156:6;38152:2;38148:15;38141:38;37707:529;-1:-1:-1;;;;;;37834:51:0;-1:-1:-1;;;37834:51:0;;-1:-1:-1;37827:58:0;;37671:620;-1:-1:-1;38275:4:0;37499:799;;;;;;:::o;34135:439::-;-1:-1:-1;;;;;34215:16:0;;34207:61;;;;-1:-1:-1;;;34207:61:0;;23577:2:1;34207:61:0;;;23559:21:1;;;23596:18;;;23589:30;23655:34;23635:18;;;23628:62;23707:18;;34207:61:0;23375:356:1;34207:61:0;34288:16;34296:7;34288;:16::i;:::-;34287:17;34279:58;;;;-1:-1:-1;;;34279:58:0;;23938:2:1;34279:58:0;;;23920:21:1;23977:2;23957:18;;;23950:30;24016;23996:18;;;23989:58;24064:18;;34279:58:0;23736:352:1;34279:58:0;-1:-1:-1;;;;;34408:13:0;;;;;;:9;:13;;;;;:18;;34425:1;;34408:13;:18;;34425:1;;34408:18;:::i;:::-;;;;-1:-1:-1;;34437:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34437:21:0;-1:-1:-1;;;;;34437:21:0;;;;;;;;34476:33;;34437:16;;;34476:33;;34437:16;;34476:33;46079:254:::1;45777:563:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;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;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:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:131::-;-1:-1:-1;;;;;1833:31:1;;1823:42;;1813:70;;1879:1;1876;1869:12;1894:247;1953:6;2006:2;1994:9;1985:7;1981:23;1977:32;1974:52;;;2022:1;2019;2012:12;1974:52;2061:9;2048:23;2080:31;2105:5;2080:31;:::i;2146:315::-;2214:6;2222;2275:2;2263:9;2254:7;2250:23;2246:32;2243:52;;;2291:1;2288;2281:12;2243:52;2330:9;2317:23;2349:31;2374:5;2349:31;:::i;:::-;2399:5;2451:2;2436:18;;;;2423:32;;-1:-1:-1;;;2146:315:1:o;2648:456::-;2725:6;2733;2741;2794:2;2782:9;2773:7;2769:23;2765:32;2762:52;;;2810:1;2807;2800:12;2762:52;2849:9;2836:23;2868:31;2893:5;2868:31;:::i;:::-;2918:5;-1:-1:-1;2975:2:1;2960:18;;2947:32;2988:33;2947:32;2988:33;:::i;:::-;2648:456;;3040:7;;-1:-1:-1;;;3094:2:1;3079:18;;;;3066:32;;2648:456::o;3109:127::-;3170:10;3165:3;3161:20;3158:1;3151:31;3201:4;3198:1;3191:15;3225:4;3222:1;3215:15;3241:275;3312:2;3306:9;3377:2;3358:13;;-1:-1:-1;;3354:27:1;3342:40;;3412:18;3397:34;;3433:22;;;3394:62;3391:88;;;3459:18;;:::i;:::-;3495:2;3488:22;3241:275;;-1:-1:-1;3241:275:1:o;3521:183::-;3581:4;3614:18;3606:6;3603:30;3600:56;;;3636:18;;:::i;:::-;-1:-1:-1;3681:1:1;3677:14;3693:4;3673:25;;3521:183::o;3709:961::-;3802:6;3810;3863:2;3851:9;3842:7;3838:23;3834:32;3831:52;;;3879:1;3876;3869:12;3831:52;3919:9;3906:23;3952:18;3944:6;3941:30;3938:50;;;3984:1;3981;3974:12;3938:50;4007:22;;4060:4;4052:13;;4048:27;-1:-1:-1;4038:55:1;;4089:1;4086;4079:12;4038:55;4125:2;4112:16;4147:4;4171:60;4187:43;4227:2;4187:43;:::i;:::-;4171:60;:::i;:::-;4265:15;;;4347:1;4343:10;;;;4335:19;;4331:28;;;4296:12;;;;4371:19;;;4368:39;;;4403:1;4400;4393:12;4368:39;4427:11;;;;4447:142;4463:6;4458:3;4455:15;4447:142;;;4529:17;;4517:30;;4480:12;;;;4567;;;;4447:142;;;4608:5;4645:18;;;;4632:32;;-1:-1:-1;;;;;;3709:961:1:o;4675:407::-;4740:5;4774:18;4766:6;4763:30;4760:56;;;4796:18;;:::i;:::-;4834:57;4879:2;4858:15;;-1:-1:-1;;4854:29:1;4885:4;4850:40;4834:57;:::i;:::-;4825:66;;4914:6;4907:5;4900:21;4954:3;4945:6;4940:3;4936:16;4933:25;4930:45;;;4971:1;4968;4961:12;4930:45;5020:6;5015:3;5008:4;5001:5;4997:16;4984:43;5074:1;5067:4;5058:6;5051:5;5047:18;5043:29;5036:40;4675:407;;;;;:::o;5087:222::-;5130:5;5183:3;5176:4;5168:6;5164:17;5160:27;5150:55;;5201:1;5198;5191:12;5150:55;5223:80;5299:3;5290:6;5277:20;5270:4;5262:6;5258:17;5223:80;:::i;5314:1133::-;5408:6;5439:2;5482;5470:9;5461:7;5457:23;5453:32;5450:52;;;5498:1;5495;5488:12;5450:52;5538:9;5525:23;5567:18;5608:2;5600:6;5597:14;5594:34;;;5624:1;5621;5614:12;5594:34;5662:6;5651:9;5647:22;5637:32;;5707:7;5700:4;5696:2;5692:13;5688:27;5678:55;;5729:1;5726;5719:12;5678:55;5765:2;5752:16;5788:60;5804:43;5844:2;5804:43;:::i;5788:60::-;5882:15;;;5964:1;5960:10;;;;5952:19;;5948:28;;;5913:12;;;;5988:19;;;5985:39;;;6020:1;6017;6010:12;5985:39;6052:2;6048;6044:11;6064:353;6080:6;6075:3;6072:15;6064:353;;;6166:3;6153:17;6202:2;6189:11;6186:19;6183:109;;;6246:1;6275:2;6271;6264:14;6183:109;6317:57;6366:7;6361:2;6347:11;6343:2;6339:20;6335:29;6317:57;:::i;:::-;6305:70;;-1:-1:-1;6395:12:1;;;;6097;;6064:353;;;-1:-1:-1;6436:5:1;5314:1133;-1:-1:-1;;;;;;;;5314:1133:1:o;6452:966::-;6536:6;6567:2;6610;6598:9;6589:7;6585:23;6581:32;6578:52;;;6626:1;6623;6616:12;6578:52;6666:9;6653:23;6699:18;6691:6;6688:30;6685:50;;;6731:1;6728;6721:12;6685:50;6754:22;;6807:4;6799:13;;6795:27;-1:-1:-1;6785:55:1;;6836:1;6833;6826:12;6785:55;6872:2;6859:16;6895:60;6911:43;6951:2;6911:43;:::i;6895:60::-;6989:15;;;7071:1;7067:10;;;;7059:19;;7055:28;;;7020:12;;;;7095:19;;;7092:39;;;7127:1;7124;7117:12;7092:39;7151:11;;;;7171:217;7187:6;7182:3;7179:15;7171:217;;;7267:3;7254:17;7284:31;7309:5;7284:31;:::i;:::-;7328:18;;7204:12;;;;7366;;;;7171:217;;;7407:5;6452:966;-1:-1:-1;;;;;;;6452:966:1:o;7683:322::-;7752:6;7805:2;7793:9;7784:7;7780:23;7776:32;7773:52;;;7821:1;7818;7811:12;7773:52;7861:9;7848:23;7894:18;7886:6;7883:30;7880:50;;;7926:1;7923;7916:12;7880:50;7949;7991:7;7982:6;7971:9;7967:22;7949:50;:::i;8010:416::-;8075:6;8083;8136:2;8124:9;8115:7;8111:23;8107:32;8104:52;;;8152:1;8149;8142:12;8104:52;8191:9;8178:23;8210:31;8235:5;8210:31;:::i;:::-;8260:5;-1:-1:-1;8317:2:1;8302:18;;8289:32;8359:15;;8352:23;8340:36;;8330:64;;8390:1;8387;8380:12;8330:64;8413:7;8403:17;;;8010:416;;;;;:::o;8431:795::-;8526:6;8534;8542;8550;8603:3;8591:9;8582:7;8578:23;8574:33;8571:53;;;8620:1;8617;8610:12;8571:53;8659:9;8646:23;8678:31;8703:5;8678:31;:::i;:::-;8728:5;-1:-1:-1;8785:2:1;8770:18;;8757:32;8798:33;8757:32;8798:33;:::i;:::-;8850:7;-1:-1:-1;8904:2:1;8889:18;;8876:32;;-1:-1:-1;8959:2:1;8944:18;;8931:32;8986:18;8975:30;;8972:50;;;9018:1;9015;9008:12;8972:50;9041:22;;9094:4;9086:13;;9082:27;-1:-1:-1;9072:55:1;;9123:1;9120;9113:12;9072:55;9146:74;9212:7;9207:2;9194:16;9189:2;9185;9181:11;9146:74;:::i;:::-;9136:84;;;8431:795;;;;;;;:::o;9231:315::-;9299:6;9307;9360:2;9348:9;9339:7;9335:23;9331:32;9328:52;;;9376:1;9373;9366:12;9328:52;9412:9;9399:23;9389:33;;9472:2;9461:9;9457:18;9444:32;9485:31;9510:5;9485:31;:::i;9736:388::-;9804:6;9812;9865:2;9853:9;9844:7;9840:23;9836:32;9833:52;;;9881:1;9878;9871:12;9833:52;9920:9;9907:23;9939:31;9964:5;9939:31;:::i;:::-;9989:5;-1:-1:-1;10046:2:1;10031:18;;10018:32;10059:33;10018:32;10059:33;:::i;10129:380::-;10208:1;10204:12;;;;10251;;;10272:61;;10326:4;10318:6;10314:17;10304:27;;10272:61;10379:2;10371:6;10368:14;10348:18;10345:38;10342:161;;;10425:10;10420:3;10416:20;10413:1;10406:31;10460:4;10457:1;10450:15;10488:4;10485:1;10478:15;10342:161;;10129:380;;;:::o;10927:356::-;11129:2;11111:21;;;11148:18;;;11141:30;11207:34;11202:2;11187:18;;11180:62;11274:2;11259:18;;10927:356::o;12115:413::-;12317:2;12299:21;;;12356:2;12336:18;;;12329:30;12395:34;12390:2;12375:18;;12368:62;-1:-1:-1;;;12461:2:1;12446:18;;12439:47;12518:3;12503:19;;12115:413::o;12533:343::-;12735:2;12717:21;;;12774:2;12754:18;;;12747:30;-1:-1:-1;;;12808:2:1;12793:18;;12786:49;12867:2;12852:18;;12533:343::o;13460:127::-;13521:10;13516:3;13512:20;13509:1;13502:31;13552:4;13549:1;13542:15;13576:4;13573:1;13566:15;13592:128;13632:3;13663:1;13659:6;13656:1;13653:13;13650:39;;;13669:18;;:::i;:::-;-1:-1:-1;13705:9:1;;13592:128::o;13725:347::-;13927:2;13909:21;;;13966:2;13946:18;;;13939:30;14005:25;14000:2;13985:18;;13978:53;14063:2;14048:18;;13725:347::o;14077:168::-;14117:7;14183:1;14179;14175:6;14171:14;14168:1;14165:21;14160:1;14153:9;14146:17;14142:45;14139:71;;;14190:18;;:::i;:::-;-1:-1:-1;14230:9:1;;14077:168::o;14250:343::-;14452:2;14434:21;;;14491:2;14471:18;;;14464:30;-1:-1:-1;;;14525:2:1;14510:18;;14503:49;14584:2;14569:18;;14250:343::o;14598:135::-;14637:3;-1:-1:-1;;14658:17:1;;14655:43;;;14678:18;;:::i;:::-;-1:-1:-1;14725:1:1;14714:13;;14598:135::o;14738:127::-;14799:10;14794:3;14790:20;14787:1;14780:31;14830:4;14827:1;14820:15;14854:4;14851:1;14844:15;15691:184;15761:6;15814:2;15802:9;15793:7;15789:23;15785:32;15782:52;;;15830:1;15827;15820:12;15782:52;-1:-1:-1;15853:16:1;;15691:184;-1:-1:-1;15691:184:1:o;16656:185::-;16698:3;16736:5;16730:12;16751:52;16796:6;16791:3;16784:4;16777:5;16773:16;16751:52;:::i;:::-;16819:16;;;;;16656:185;-1:-1:-1;;16656:185:1:o;16846:470::-;17025:3;17063:6;17057:13;17079:53;17125:6;17120:3;17113:4;17105:6;17101:17;17079:53;:::i;:::-;17195:13;;17154:16;;;;17217:57;17195:13;17154:16;17251:4;17239:17;;17217:57;:::i;:::-;17290:20;;16846:470;-1:-1:-1;;;;16846:470:1:o;18952:125::-;18992:4;19020:1;19017;19014:8;19011:34;;;19025:18;;:::i;:::-;-1:-1:-1;19062:9:1;;18952:125::o;19327:1306::-;19604:3;19633:1;19666:6;19660:13;19696:3;19718:1;19746:9;19742:2;19738:18;19728:28;;19806:2;19795:9;19791:18;19828;19818:61;;19872:4;19864:6;19860:17;19850:27;;19818:61;19898:2;19946;19938:6;19935:14;19915:18;19912:38;19909:165;;;-1:-1:-1;;;19973:33:1;;20029:4;20026:1;20019:15;20059:4;19980:3;20047:17;19909:165;20090:18;20117:104;;;;20235:1;20230:320;;;;20083:467;;20117:104;-1:-1:-1;;20150:24:1;;20138:37;;20195:16;;;;-1:-1:-1;20117:104:1;;20230:320;19155:1;19148:14;;;19192:4;19179:18;;20325:1;20339:165;20353:6;20350:1;20347:13;20339:165;;;20431:14;;20418:11;;;20411:35;20474:16;;;;20368:10;;20339:165;;;20343:3;;20533:6;20528:3;20524:16;20517:23;;20083:467;;;;;;;20566:61;20592:34;20622:3;-1:-1:-1;;;19273:16:1;;19314:1;19305:11;;19208:114;20592:34;20584:6;20566:61;:::i;:::-;20559:68;19327:1306;-1:-1:-1;;;;;19327:1306:1:o;21407:414::-;21609:2;21591:21;;;21648:2;21628:18;;;21621:30;21687:34;21682:2;21667:18;;21660:62;-1:-1:-1;;;21753:2:1;21738:18;;21731:48;21811:3;21796:19;;21407:414::o;22242:127::-;22303:10;22298:3;22294:20;22291:1;22284:31;22334:4;22331:1;22324:15;22358:4;22355:1;22348:15;22374:120;22414:1;22440;22430:35;;22445:18;;:::i;:::-;-1:-1:-1;22479:9:1;;22374:120::o;22499:112::-;22531:1;22557;22547:35;;22562:18;;:::i;:::-;-1:-1:-1;22596:9:1;;22499:112::o;22616:500::-;-1:-1:-1;;;;;22885:15:1;;;22867:34;;22937:15;;22932:2;22917:18;;22910:43;22984:2;22969:18;;22962:34;;;23032:3;23027:2;23012:18;;23005:31;;;22810:4;;23053:57;;23090:19;;23082:6;23053:57;:::i;:::-;23045:65;22616:500;-1:-1:-1;;;;;;22616:500:1:o;23121:249::-;23190:6;23243:2;23231:9;23222:7;23218:23;23214:32;23211:52;;;23259:1;23256;23249:12;23211:52;23291:9;23285:16;23310:30;23334:5;23310:30;:::i
Swarm Source
ipfs://3533b6f5d66494693ebcba1f5278cfa59a405790978e0059fbfadc480af7b471
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.