Overview
Max Total Supply
1,000 CYBRX
Holders
217
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CYBRXLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheCyborx
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-17 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/Context.sol /* * @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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/introspection/IERC165.sol /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/introspection/ERC165.sol /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor() { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File: @openzeppelin/contracts/math/SafeMath.sol /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/EnumerableSet.sol /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require( set._values.length > index, "EnumerableSet: index out of bounds" ); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: @openzeppelin/contracts/utils/EnumerableMap.sol /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping(bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set( Map storage map, bytes32 key, bytes32 value ) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({_key: key, _value: value})); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require( map._entries.length > index, "EnumerableMap: index out of bounds" ); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. */ function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) { uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key) return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {_tryGet}. */ function _get( Map storage map, bytes32 key, string memory errorMessage ) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set( UintToAddressMap storage map, uint256 key, address value ) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element stored at position `index` in the set. O(1). * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint160(uint256(value)))); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. * * _Available since v3.4._ */ function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) { (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key)); return (success, address(uint160(uint256(value)))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key))))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryGet}. */ function get( UintToAddressMap storage map, uint256 key, string memory errorMessage ) internal view returns (address) { return address( uint160(uint256(_get(map._inner, bytes32(key), errorMessage))) ); } } // File: @openzeppelin/contracts/utils/Strings.sol /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` 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); } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping(address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // 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; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @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_; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @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 _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return _tokenOwners.get( tokenId, "ERC721: owner query for nonexistent token" ); } /** * @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 _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)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view virtual returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @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 || ERC721.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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public 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 _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `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); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); // internal owner _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(tokenId); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); // internal 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); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, 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), "ERC721Metadata: URI set of nonexistent token" ); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @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()) { return true; } bytes memory returndata = to.functionCall( abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data ), "ERC721: transfer to non ERC721Receiver implementer" ); bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/TheCyborx.sol /** * @title TheCyborx contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract TheCyborx is ERC721, Ownable { using SafeMath for uint256; using Strings for uint256; uint256 public startingIndexBlock; uint256 public startingIndex; uint256 public privateMintPrice = 0.08 ether; uint256 public publicMintPrice = 0.09 ether; uint256 public maxToMint = 20; uint256 public MAX_MINT_WHITELIST = 5; uint256 public MAX_ELEMENTS = 1000; uint256 public REVEAL_TIMESTAMP; bool public revealed = false; string public notRevealedUri = ""; string public PROVENANCE_HASH = ""; bool public saleIsActive = false; bool public privateSaleIsActive = true; struct Whitelist { address addr; uint256 claimAmount; uint256 hasMinted; } mapping(address => Whitelist) public whitelist; mapping(address => Whitelist) public winnerlist; address[] whitelistAddr; address[] winnerlistAddr; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { REVEAL_TIMESTAMP = block.timestamp; _setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } /** * Get the array of token for owner. */ function tokensOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); for (uint256 index; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } } /** * Check if certain token id is exists. */ function exists(uint256 _tokenId) public view returns (bool) { return _exists(_tokenId); } /** * Set presell price to mint */ function setPrivateMintPrice(uint256 _price) external onlyOwner { privateMintPrice = _price; } /** * Set publicsell price to mint */ function setPublicMintPrice(uint256 _price) external onlyOwner { publicMintPrice = _price; } /** * Set maximum count to mint per once. */ function setMaxToMint(uint256 _maxValue) external onlyOwner { maxToMint = _maxValue; } /** * reserve by owner */ function reserve(uint256 _count) public onlyOwner { uint256 total = totalSupply(); require(total + _count <= MAX_ELEMENTS, "Exceeded"); for (uint256 i = 0; i < _count; i++) { _safeMint(msg.sender, total + i); } } /** * Set reveal timestamp when finished the sale. */ function setRevealTimestamp(uint256 _revealTimeStamp) external onlyOwner { REVEAL_TIMESTAMP = _revealTimeStamp; } /* * Set provenance once it's calculated */ function setProvenanceHash(string memory _provenanceHash) external onlyOwner { PROVENANCE_HASH = _provenanceHash; } function setBaseURI(string memory baseURI) external onlyOwner { _setBaseURI(baseURI); } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } //only owner function reveal() public onlyOwner { revealed = true; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); require(tokenId <= totalSupply(), "URI query for nonexistent token"); if (revealed == false) { return notRevealedUri; } string memory base = baseURI(); return string(abi.encodePacked(base, "/", tokenId.toString(), ".json")); } /* * Pause sale if active, make active if paused */ function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } function flipPrivateSaleState() public onlyOwner { privateSaleIsActive = !privateSaleIsActive; } /** * Mints tokens */ function mint(uint256 _count) public payable { uint256 total = totalSupply(); require(saleIsActive, "Sale must be active to mint"); require((total + _count) <= MAX_ELEMENTS, "Max limit"); if (privateSaleIsActive) { require( (privateMintPrice * _count) <= msg.value, "Value below price" ); require(_count <= MAX_MINT_WHITELIST, "Above max tx count"); require(isWhitelisted(msg.sender), "Is not whitelisted"); require( whitelist[msg.sender].hasMinted.add(_count) <= MAX_MINT_WHITELIST, "Can only mint 5 while whitelisted" ); whitelist[msg.sender].hasMinted = whitelist[msg.sender] .hasMinted .add(_count); } else { if (isWhitelisted(msg.sender)) { require((balanceOf(msg.sender) - whitelist[msg.sender].hasMinted + _count) <= maxToMint, "Can only mint 20 tokens"); } else { require((balanceOf(msg.sender) + _count) <= maxToMint, "Can only mint 20 tokens"); } require( (publicMintPrice * _count) <= msg.value, "Value below price" ); } for (uint256 i = 0; i < _count; i++) { uint256 mintIndex = totalSupply() + 1; if (totalSupply() < MAX_ELEMENTS) { _safeMint(msg.sender, mintIndex); } } // If we haven't set the starting index and this is either // 1) the last saleable token or // 2) the first token to be sold after the end of pre-sale, set the starting index block if ( startingIndexBlock == 0 && (totalSupply() == MAX_ELEMENTS || block.timestamp >= REVEAL_TIMESTAMP) ) { startingIndexBlock = block.number; } } function freeMint(uint256 _count) public { uint256 total = totalSupply(); require(isWinnerlisted(msg.sender), "Is not winnerlisted"); require(saleIsActive, "Sale must be active to mint"); require((total + _count) <= MAX_ELEMENTS, "Exceeds max supply"); require( winnerlist[msg.sender].claimAmount > 0, "You have no amount to claim" ); require( _count <= winnerlist[msg.sender].claimAmount, "You claim amount exceeded" ); for (uint256 i = 0; i < _count; i++) { uint256 mintIndex = totalSupply() + 1; if (totalSupply() < MAX_ELEMENTS) { _safeMint(msg.sender, mintIndex); } } winnerlist[msg.sender].claimAmount = winnerlist[msg.sender].claimAmount - _count; // If we haven't set the starting index and this is either // 1) the last saleable token or // 2) the first token to be sold after the end of pre-sale, set the starting index block if ( startingIndexBlock == 0 && (totalSupply() == MAX_ELEMENTS || block.timestamp >= REVEAL_TIMESTAMP) ) { startingIndexBlock = block.number; } } /** * Set the starting index for the collection */ function setStartingIndex() external onlyOwner { require(startingIndex == 0, "Starting index is already set"); require(startingIndexBlock != 0, "Starting index block must be set"); startingIndex = uint256(blockhash(startingIndexBlock)) % MAX_ELEMENTS; // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes) if ((block.number - startingIndexBlock) > 255) { startingIndex = uint256(blockhash(block.number - 1)) % MAX_ELEMENTS; } // Prevent default sequence if (startingIndex == 0) { startingIndex = startingIndex + 1; } } function setWhitelistAddr(address[] memory addrs) public onlyOwner { whitelistAddr = addrs; for (uint256 i = 0; i < whitelistAddr.length; i++) { addAddressToWhitelist(whitelistAddr[i]); } } /** * Set the starting index block for the collection, essentially unblocking * setting starting index */ function emergencySetStartingIndexBlock() external onlyOwner { require(startingIndex == 0, "Starting index is already set"); startingIndexBlock = block.number; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; (bool success, ) = msg.sender.call{value: balance}(""); require(success); } function partialWithdraw(uint256 _amount, address payable _to) external onlyOwner { require(_amount > 0, "Withdraw must be greater than 0"); require(_amount <= address(this).balance, "Amount too high"); (bool success, ) = _to.call{value: _amount}(""); require(success); } function addAddressToWhitelist(address addr) public onlyOwner returns (bool success) { require(!isWhitelisted(addr), "Already whitelisted"); whitelist[addr].addr = addr; success = true; } function isWhitelisted(address addr) public view returns (bool isWhiteListed) { return whitelist[addr].addr == addr; } function addAddressToWinnerlist(address addr, uint256 claimAmount) public onlyOwner returns (bool success) { require(!isWinnerlisted(addr), "Already winnerlisted"); winnerlist[addr].addr = addr; winnerlist[addr].claimAmount = claimAmount; winnerlist[addr].hasMinted = 0; success = true; } function isWinnerlisted(address addr) public view returns (bool isWinnerListed) { return winnerlist[addr].addr == addr; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAddressToWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"}],"name":"addAddressToWinnerlist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPrivateSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"isWhiteListed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isWinnerlisted","outputs":[{"internalType":"bool","name":"isWinnerListed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"_to","type":"address"}],"name":"partialWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"privateMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxValue","type":"uint256"}],"name":"setMaxToMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrivateMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revealTimeStamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"setWhitelistAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"hasMinted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"winnerlist","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"hasMinted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
67011c37937e080000600d5567013fbe85edc90000600e556014600f81905560056010556103e86011556013805460ff1916905560a06040819052600060808190526200004e92919062000298565b506040805160208101918290526000908190526200006f9160159162000298565b506016805461ffff19166101001790553480156200008c57600080fd5b5060405162003c3238038062003c32833981016040819052620000af91620003f5565b8383620000c36301ffc9a760e01b6200018e565b8151620000d890600690602085019062000298565b508051620000ee90600790602084019062000298565b50620001016380ac58cd60e01b6200018e565b62000113635b5e139f60e01b6200018e565b6200012563780e9d6360e01b6200018e565b5050600a80546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35042601255620001798262000213565b62000184816200022c565b5050505062000501565b6001600160e01b03198082161415620001ee5760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e746572666163652069640000000060448201526064015b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b80516200022890600990602084019062000298565b5050565b600a546001600160a01b03163314620002885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001e5565b8051620002289060149060208401905b828054620002a690620004ae565b90600052602060002090601f016020900481019282620002ca576000855562000315565b82601f10620002e557805160ff191683800117855562000315565b8280016001018555821562000315579182015b8281111562000315578251825591602001919060010190620002f8565b506200032392915062000327565b5090565b5b8082111562000323576000815560010162000328565b600082601f8301126200035057600080fd5b81516001600160401b03808211156200036d576200036d620004eb565b604051601f8301601f19908116603f01168101908282118183101715620003985762000398620004eb565b81604052838152602092508683858801011115620003b557600080fd5b600091505b83821015620003d95785820183015181830184015290820190620003ba565b83821115620003eb5760008385830101525b9695505050505050565b600080600080608085870312156200040c57600080fd5b84516001600160401b03808211156200042457600080fd5b62000432888389016200033e565b955060208701519150808211156200044957600080fd5b62000457888389016200033e565b945060408701519150808211156200046e57600080fd5b6200047c888389016200033e565b935060608701519150808211156200049357600080fd5b50620004a2878288016200033e565b91505092959194509250565b600181811c90821680620004c357607f821691505b60208210811415620004e557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61372180620005116000396000f3fe60806040526004361061038b5760003560e01c80636352211e116101dc578063a22cb46511610102578063e36d6498116100a0578063f2c4ce1e1161006f578063f2c4ce1e14610a8b578063f2fde38b14610aab578063f571d67c14610acb578063ff1b655614610b0757600080fd5b8063e36d6498146109fd578063e985e9c514610a13578063e986655014610a5c578063eb8d244414610a7157600080fd5b8063c87b56dd116100dc578063c87b56dd14610991578063cb774d47146109b1578063cd7d508f146109c7578063dc53fd92146109e757600080fd5b8063a22cb4651461093c578063a475b5dd1461095c578063b88d4fde1461097157600080fd5b80637c928fe91161017a5780638da5cb5b116101495780638da5cb5b146108b057806395d89b41146108ce5780639b19251a146108e3578063a0712d681461092957600080fd5b80637c928fe91461082e5780637d17fcbe1461084e578063819b25ba146108635780638462151c1461088357600080fd5b806370a08231116101b657806370a082311461076e578063715018a61461078e578063738c69a6146107a35780637b9417c81461080e57600080fd5b80636352211e146107195780636c0360eb146107395780637084b2b71461074e57600080fd5b80631d97f38e116102c15780633ccfd60b1161025f578063518302271161022e57806351830227146106a957806355f804b3146106c357806358941a4d146106e35780635d82cf6e146106f957600080fd5b80633ccfd60b1461063457806342842e0e146106495780634f558e79146106695780634f6ccce71461068957600080fd5b806334918dfd1161029b57806334918dfd146105d45780633502a716146105e95780633719e3b0146105ff5780633af32abf1461061457600080fd5b80631d97f38e1461057457806323b872dd146105945780632f745c59146105b457600080fd5b8063095ea7b31161032e5780631496783711610308578063149678371461050957806318160ddd1461052957806318e20a381461053e5780631970d1fb1461055457600080fd5b8063095ea7b3146104b35780630ba133c5146104d357806310969523146104e957600080fd5b806304737a011161036a57806304737a011461042557806306fdde0314610444578063081812fc14610466578063081c8c441461049e57600080fd5b806204348e14610390578063018a2c37146103b957806301ffc9a7146103db575b600080fd5b34801561039c57600080fd5b506103a6600d5481565b6040519081526020015b60405180910390f35b3480156103c557600080fd5b506103d96103d4366004613294565b610b1c565b005b3480156103e757600080fd5b506104156103f6366004613211565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020016103b0565b34801561043157600080fd5b5060165461041590610100900460ff1681565b34801561045057600080fd5b50610459610b54565b6040516103b091906133e9565b34801561047257600080fd5b50610486610481366004613294565b610be6565b6040516001600160a01b0390911681526020016103b0565b3480156104aa57600080fd5b50610459610c6e565b3480156104bf57600080fd5b506103d96104ce36600461312c565b610cfc565b3480156104df57600080fd5b506103a6600f5481565b3480156104f557600080fd5b506103d961050436600461324b565b610e12565b34801561051557600080fd5b5061041561052436600461312c565b610e53565b34801561053557600080fd5b506103a6610f1f565b34801561054a57600080fd5b506103a660125481565b34801561056057600080fd5b506103d961056f366004613294565b610f30565b34801561058057600080fd5b506103d961058f3660046132ad565b610f5f565b3480156105a057600080fd5b506103d96105af366004613038565b61107b565b3480156105c057600080fd5b506103a66105cf36600461312c565b6110ac565b3480156105e057600080fd5b506103d96110d7565b3480156105f557600080fd5b506103a660115481565b34801561060b57600080fd5b506103d9611115565b34801561062057600080fd5b5061041561062f366004612fe2565b61115c565b34801561064057600080fd5b506103d961117d565b34801561065557600080fd5b506103d9610664366004613038565b6111fe565b34801561067557600080fd5b50610415610684366004613294565b611219565b34801561069557600080fd5b506103a66106a4366004613294565b611224565b3480156106b557600080fd5b506013546104159060ff1681565b3480156106cf57600080fd5b506103d96106de36600461324b565b61123a565b3480156106ef57600080fd5b506103a660105481565b34801561070557600080fd5b506103d9610714366004613294565b611270565b34801561072557600080fd5b50610486610734366004613294565b61129f565b34801561074557600080fd5b506104596112c7565b34801561075a57600080fd5b506103d9610769366004613294565b6112d6565b34801561077a57600080fd5b506103a6610789366004612fe2565b611305565b34801561079a57600080fd5b506103d9611391565b3480156107af57600080fd5b506107e96107be366004612fe2565b6018602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b604080516001600160a01b0390941684526020840192909252908201526060016103b0565b34801561081a57600080fd5b50610415610829366004612fe2565b611405565b34801561083a57600080fd5b506103d9610849366004613294565b6114ac565b34801561085a57600080fd5b506103d961172d565b34801561086f57600080fd5b506103d961087e366004613294565b6117ad565b34801561088f57600080fd5b506108a361089e366004612fe2565b61185a565b6040516103b091906133a5565b3480156108bc57600080fd5b50600a546001600160a01b0316610486565b3480156108da57600080fd5b50610459611915565b3480156108ef57600080fd5b506107e96108fe366004612fe2565b6017602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b6103d9610937366004613294565b611924565b34801561094857600080fd5b506103d96109573660046130f9565b611d10565b34801561096857600080fd5b506103d9611dd5565b34801561097d57600080fd5b506103d961098c366004613079565b611e0e565b34801561099d57600080fd5b506104596109ac366004613294565b611e46565b3480156109bd57600080fd5b506103a6600c5481565b3480156109d357600080fd5b506103d96109e2366004613158565b611fe6565b3480156109f357600080fd5b506103a6600e5481565b348015610a0957600080fd5b506103a6600b5481565b348015610a1f57600080fd5b50610415610a2e366004612fff565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6857600080fd5b506103d9612074565b348015610a7d57600080fd5b506016546104159060ff1681565b348015610a9757600080fd5b506103d9610aa636600461324b565b61219f565b348015610ab757600080fd5b506103d9610ac6366004612fe2565b6121dc565b348015610ad757600080fd5b50610415610ae6366004612fe2565b6001600160a01b039081166000818152601860205260409020549091161490565b348015610b1357600080fd5b506104596122c7565b600a546001600160a01b03163314610b4f5760405162461bcd60e51b8152600401610b469061344e565b60405180910390fd5b601255565b606060068054610b6390613593565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8f90613593565b8015610bdc5780601f10610bb157610100808354040283529160200191610bdc565b820191906000526020600020905b815481529060010190602001808311610bbf57829003601f168201915b5050505050905090565b6000610bf1826122d4565b610c525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b46565b506000908152600460205260409020546001600160a01b031690565b60148054610c7b90613593565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca790613593565b8015610cf45780601f10610cc957610100808354040283529160200191610cf4565b820191906000526020600020905b815481529060010190602001808311610cd757829003601f168201915b505050505081565b6000610d078261129f565b9050806001600160a01b0316836001600160a01b03161415610d755760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b46565b336001600160a01b0382161480610d915750610d918133610a2e565b610e035760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b46565b610e0d83836122e1565b505050565b600a546001600160a01b03163314610e3c5760405162461bcd60e51b8152600401610b469061344e565b8051610e4f906015906020840190612e9c565b5050565b600a546000906001600160a01b03163314610e805760405162461bcd60e51b8152600401610b469061344e565b6001600160a01b038084166000818152601860205260409020549091161415610ee25760405162461bcd60e51b8152602060048201526014602482015273105b1c9958591e481dda5b9b995c9b1a5cdd195960621b6044820152606401610b46565b506001600160a01b03909116600081815260186020526040812080546001600160a01b031916909217825560018083019390935560029091015590565b6000610f2b600261234f565b905090565b600a546001600160a01b03163314610f5a5760405162461bcd60e51b8152600401610b469061344e565b600d55565b600a546001600160a01b03163314610f895760405162461bcd60e51b8152600401610b469061344e565b60008211610fd95760405162461bcd60e51b815260206004820152601f60248201527f5769746864726177206d7573742062652067726561746572207468616e2030006044820152606401610b46565b4782111561101b5760405162461bcd60e51b815260206004820152600f60248201526e082dadeeadce840e8dede40d0d2ced608b1b6044820152606401610b46565b6000816001600160a01b03168360405160006040518083038185875af1925050503d8060008114611068576040519150601f19603f3d011682016040523d82523d6000602084013e61106d565b606091505b5050905080610e0d57600080fd5b6110853382612359565b6110a15760405162461bcd60e51b8152600401610b4690613483565b610e0d838383612443565b6001600160a01b03821660009081526001602052604081206110ce90836125c4565b90505b92915050565b600a546001600160a01b031633146111015760405162461bcd60e51b8152600401610b469061344e565b6016805460ff19811660ff90911615179055565b600a546001600160a01b0316331461113f5760405162461bcd60e51b8152600401610b469061344e565b6016805461ff001981166101009182900460ff1615909102179055565b6001600160a01b039081166000818152601760205260409020549091161490565b600a546001600160a01b031633146111a75760405162461bcd60e51b8152600401610b469061344e565b6040514790600090339083908381818185875af1925050503d80600081146111eb576040519150601f19603f3d011682016040523d82523d6000602084013e6111f0565b606091505b5050905080610e4f57600080fd5b610e0d83838360405180602001604052806000815250611e0e565b60006110d1826122d4565b6000806112326002846125d0565b509392505050565b600a546001600160a01b031633146112645760405162461bcd60e51b8152600401610b469061344e565b61126d816125ec565b50565b600a546001600160a01b0316331461129a5760405162461bcd60e51b8152600401610b469061344e565b600e55565b60006110d1826040518060600160405280602981526020016136c360299139600291906125ff565b606060098054610b6390613593565b600a546001600160a01b031633146113005760405162461bcd60e51b8152600401610b469061344e565b600f55565b60006001600160a01b0382166113705760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b46565b6001600160a01b03821660009081526001602052604090206110d19061234f565b600a546001600160a01b031633146113bb5760405162461bcd60e51b8152600401610b469061344e565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546000906001600160a01b031633146114325760405162461bcd60e51b8152600401610b469061344e565b61143b8261115c565b1561147e5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481dda1a5d195b1a5cdd1959606a1b6044820152606401610b46565b506001600160a01b0316600081815260176020526040902080546001600160a01b0319169091179055600190565b60006114b6610f1f565b336000818152601860205260409020549192506001600160a01b03909116146115175760405162461bcd60e51b8152602060048201526013602482015272125cc81b9bdd081dda5b9b995c9b1a5cdd1959606a1b6044820152606401610b46565b60165460ff166115695760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610b46565b6011546115768383613505565b11156115b95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610b46565b336000908152601860205260409020600101546116185760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f20616d6f756e7420746f20636c61696d00000000006044820152606401610b46565b3360009081526018602052604090206001015482111561167a5760405162461bcd60e51b815260206004820152601960248201527f596f7520636c61696d20616d6f756e74206578636565646564000000000000006044820152606401610b46565b60005b828110156116ca57600061168f610f1f565b61169a906001613505565b90506011546116a7610f1f565b10156116b7576116b73382612616565b50806116c2816135c8565b91505061167d565b50336000908152601860205260409020600101546116e9908390613550565b33600090815260186020526040902060010155600b541580156117205750601154611712610f1f565b148061172057506012544210155b15610e4f5743600b555050565b600a546001600160a01b031633146117575760405162461bcd60e51b8152600401610b469061344e565b600c54156117a75760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610b46565b43600b55565b600a546001600160a01b031633146117d75760405162461bcd60e51b8152600401610b469061344e565b60006117e1610f1f565b6011549091506117f18383613505565b111561182a5760405162461bcd60e51b8152602060048201526008602482015267115e18d95959195960c21b6044820152606401610b46565b60005b82811015610e0d57611848336118438385613505565b612616565b80611852816135c8565b91505061182d565b6060600061186783611305565b905080611884576040805160008082526020820190925290611232565b60008167ffffffffffffffff81111561189f5761189f61364f565b6040519080825280602002602001820160405280156118c8578160200160208202803683370190505b50905060005b82811015611232576118e085826110ac565b8282815181106118f2576118f2613639565b602090810291909101015280611907816135c8565b9150506118ce565b50919050565b606060078054610b6390613593565b600061192e610f1f565b60165490915060ff166119835760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610b46565b6011546119908383613505565b11156119ca5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b6044820152606401610b46565b601654610100900460ff1615611b69573482600d546119e99190613531565b1115611a2b5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610b46565b601054821115611a725760405162461bcd60e51b815260206004820152601260248201527110589bdd99481b585e081d1e0818dbdd5b9d60721b6044820152606401610b46565b611a7b3361115c565b611abc5760405162461bcd60e51b8152602060048201526012602482015271125cc81b9bdd081dda1a5d195b1a5cdd195960721b6044820152606401610b46565b60105433600090815260176020526040902060020154611adc9084612630565b1115611b345760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e742035207768696c652077686974656c697374656044820152601960fa1b6064820152608401610b46565b33600090815260176020526040902060020154611b519083612630565b33600090815260176020526040902060020155611ca9565b611b723361115c565b15611bf957600f54336000818152601760205260409020600201548491611b9890611305565b611ba29190613550565b611bac9190613505565b1115611bf45760405162461bcd60e51b815260206004820152601760248201527643616e206f6e6c79206d696e7420323020746f6b656e7360481b6044820152606401610b46565b611c58565b600f5482611c0633611305565b611c109190613505565b1115611c585760405162461bcd60e51b815260206004820152601760248201527643616e206f6e6c79206d696e7420323020746f6b656e7360481b6044820152606401610b46565b3482600e54611c679190613531565b1115611ca95760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610b46565b60005b82811015611cf9576000611cbe610f1f565b611cc9906001613505565b9050601154611cd6610f1f565b1015611ce657611ce63382612616565b5080611cf1816135c8565b915050611cac565b50600b541580156117205750601154611712610f1f565b6001600160a01b038216331415611d695760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b46565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611dff5760405162461bcd60e51b8152600401610b469061344e565b6013805460ff19166001179055565b611e183383612359565b611e345760405162461bcd60e51b8152600401610b4690613483565b611e408484848461268f565b50505050565b6060611e51826122d4565b611eb55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b46565b611ebd610f1f565b821115611f0c5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610b46565b60135460ff16611fa85760148054611f2390613593565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4f90613593565b8015611f9c5780601f10611f7157610100808354040283529160200191611f9c565b820191906000526020600020905b815481529060010190602001808311611f7f57829003601f168201915b50505050509050919050565b6000611fb26112c7565b905080611fbe846126c2565b604051602001611fcf92919061331a565b604051602081830303815290604052915050919050565b600a546001600160a01b031633146120105760405162461bcd60e51b8152600401610b469061344e565b8051612023906019906020840190612f20565b5060005b601954811015610e4f576120616019828154811061204757612047613639565b6000918252602090912001546001600160a01b0316611405565b508061206c816135c8565b915050612027565b600a546001600160a01b0316331461209e5760405162461bcd60e51b8152600401610b469061344e565b600c54156120ee5760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610b46565b600b5461213d5760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d757374206265207365746044820152606401610b46565b601154600b5461214e9190406135e3565b600c55600b5460ff906121619043613550565b111561218457601154612175600143613550565b6121809190406135e3565b600c555b600c5461219d57600c54612199906001613505565b600c555b565b600a546001600160a01b031633146121c95760405162461bcd60e51b8152600401610b469061344e565b8051610e4f906014906020840190612e9c565b600a546001600160a01b031633146122065760405162461bcd60e51b8152600401610b469061344e565b6001600160a01b03811661226b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b46565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60158054610c7b90613593565b60006110d16002836127c0565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906123168261129f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006110d1825490565b6000612364826122d4565b6123c55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b46565b60006123d08361129f565b9050806001600160a01b0316846001600160a01b0316148061240b5750836001600160a01b031661240084610be6565b6001600160a01b0316145b8061243b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166124568261129f565b6001600160a01b0316146124be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b46565b6001600160a01b0382166125205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b46565b61252b6000826122e1565b6001600160a01b038316600090815260016020526040902061254d90826127d8565b506001600160a01b038216600090815260016020526040902061257090826127e4565b5061257d600282846127f0565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006110ce8383612806565b60008080806125df868661288c565b9097909650945050505050565b8051610e4f906009906020840190612e9c565b600061260c848484612929565b90505b9392505050565b610e4f828260405180602001604052806000815250612992565b60008061263d8385613505565b9050838110156110ce5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b46565b61269a848484612443565b6126a6848484846129c5565b611e405760405162461bcd60e51b8152600401610b46906133fc565b6060816126e65750506040805180820190915260018152600360fc1b602082015290565b8160005b811561271057806126fa816135c8565b91506127099050600a8361351d565b91506126ea565b60008167ffffffffffffffff81111561272b5761272b61364f565b6040519080825280601f01601f191660200182016040528015612755576020820181803683370190505b5090505b841561243b5761276a600183613550565b9150612777600a866135e3565b612782906030613505565b60f81b81838151811061279757612797613639565b60200101906001600160f81b031916908160001a9053506127b9600a8661351d565b9450612759565b600081815260018301602052604081205415156110ce565b60006110ce8383612a96565b60006110ce8383612b89565b600061260c84846001600160a01b038516612bd8565b815460009082106128645760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b46565b82600001828154811061287957612879613639565b9060005260206000200154905092915050565b8154600090819083106128ec5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b46565b600084600001848154811061290357612903613639565b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816129595760405162461bcd60e51b8152600401610b4691906133e9565b5084612966600183613550565b8154811061297657612976613639565b9060005260206000209060020201600101549150509392505050565b61299c8383612c79565b6129a960008484846129c5565b610e0d5760405162461bcd60e51b8152600401610b46906133fc565b60006001600160a01b0384163b6129de5750600161243b565b6000612a5f630a85bd0160e11b33888787604051602401612a029493929190613368565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613691603291396001600160a01b0388169190612d91565b9050600081806020019051810190612a77919061322e565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60008181526001830160205260408120548015612b7f576000612aba600183613550565b8554909150600090612ace90600190613550565b90506000866000018281548110612ae757612ae7613639565b9060005260206000200154905080876000018481548110612b0a57612b0a613639565b600091825260209091200155612b21836001613505565b60008281526001890160205260409020558654879080612b4357612b43613623565b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506110d1565b60009150506110d1565b6000818152600183016020526040812054612bd0575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556110d1565b5060006110d1565b600082815260018401602052604081205480612c3d57505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561260f565b8285612c4a600184613550565b81548110612c5a57612c5a613639565b906000526020600020906002020160010181905550600091505061260f565b6001600160a01b038216612ccf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b46565b612cd8816122d4565b15612d255760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b46565b6001600160a01b0382166000908152600160205260409020612d4790826127e4565b50612d54600282846127f0565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606061260c848460008585843b612dea5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b46565b600080866001600160a01b03168587604051612e0691906132fe565b60006040518083038185875af1925050503d8060008114612e43576040519150601f19603f3d011682016040523d82523d6000602084013e612e48565b606091505b5091509150612e58828286612e63565b979650505050505050565b60608315612e7257508161260f565b825115612e825782518084602001fd5b8160405162461bcd60e51b8152600401610b4691906133e9565b828054612ea890613593565b90600052602060002090601f016020900481019282612eca5760008555612f10565b82601f10612ee357805160ff1916838001178555612f10565b82800160010185558215612f10579182015b82811115612f10578251825591602001919060010190612ef5565b50612f1c929150612f75565b5090565b828054828255906000526020600020908101928215612f10579160200282015b82811115612f1057825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612f40565b5b80821115612f1c5760008155600101612f76565b600067ffffffffffffffff831115612fa457612fa461364f565b612fb7601f8401601f19166020016134d4565b9050828152838383011115612fcb57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612ff457600080fd5b81356110ce81613665565b6000806040838503121561301257600080fd5b823561301d81613665565b9150602083013561302d81613665565b809150509250929050565b60008060006060848603121561304d57600080fd5b833561305881613665565b9250602084013561306881613665565b929592945050506040919091013590565b6000806000806080858703121561308f57600080fd5b843561309a81613665565b935060208501356130aa81613665565b925060408501359150606085013567ffffffffffffffff8111156130cd57600080fd5b8501601f810187136130de57600080fd5b6130ed87823560208401612f8a565b91505092959194509250565b6000806040838503121561310c57600080fd5b823561311781613665565b91506020830135801515811461302d57600080fd5b6000806040838503121561313f57600080fd5b823561314a81613665565b946020939093013593505050565b6000602080838503121561316b57600080fd5b823567ffffffffffffffff8082111561318357600080fd5b818501915085601f83011261319757600080fd5b8135818111156131a9576131a961364f565b8060051b91506131ba8483016134d4565b8181528481019084860184860187018a10156131d557600080fd5b600095505b8386101561320457803594506131ef85613665565b848352600195909501949186019186016131da565b5098975050505050505050565b60006020828403121561322357600080fd5b81356110ce8161367a565b60006020828403121561324057600080fd5b81516110ce8161367a565b60006020828403121561325d57600080fd5b813567ffffffffffffffff81111561327457600080fd5b8201601f8101841361328557600080fd5b61243b84823560208401612f8a565b6000602082840312156132a657600080fd5b5035919050565b600080604083850312156132c057600080fd5b82359150602083013561302d81613665565b600081518084526132ea816020860160208601613567565b601f01601f19169290920160200192915050565b60008251613310818460208701613567565b9190910192915050565b6000835161332c818460208801613567565b602f60f81b908301908152835161334a816001840160208801613567565b64173539b7b760d91b60019290910191820152600601949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061339b908301846132d2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156133dd578351835292840192918401916001016133c1565b50909695505050505050565b6020815260006110ce60208301846132d2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156134fd576134fd61364f565b604052919050565b60008219821115613518576135186135f7565b500190565b60008261352c5761352c61360d565b500490565b600081600019048311821515161561354b5761354b6135f7565b500290565b600082821015613562576135626135f7565b500390565b60005b8381101561358257818101518382015260200161356a565b83811115611e405750506000910152565b600181811c908216806135a757607f821691505b6020821081141561190f57634e487b7160e01b600052602260045260246000fd5b60006000198214156135dc576135dc6135f7565b5060010190565b6000826135f2576135f261360d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461126d57600080fd5b6001600160e01b03198116811461126d57600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212202e1b6a54d264e0866c310a1703464ccf82ae115e720ec17f590744f3349a044864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000064379626f7278000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054359425258000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d65664534516a597774454171637a57717335743252396e68454e6b59685643644562726638446454594b74370000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d515a546a5257723975386b3533505634684e6e637457333543517674365866553467707a56784a373748517a0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061038b5760003560e01c80636352211e116101dc578063a22cb46511610102578063e36d6498116100a0578063f2c4ce1e1161006f578063f2c4ce1e14610a8b578063f2fde38b14610aab578063f571d67c14610acb578063ff1b655614610b0757600080fd5b8063e36d6498146109fd578063e985e9c514610a13578063e986655014610a5c578063eb8d244414610a7157600080fd5b8063c87b56dd116100dc578063c87b56dd14610991578063cb774d47146109b1578063cd7d508f146109c7578063dc53fd92146109e757600080fd5b8063a22cb4651461093c578063a475b5dd1461095c578063b88d4fde1461097157600080fd5b80637c928fe91161017a5780638da5cb5b116101495780638da5cb5b146108b057806395d89b41146108ce5780639b19251a146108e3578063a0712d681461092957600080fd5b80637c928fe91461082e5780637d17fcbe1461084e578063819b25ba146108635780638462151c1461088357600080fd5b806370a08231116101b657806370a082311461076e578063715018a61461078e578063738c69a6146107a35780637b9417c81461080e57600080fd5b80636352211e146107195780636c0360eb146107395780637084b2b71461074e57600080fd5b80631d97f38e116102c15780633ccfd60b1161025f578063518302271161022e57806351830227146106a957806355f804b3146106c357806358941a4d146106e35780635d82cf6e146106f957600080fd5b80633ccfd60b1461063457806342842e0e146106495780634f558e79146106695780634f6ccce71461068957600080fd5b806334918dfd1161029b57806334918dfd146105d45780633502a716146105e95780633719e3b0146105ff5780633af32abf1461061457600080fd5b80631d97f38e1461057457806323b872dd146105945780632f745c59146105b457600080fd5b8063095ea7b31161032e5780631496783711610308578063149678371461050957806318160ddd1461052957806318e20a381461053e5780631970d1fb1461055457600080fd5b8063095ea7b3146104b35780630ba133c5146104d357806310969523146104e957600080fd5b806304737a011161036a57806304737a011461042557806306fdde0314610444578063081812fc14610466578063081c8c441461049e57600080fd5b806204348e14610390578063018a2c37146103b957806301ffc9a7146103db575b600080fd5b34801561039c57600080fd5b506103a6600d5481565b6040519081526020015b60405180910390f35b3480156103c557600080fd5b506103d96103d4366004613294565b610b1c565b005b3480156103e757600080fd5b506104156103f6366004613211565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020016103b0565b34801561043157600080fd5b5060165461041590610100900460ff1681565b34801561045057600080fd5b50610459610b54565b6040516103b091906133e9565b34801561047257600080fd5b50610486610481366004613294565b610be6565b6040516001600160a01b0390911681526020016103b0565b3480156104aa57600080fd5b50610459610c6e565b3480156104bf57600080fd5b506103d96104ce36600461312c565b610cfc565b3480156104df57600080fd5b506103a6600f5481565b3480156104f557600080fd5b506103d961050436600461324b565b610e12565b34801561051557600080fd5b5061041561052436600461312c565b610e53565b34801561053557600080fd5b506103a6610f1f565b34801561054a57600080fd5b506103a660125481565b34801561056057600080fd5b506103d961056f366004613294565b610f30565b34801561058057600080fd5b506103d961058f3660046132ad565b610f5f565b3480156105a057600080fd5b506103d96105af366004613038565b61107b565b3480156105c057600080fd5b506103a66105cf36600461312c565b6110ac565b3480156105e057600080fd5b506103d96110d7565b3480156105f557600080fd5b506103a660115481565b34801561060b57600080fd5b506103d9611115565b34801561062057600080fd5b5061041561062f366004612fe2565b61115c565b34801561064057600080fd5b506103d961117d565b34801561065557600080fd5b506103d9610664366004613038565b6111fe565b34801561067557600080fd5b50610415610684366004613294565b611219565b34801561069557600080fd5b506103a66106a4366004613294565b611224565b3480156106b557600080fd5b506013546104159060ff1681565b3480156106cf57600080fd5b506103d96106de36600461324b565b61123a565b3480156106ef57600080fd5b506103a660105481565b34801561070557600080fd5b506103d9610714366004613294565b611270565b34801561072557600080fd5b50610486610734366004613294565b61129f565b34801561074557600080fd5b506104596112c7565b34801561075a57600080fd5b506103d9610769366004613294565b6112d6565b34801561077a57600080fd5b506103a6610789366004612fe2565b611305565b34801561079a57600080fd5b506103d9611391565b3480156107af57600080fd5b506107e96107be366004612fe2565b6018602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b604080516001600160a01b0390941684526020840192909252908201526060016103b0565b34801561081a57600080fd5b50610415610829366004612fe2565b611405565b34801561083a57600080fd5b506103d9610849366004613294565b6114ac565b34801561085a57600080fd5b506103d961172d565b34801561086f57600080fd5b506103d961087e366004613294565b6117ad565b34801561088f57600080fd5b506108a361089e366004612fe2565b61185a565b6040516103b091906133a5565b3480156108bc57600080fd5b50600a546001600160a01b0316610486565b3480156108da57600080fd5b50610459611915565b3480156108ef57600080fd5b506107e96108fe366004612fe2565b6017602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b6103d9610937366004613294565b611924565b34801561094857600080fd5b506103d96109573660046130f9565b611d10565b34801561096857600080fd5b506103d9611dd5565b34801561097d57600080fd5b506103d961098c366004613079565b611e0e565b34801561099d57600080fd5b506104596109ac366004613294565b611e46565b3480156109bd57600080fd5b506103a6600c5481565b3480156109d357600080fd5b506103d96109e2366004613158565b611fe6565b3480156109f357600080fd5b506103a6600e5481565b348015610a0957600080fd5b506103a6600b5481565b348015610a1f57600080fd5b50610415610a2e366004612fff565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6857600080fd5b506103d9612074565b348015610a7d57600080fd5b506016546104159060ff1681565b348015610a9757600080fd5b506103d9610aa636600461324b565b61219f565b348015610ab757600080fd5b506103d9610ac6366004612fe2565b6121dc565b348015610ad757600080fd5b50610415610ae6366004612fe2565b6001600160a01b039081166000818152601860205260409020549091161490565b348015610b1357600080fd5b506104596122c7565b600a546001600160a01b03163314610b4f5760405162461bcd60e51b8152600401610b469061344e565b60405180910390fd5b601255565b606060068054610b6390613593565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8f90613593565b8015610bdc5780601f10610bb157610100808354040283529160200191610bdc565b820191906000526020600020905b815481529060010190602001808311610bbf57829003601f168201915b5050505050905090565b6000610bf1826122d4565b610c525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b46565b506000908152600460205260409020546001600160a01b031690565b60148054610c7b90613593565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca790613593565b8015610cf45780601f10610cc957610100808354040283529160200191610cf4565b820191906000526020600020905b815481529060010190602001808311610cd757829003601f168201915b505050505081565b6000610d078261129f565b9050806001600160a01b0316836001600160a01b03161415610d755760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b46565b336001600160a01b0382161480610d915750610d918133610a2e565b610e035760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b46565b610e0d83836122e1565b505050565b600a546001600160a01b03163314610e3c5760405162461bcd60e51b8152600401610b469061344e565b8051610e4f906015906020840190612e9c565b5050565b600a546000906001600160a01b03163314610e805760405162461bcd60e51b8152600401610b469061344e565b6001600160a01b038084166000818152601860205260409020549091161415610ee25760405162461bcd60e51b8152602060048201526014602482015273105b1c9958591e481dda5b9b995c9b1a5cdd195960621b6044820152606401610b46565b506001600160a01b03909116600081815260186020526040812080546001600160a01b031916909217825560018083019390935560029091015590565b6000610f2b600261234f565b905090565b600a546001600160a01b03163314610f5a5760405162461bcd60e51b8152600401610b469061344e565b600d55565b600a546001600160a01b03163314610f895760405162461bcd60e51b8152600401610b469061344e565b60008211610fd95760405162461bcd60e51b815260206004820152601f60248201527f5769746864726177206d7573742062652067726561746572207468616e2030006044820152606401610b46565b4782111561101b5760405162461bcd60e51b815260206004820152600f60248201526e082dadeeadce840e8dede40d0d2ced608b1b6044820152606401610b46565b6000816001600160a01b03168360405160006040518083038185875af1925050503d8060008114611068576040519150601f19603f3d011682016040523d82523d6000602084013e61106d565b606091505b5050905080610e0d57600080fd5b6110853382612359565b6110a15760405162461bcd60e51b8152600401610b4690613483565b610e0d838383612443565b6001600160a01b03821660009081526001602052604081206110ce90836125c4565b90505b92915050565b600a546001600160a01b031633146111015760405162461bcd60e51b8152600401610b469061344e565b6016805460ff19811660ff90911615179055565b600a546001600160a01b0316331461113f5760405162461bcd60e51b8152600401610b469061344e565b6016805461ff001981166101009182900460ff1615909102179055565b6001600160a01b039081166000818152601760205260409020549091161490565b600a546001600160a01b031633146111a75760405162461bcd60e51b8152600401610b469061344e565b6040514790600090339083908381818185875af1925050503d80600081146111eb576040519150601f19603f3d011682016040523d82523d6000602084013e6111f0565b606091505b5050905080610e4f57600080fd5b610e0d83838360405180602001604052806000815250611e0e565b60006110d1826122d4565b6000806112326002846125d0565b509392505050565b600a546001600160a01b031633146112645760405162461bcd60e51b8152600401610b469061344e565b61126d816125ec565b50565b600a546001600160a01b0316331461129a5760405162461bcd60e51b8152600401610b469061344e565b600e55565b60006110d1826040518060600160405280602981526020016136c360299139600291906125ff565b606060098054610b6390613593565b600a546001600160a01b031633146113005760405162461bcd60e51b8152600401610b469061344e565b600f55565b60006001600160a01b0382166113705760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b46565b6001600160a01b03821660009081526001602052604090206110d19061234f565b600a546001600160a01b031633146113bb5760405162461bcd60e51b8152600401610b469061344e565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546000906001600160a01b031633146114325760405162461bcd60e51b8152600401610b469061344e565b61143b8261115c565b1561147e5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481dda1a5d195b1a5cdd1959606a1b6044820152606401610b46565b506001600160a01b0316600081815260176020526040902080546001600160a01b0319169091179055600190565b60006114b6610f1f565b336000818152601860205260409020549192506001600160a01b03909116146115175760405162461bcd60e51b8152602060048201526013602482015272125cc81b9bdd081dda5b9b995c9b1a5cdd1959606a1b6044820152606401610b46565b60165460ff166115695760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610b46565b6011546115768383613505565b11156115b95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610b46565b336000908152601860205260409020600101546116185760405162461bcd60e51b815260206004820152601b60248201527f596f752068617665206e6f20616d6f756e7420746f20636c61696d00000000006044820152606401610b46565b3360009081526018602052604090206001015482111561167a5760405162461bcd60e51b815260206004820152601960248201527f596f7520636c61696d20616d6f756e74206578636565646564000000000000006044820152606401610b46565b60005b828110156116ca57600061168f610f1f565b61169a906001613505565b90506011546116a7610f1f565b10156116b7576116b73382612616565b50806116c2816135c8565b91505061167d565b50336000908152601860205260409020600101546116e9908390613550565b33600090815260186020526040902060010155600b541580156117205750601154611712610f1f565b148061172057506012544210155b15610e4f5743600b555050565b600a546001600160a01b031633146117575760405162461bcd60e51b8152600401610b469061344e565b600c54156117a75760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610b46565b43600b55565b600a546001600160a01b031633146117d75760405162461bcd60e51b8152600401610b469061344e565b60006117e1610f1f565b6011549091506117f18383613505565b111561182a5760405162461bcd60e51b8152602060048201526008602482015267115e18d95959195960c21b6044820152606401610b46565b60005b82811015610e0d57611848336118438385613505565b612616565b80611852816135c8565b91505061182d565b6060600061186783611305565b905080611884576040805160008082526020820190925290611232565b60008167ffffffffffffffff81111561189f5761189f61364f565b6040519080825280602002602001820160405280156118c8578160200160208202803683370190505b50905060005b82811015611232576118e085826110ac565b8282815181106118f2576118f2613639565b602090810291909101015280611907816135c8565b9150506118ce565b50919050565b606060078054610b6390613593565b600061192e610f1f565b60165490915060ff166119835760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610b46565b6011546119908383613505565b11156119ca5760405162461bcd60e51b815260206004820152600960248201526813585e081b1a5b5a5d60ba1b6044820152606401610b46565b601654610100900460ff1615611b69573482600d546119e99190613531565b1115611a2b5760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610b46565b601054821115611a725760405162461bcd60e51b815260206004820152601260248201527110589bdd99481b585e081d1e0818dbdd5b9d60721b6044820152606401610b46565b611a7b3361115c565b611abc5760405162461bcd60e51b8152602060048201526012602482015271125cc81b9bdd081dda1a5d195b1a5cdd195960721b6044820152606401610b46565b60105433600090815260176020526040902060020154611adc9084612630565b1115611b345760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e742035207768696c652077686974656c697374656044820152601960fa1b6064820152608401610b46565b33600090815260176020526040902060020154611b519083612630565b33600090815260176020526040902060020155611ca9565b611b723361115c565b15611bf957600f54336000818152601760205260409020600201548491611b9890611305565b611ba29190613550565b611bac9190613505565b1115611bf45760405162461bcd60e51b815260206004820152601760248201527643616e206f6e6c79206d696e7420323020746f6b656e7360481b6044820152606401610b46565b611c58565b600f5482611c0633611305565b611c109190613505565b1115611c585760405162461bcd60e51b815260206004820152601760248201527643616e206f6e6c79206d696e7420323020746f6b656e7360481b6044820152606401610b46565b3482600e54611c679190613531565b1115611ca95760405162461bcd60e51b815260206004820152601160248201527056616c75652062656c6f7720707269636560781b6044820152606401610b46565b60005b82811015611cf9576000611cbe610f1f565b611cc9906001613505565b9050601154611cd6610f1f565b1015611ce657611ce63382612616565b5080611cf1816135c8565b915050611cac565b50600b541580156117205750601154611712610f1f565b6001600160a01b038216331415611d695760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b46565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611dff5760405162461bcd60e51b8152600401610b469061344e565b6013805460ff19166001179055565b611e183383612359565b611e345760405162461bcd60e51b8152600401610b4690613483565b611e408484848461268f565b50505050565b6060611e51826122d4565b611eb55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b46565b611ebd610f1f565b821115611f0c5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610b46565b60135460ff16611fa85760148054611f2390613593565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4f90613593565b8015611f9c5780601f10611f7157610100808354040283529160200191611f9c565b820191906000526020600020905b815481529060010190602001808311611f7f57829003601f168201915b50505050509050919050565b6000611fb26112c7565b905080611fbe846126c2565b604051602001611fcf92919061331a565b604051602081830303815290604052915050919050565b600a546001600160a01b031633146120105760405162461bcd60e51b8152600401610b469061344e565b8051612023906019906020840190612f20565b5060005b601954811015610e4f576120616019828154811061204757612047613639565b6000918252602090912001546001600160a01b0316611405565b508061206c816135c8565b915050612027565b600a546001600160a01b0316331461209e5760405162461bcd60e51b8152600401610b469061344e565b600c54156120ee5760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610b46565b600b5461213d5760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d757374206265207365746044820152606401610b46565b601154600b5461214e9190406135e3565b600c55600b5460ff906121619043613550565b111561218457601154612175600143613550565b6121809190406135e3565b600c555b600c5461219d57600c54612199906001613505565b600c555b565b600a546001600160a01b031633146121c95760405162461bcd60e51b8152600401610b469061344e565b8051610e4f906014906020840190612e9c565b600a546001600160a01b031633146122065760405162461bcd60e51b8152600401610b469061344e565b6001600160a01b03811661226b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b46565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60158054610c7b90613593565b60006110d16002836127c0565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906123168261129f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006110d1825490565b6000612364826122d4565b6123c55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b46565b60006123d08361129f565b9050806001600160a01b0316846001600160a01b0316148061240b5750836001600160a01b031661240084610be6565b6001600160a01b0316145b8061243b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166124568261129f565b6001600160a01b0316146124be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b46565b6001600160a01b0382166125205760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b46565b61252b6000826122e1565b6001600160a01b038316600090815260016020526040902061254d90826127d8565b506001600160a01b038216600090815260016020526040902061257090826127e4565b5061257d600282846127f0565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006110ce8383612806565b60008080806125df868661288c565b9097909650945050505050565b8051610e4f906009906020840190612e9c565b600061260c848484612929565b90505b9392505050565b610e4f828260405180602001604052806000815250612992565b60008061263d8385613505565b9050838110156110ce5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b46565b61269a848484612443565b6126a6848484846129c5565b611e405760405162461bcd60e51b8152600401610b46906133fc565b6060816126e65750506040805180820190915260018152600360fc1b602082015290565b8160005b811561271057806126fa816135c8565b91506127099050600a8361351d565b91506126ea565b60008167ffffffffffffffff81111561272b5761272b61364f565b6040519080825280601f01601f191660200182016040528015612755576020820181803683370190505b5090505b841561243b5761276a600183613550565b9150612777600a866135e3565b612782906030613505565b60f81b81838151811061279757612797613639565b60200101906001600160f81b031916908160001a9053506127b9600a8661351d565b9450612759565b600081815260018301602052604081205415156110ce565b60006110ce8383612a96565b60006110ce8383612b89565b600061260c84846001600160a01b038516612bd8565b815460009082106128645760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b46565b82600001828154811061287957612879613639565b9060005260206000200154905092915050565b8154600090819083106128ec5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b46565b600084600001848154811061290357612903613639565b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816129595760405162461bcd60e51b8152600401610b4691906133e9565b5084612966600183613550565b8154811061297657612976613639565b9060005260206000209060020201600101549150509392505050565b61299c8383612c79565b6129a960008484846129c5565b610e0d5760405162461bcd60e51b8152600401610b46906133fc565b60006001600160a01b0384163b6129de5750600161243b565b6000612a5f630a85bd0160e11b33888787604051602401612a029493929190613368565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613691603291396001600160a01b0388169190612d91565b9050600081806020019051810190612a77919061322e565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60008181526001830160205260408120548015612b7f576000612aba600183613550565b8554909150600090612ace90600190613550565b90506000866000018281548110612ae757612ae7613639565b9060005260206000200154905080876000018481548110612b0a57612b0a613639565b600091825260209091200155612b21836001613505565b60008281526001890160205260409020558654879080612b4357612b43613623565b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506110d1565b60009150506110d1565b6000818152600183016020526040812054612bd0575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556110d1565b5060006110d1565b600082815260018401602052604081205480612c3d57505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561260f565b8285612c4a600184613550565b81548110612c5a57612c5a613639565b906000526020600020906002020160010181905550600091505061260f565b6001600160a01b038216612ccf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b46565b612cd8816122d4565b15612d255760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b46565b6001600160a01b0382166000908152600160205260409020612d4790826127e4565b50612d54600282846127f0565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606061260c848460008585843b612dea5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610b46565b600080866001600160a01b03168587604051612e0691906132fe565b60006040518083038185875af1925050503d8060008114612e43576040519150601f19603f3d011682016040523d82523d6000602084013e612e48565b606091505b5091509150612e58828286612e63565b979650505050505050565b60608315612e7257508161260f565b825115612e825782518084602001fd5b8160405162461bcd60e51b8152600401610b4691906133e9565b828054612ea890613593565b90600052602060002090601f016020900481019282612eca5760008555612f10565b82601f10612ee357805160ff1916838001178555612f10565b82800160010185558215612f10579182015b82811115612f10578251825591602001919060010190612ef5565b50612f1c929150612f75565b5090565b828054828255906000526020600020908101928215612f10579160200282015b82811115612f1057825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612f40565b5b80821115612f1c5760008155600101612f76565b600067ffffffffffffffff831115612fa457612fa461364f565b612fb7601f8401601f19166020016134d4565b9050828152838383011115612fcb57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612ff457600080fd5b81356110ce81613665565b6000806040838503121561301257600080fd5b823561301d81613665565b9150602083013561302d81613665565b809150509250929050565b60008060006060848603121561304d57600080fd5b833561305881613665565b9250602084013561306881613665565b929592945050506040919091013590565b6000806000806080858703121561308f57600080fd5b843561309a81613665565b935060208501356130aa81613665565b925060408501359150606085013567ffffffffffffffff8111156130cd57600080fd5b8501601f810187136130de57600080fd5b6130ed87823560208401612f8a565b91505092959194509250565b6000806040838503121561310c57600080fd5b823561311781613665565b91506020830135801515811461302d57600080fd5b6000806040838503121561313f57600080fd5b823561314a81613665565b946020939093013593505050565b6000602080838503121561316b57600080fd5b823567ffffffffffffffff8082111561318357600080fd5b818501915085601f83011261319757600080fd5b8135818111156131a9576131a961364f565b8060051b91506131ba8483016134d4565b8181528481019084860184860187018a10156131d557600080fd5b600095505b8386101561320457803594506131ef85613665565b848352600195909501949186019186016131da565b5098975050505050505050565b60006020828403121561322357600080fd5b81356110ce8161367a565b60006020828403121561324057600080fd5b81516110ce8161367a565b60006020828403121561325d57600080fd5b813567ffffffffffffffff81111561327457600080fd5b8201601f8101841361328557600080fd5b61243b84823560208401612f8a565b6000602082840312156132a657600080fd5b5035919050565b600080604083850312156132c057600080fd5b82359150602083013561302d81613665565b600081518084526132ea816020860160208601613567565b601f01601f19169290920160200192915050565b60008251613310818460208701613567565b9190910192915050565b6000835161332c818460208801613567565b602f60f81b908301908152835161334a816001840160208801613567565b64173539b7b760d91b60019290910191820152600601949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061339b908301846132d2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156133dd578351835292840192918401916001016133c1565b50909695505050505050565b6020815260006110ce60208301846132d2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156134fd576134fd61364f565b604052919050565b60008219821115613518576135186135f7565b500190565b60008261352c5761352c61360d565b500490565b600081600019048311821515161561354b5761354b6135f7565b500290565b600082821015613562576135626135f7565b500390565b60005b8381101561358257818101518382015260200161356a565b83811115611e405750506000910152565b600181811c908216806135a757607f821691505b6020821081141561190f57634e487b7160e01b600052602260045260246000fd5b60006000198214156135dc576135dc6135f7565b5060010190565b6000826135f2576135f261360d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461126d57600080fd5b6001600160e01b03198116811461126d57600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212202e1b6a54d264e0866c310a1703464ccf82ae115e720ec17f590744f3349a044864736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000064379626f7278000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054359425258000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d65664534516a597774454171637a57717335743252396e68454e6b59685643644562726638446454594b74370000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d515a546a5257723975386b3533505634684e6e637457333543517674365866553467707a56784a373748517a0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Cyborx
Arg [1] : _symbol (string): CYBRX
Arg [2] : _initBaseURI (string): https://ipfs.io/ipfs/QmefE4QjYwtEAqczWqs5t2R9nhENkYhVCdEbrf8DdTYKt7
Arg [3] : _initNotRevealedUri (string): https://ipfs.io/ipfs/QmQZTjRWr9u8k53PV4hNnctW35CQvt6XfU4gpzVxJ77HQz
-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 4379626f72780000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4359425258000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [9] : 68747470733a2f2f697066732e696f2f697066732f516d65664534516a597774
Arg [10] : 454171637a57717335743252396e68454e6b5968564364456272663844645459
Arg [11] : 4b74370000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [13] : 68747470733a2f2f697066732e696f2f697066732f516d515a546a5257723975
Arg [14] : 386b3533505634684e6e637457333543517674365866553467707a56784a3737
Arg [15] : 48517a0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
70157:10707:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70344:44;;;;;;;;;;;;;;;;;;;23965:25:1;;;23953:2;23938:18;70344:44:0;;;;;;;;73079:127;;;;;;;;;;-1:-1:-1;73079:127:0;;;;;:::i;:::-;;:::i;:::-;;10295:200;;;;;;;;;;-1:-1:-1;10295:200:0;;;;;:::i;:::-;-1:-1:-1;;;;;;10454:33:0;10425:4;10454:33;;;;;;;;;;;;;;10295:200;;;;8961:14:1;;8954:22;8936:41;;8924:2;8909:18;10295:200:0;8796:187:1;70765:38:0;;;;;;;;;;-1:-1:-1;70765:38:0;;;;;;;;;;;53618:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;56626:308::-;;;;;;;;;;-1:-1:-1;56626:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7272:32:1;;;7254:51;;7242:2;7227:18;56626:308:0;7108:203:1;70643:33:0;;;;;;;;;;;;;:::i;56125:435::-;;;;;;;;;;-1:-1:-1;56125:435:0;;;;;:::i;:::-;;:::i;70445:29::-;;;;;;;;;;;;;;;;73275:152;;;;;;;;;;-1:-1:-1;73275:152:0;;;;;:::i;:::-;;:::i;80316:370::-;;;;;;;;;;-1:-1:-1;80316:370:0;;;;;:::i;:::-;;:::i;55553:211::-;;;;;;;;;;;;;:::i;70566:31::-;;;;;;;;;;;;;;;;72234:108;;;;;;;;;;-1:-1:-1;72234:108:0;;;;;:::i;:::-;;:::i;79542:335::-;;;;;;;;;;-1:-1:-1;79542:335:0;;;;;:::i;:::-;;:::i;57685:376::-;;;;;;;;;;-1:-1:-1;57685:376:0;;;;;:::i;:::-;;:::i;55265:212::-;;;;;;;;;;-1:-1:-1;55265:212:0;;;;;:::i;:::-;;:::i;74405:89::-;;;;;;;;;;;;;:::i;70525:34::-;;;;;;;;;;;;;;;;74502:110;;;;;;;;;;;;;:::i;80144:164::-;;;;;;;;;;-1:-1:-1;80144:164:0;;;;;:::i;:::-;;:::i;79347:187::-;;;;;;;;;;;;;:::i;58132:185::-;;;;;;;;;;-1:-1:-1;58132:185:0;;;;;:::i;:::-;;:::i;72070:104::-;;;;;;;;;;-1:-1:-1;72070:104:0;;;;;:::i;:::-;;:::i;55841:222::-;;;;;;;;;;-1:-1:-1;55841:222:0;;;;;:::i;:::-;;:::i;70606:28::-;;;;;;;;;;-1:-1:-1;70606:28:0;;;;;;;;73435:101;;;;;;;;;;-1:-1:-1;73435:101:0;;;;;:::i;:::-;;:::i;70481:37::-;;;;;;;;;;;;;;;;72405:106;;;;;;;;;;-1:-1:-1;72405:106:0;;;;;:::i;:::-;;:::i;53262:289::-;;;;;;;;;;-1:-1:-1;53262:289:0;;;;;:::i;:::-;;:::i;55084:97::-;;;;;;;;;;;;;:::i;72581:100::-;;;;;;;;;;-1:-1:-1;72581:100:0;;;;;:::i;:::-;;:::i;52892:308::-;;;;;;;;;;-1:-1:-1;52892:308:0;;;;;:::i;:::-;;:::i;69417:148::-;;;;;;;;;;;;;:::i;70979:47::-;;;;;;;;;;-1:-1:-1;70979:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;70979:47:0;;;;;;;;;;;-1:-1:-1;;;;;8029:32:1;;;8011:51;;8093:2;8078:18;;8071:34;;;;8121:18;;;8114:34;7999:2;7984:18;70979:47:0;7809:345:1;79885:251:0;;;;;;;;;;-1:-1:-1;79885:251:0;;;;;:::i;:::-;;:::i;76673:1335::-;;;;;;;;;;-1:-1:-1;76673:1335:0;;;;;:::i;:::-;;:::i;79153:186::-;;;;;;;;;;;;;:::i;72734:266::-;;;;;;;;;;-1:-1:-1;72734:266:0;;;;;:::i;:::-;;:::i;71489:510::-;;;;;;;;;;-1:-1:-1;71489:510:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;68766:87::-;;;;;;;;;;-1:-1:-1;68839:6:0;;-1:-1:-1;;;;;68839:6:0;68766:87;;53787:104;;;;;;;;;;;;;:::i;70926:46::-;;;;;;;;;;-1:-1:-1;70926:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;70926:46:0;;;;;;;74659:2006;;;;;;:::i;:::-;;:::i;57006:327::-;;;;;;;;;;-1:-1:-1;57006:327:0;;;;;:::i;:::-;;:::i;73696:69::-;;;;;;;;;;;;;:::i;58388:365::-;;;;;;;;;;-1:-1:-1;58388:365:0;;;;;:::i;:::-;;:::i;73773:553::-;;;;;;;;;;-1:-1:-1;73773:553:0;;;;;:::i;:::-;;:::i;70309:28::-;;;;;;;;;;;;;;;;78782:234;;;;;;;;;;-1:-1:-1;78782:234:0;;;;;:::i;:::-;;:::i;70395:43::-;;;;;;;;;;;;;;;;70269:33;;;;;;;;;;;;;;;;57404:214;;;;;;;;;;-1:-1:-1;57404:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;57575:25:0;;;57546:4;57575:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57404:214;78084:690;;;;;;;;;;;;;:::i;70726:32::-;;;;;;;;;;-1:-1:-1;70726:32:0;;;;;;;;73544:126;;;;;;;;;;-1:-1:-1;73544:126:0;;;;;:::i;:::-;;:::i;69720:281::-;;;;;;;;;;-1:-1:-1;69720:281:0;;;;;:::i;:::-;;:::i;80694:167::-;;;;;;;;;;-1:-1:-1;80694:167:0;;;;;:::i;:::-;-1:-1:-1;;;;;80824:29:0;;;80780:19;80824:16;;;:10;:16;;;;;:21;;;;:29;;80694:167;70685:34;;;;;;;;;;;;;:::i;73079:127::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;;;;;;;;;73163:16:::1;:35:::0;73079:127::o;53618:100::-;53672:13;53705:5;53698:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53618:100;:::o;56626:308::-;56747:7;56794:16;56802:7;56794;:16::i;:::-;56772:110;;;;-1:-1:-1;;;56772:110:0;;18452:2:1;56772:110:0;;;18434:21:1;18491:2;18471:18;;;18464:30;18530:34;18510:18;;;18503:62;-1:-1:-1;;;18581:18:1;;;18574:42;18633:19;;56772:110:0;18250:408:1;56772:110:0;-1:-1:-1;56902:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;56902:24:0;;56626:308::o;70643:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56125:435::-;56206:13;56222:23;56237:7;56222:14;:23::i;:::-;56206:39;;56270:5;-1:-1:-1;;;;;56264:11:0;:2;-1:-1:-1;;;;;56264:11:0;;;56256:57;;;;-1:-1:-1;;;56256:57:0;;21095:2:1;56256:57:0;;;21077:21:1;21134:2;21114:18;;;21107:30;21173:34;21153:18;;;21146:62;-1:-1:-1;;;21224:18:1;;;21217:31;21265:19;;56256:57:0;20893:397:1;56256:57:0;735:10;-1:-1:-1;;;;;56348:21:0;;;;:86;;-1:-1:-1;56390:44:0;56414:5;735:10;57404:214;:::i;56390:44::-;56326:192;;;;-1:-1:-1;;;56326:192:0;;16161:2:1;56326:192:0;;;16143:21:1;16200:2;16180:18;;;16173:30;16239:34;16219:18;;;16212:62;16310:26;16290:18;;;16283:54;16354:19;;56326:192:0;15959:420:1;56326:192:0;56531:21;56540:2;56544:7;56531:8;:21::i;:::-;56195:365;56125:435;;:::o;73275:152::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;73386:33;;::::1;::::0;:15:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;:::-;;73275:152:::0;:::o;80316:370::-;68839:6;;80436:12;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;80824:29:0;;;80780:19;80824:16;;;:10;:16;;;;;:21;;;;:29;80474:21:::1;80466:54;;;::::0;-1:-1:-1;;;80466:54:0;;20746:2:1;80466:54:0::1;::::0;::::1;20728:21:1::0;20785:2;20765:18;;;20758:30;-1:-1:-1;;;20804:18:1;;;20797:50;20864:18;;80466:54:0::1;20544:344:1::0;80466:54:0::1;-1:-1:-1::0;;;;;;80531:16:0;;::::1;;::::0;;;:10:::1;:16;::::0;;;;:28;;-1:-1:-1;;;;;;80531:28:0::1;::::0;;::::1;::::0;;;80570;;::::1;:42:::0;;;;80623:26:::1;::::0;;::::1;:30:::0;80531:28;80316:370::o;55553:211::-;55614:7;55735:21;:12;:19;:21::i;:::-;55728:28;;55553:211;:::o;72234:108::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;72309:16:::1;:25:::0;72234:108::o;79542:335::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;79676:1:::1;79666:7;:11;79658:55;;;::::0;-1:-1:-1;;;79658:55:0;;15443:2:1;79658:55:0::1;::::0;::::1;15425:21:1::0;15482:2;15462:18;;;15455:30;15521:33;15501:18;;;15494:61;15572:18;;79658:55:0::1;15241:355:1::0;79658:55:0::1;79743:21;79732:7;:32;;79724:60;;;::::0;-1:-1:-1;;;79724:60:0;;16586:2:1;79724:60:0::1;::::0;::::1;16568:21:1::0;16625:2;16605:18;;;16598:30;-1:-1:-1;;;16644:18:1;;;16637:45;16699:18;;79724:60:0::1;16384:339:1::0;79724:60:0::1;79796:12;79814:3;-1:-1:-1::0;;;;;79814:8:0::1;79830:7;79814:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79795:47;;;79861:7;79853:16;;;::::0;::::1;57685:376:::0;57894:41;735:10;57927:7;57894:18;:41::i;:::-;57872:140;;;;-1:-1:-1;;;57872:140:0;;;;;;;:::i;:::-;58025:28;58035:4;58041:2;58045:7;58025:9;:28::i;55265:212::-;-1:-1:-1;;;;;55439:20:0;;55407:7;55439:20;;;:13;:20;;;;;:30;;55463:5;55439:23;:30::i;:::-;55432:37;;55265:212;;;;;:::o;74405:89::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;74474:12:::1;::::0;;-1:-1:-1;;74458:28:0;::::1;74474:12;::::0;;::::1;74473:13;74458:28;::::0;;74405:89::o;74502:110::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;74585:19:::1;::::0;;-1:-1:-1;;74562:42:0;::::1;74585:19;::::0;;;::::1;;;74584:20;74562:42:::0;;::::1;;::::0;;74502:110::o;80144:164::-;-1:-1:-1;;;;;80272:28:0;;;80229:18;80272:15;;;:9;:15;;;;;:20;;;;:28;;80144:164::o;79347:187::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;79464:35:::1;::::0;79413:21:::1;::::0;79395:15:::1;::::0;79464:10:::1;::::0;79413:21;;79395:15;79464:35;79395:15;79464:35;79413:21;79464:10;:35:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79445:54;;;79518:7;79510:16;;;::::0;::::1;58132:185:::0;58270:39;58287:4;58293:2;58297:7;58270:39;;;;;;;;;;;;:16;:39::i;72070:104::-;72125:4;72149:17;72157:8;72149:7;:17::i;55841:222::-;55961:7;;56008:22;:12;56024:5;56008:15;:22::i;:::-;-1:-1:-1;55986:44:0;55841:222;-1:-1:-1;;;55841:222:0:o;73435:101::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;73508:20:::1;73520:7;73508:11;:20::i;:::-;73435:101:::0;:::o;72405:106::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;72479:15:::1;:24:::0;72405:106::o;53262:289::-;53379:7;53424:119;53459:7;53424:119;;;;;;;;;;;;;;;;;:12;;:119;:16;:119::i;55084:97::-;55132:13;55165:8;55158:15;;;;;:::i;72581:100::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;72652:9:::1;:21:::0;72581:100::o;52892:308::-;53009:7;-1:-1:-1;;;;;53056:19:0;;53034:111;;;;-1:-1:-1;;;53034:111:0;;16930:2:1;53034:111:0;;;16912:21:1;16969:2;16949:18;;;16942:30;17008:34;16988:18;;;16981:62;-1:-1:-1;;;17059:18:1;;;17052:40;17109:19;;53034:111:0;16728:406:1;53034:111:0;-1:-1:-1;;;;;53163:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;69417:148::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;69508:6:::1;::::0;69487:40:::1;::::0;69524:1:::1;::::0;-1:-1:-1;;;;;69508:6:0::1;::::0;69487:40:::1;::::0;69524:1;;69487:40:::1;69538:6;:19:::0;;-1:-1:-1;;;;;;69538:19:0::1;::::0;;69417:148::o;79885:251::-;68839:6;;79983:12;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;80022:19:::1;80036:4;80022:13;:19::i;:::-;80021:20;80013:52;;;::::0;-1:-1:-1;;;80013:52:0;;20052:2:1;80013:52:0::1;::::0;::::1;20034:21:1::0;20091:2;20071:18;;;20064:30;-1:-1:-1;;;20110:18:1;;;20103:49;20169:18;;80013:52:0::1;19850:343:1::0;80013:52:0::1;-1:-1:-1::0;;;;;;80076:15:0::1;;::::0;;;:9:::1;:15;::::0;;;;:27;;-1:-1:-1;;;;;;80076:27:0::1;::::0;;::::1;::::0;;;;79885:251::o;76673:1335::-;76725:13;76741;:11;:13::i;:::-;76788:10;80780:19;80824:16;;;:10;:16;;;;;:21;76725:29;;-1:-1:-1;;;;;;80824:21:0;;;:29;76765:58;;;;-1:-1:-1;;;76765:58:0;;23673:2:1;76765:58:0;;;23655:21:1;23712:2;23692:18;;;23685:30;-1:-1:-1;;;23731:18:1;;;23724:49;23790:18;;76765:58:0;23471:343:1;76765:58:0;76842:12;;;;76834:52;;;;-1:-1:-1;;;76834:52:0;;13930:2:1;76834:52:0;;;13912:21:1;13969:2;13949:18;;;13942:30;14008:29;13988:18;;;13981:57;14055:18;;76834:52:0;13728:351:1;76834:52:0;76925:12;;76906:14;76914:6;76906:5;:14;:::i;:::-;76905:32;;76897:63;;;;-1:-1:-1;;;76897:63:0;;17341:2:1;76897:63:0;;;17323:21:1;17380:2;17360:18;;;17353:30;-1:-1:-1;;;17399:18:1;;;17392:48;17457:18;;76897:63:0;17139:342:1;76897:63:0;77004:10;77030:1;76993:22;;;:10;:22;;;;;:34;;;76971:115;;;;-1:-1:-1;;;76971:115:0;;23317:2:1;76971:115:0;;;23299:21:1;23356:2;23336:18;;;23329:30;23395:29;23375:18;;;23368:57;23442:18;;76971:115:0;23115:351:1;76971:115:0;77140:10;77129:22;;;;:10;:22;;;;;:34;;;77119:44;;;77097:119;;;;-1:-1:-1;;;77097:119:0;;11360:2:1;77097:119:0;;;11342:21:1;11399:2;11379:18;;;11372:30;11438:27;11418:18;;;11411:55;11483:18;;77097:119:0;11158:349:1;77097:119:0;77234:9;77229:216;77253:6;77249:1;:10;77229:216;;;77281:17;77301:13;:11;:13::i;:::-;:17;;77317:1;77301:17;:::i;:::-;77281:37;;77353:12;;77337:13;:11;:13::i;:::-;:28;77333:101;;;77386:32;77396:10;77408:9;77386;:32::i;:::-;-1:-1:-1;77261:3:0;;;;:::i;:::-;;;;77229:216;;;-1:-1:-1;77518:10:0;77507:22;;;;:10;:22;;;;;:34;;;:56;;77557:6;;77507:56;:::i;:::-;77468:10;77457:22;;;;:10;:22;;;;;:34;;:106;77802:18;;:23;:127;;;;;77860:12;;77843:13;:11;:13::i;:::-;:29;:85;;;;77912:16;;77893:15;:35;;77843:85;77784:217;;;77977:12;77956:18;:33;76714:1294;76673:1335;:::o;79153:186::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;79233:13:::1;::::0;:18;79225:60:::1;;;::::0;-1:-1:-1;;;79225:60:0;;15803:2:1;79225:60:0::1;::::0;::::1;15785:21:1::0;15842:2;15822:18;;;15815:30;15881:31;15861:18;;;15854:59;15930:18;;79225:60:0::1;15601:353:1::0;79225:60:0::1;79319:12;79298:18;:33:::0;79153:186::o;72734:266::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;72795:13:::1;72811;:11;:13::i;:::-;72861:12;::::0;72795:29;;-1:-1:-1;72843:14:0::1;72851:6:::0;72795:29;72843:14:::1;:::i;:::-;:30;;72835:51;;;::::0;-1:-1:-1;;;72835:51:0;;22981:2:1;72835:51:0::1;::::0;::::1;22963:21:1::0;23020:1;23000:18;;;22993:29;-1:-1:-1;;;23038:18:1;;;23031:38;23086:18;;72835:51:0::1;22779:331:1::0;72835:51:0::1;72902:9;72897:96;72921:6;72917:1;:10;72897:96;;;72949:32;72959:10;72971:9;72979:1:::0;72971:5;:9:::1;:::i;:::-;72949;:32::i;:::-;72929:3:::0;::::1;::::0;::::1;:::i;:::-;;;;72897:96;;71489:510:::0;71578:16;71612:18;71633:17;71643:6;71633:9;:17::i;:::-;71612:38;-1:-1:-1;71665:15:0;71661:331;;71704:16;;;71718:1;71704:16;;;;;;;;;;;;71661:331;71753:23;71793:10;71779:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71779:25:0;;71753:51;;71824:13;71819:134;71847:10;71839:5;:18;71819:134;;;71903:34;71923:6;71931:5;71903:19;:34::i;:::-;71887:6;71894:5;71887:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;71859:7;;;;:::i;:::-;;;;71819:134;;71661:331;71601:398;71489:510;;;:::o;53787:104::-;53843:13;53876:7;53869:14;;;;;:::i;74659:2006::-;74715:13;74731;:11;:13::i;:::-;74763:12;;74715:29;;-1:-1:-1;74763:12:0;;74755:52;;;;-1:-1:-1;;;74755:52:0;;13930:2:1;74755:52:0;;;13912:21:1;13969:2;13949:18;;;13942:30;14008:29;13988:18;;;13981:57;14055:18;;74755:52:0;13728:351:1;74755:52:0;74846:12;;74827:14;74835:6;74827:5;:14;:::i;:::-;74826:32;;74818:54;;;;-1:-1:-1;;;74818:54:0;;14286:2:1;74818:54:0;;;14268:21:1;14325:1;14305:18;;;14298:29;-1:-1:-1;;;14343:18:1;;;14336:39;14392:18;;74818:54:0;14084:332:1;74818:54:0;74889:19;;;;;;;74885:1108;;;74982:9;74971:6;74952:16;;:25;;;;:::i;:::-;74951:40;;74925:119;;;;-1:-1:-1;;;74925:119:0;;20400:2:1;74925:119:0;;;20382:21:1;20439:2;20419:18;;;20412:30;-1:-1:-1;;;20458:18:1;;;20451:47;20515:18;;74925:119:0;20198:341:1;74925:119:0;75077:18;;75067:6;:28;;75059:59;;;;-1:-1:-1;;;75059:59:0;;13583:2:1;75059:59:0;;;13565:21:1;13622:2;13602:18;;;13595:30;-1:-1:-1;;;13641:18:1;;;13634:48;13699:18;;75059:59:0;13381:342:1;75059:59:0;75141:25;75155:10;75141:13;:25::i;:::-;75133:56;;;;-1:-1:-1;;;75133:56:0;;22634:2:1;75133:56:0;;;22616:21:1;22673:2;22653:18;;;22646:30;-1:-1:-1;;;22692:18:1;;;22685:48;22750:18;;75133:56:0;22432:342:1;75133:56:0;75298:18;;75240:10;75230:21;;;;:9;:21;;;;;:31;;;:43;;75266:6;75230:35;:43::i;:::-;:86;;75204:181;;;;-1:-1:-1;;;75204:181:0;;12070:2:1;75204:181:0;;;12052:21:1;12109:2;12089:18;;;12082:30;12148:34;12128:18;;;12121:62;-1:-1:-1;;;12199:18:1;;;12192:31;12240:19;;75204:181:0;11868:397:1;75204:181:0;75444:10;75434:21;;;;:9;:21;;;;;:49;;;:79;;75506:6;75434:71;:79::i;:::-;75410:10;75400:21;;;;:9;:21;;;;;:31;;:113;74885:1108;;;75550:25;75564:10;75550:13;:25::i;:::-;75546:303;;;75674:9;;75639:10;75629:21;;;;:9;:21;;;;;:31;;;75663:6;;75605:21;;:9;:21::i;:::-;:55;;;;:::i;:::-;:64;;;;:::i;:::-;75604:79;;75596:115;;;;-1:-1:-1;;;75596:115:0;;13231:2:1;75596:115:0;;;13213:21:1;13270:2;13250:18;;;13243:30;-1:-1:-1;;;13289:18:1;;;13282:53;13352:18;;75596:115:0;13029:347:1;75596:115:0;75546:303;;;75796:9;;75785:6;75761:21;75771:10;75761:9;:21::i;:::-;:30;;;;:::i;:::-;75760:45;;75752:81;;;;-1:-1:-1;;;75752:81:0;;13231:2:1;75752:81:0;;;13213:21:1;13270:2;13250:18;;;13243:30;-1:-1:-1;;;13289:18:1;;;13282:53;13352:18;;75752:81:0;13029:347:1;75752:81:0;75919:9;75908:6;75890:15;;:24;;;;:::i;:::-;75889:39;;75863:118;;;;-1:-1:-1;;;75863:118:0;;20400:2:1;75863:118:0;;;20382:21:1;20439:2;20419:18;;;20412:30;-1:-1:-1;;;20458:18:1;;;20451:47;20515:18;;75863:118:0;20198:341:1;75863:118:0;76010:9;76005:216;76029:6;76025:1;:10;76005:216;;;76057:17;76077:13;:11;:13::i;:::-;:17;;76093:1;76077:17;:::i;:::-;76057:37;;76129:12;;76113:13;:11;:13::i;:::-;:28;76109:101;;;76162:32;76172:10;76184:9;76162;:32::i;:::-;-1:-1:-1;76037:3:0;;;;:::i;:::-;;;;76005:216;;;-1:-1:-1;76459:18:0;;:23;:127;;;;;76517:12;;76500:13;:11;:13::i;57006:327::-;-1:-1:-1;;;;;57141:24:0;;735:10;57141:24;;57133:62;;;;-1:-1:-1;;;57133:62:0;;12877:2:1;57133:62:0;;;12859:21:1;12916:2;12896:18;;;12889:30;12955:27;12935:18;;;12928:55;13000:18;;57133:62:0;12675:349:1;57133:62:0;735:10;57208:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;57208:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;57208:53:0;;;;;;;;;;57277:48;;8936:41:1;;;57208:42:0;;735:10;57277:48;;8909:18:1;57277:48:0;;;;;;;57006:327;;:::o;73696:69::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;73742:8:::1;:15:::0;;-1:-1:-1;;73742:15:0::1;73753:4;73742:15;::::0;;73696:69::o;58388:365::-;58577:41;735:10;58610:7;58577:18;:41::i;:::-;58555:140;;;;-1:-1:-1;;;58555:140:0;;;;;;;:::i;:::-;58706:39;58720:4;58726:2;58730:7;58739:5;58706:13;:39::i;:::-;58388:365;;;;:::o;73773:553::-;73891:13;73944:16;73952:7;73944;:16::i;:::-;73922:113;;;;-1:-1:-1;;;73922:113:0;;19636:2:1;73922:113:0;;;19618:21:1;19675:2;19655:18;;;19648:30;19714:34;19694:18;;;19687:62;-1:-1:-1;;;19765:18:1;;;19758:45;19820:19;;73922:113:0;19434:411:1;73922:113:0;74065:13;:11;:13::i;:::-;74054:7;:24;;74046:68;;;;-1:-1:-1;;;74046:68:0;;9817:2:1;74046:68:0;;;9799:21:1;9856:2;9836:18;;;9829:30;9895:33;9875:18;;;9868:61;9946:18;;74046:68:0;9615:355:1;74046:68:0;74129:8;;;;74125:71;;74170:14;74163:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73773:553;;;:::o;74125:71::-;74206:18;74227:9;:7;:9::i;:::-;74206:30;;74278:4;74289:18;:7;:16;:18::i;:::-;74261:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74247:71;;;73773:553;;;:::o;78782:234::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;78860:21;;::::1;::::0;:13:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;78897:9;78892:117;78916:13;:20:::0;78912:24;::::1;78892:117;;;78958:39;78980:13;78994:1;78980:16;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;78980:16:0::1;78958:21;:39::i;:::-;-1:-1:-1::0;78938:3:0;::::1;::::0;::::1;:::i;:::-;;;;78892:117;;78084:690:::0;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;78150:13:::1;::::0;:18;78142:60:::1;;;::::0;-1:-1:-1;;;78142:60:0;;15803:2:1;78142:60:0::1;::::0;::::1;15785:21:1::0;15842:2;15822:18;;;15815:30;15881:31;15861:18;;;15854:59;15930:18;;78142:60:0::1;15601:353:1::0;78142:60:0::1;78221:18;::::0;78213:68:::1;;;::::0;-1:-1:-1;;;78213:68:0;;21497:2:1;78213:68:0::1;::::0;::::1;21479:21:1::0;;;21516:18;;;21509:30;21575:34;21555:18;;;21548:62;21627:18;;78213:68:0::1;21295:356:1::0;78213:68:0::1;78351:12;::::0;78328:18:::1;::::0;78310:53:::1;::::0;78351:12;78318:29:::1;78310:53;:::i;:::-;78294:13;:69:::0;78515:18:::1;::::0;78537:3:::1;::::0;78500:33:::1;::::0;:12:::1;:33;:::i;:::-;78499:41;78495:141;;;78612:12;::::0;78591:16:::1;78606:1;78591:12;:16;:::i;:::-;78573:51;::::0;;78581:27:::1;78573:51;:::i;:::-;78557:13;:67:::0;78495:141:::1;78687:13;::::0;78683:84:::1;;78738:13;::::0;:17:::1;::::0;78754:1:::1;78738:17;:::i;:::-;78722:13;:33:::0;78683:84:::1;78084:690::o:0;73544:126::-;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;73630:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;69720:281::-:0;68839:6;;-1:-1:-1;;;;;68839:6:0;735:10;68986:23;68978:68;;;;-1:-1:-1;;;68978:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;69823:22:0;::::1;69801:110;;;::::0;-1:-1:-1;;;69801:110:0;;10596:2:1;69801:110:0::1;::::0;::::1;10578:21:1::0;10635:2;10615:18;;;10608:30;10674:34;10654:18;;;10647:62;-1:-1:-1;;;10725:18:1;;;10718:36;10771:19;;69801:110:0::1;10394:402:1::0;69801:110:0::1;69948:6;::::0;69927:38:::1;::::0;-1:-1:-1;;;;;69927:38:0;;::::1;::::0;69948:6:::1;::::0;69927:38:::1;::::0;69948:6:::1;::::0;69927:38:::1;69976:6;:17:::0;;-1:-1:-1;;;;;;69976:17:0::1;-1:-1:-1::0;;;;;69976:17:0;;;::::1;::::0;;;::::1;::::0;;69720:281::o;70685:34::-;;;;;;;:::i;60300:127::-;60365:4;60389:30;:12;60411:7;60389:21;:30::i;66732:201::-;66807:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;66807:29:0;-1:-1:-1;;;;;66807:29:0;;;;;;;;:24;;66861:23;66807:24;66861:14;:23::i;:::-;-1:-1:-1;;;;;66852:46:0;;;;;;;;;;;66732:201;;:::o;46052:155::-;46148:7;46180:19;46188:3;42426:19;;42343:110;60594:459;60723:4;60767:16;60775:7;60767;:16::i;:::-;60745:110;;;;-1:-1:-1;;;60745:110:0;;15030:2:1;60745:110:0;;;15012:21:1;15069:2;15049:18;;;15042:30;15108:34;15088:18;;;15081:62;-1:-1:-1;;;15159:18:1;;;15152:42;15211:19;;60745:110:0;14828:408:1;60745:110:0;60866:13;60882:23;60897:7;60882:14;:23::i;:::-;60866:39;;60935:5;-1:-1:-1;;;;;60924:16:0;:7;-1:-1:-1;;;;;60924:16:0;;:64;;;;60981:7;-1:-1:-1;;;;;60957:31:0;:20;60969:7;60957:11;:20::i;:::-;-1:-1:-1;;;;;60957:31:0;;60924:64;:120;;;-1:-1:-1;;;;;;57575:25:0;;;57546:4;57575:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;61005:39;60916:129;60594:459;-1:-1:-1;;;;60594:459:0:o;63914:679::-;64087:4;-1:-1:-1;;;;;64060:31:0;:23;64075:7;64060:14;:23::i;:::-;-1:-1:-1;;;;;64060:31:0;;64038:122;;;;-1:-1:-1;;;64038:122:0;;19226:2:1;64038:122:0;;;19208:21:1;19265:2;19245:18;;;19238:30;19304:34;19284:18;;;19277:62;-1:-1:-1;;;19355:18:1;;;19348:39;19404:19;;64038:122:0;19024:405:1;64038:122:0;-1:-1:-1;;;;;64206:16:0;;64198:65;;;;-1:-1:-1;;;64198:65:0;;12472:2:1;64198:65:0;;;12454:21:1;12511:2;12491:18;;;12484:30;12550:34;12530:18;;;12523:62;-1:-1:-1;;;12601:18:1;;;12594:34;12645:19;;64198:65:0;12270:400:1;64198:65:0;64380:29;64397:1;64401:7;64380:8;:29::i;:::-;-1:-1:-1;;;;;64422:19:0;;;;;;:13;:19;;;;;:35;;64449:7;64422:26;:35::i;:::-;-1:-1:-1;;;;;;64468:17:0;;;;;;:13;:17;;;;;:30;;64490:7;64468:21;:30::i;:::-;-1:-1:-1;64511:29:0;:12;64528:7;64537:2;64511:16;:29::i;:::-;;64577:7;64573:2;-1:-1:-1;;;;;64558:27:0;64567:4;-1:-1:-1;;;;;64558:27:0;;;;;;;;;;;63914:679;;;:::o;37462:169::-;37560:7;37600:22;37604:3;37616:5;37600:3;:22::i;46555:268::-;46662:7;;;;46727:22;46731:3;46743:5;46727:3;:22::i;:::-;46696:53;;;;-1:-1:-1;46555:268:0;-1:-1:-1;;;;;46555:268:0:o;65254:100::-;65327:19;;;;:8;;:19;;;;;:::i;47937:292::-;48078:7;48160:44;48165:3;48185;48191:12;48160:4;:44::i;:::-;48152:53;-1:-1:-1;47937:292:0;;;;;;:::o;61396:110::-;61472:26;61482:2;61486:7;61472:26;;;;;;;;;;;;:9;:26::i;14028:179::-;14086:7;;14118:5;14122:1;14118;:5;:::i;:::-;14106:17;;14147:1;14142;:6;;14134:46;;;;-1:-1:-1;;;14134:46:0;;11714:2:1;14134:46:0;;;11696:21:1;11753:2;11733:18;;;11726:30;11792:29;11772:18;;;11765:57;11839:18;;14134:46:0;11512:351:1;59635:352:0;59792:28;59802:4;59808:2;59812:7;59792:9;:28::i;:::-;59853:48;59876:4;59882:2;59886:7;59895:5;59853:22;:48::i;:::-;59831:148;;;;-1:-1:-1;;;59831:148:0;;;;;;;:::i;48441:723::-;48497:13;48718:10;48714:53;;-1:-1:-1;;48745:10:0;;;;;;;;;;;;-1:-1:-1;;;48745:10:0;;;;;48441:723::o;48714:53::-;48792:5;48777:12;48833:78;48840:9;;48833:78;;48866:8;;;;:::i;:::-;;-1:-1:-1;48889:10:0;;-1:-1:-1;48897:2:0;48889:10;;:::i;:::-;;;48833:78;;;48921:19;48953:6;48943:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48943:17:0;;48921:39;;48971:154;48978:10;;48971:154;;49005:11;49015:1;49005:11;;:::i;:::-;;-1:-1:-1;49074:10:0;49082:2;49074:5;:10;:::i;:::-;49061:24;;:2;:24;:::i;:::-;49048:39;;49031:6;49038;49031:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;49031:56:0;;;;;;;;-1:-1:-1;49102:11:0;49111:2;49102:11;;:::i;:::-;;;48971:154;;45781:183;45892:4;42218:17;;;:12;;;:17;;;;;;:22;;45921:35;42091:157;36484:160;36572:4;36601:35;36609:3;36629:5;36601:7;:35::i;36177:131::-;36244:4;36268:32;36273:3;36293:5;36268:4;:32::i;45147:219::-;45270:4;45294:64;45299:3;45319;-1:-1:-1;;;;;45333:23:0;;45294:4;:64::i;32128:273::-;32269:18;;32222:7;;32269:26;-1:-1:-1;32247:110:0;;;;-1:-1:-1;;;32247:110:0;;9414:2:1;32247:110:0;;;9396:21:1;9453:2;9433:18;;;9426:30;9492:34;9472:18;;;9465:62;-1:-1:-1;;;9543:18:1;;;9536:32;9585:19;;32247:110:0;9212:398:1;32247:110:0;32375:3;:11;;32387:5;32375:18;;;;;;;;:::i;:::-;;;;;;;;;32368:25;;32128:273;;;;:::o;42818:348::-;42968:19;;42912:7;;;;42968:27;-1:-1:-1;42946:111:0;;;;-1:-1:-1;;;42946:111:0;;17688:2:1;42946:111:0;;;17670:21:1;17727:2;17707:18;;;17700:30;17766:34;17746:18;;;17739:62;-1:-1:-1;;;17817:18:1;;;17810:32;17859:19;;42946:111:0;17486:398:1;42946:111:0;43070:22;43095:3;:12;;43108:5;43095:19;;;;;;;;:::i;:::-;;;;;;;;;;;43070:44;;43133:5;:10;;;43145:5;:12;;;43125:33;;;;;42818:348;;;;;:::o;44452:371::-;44580:7;44619:17;;;:12;;;:17;;;;;;44670:12;44655:13;44647:36;;;;-1:-1:-1;;;44647:36:0;;;;;;;;:::i;:::-;-1:-1:-1;44746:3:0;44759:12;44770:1;44759:8;:12;:::i;:::-;44746:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;44739:40;;;44452:371;;;;;:::o;61733:321::-;61863:18;61869:2;61873:7;61863:5;:18::i;:::-;61914:54;61945:1;61949:2;61953:7;61962:5;61914:22;:54::i;:::-;61892:154;;;;-1:-1:-1;;;61892:154:0;;;;;;;:::i;65919:694::-;66074:4;-1:-1:-1;;;;;66096:13:0;;19912:20;66091:60;;-1:-1:-1;66135:4:0;66128:11;;66091:60;66161:23;66187:313;-1:-1:-1;;;735:10:0;66353:4;66376:7;66402:5;66217:205;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;66217:205:0;;;;;;;-1:-1:-1;;;;;66217:205:0;;;;;;;;;;;66187:313;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;66187:15:0;;;:313;:15;:313::i;:::-;66161:339;;66511:13;66538:10;66527:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;66578:26:0;-1:-1:-1;;;66578:26:0;;-1:-1:-1;;;65919:694:0;;;;;;:::o;29762:1570::-;29828:4;29967:19;;;:12;;;:19;;;;;;30003:15;;29999:1326;;30378:21;30402:14;30415:1;30402:10;:14;:::i;:::-;30451:18;;30378:38;;-1:-1:-1;30431:17:0;;30451:22;;30472:1;;30451:22;:::i;:::-;30431:42;;30718:17;30738:3;:11;;30750:9;30738:22;;;;;;;;:::i;:::-;;;;;;;;;30718:42;;30884:9;30855:3;:11;;30867:13;30855:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;30987:17;:13;31003:1;30987:17;:::i;:::-;30961:23;;;;:12;;;:23;;;;;:43;31126:17;;30961:3;;31126:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;31221:3;:12;;:19;31234:5;31221:19;;;;;;;;;;;31214:26;;;31264:4;31257:11;;;;;;;;29999:1326;31308:5;31301:12;;;;;29172:414;29235:4;42218:17;;;:12;;;:17;;;;;;29252:327;;-1:-1:-1;29295:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;29478:18;;29456:19;;;:12;;;:19;;;;;;:40;;;;29511:11;;29252:327;-1:-1:-1;29562:5:0;29555:12;;39520:737;39630:4;39765:17;;;:12;;;:17;;;;;;39799:13;39795:455;;-1:-1:-1;;39897:36:0;;;;;;;;;;;;;;;;;;39879:55;;;;;;;;:12;:55;;;;;;;;;;;;;;;;;;;;;;;;40092:19;;40072:17;;;:12;;;:17;;;;;;;:39;40126:11;;39795:455;40206:5;40170:3;40183:12;40194:1;40183:8;:12;:::i;:::-;40170:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;:41;;;;40233:5;40226:12;;;;;62390:404;-1:-1:-1;;;;;62470:16:0;;62462:61;;;;-1:-1:-1;;;62462:61:0;;18091:2:1;62462:61:0;;;18073:21:1;;;18110:18;;;18103:30;18169:34;18149:18;;;18142:62;18221:18;;62462:61:0;17889:356:1;62462:61:0;62543:16;62551:7;62543;:16::i;:::-;62542:17;62534:58;;;;-1:-1:-1;;;62534:58:0;;11003:2:1;62534:58:0;;;10985:21:1;11042:2;11022:18;;;11015:30;11081;11061:18;;;11054:58;11129:18;;62534:58:0;10801:352:1;62534:58:0;-1:-1:-1;;;;;62663:17:0;;;;;;:13;:17;;;;;:30;;62685:7;62663:21;:30::i;:::-;-1:-1:-1;62706:29:0;:12;62723:7;62732:2;62706:16;:29::i;:::-;-1:-1:-1;62753:33:0;;62778:7;;-1:-1:-1;;;;;62753:33:0;;;62770:1;;62753:33;;62770:1;;62753:33;62390:404;;:::o;22569:229::-;22706:12;22738:52;22760:6;22768:4;22774:1;22777:12;22706;19912:20;;24109:60;;;;-1:-1:-1;;;24109:60:0;;22276:2:1;24109:60:0;;;22258:21:1;22315:2;22295:18;;;22288:30;22354:31;22334:18;;;22327:59;22403:18;;24109:60:0;22074:353:1;24109:60:0;24243:12;24257:23;24284:6;-1:-1:-1;;;;;24284:11:0;24303:5;24324:4;24284:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24242:97;;;;24357:52;24375:7;24384:10;24396:12;24357:17;:52::i;:::-;24350:59;23785:632;-1:-1:-1;;;;;;;23785:632:0:o;26708:777::-;26858:12;26887:7;26883:595;;;-1:-1:-1;26918:10:0;26911:17;;26883:595;27032:17;;:21;27028:439;;27295:10;27289:17;27356:15;27343:10;27339:2;27335:19;27328:44;27028:439;27438:12;27431:20;;-1:-1:-1;;;27431:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:247::-;484:6;537:2;525:9;516:7;512:23;508:32;505:52;;;553:1;550;543:12;505:52;592:9;579:23;611:31;636:5;611:31;:::i;677:388::-;745:6;753;806:2;794:9;785:7;781:23;777:32;774:52;;;822:1;819;812:12;774:52;861:9;848:23;880:31;905:5;880:31;:::i;:::-;930:5;-1:-1:-1;987:2:1;972:18;;959:32;1000:33;959:32;1000:33;:::i;:::-;1052:7;1042:17;;;677:388;;;;;:::o;1070:456::-;1147:6;1155;1163;1216:2;1204:9;1195:7;1191:23;1187:32;1184:52;;;1232:1;1229;1222:12;1184:52;1271:9;1258:23;1290:31;1315:5;1290:31;:::i;:::-;1340:5;-1:-1:-1;1397:2:1;1382:18;;1369:32;1410:33;1369:32;1410:33;:::i;:::-;1070:456;;1462:7;;-1:-1:-1;;;1516:2:1;1501:18;;;;1488:32;;1070:456::o;1531:794::-;1626:6;1634;1642;1650;1703:3;1691:9;1682:7;1678:23;1674:33;1671:53;;;1720:1;1717;1710:12;1671:53;1759:9;1746:23;1778:31;1803:5;1778:31;:::i;:::-;1828:5;-1:-1:-1;1885:2:1;1870:18;;1857:32;1898:33;1857:32;1898:33;:::i;:::-;1950:7;-1:-1:-1;2004:2:1;1989:18;;1976:32;;-1:-1:-1;2059:2:1;2044:18;;2031:32;2086:18;2075:30;;2072:50;;;2118:1;2115;2108:12;2072:50;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:55:1;;2223:1;2220;2213:12;2172:55;2246:73;2311:7;2306:2;2293:16;2288:2;2284;2280:11;2246:73;:::i;:::-;2236:83;;;1531:794;;;;;;;:::o;2330:416::-;2395:6;2403;2456:2;2444:9;2435:7;2431:23;2427:32;2424:52;;;2472:1;2469;2462:12;2424:52;2511:9;2498:23;2530:31;2555:5;2530:31;:::i;:::-;2580:5;-1:-1:-1;2637:2:1;2622:18;;2609:32;2679:15;;2672:23;2660:36;;2650:64;;2710:1;2707;2700:12;2751:315;2819:6;2827;2880:2;2868:9;2859:7;2855:23;2851:32;2848:52;;;2896:1;2893;2886:12;2848:52;2935:9;2922:23;2954:31;2979:5;2954:31;:::i;:::-;3004:5;3056:2;3041:18;;;;3028:32;;-1:-1:-1;;;2751:315:1:o;3071:1032::-;3155:6;3186:2;3229;3217:9;3208:7;3204:23;3200:32;3197:52;;;3245:1;3242;3235:12;3197:52;3285:9;3272:23;3314:18;3355:2;3347:6;3344:14;3341:34;;;3371:1;3368;3361:12;3341:34;3409:6;3398:9;3394:22;3384:32;;3454:7;3447:4;3443:2;3439:13;3435:27;3425:55;;3476:1;3473;3466:12;3425:55;3512:2;3499:16;3534:2;3530;3527:10;3524:36;;;3540:18;;:::i;:::-;3586:2;3583:1;3579:10;3569:20;;3609:28;3633:2;3629;3625:11;3609:28;:::i;:::-;3671:15;;;3702:12;;;;3734:11;;;3764;;;3760:20;;3757:33;-1:-1:-1;3754:53:1;;;3803:1;3800;3793:12;3754:53;3825:1;3816:10;;3835:238;3849:2;3846:1;3843:9;3835:238;;;3920:3;3907:17;3894:30;;3937:31;3962:5;3937:31;:::i;:::-;3981:18;;;3867:1;3860:9;;;;;4019:12;;;;4051;;3835:238;;;-1:-1:-1;4092:5:1;3071:1032;-1:-1:-1;;;;;;;;3071:1032:1:o;4108:245::-;4166:6;4219:2;4207:9;4198:7;4194:23;4190:32;4187:52;;;4235:1;4232;4225:12;4187:52;4274:9;4261:23;4293:30;4317:5;4293:30;:::i;4358:249::-;4427:6;4480:2;4468:9;4459:7;4455:23;4451:32;4448:52;;;4496:1;4493;4486:12;4448:52;4528:9;4522:16;4547:30;4571:5;4547:30;:::i;4612:450::-;4681:6;4734:2;4722:9;4713:7;4709:23;4705:32;4702:52;;;4750:1;4747;4740:12;4702:52;4790:9;4777:23;4823:18;4815:6;4812:30;4809:50;;;4855:1;4852;4845:12;4809:50;4878:22;;4931:4;4923:13;;4919:27;-1:-1:-1;4909:55:1;;4960:1;4957;4950:12;4909:55;4983:73;5048:7;5043:2;5030:16;5025:2;5021;5017:11;4983:73;:::i;5067:180::-;5126:6;5179:2;5167:9;5158:7;5154:23;5150:32;5147:52;;;5195:1;5192;5185:12;5147:52;-1:-1:-1;5218:23:1;;5067:180;-1:-1:-1;5067:180:1:o;5252:323::-;5328:6;5336;5389:2;5377:9;5368:7;5364:23;5360:32;5357:52;;;5405:1;5402;5395:12;5357:52;5441:9;5428:23;5418:33;;5501:2;5490:9;5486:18;5473:32;5514:31;5539:5;5514:31;:::i;5580:257::-;5621:3;5659:5;5653:12;5686:6;5681:3;5674:19;5702:63;5758:6;5751:4;5746:3;5742:14;5735:4;5728:5;5724:16;5702:63;:::i;:::-;5819:2;5798:15;-1:-1:-1;;5794:29:1;5785:39;;;;5826:4;5781:50;;5580:257;-1:-1:-1;;5580:257:1:o;5842:274::-;5971:3;6009:6;6003:13;6025:53;6071:6;6066:3;6059:4;6051:6;6047:17;6025:53;:::i;:::-;6094:16;;;;;5842:274;-1:-1:-1;;5842:274:1:o;6121:772::-;6502:3;6540:6;6534:13;6556:53;6602:6;6597:3;6590:4;6582:6;6578:17;6556:53;:::i;:::-;-1:-1:-1;;;6631:16:1;;;6656:18;;;6699:13;;6721:65;6699:13;6773:1;6762:13;;6755:4;6743:17;;6721:65;:::i;:::-;-1:-1:-1;;;6849:1:1;6805:20;;;;6841:10;;;6834:27;6885:1;6877:10;;6121:772;-1:-1:-1;;;;6121:772:1:o;7316:488::-;-1:-1:-1;;;;;7585:15:1;;;7567:34;;7637:15;;7632:2;7617:18;;7610:43;7684:2;7669:18;;7662:34;;;7732:3;7727:2;7712:18;;7705:31;;;7510:4;;7753:45;;7778:19;;7770:6;7753:45;:::i;:::-;7745:53;7316:488;-1:-1:-1;;;;;;7316:488:1:o;8159:632::-;8330:2;8382:21;;;8452:13;;8355:18;;;8474:22;;;8301:4;;8330:2;8553:15;;;;8527:2;8512:18;;;8301:4;8596:169;8610:6;8607:1;8604:13;8596:169;;;8671:13;;8659:26;;8740:15;;;;8705:12;;;;8632:1;8625:9;8596:169;;;-1:-1:-1;8782:3:1;;8159:632;-1:-1:-1;;;;;;8159:632:1:o;8988:219::-;9137:2;9126:9;9119:21;9100:4;9157:44;9197:2;9186:9;9182:18;9174:6;9157:44;:::i;9975:414::-;10177:2;10159:21;;;10216:2;10196:18;;;10189:30;10255:34;10250:2;10235:18;;10228:62;-1:-1:-1;;;10321:2:1;10306:18;;10299:48;10379:3;10364:19;;9975:414::o;18663:356::-;18865:2;18847:21;;;18884:18;;;18877:30;18943:34;18938:2;18923:18;;18916:62;19010:2;18995:18;;18663:356::o;21656:413::-;21858:2;21840:21;;;21897:2;21877:18;;;21870:30;21936:34;21931:2;21916:18;;21909:62;-1:-1:-1;;;22002:2:1;21987:18;;21980:47;22059:3;22044:19;;21656:413::o;24001:275::-;24072:2;24066:9;24137:2;24118:13;;-1:-1:-1;;24114:27:1;24102:40;;24172:18;24157:34;;24193:22;;;24154:62;24151:88;;;24219:18;;:::i;:::-;24255:2;24248:22;24001:275;;-1:-1:-1;24001:275:1:o;24281:128::-;24321:3;24352:1;24348:6;24345:1;24342:13;24339:39;;;24358:18;;:::i;:::-;-1:-1:-1;24394:9:1;;24281:128::o;24414:120::-;24454:1;24480;24470:35;;24485:18;;:::i;:::-;-1:-1:-1;24519:9:1;;24414:120::o;24539:168::-;24579:7;24645:1;24641;24637:6;24633:14;24630:1;24627:21;24622:1;24615:9;24608:17;24604:45;24601:71;;;24652:18;;:::i;:::-;-1:-1:-1;24692:9:1;;24539:168::o;24712:125::-;24752:4;24780:1;24777;24774:8;24771:34;;;24785:18;;:::i;:::-;-1:-1:-1;24822:9:1;;24712:125::o;24842:258::-;24914:1;24924:113;24938:6;24935:1;24932:13;24924:113;;;25014:11;;;25008:18;24995:11;;;24988:39;24960:2;24953:10;24924:113;;;25055:6;25052:1;25049:13;25046:48;;;-1:-1:-1;;25090:1:1;25072:16;;25065:27;24842:258::o;25105:380::-;25184:1;25180:12;;;;25227;;;25248:61;;25302:4;25294:6;25290:17;25280:27;;25248:61;25355:2;25347:6;25344:14;25324:18;25321:38;25318:161;;;25401:10;25396:3;25392:20;25389:1;25382:31;25436:4;25433:1;25426:15;25464:4;25461:1;25454:15;25490:135;25529:3;-1:-1:-1;;25550:17:1;;25547:43;;;25570:18;;:::i;:::-;-1:-1:-1;25617:1:1;25606:13;;25490:135::o;25630:112::-;25662:1;25688;25678:35;;25693:18;;:::i;:::-;-1:-1:-1;25727:9:1;;25630:112::o;25747:127::-;25808:10;25803:3;25799:20;25796:1;25789:31;25839:4;25836:1;25829:15;25863:4;25860:1;25853:15;25879:127;25940:10;25935:3;25931:20;25928:1;25921:31;25971:4;25968:1;25961:15;25995:4;25992:1;25985:15;26011:127;26072:10;26067:3;26063:20;26060:1;26053:31;26103:4;26100:1;26093:15;26127:4;26124:1;26117:15;26143:127;26204:10;26199:3;26195:20;26192:1;26185:31;26235:4;26232:1;26225:15;26259:4;26256:1;26249:15;26275:127;26336:10;26331:3;26327:20;26324:1;26317:31;26367:4;26364:1;26357:15;26391:4;26388:1;26381:15;26407:131;-1:-1:-1;;;;;26482:31:1;;26472:42;;26462:70;;26528:1;26525;26518:12;26543:131;-1:-1:-1;;;;;;26617:32:1;;26607:43;;26597:71;;26664:1;26661;26654:12
Swarm Source
ipfs://2e1b6a54d264e0866c310a1703464ccf82ae115e720ec17f590744f3349a0448
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.