Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 7 from a total of 7 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw All | 15717651 | 1268 days ago | IN | 0 ETH | 0.00122523 | ||||
| Set Withdraw Add... | 15717635 | 1268 days ago | IN | 0 ETH | 0.00101664 | ||||
| First Mint | 15270564 | 1335 days ago | IN | 0.05 ETH | 0.00179012 | ||||
| First Mint | 15269620 | 1336 days ago | IN | 0.05 ETH | 0.00150719 | ||||
| Set Status | 15269261 | 1336 days ago | IN | 0 ETH | 0.00030641 | ||||
| Set Withdraw Add... | 15269159 | 1336 days ago | IN | 0 ETH | 0.00037048 | ||||
| Set Allow List | 15269030 | 1336 days ago | IN | 0 ETH | 0.00293351 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 15717651 | 1268 days ago | 0.1 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
LuckyTrip
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-08-03
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
_requireMinted(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token owner nor approved");
_safeTransfer(from, to, tokenId, data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// File: contracts/LuckyTrip.sol
pragma solidity ^0.8.4;
contract LuckyTrip is Ownable, ERC721Enumerable {
//whistlist
mapping(address => bool) private _allowList;
//withdraw address
address withdrawAddress;
//sale info
uint256 constant MAX_SUPPLY = 5555;
uint256 constant firstCount = 100;
uint256 preCount;
uint256 constant firstPrice = 0.05 ether;
uint256 constant prePrice = 0.06 ether;
uint256 constant pubPrice = 0.07 ether;
bool firstStatus = false;
bool preStatus = false;
bool pubStatus = false;
bool public revealed = false;
//ipfs url
string baseURI;
string notRevealedUri;
//only user
modifier callerIsUser() {
require(tx.origin == msg.sender, "The caller is another contract");
_;
}
constructor(
string memory initNotRevealedUri,
string memory name_,
string memory symbol_
) ERC721(name_, symbol_) {
setNotRevealedURI(initNotRevealedUri);
}
function firstMint(uint256 _quantity) external payable callerIsUser {
uint256 tokenId = totalSupply();
require(firstStatus, "First Sale Closed");
require(_allowList[msg.sender], "Your address is not allowed.");
require(firstPrice * _quantity <= msg.value, "Ether value sent is not correct");
require(
tokenId >= 0 && tokenId < firstCount,
"First Sale have been sold out!"
);
require(
tokenId + _quantity <= firstCount,
"Exceeds maximum first Sale's Supply."
);
for (uint256 i = 0; i < _quantity; i++) {
_safeMint(msg.sender, tokenId + i);
}
}
function preMint(uint256 _quantity) external payable callerIsUser {
uint256 tokenId = totalSupply();
require(preStatus && preCount > 0, "PreSale Closed");
require(_allowList[msg.sender], "Your address is not allowed.");
require(prePrice * _quantity <= msg.value, "Ether value sent is not correct");
require(
tokenId >= 0 && tokenId < firstCount + preCount,
"PreSale have been sold out!"
);
require(
tokenId + _quantity <= firstCount + preCount,
"Exceeds maximum PreSale's Supply."
);
for (uint256 i = 0; i < _quantity; i++) {
_safeMint(msg.sender, tokenId + i);
}
}
function pubMint(uint256 _quantity) external payable callerIsUser {
uint256 tokenId = totalSupply();
require(pubStatus, "PubSale Closed");
require(pubPrice * _quantity <= msg.value, "Ether value sent is not correct");
require(
tokenId >= 0 && tokenId < MAX_SUPPLY,
"NFTs have been sold out!"
);
require(
tokenId + _quantity <= MAX_SUPPLY,
"Exceeds maximum Max Supply."
);
for (uint256 i = 0; i < _quantity; i++) {
_safeMint(msg.sender, tokenId + i);
}
}
//set whistlist
function setAllowList(address[] calldata addresses) public onlyOwner {
for (uint256 i = 0; i < addresses.length; i++) {
_allowList[addresses[i]] = true;
}
}
//set withdrawAddress
function setWithdrawAddress(address _withdrawAddress) public onlyOwner{
withdrawAddress = _withdrawAddress;
}
//set unpack url
function setNotRevealedURI(string memory _notRevealedURI) internal onlyOwner {
notRevealedUri = _notRevealedURI;
}
//set token url
function setBaseURI(string memory _newBaseURI) public onlyOwner {
baseURI = _newBaseURI;
}
//set sale status
function setStatus(uint8 _num) public onlyOwner {
if (_num == 1 && !firstStatus && !preStatus && !pubStatus) {
firstStatus = true;
} else if (_num == 2 && firstStatus && !preStatus && !pubStatus) {
preStatus = true;
firstStatus=false;
} else if (_num == 3 && !firstStatus && preStatus && !pubStatus) {
pubStatus = true;
preStatus=false;
}
}
//set count
function setPreCount(uint256 count) public onlyOwner {
require(preCount == 0, "preCount have been set.");
preCount = count;
}
//set reveal
function setReveal() public onlyOwner {
require(bytes(baseURI).length > 0,'baseURI is not seted.');
revealed = !revealed;
}
//get info
function getStatus()
public
view
onlyOwner
returns (
bool _first,
bool _pre,
bool _pub
)
{
return (firstStatus, preStatus, pubStatus);
}
function getWithdrawAddress() public view onlyOwner returns(address){
return withdrawAddress;
}
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
if (revealed == false) {
return notRevealedUri;
}
string memory base = _baseURI();
return
bytes(base).length > 0
? string(abi.encodePacked(base, tokenId))
: "";
}
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
function withdrawAll() public onlyOwner payable{
require(withdrawAddress!=0x0000000000000000000000000000000000000000,'Address is not seted.');
uint256 toWei = address(this).balance;
payable(withdrawAddress).transfer(toWei);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"initNotRevealedUri","type":"string"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"firstMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStatus","outputs":[{"internalType":"bool","name":"_first","type":"bool"},{"internalType":"bool","name":"_pre","type":"bool"},{"internalType":"bool","name":"_pub","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWithdrawAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"pubMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"setPreCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_num","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_withdrawAddress","type":"address"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
60806040526000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff0219169083151502179055506000600e60036101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040516200506a3803806200506a8339818101604052810190620000a39190620003f3565b8181620000c5620000b96200011360201b60201c565b6200011b60201b60201c565b8160019080519060200190620000dd929190620002c5565b508060029080519060200190620000f6929190620002c5565b5050506200010a83620001df60201b60201c565b505050620006b3565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001ef6200020b60201b60201c565b806010908051906020019062000207929190620002c5565b5050565b6200021b6200011360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002416200029c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200029a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029190620004d3565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002d3906200059b565b90600052602060002090601f016020900481019282620002f7576000855562000343565b82601f106200031257805160ff191683800117855562000343565b8280016001018555821562000343579182015b828111156200034257825182559160200191906001019062000325565b5b50905062000352919062000356565b5090565b5b808211156200037157600081600090555060010162000357565b5090565b60006200038c62000386846200051e565b620004f5565b905082815260208101848484011115620003ab57620003aa6200066a565b5b620003b884828562000565565b509392505050565b600082601f830112620003d857620003d762000665565b5b8151620003ea84826020860162000375565b91505092915050565b6000806000606084860312156200040f576200040e62000674565b5b600084015167ffffffffffffffff81111562000430576200042f6200066f565b5b6200043e86828701620003c0565b935050602084015167ffffffffffffffff8111156200046257620004616200066f565b5b6200047086828701620003c0565b925050604084015167ffffffffffffffff8111156200049457620004936200066f565b5b620004a286828701620003c0565b9150509250925092565b6000620004bb60208362000554565b9150620004c8826200068a565b602082019050919050565b60006020820190508181036000830152620004ee81620004ac565b9050919050565b60006200050162000514565b90506200050f8282620005d1565b919050565b6000604051905090565b600067ffffffffffffffff8211156200053c576200053b62000636565b5b620005478262000679565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200058557808201518184015260208101905062000568565b8381111562000595576000848401525b50505050565b60006002820490506001821680620005b457607f821691505b60208210811415620005cb57620005ca62000607565b5b50919050565b620005dc8262000679565b810181811067ffffffffffffffff82111715620005fe57620005fd62000636565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6149a780620006c36000396000f3fe6080604052600436106101e35760003560e01c80636447c35d1161010257806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610680578063e8e7f800146106bd578063e985e9c5146106e8578063f2fde38b14610725576101e3565b806395d89b41146105e7578063a22cb46514610612578063b88d4fde1461063b578063c1d9df8d14610664576101e3565b806376645315116100d1578063766453151461057f578063853828b6146105965780638ad433ac146105a05780638da5cb5b146105bc576101e3565b80636447c35d146104e657806370a082311461050f578063715018a61461054c578063721a1db414610563576101e3565b806336758f1a1161017a5780634f6ccce7116101495780634f6ccce714610418578063518302271461045557806355f804b3146104805780636352211e146104a9576101e3565b806336758f1a146103705780633ab1a4941461039957806342842e0e146103c25780634e69d560146103eb576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632e49d78b1461030a5780632f745c5914610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906132b9565b61074e565b60405161021c9190613969565b60405180910390f35b34801561023157600080fd5b5061023a6107c8565b60405161024791906139bb565b60405180910390f35b34801561025c57600080fd5b506102776004803603810190610272919061335c565b61085a565b6040516102849190613902565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af919061322c565b6108a0565b005b3480156102c257600080fd5b506102cb6109b8565b6040516102d89190613dbd565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190613116565b6109c5565b005b34801561031657600080fd5b50610331600480360381019061032c9190613389565b610a25565b005b34801561033f57600080fd5b5061035a6004803603810190610355919061322c565b610bc7565b6040516103679190613dbd565b60405180910390f35b34801561037c57600080fd5b506103976004803603810190610392919061335c565b610c6c565b005b3480156103a557600080fd5b506103c060048036038101906103bb91906130a9565b610cc3565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190613116565b610d0f565b005b3480156103f757600080fd5b50610400610d2f565b60405161040f93929190613984565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a919061335c565b610d77565b60405161044c9190613dbd565b60405180910390f35b34801561046157600080fd5b5061046a610de8565b6040516104779190613969565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a29190613313565b610dfb565b005b3480156104b557600080fd5b506104d060048036038101906104cb919061335c565b610e1d565b6040516104dd9190613902565b60405180910390f35b3480156104f257600080fd5b5061050d6004803603810190610508919061326c565b610ecf565b005b34801561051b57600080fd5b50610536600480360381019061053191906130a9565b610f7c565b6040516105439190613dbd565b60405180910390f35b34801561055857600080fd5b50610561611034565b005b61057d6004803603810190610578919061335c565b611048565b005b34801561058b57600080fd5b506105946112c9565b005b61059e61134e565b005b6105ba60048036038101906105b5919061335c565b611459565b005b3480156105c857600080fd5b506105d1611702565b6040516105de9190613902565b60405180910390f35b3480156105f357600080fd5b506105fc61172b565b60405161060991906139bb565b60405180910390f35b34801561061e57600080fd5b50610639600480360381019061063491906131ec565b6117bd565b005b34801561064757600080fd5b50610662600480360381019061065d9190613169565b6117d3565b005b61067e6004803603810190610679919061335c565b611835565b005b34801561068c57600080fd5b506106a760048036038101906106a2919061335c565b611a2c565b6040516106b491906139bb565b60405180910390f35b3480156106c957600080fd5b506106d2611b7a565b6040516106df9190613902565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906130d6565b611bac565b60405161071c9190613969565b60405180910390f35b34801561073157600080fd5b5061074c600480360381019061074791906130a9565b611c40565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c157506107c082611cc4565b5b9050919050565b6060600180546107d790614049565b80601f016020809104026020016040519081016040528092919081815260200182805461080390614049565b80156108505780601f1061082557610100808354040283529160200191610850565b820191906000526020600020905b81548152906001019060200180831161083357829003601f168201915b5050505050905090565b600061086582611da6565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ab82610e1d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091390613cfd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661093b611df1565b73ffffffffffffffffffffffffffffffffffffffff16148061096a575061096981610964611df1565b611bac565b5b6109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090613bfd565b60405180910390fd5b6109b38383611df9565b505050565b6000600980549050905090565b6109d66109d0611df1565b82611eb2565b610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90613d9d565b60405180910390fd5b610a20838383611f47565b505050565b610a2d6121ae565b60018160ff16148015610a4d5750600e60009054906101000a900460ff16155b8015610a665750600e60019054906101000a900460ff16155b8015610a7f5750600e60029054906101000a900460ff16155b15610aa4576001600e60006101000a81548160ff021916908315150217905550610bc4565b60028160ff16148015610ac35750600e60009054906101000a900460ff165b8015610adc5750600e60019054906101000a900460ff16155b8015610af55750600e60029054906101000a900460ff16155b15610b35576001600e60016101000a81548160ff0219169083151502179055506000600e60006101000a81548160ff021916908315150217905550610bc3565b60038160ff16148015610b555750600e60009054906101000a900460ff16155b8015610b6d5750600e60019054906101000a900460ff165b8015610b865750600e60029054906101000a900460ff16155b15610bc2576001600e60026101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055505b5b5b50565b6000610bd283610f7c565b8210610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a906139fd565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c746121ae565b6000600d5414610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090613c3d565b60405180910390fd5b80600d8190555050565b610ccb6121ae565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d2a838383604051806020016040528060008152506117d3565b505050565b6000806000610d3c6121ae565b600e60009054906101000a900460ff16600e60019054906101000a900460ff16600e60029054906101000a900460ff16925092509250909192565b6000610d816109b8565b8210610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613d3d565b60405180910390fd5b60098281548110610dd657610dd561418c565b5b90600052602060002001549050919050565b600e60039054906101000a900460ff1681565b610e036121ae565b80600f9080519060200190610e19929190612e52565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd90613cdd565b60405180910390fd5b80915050919050565b610ed76121ae565b60005b82829050811015610f77576001600b6000858585818110610efe57610efd61418c565b5b9050602002016020810190610f1391906130a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610f6f906140ac565b915050610eda565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490613b7d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61103c6121ae565b611046600061222c565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90613b5d565b60405180910390fd5b60006110c06109b8565b9050600e60009054906101000a900460ff16611111576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110890613c9d565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661119d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611194906139dd565b60405180910390fd5b348266b1a2bc2ec500006111b19190613ef8565b11156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990613afd565b60405180910390fd5b600081101580156112035750606481105b611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990613d5d565b60405180910390fd5b606482826112509190613ea2565b1115611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890613b9d565b60405180910390fd5b60005b828110156112c4576112b13382846112ac9190613ea2565b6122f0565b80806112bc906140ac565b915050611294565b505050565b6112d16121ae565b6000600f80546112e090614049565b905011611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613bdd565b60405180910390fd5b600e60039054906101000a900460ff1615600e60036101000a81548160ff021916908315150217905550565b6113566121ae565b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df90613d7d565b60405180910390fd5b6000479050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611455573d6000803e3d6000fd5b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613b5d565b60405180910390fd5b60006114d16109b8565b9050600e60019054906101000a900460ff1680156114f157506000600d54115b611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790613d1d565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b3906139dd565b60405180910390fd5b348266d529ae9e8600006115d09190613ef8565b1115611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890613afd565b60405180910390fd5b6000811015801561162f5750600d54606461162c9190613ea2565b81105b61166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590613c5d565b60405180910390fd5b600d54606461167d9190613ea2565b82826116899190613ea2565b11156116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190613bbd565b60405180910390fd5b60005b828110156116fd576116ea3382846116e59190613ea2565b6122f0565b80806116f5906140ac565b9150506116cd565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461173a90614049565b80601f016020809104026020016040519081016040528092919081815260200182805461176690614049565b80156117b35780601f10611788576101008083540402835291602001916117b3565b820191906000526020600020905b81548152906001019060200180831161179657829003601f168201915b5050505050905090565b6117cf6117c8611df1565b838361230e565b5050565b6117e46117de611df1565b83611eb2565b611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a90613d9d565b60405180910390fd5b61182f8484848461247b565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189a90613b5d565b60405180910390fd5b60006118ad6109b8565b9050600e60029054906101000a900460ff166118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613b1d565b60405180910390fd5b348266f8b0a10e4700006119129190613ef8565b1115611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194a90613afd565b60405180910390fd5b6000811015801561196557506115b381105b6119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199b90613b3d565b60405180910390fd5b6115b382826119b39190613ea2565b11156119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90613a9d565b60405180910390fd5b60005b82811015611a2757611a14338284611a0f9190613ea2565b6122f0565b8080611a1f906140ac565b9150506119f7565b505050565b6060611a37826124d7565b611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90613cbd565b60405180910390fd5b60001515600e60039054906101000a900460ff1615151415611b245760108054611a9f90614049565b80601f0160208091040260200160405190810160405280929190818152602001828054611acb90614049565b8015611b185780601f10611aed57610100808354040283529160200191611b18565b820191906000526020600020905b815481529060010190602001808311611afb57829003601f168201915b50505050509050611b75565b6000611b2e612543565b90506000815111611b4e5760405180602001604052806000815250611b71565b8083604051602001611b619291906138da565b6040516020818303038152906040525b9150505b919050565b6000611b846121ae565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c486121ae565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf90613a3d565b60405180910390fd5b611cc18161222c565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d8f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d9f5750611d9e826125d5565b5b9050919050565b611daf816124d7565b611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590613cdd565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e6c83610e1d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611ebe83610e1d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f005750611eff8185611bac565b5b80611f3e57508373ffffffffffffffffffffffffffffffffffffffff16611f268461085a565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f6782610e1d565b73ffffffffffffffffffffffffffffffffffffffff1614611fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb490613a5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561202d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202490613abd565b60405180910390fd5b61203883838361263f565b612043600082611df9565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120939190613f52565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120ea9190613ea2565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121a9838383612753565b505050565b6121b6611df1565b73ffffffffffffffffffffffffffffffffffffffff166121d4611702565b73ffffffffffffffffffffffffffffffffffffffff161461222a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222190613c7d565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61230a828260405180602001604052806000815250612758565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561237d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237490613add565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161246e9190613969565b60405180910390a3505050565b612486848484611f47565b612492848484846127b3565b6124d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c890613a1d565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600f805461255290614049565b80601f016020809104026020016040519081016040528092919081815260200182805461257e90614049565b80156125cb5780601f106125a0576101008083540402835291602001916125cb565b820191906000526020600020905b8154815290600101906020018083116125ae57829003601f168201915b5050505050905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61264a83838361294a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561268d576126888161294f565b6126cc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126cb576126ca8382612998565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561270f5761270a81612b05565b61274e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461274d5761274c8282612bd6565b5b5b505050565b505050565b6127628383612c55565b61276f60008484846127b3565b6127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a590613a1d565b60405180910390fd5b505050565b60006127d48473ffffffffffffffffffffffffffffffffffffffff16612e2f565b1561293d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127fd611df1565b8786866040518563ffffffff1660e01b815260040161281f949392919061391d565b602060405180830381600087803b15801561283957600080fd5b505af192505050801561286a57506040513d601f19601f8201168201806040525081019061286791906132e6565b60015b6128ed573d806000811461289a576040519150601f19603f3d011682016040523d82523d6000602084013e61289f565b606091505b506000815114156128e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dc90613a1d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612942565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129a584610f7c565b6129af9190613f52565b9050600060086000848152602001908152602001600020549050818114612a94576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612b199190613f52565b90506000600a6000848152602001908152602001600020549050600060098381548110612b4957612b4861418c565b5b906000526020600020015490508060098381548110612b6b57612b6a61418c565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612bba57612bb961415d565b5b6001900381819060005260206000200160009055905550505050565b6000612be183610f7c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbc90613c1d565b60405180910390fd5b612cce816124d7565b15612d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0590613a7d565b60405180910390fd5b612d1a6000838361263f565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d6a9190613ea2565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e2b60008383612753565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612e5e90614049565b90600052602060002090601f016020900481019282612e805760008555612ec7565b82601f10612e9957805160ff1916838001178555612ec7565b82800160010185558215612ec7579182015b82811115612ec6578251825591602001919060010190612eab565b5b509050612ed49190612ed8565b5090565b5b80821115612ef1576000816000905550600101612ed9565b5090565b6000612f08612f0384613dfd565b613dd8565b905082815260208101848484011115612f2457612f236141f9565b5b612f2f848285614007565b509392505050565b6000612f4a612f4584613e2e565b613dd8565b905082815260208101848484011115612f6657612f656141f9565b5b612f71848285614007565b509392505050565b600081359050612f88816148fe565b92915050565b60008083601f840112612fa457612fa36141ef565b5b8235905067ffffffffffffffff811115612fc157612fc06141ea565b5b602083019150836020820283011115612fdd57612fdc6141f4565b5b9250929050565b600081359050612ff381614915565b92915050565b6000813590506130088161492c565b92915050565b60008151905061301d8161492c565b92915050565b600082601f830112613038576130376141ef565b5b8135613048848260208601612ef5565b91505092915050565b600082601f830112613066576130656141ef565b5b8135613076848260208601612f37565b91505092915050565b60008135905061308e81614943565b92915050565b6000813590506130a38161495a565b92915050565b6000602082840312156130bf576130be614203565b5b60006130cd84828501612f79565b91505092915050565b600080604083850312156130ed576130ec614203565b5b60006130fb85828601612f79565b925050602061310c85828601612f79565b9150509250929050565b60008060006060848603121561312f5761312e614203565b5b600061313d86828701612f79565b935050602061314e86828701612f79565b925050604061315f8682870161307f565b9150509250925092565b6000806000806080858703121561318357613182614203565b5b600061319187828801612f79565b94505060206131a287828801612f79565b93505060406131b38782880161307f565b925050606085013567ffffffffffffffff8111156131d4576131d36141fe565b5b6131e087828801613023565b91505092959194509250565b6000806040838503121561320357613202614203565b5b600061321185828601612f79565b925050602061322285828601612fe4565b9150509250929050565b6000806040838503121561324357613242614203565b5b600061325185828601612f79565b92505060206132628582860161307f565b9150509250929050565b6000806020838503121561328357613282614203565b5b600083013567ffffffffffffffff8111156132a1576132a06141fe565b5b6132ad85828601612f8e565b92509250509250929050565b6000602082840312156132cf576132ce614203565b5b60006132dd84828501612ff9565b91505092915050565b6000602082840312156132fc576132fb614203565b5b600061330a8482850161300e565b91505092915050565b60006020828403121561332957613328614203565b5b600082013567ffffffffffffffff811115613347576133466141fe565b5b61335384828501613051565b91505092915050565b60006020828403121561337257613371614203565b5b60006133808482850161307f565b91505092915050565b60006020828403121561339f5761339e614203565b5b60006133ad84828501613094565b91505092915050565b6133bf81613f86565b82525050565b6133ce81613f98565b82525050565b60006133df82613e5f565b6133e98185613e75565b93506133f9818560208601614016565b61340281614208565b840191505092915050565b600061341882613e6a565b6134228185613e86565b9350613432818560208601614016565b61343b81614208565b840191505092915050565b600061345182613e6a565b61345b8185613e97565b935061346b818560208601614016565b80840191505092915050565b6000613484601c83613e86565b915061348f82614219565b602082019050919050565b60006134a7602b83613e86565b91506134b282614242565b604082019050919050565b60006134ca603283613e86565b91506134d582614291565b604082019050919050565b60006134ed602683613e86565b91506134f8826142e0565b604082019050919050565b6000613510602583613e86565b915061351b8261432f565b604082019050919050565b6000613533601c83613e86565b915061353e8261437e565b602082019050919050565b6000613556601b83613e86565b9150613561826143a7565b602082019050919050565b6000613579602483613e86565b9150613584826143d0565b604082019050919050565b600061359c601983613e86565b91506135a78261441f565b602082019050919050565b60006135bf601f83613e86565b91506135ca82614448565b602082019050919050565b60006135e2600e83613e86565b91506135ed82614471565b602082019050919050565b6000613605601883613e86565b91506136108261449a565b602082019050919050565b6000613628601e83613e86565b9150613633826144c3565b602082019050919050565b600061364b602983613e86565b9150613656826144ec565b604082019050919050565b600061366e602483613e86565b91506136798261453b565b604082019050919050565b6000613691602183613e86565b915061369c8261458a565b604082019050919050565b60006136b4601583613e86565b91506136bf826145d9565b602082019050919050565b60006136d7603e83613e86565b91506136e282614602565b604082019050919050565b60006136fa602083613e86565b915061370582614651565b602082019050919050565b600061371d601783613e86565b91506137288261467a565b602082019050919050565b6000613740601b83613e86565b915061374b826146a3565b602082019050919050565b6000613763602083613e86565b915061376e826146cc565b602082019050919050565b6000613786601183613e86565b9150613791826146f5565b602082019050919050565b60006137a9602f83613e86565b91506137b48261471e565b604082019050919050565b60006137cc601883613e86565b91506137d78261476d565b602082019050919050565b60006137ef602183613e86565b91506137fa82614796565b604082019050919050565b6000613812600e83613e86565b915061381d826147e5565b602082019050919050565b6000613835602c83613e86565b91506138408261480e565b604082019050919050565b6000613858601e83613e86565b91506138638261485d565b602082019050919050565b600061387b601583613e86565b915061388682614886565b602082019050919050565b600061389e602e83613e86565b91506138a9826148af565b604082019050919050565b6138bd81613ff0565b82525050565b6138d46138cf82613ff0565b6140f5565b82525050565b60006138e68285613446565b91506138f282846138c3565b6020820191508190509392505050565b600060208201905061391760008301846133b6565b92915050565b600060808201905061393260008301876133b6565b61393f60208301866133b6565b61394c60408301856138b4565b818103606083015261395e81846133d4565b905095945050505050565b600060208201905061397e60008301846133c5565b92915050565b600060608201905061399960008301866133c5565b6139a660208301856133c5565b6139b360408301846133c5565b949350505050565b600060208201905081810360008301526139d5818461340d565b905092915050565b600060208201905081810360008301526139f681613477565b9050919050565b60006020820190508181036000830152613a168161349a565b9050919050565b60006020820190508181036000830152613a36816134bd565b9050919050565b60006020820190508181036000830152613a56816134e0565b9050919050565b60006020820190508181036000830152613a7681613503565b9050919050565b60006020820190508181036000830152613a9681613526565b9050919050565b60006020820190508181036000830152613ab681613549565b9050919050565b60006020820190508181036000830152613ad68161356c565b9050919050565b60006020820190508181036000830152613af68161358f565b9050919050565b60006020820190508181036000830152613b16816135b2565b9050919050565b60006020820190508181036000830152613b36816135d5565b9050919050565b60006020820190508181036000830152613b56816135f8565b9050919050565b60006020820190508181036000830152613b768161361b565b9050919050565b60006020820190508181036000830152613b968161363e565b9050919050565b60006020820190508181036000830152613bb681613661565b9050919050565b60006020820190508181036000830152613bd681613684565b9050919050565b60006020820190508181036000830152613bf6816136a7565b9050919050565b60006020820190508181036000830152613c16816136ca565b9050919050565b60006020820190508181036000830152613c36816136ed565b9050919050565b60006020820190508181036000830152613c5681613710565b9050919050565b60006020820190508181036000830152613c7681613733565b9050919050565b60006020820190508181036000830152613c9681613756565b9050919050565b60006020820190508181036000830152613cb681613779565b9050919050565b60006020820190508181036000830152613cd68161379c565b9050919050565b60006020820190508181036000830152613cf6816137bf565b9050919050565b60006020820190508181036000830152613d16816137e2565b9050919050565b60006020820190508181036000830152613d3681613805565b9050919050565b60006020820190508181036000830152613d5681613828565b9050919050565b60006020820190508181036000830152613d768161384b565b9050919050565b60006020820190508181036000830152613d968161386e565b9050919050565b60006020820190508181036000830152613db681613891565b9050919050565b6000602082019050613dd260008301846138b4565b92915050565b6000613de2613df3565b9050613dee828261407b565b919050565b6000604051905090565b600067ffffffffffffffff821115613e1857613e176141bb565b5b613e2182614208565b9050602081019050919050565b600067ffffffffffffffff821115613e4957613e486141bb565b5b613e5282614208565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ead82613ff0565b9150613eb883613ff0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613eed57613eec6140ff565b5b828201905092915050565b6000613f0382613ff0565b9150613f0e83613ff0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f4757613f466140ff565b5b828202905092915050565b6000613f5d82613ff0565b9150613f6883613ff0565b925082821015613f7b57613f7a6140ff565b5b828203905092915050565b6000613f9182613fd0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614034578082015181840152602081019050614019565b83811115614043576000848401525b50505050565b6000600282049050600182168061406157607f821691505b602082108114156140755761407461412e565b5b50919050565b61408482614208565b810181811067ffffffffffffffff821117156140a3576140a26141bb565b5b80604052505050565b60006140b782613ff0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140ea576140e96140ff565b5b600182019050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f75722061646472657373206973206e6f7420616c6c6f7765642e00000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f45786365656473206d6178696d756d204d617820537570706c792e0000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f50756253616c6520436c6f736564000000000000000000000000000000000000600082015250565b7f4e4654732068617665206265656e20736f6c64206f7574210000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d2066697273742053616c6527732053757060008201527f706c792e00000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d2050726553616c65277320537570706c7960008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f62617365555249206973206e6f742073657465642e0000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f707265436f756e742068617665206265656e207365742e000000000000000000600082015250565b7f50726553616c652068617665206265656e20736f6c64206f7574210000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f46697273742053616c6520436c6f736564000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f50726553616c6520436c6f736564000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f46697273742053616c652068617665206265656e20736f6c64206f7574210000600082015250565b7f41646472657373206973206e6f742073657465642e0000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61490781613f86565b811461491257600080fd5b50565b61491e81613f98565b811461492957600080fd5b50565b61493581613fa4565b811461494057600080fd5b50565b61494c81613ff0565b811461495757600080fd5b50565b61496381613ffa565b811461496e57600080fd5b5056fea2646970667358221220620f5f52954b15d6a8384e34ff222ae1a20a622e40949bbc3378f89c32df4faf64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d636a545467785350387134435456395a435134364e335569664b63716462727a7575754d47786355464e6665000000000000000000000000000000000000000000000000000000000000000000000000000000000000094c75636b7954726970000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024c54000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80636447c35d1161010257806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610680578063e8e7f800146106bd578063e985e9c5146106e8578063f2fde38b14610725576101e3565b806395d89b41146105e7578063a22cb46514610612578063b88d4fde1461063b578063c1d9df8d14610664576101e3565b806376645315116100d1578063766453151461057f578063853828b6146105965780638ad433ac146105a05780638da5cb5b146105bc576101e3565b80636447c35d146104e657806370a082311461050f578063715018a61461054c578063721a1db414610563576101e3565b806336758f1a1161017a5780634f6ccce7116101495780634f6ccce714610418578063518302271461045557806355f804b3146104805780636352211e146104a9576101e3565b806336758f1a146103705780633ab1a4941461039957806342842e0e146103c25780634e69d560146103eb576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632e49d78b1461030a5780632f745c5914610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906132b9565b61074e565b60405161021c9190613969565b60405180910390f35b34801561023157600080fd5b5061023a6107c8565b60405161024791906139bb565b60405180910390f35b34801561025c57600080fd5b506102776004803603810190610272919061335c565b61085a565b6040516102849190613902565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af919061322c565b6108a0565b005b3480156102c257600080fd5b506102cb6109b8565b6040516102d89190613dbd565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190613116565b6109c5565b005b34801561031657600080fd5b50610331600480360381019061032c9190613389565b610a25565b005b34801561033f57600080fd5b5061035a6004803603810190610355919061322c565b610bc7565b6040516103679190613dbd565b60405180910390f35b34801561037c57600080fd5b506103976004803603810190610392919061335c565b610c6c565b005b3480156103a557600080fd5b506103c060048036038101906103bb91906130a9565b610cc3565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190613116565b610d0f565b005b3480156103f757600080fd5b50610400610d2f565b60405161040f93929190613984565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a919061335c565b610d77565b60405161044c9190613dbd565b60405180910390f35b34801561046157600080fd5b5061046a610de8565b6040516104779190613969565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a29190613313565b610dfb565b005b3480156104b557600080fd5b506104d060048036038101906104cb919061335c565b610e1d565b6040516104dd9190613902565b60405180910390f35b3480156104f257600080fd5b5061050d6004803603810190610508919061326c565b610ecf565b005b34801561051b57600080fd5b50610536600480360381019061053191906130a9565b610f7c565b6040516105439190613dbd565b60405180910390f35b34801561055857600080fd5b50610561611034565b005b61057d6004803603810190610578919061335c565b611048565b005b34801561058b57600080fd5b506105946112c9565b005b61059e61134e565b005b6105ba60048036038101906105b5919061335c565b611459565b005b3480156105c857600080fd5b506105d1611702565b6040516105de9190613902565b60405180910390f35b3480156105f357600080fd5b506105fc61172b565b60405161060991906139bb565b60405180910390f35b34801561061e57600080fd5b50610639600480360381019061063491906131ec565b6117bd565b005b34801561064757600080fd5b50610662600480360381019061065d9190613169565b6117d3565b005b61067e6004803603810190610679919061335c565b611835565b005b34801561068c57600080fd5b506106a760048036038101906106a2919061335c565b611a2c565b6040516106b491906139bb565b60405180910390f35b3480156106c957600080fd5b506106d2611b7a565b6040516106df9190613902565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906130d6565b611bac565b60405161071c9190613969565b60405180910390f35b34801561073157600080fd5b5061074c600480360381019061074791906130a9565b611c40565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c157506107c082611cc4565b5b9050919050565b6060600180546107d790614049565b80601f016020809104026020016040519081016040528092919081815260200182805461080390614049565b80156108505780601f1061082557610100808354040283529160200191610850565b820191906000526020600020905b81548152906001019060200180831161083357829003601f168201915b5050505050905090565b600061086582611da6565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ab82610e1d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091390613cfd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661093b611df1565b73ffffffffffffffffffffffffffffffffffffffff16148061096a575061096981610964611df1565b611bac565b5b6109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090613bfd565b60405180910390fd5b6109b38383611df9565b505050565b6000600980549050905090565b6109d66109d0611df1565b82611eb2565b610a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0c90613d9d565b60405180910390fd5b610a20838383611f47565b505050565b610a2d6121ae565b60018160ff16148015610a4d5750600e60009054906101000a900460ff16155b8015610a665750600e60019054906101000a900460ff16155b8015610a7f5750600e60029054906101000a900460ff16155b15610aa4576001600e60006101000a81548160ff021916908315150217905550610bc4565b60028160ff16148015610ac35750600e60009054906101000a900460ff165b8015610adc5750600e60019054906101000a900460ff16155b8015610af55750600e60029054906101000a900460ff16155b15610b35576001600e60016101000a81548160ff0219169083151502179055506000600e60006101000a81548160ff021916908315150217905550610bc3565b60038160ff16148015610b555750600e60009054906101000a900460ff16155b8015610b6d5750600e60019054906101000a900460ff165b8015610b865750600e60029054906101000a900460ff16155b15610bc2576001600e60026101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055505b5b5b50565b6000610bd283610f7c565b8210610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a906139fd565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c746121ae565b6000600d5414610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090613c3d565b60405180910390fd5b80600d8190555050565b610ccb6121ae565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d2a838383604051806020016040528060008152506117d3565b505050565b6000806000610d3c6121ae565b600e60009054906101000a900460ff16600e60019054906101000a900460ff16600e60029054906101000a900460ff16925092509250909192565b6000610d816109b8565b8210610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613d3d565b60405180910390fd5b60098281548110610dd657610dd561418c565b5b90600052602060002001549050919050565b600e60039054906101000a900460ff1681565b610e036121ae565b80600f9080519060200190610e19929190612e52565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd90613cdd565b60405180910390fd5b80915050919050565b610ed76121ae565b60005b82829050811015610f77576001600b6000858585818110610efe57610efd61418c565b5b9050602002016020810190610f1391906130a9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610f6f906140ac565b915050610eda565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490613b7d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61103c6121ae565b611046600061222c565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90613b5d565b60405180910390fd5b60006110c06109b8565b9050600e60009054906101000a900460ff16611111576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110890613c9d565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661119d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611194906139dd565b60405180910390fd5b348266b1a2bc2ec500006111b19190613ef8565b11156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990613afd565b60405180910390fd5b600081101580156112035750606481105b611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990613d5d565b60405180910390fd5b606482826112509190613ea2565b1115611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890613b9d565b60405180910390fd5b60005b828110156112c4576112b13382846112ac9190613ea2565b6122f0565b80806112bc906140ac565b915050611294565b505050565b6112d16121ae565b6000600f80546112e090614049565b905011611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613bdd565b60405180910390fd5b600e60039054906101000a900460ff1615600e60036101000a81548160ff021916908315150217905550565b6113566121ae565b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df90613d7d565b60405180910390fd5b6000479050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611455573d6000803e3d6000fd5b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613b5d565b60405180910390fd5b60006114d16109b8565b9050600e60019054906101000a900460ff1680156114f157506000600d54115b611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790613d1d565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b3906139dd565b60405180910390fd5b348266d529ae9e8600006115d09190613ef8565b1115611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890613afd565b60405180910390fd5b6000811015801561162f5750600d54606461162c9190613ea2565b81105b61166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590613c5d565b60405180910390fd5b600d54606461167d9190613ea2565b82826116899190613ea2565b11156116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190613bbd565b60405180910390fd5b60005b828110156116fd576116ea3382846116e59190613ea2565b6122f0565b80806116f5906140ac565b9150506116cd565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461173a90614049565b80601f016020809104026020016040519081016040528092919081815260200182805461176690614049565b80156117b35780601f10611788576101008083540402835291602001916117b3565b820191906000526020600020905b81548152906001019060200180831161179657829003601f168201915b5050505050905090565b6117cf6117c8611df1565b838361230e565b5050565b6117e46117de611df1565b83611eb2565b611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a90613d9d565b60405180910390fd5b61182f8484848461247b565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189a90613b5d565b60405180910390fd5b60006118ad6109b8565b9050600e60029054906101000a900460ff166118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613b1d565b60405180910390fd5b348266f8b0a10e4700006119129190613ef8565b1115611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194a90613afd565b60405180910390fd5b6000811015801561196557506115b381105b6119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199b90613b3d565b60405180910390fd5b6115b382826119b39190613ea2565b11156119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90613a9d565b60405180910390fd5b60005b82811015611a2757611a14338284611a0f9190613ea2565b6122f0565b8080611a1f906140ac565b9150506119f7565b505050565b6060611a37826124d7565b611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90613cbd565b60405180910390fd5b60001515600e60039054906101000a900460ff1615151415611b245760108054611a9f90614049565b80601f0160208091040260200160405190810160405280929190818152602001828054611acb90614049565b8015611b185780601f10611aed57610100808354040283529160200191611b18565b820191906000526020600020905b815481529060010190602001808311611afb57829003601f168201915b50505050509050611b75565b6000611b2e612543565b90506000815111611b4e5760405180602001604052806000815250611b71565b8083604051602001611b619291906138da565b6040516020818303038152906040525b9150505b919050565b6000611b846121ae565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c486121ae565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf90613a3d565b60405180910390fd5b611cc18161222c565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d8f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d9f5750611d9e826125d5565b5b9050919050565b611daf816124d7565b611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590613cdd565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e6c83610e1d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611ebe83610e1d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f005750611eff8185611bac565b5b80611f3e57508373ffffffffffffffffffffffffffffffffffffffff16611f268461085a565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f6782610e1d565b73ffffffffffffffffffffffffffffffffffffffff1614611fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb490613a5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561202d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202490613abd565b60405180910390fd5b61203883838361263f565b612043600082611df9565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120939190613f52565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120ea9190613ea2565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121a9838383612753565b505050565b6121b6611df1565b73ffffffffffffffffffffffffffffffffffffffff166121d4611702565b73ffffffffffffffffffffffffffffffffffffffff161461222a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222190613c7d565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61230a828260405180602001604052806000815250612758565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561237d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237490613add565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161246e9190613969565b60405180910390a3505050565b612486848484611f47565b612492848484846127b3565b6124d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c890613a1d565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600f805461255290614049565b80601f016020809104026020016040519081016040528092919081815260200182805461257e90614049565b80156125cb5780601f106125a0576101008083540402835291602001916125cb565b820191906000526020600020905b8154815290600101906020018083116125ae57829003601f168201915b5050505050905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61264a83838361294a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561268d576126888161294f565b6126cc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126cb576126ca8382612998565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561270f5761270a81612b05565b61274e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461274d5761274c8282612bd6565b5b5b505050565b505050565b6127628383612c55565b61276f60008484846127b3565b6127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a590613a1d565b60405180910390fd5b505050565b60006127d48473ffffffffffffffffffffffffffffffffffffffff16612e2f565b1561293d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127fd611df1565b8786866040518563ffffffff1660e01b815260040161281f949392919061391d565b602060405180830381600087803b15801561283957600080fd5b505af192505050801561286a57506040513d601f19601f8201168201806040525081019061286791906132e6565b60015b6128ed573d806000811461289a576040519150601f19603f3d011682016040523d82523d6000602084013e61289f565b606091505b506000815114156128e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128dc90613a1d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612942565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129a584610f7c565b6129af9190613f52565b9050600060086000848152602001908152602001600020549050818114612a94576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612b199190613f52565b90506000600a6000848152602001908152602001600020549050600060098381548110612b4957612b4861418c565b5b906000526020600020015490508060098381548110612b6b57612b6a61418c565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612bba57612bb961415d565b5b6001900381819060005260206000200160009055905550505050565b6000612be183610f7c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbc90613c1d565b60405180910390fd5b612cce816124d7565b15612d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0590613a7d565b60405180910390fd5b612d1a6000838361263f565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d6a9190613ea2565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e2b60008383612753565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612e5e90614049565b90600052602060002090601f016020900481019282612e805760008555612ec7565b82601f10612e9957805160ff1916838001178555612ec7565b82800160010185558215612ec7579182015b82811115612ec6578251825591602001919060010190612eab565b5b509050612ed49190612ed8565b5090565b5b80821115612ef1576000816000905550600101612ed9565b5090565b6000612f08612f0384613dfd565b613dd8565b905082815260208101848484011115612f2457612f236141f9565b5b612f2f848285614007565b509392505050565b6000612f4a612f4584613e2e565b613dd8565b905082815260208101848484011115612f6657612f656141f9565b5b612f71848285614007565b509392505050565b600081359050612f88816148fe565b92915050565b60008083601f840112612fa457612fa36141ef565b5b8235905067ffffffffffffffff811115612fc157612fc06141ea565b5b602083019150836020820283011115612fdd57612fdc6141f4565b5b9250929050565b600081359050612ff381614915565b92915050565b6000813590506130088161492c565b92915050565b60008151905061301d8161492c565b92915050565b600082601f830112613038576130376141ef565b5b8135613048848260208601612ef5565b91505092915050565b600082601f830112613066576130656141ef565b5b8135613076848260208601612f37565b91505092915050565b60008135905061308e81614943565b92915050565b6000813590506130a38161495a565b92915050565b6000602082840312156130bf576130be614203565b5b60006130cd84828501612f79565b91505092915050565b600080604083850312156130ed576130ec614203565b5b60006130fb85828601612f79565b925050602061310c85828601612f79565b9150509250929050565b60008060006060848603121561312f5761312e614203565b5b600061313d86828701612f79565b935050602061314e86828701612f79565b925050604061315f8682870161307f565b9150509250925092565b6000806000806080858703121561318357613182614203565b5b600061319187828801612f79565b94505060206131a287828801612f79565b93505060406131b38782880161307f565b925050606085013567ffffffffffffffff8111156131d4576131d36141fe565b5b6131e087828801613023565b91505092959194509250565b6000806040838503121561320357613202614203565b5b600061321185828601612f79565b925050602061322285828601612fe4565b9150509250929050565b6000806040838503121561324357613242614203565b5b600061325185828601612f79565b92505060206132628582860161307f565b9150509250929050565b6000806020838503121561328357613282614203565b5b600083013567ffffffffffffffff8111156132a1576132a06141fe565b5b6132ad85828601612f8e565b92509250509250929050565b6000602082840312156132cf576132ce614203565b5b60006132dd84828501612ff9565b91505092915050565b6000602082840312156132fc576132fb614203565b5b600061330a8482850161300e565b91505092915050565b60006020828403121561332957613328614203565b5b600082013567ffffffffffffffff811115613347576133466141fe565b5b61335384828501613051565b91505092915050565b60006020828403121561337257613371614203565b5b60006133808482850161307f565b91505092915050565b60006020828403121561339f5761339e614203565b5b60006133ad84828501613094565b91505092915050565b6133bf81613f86565b82525050565b6133ce81613f98565b82525050565b60006133df82613e5f565b6133e98185613e75565b93506133f9818560208601614016565b61340281614208565b840191505092915050565b600061341882613e6a565b6134228185613e86565b9350613432818560208601614016565b61343b81614208565b840191505092915050565b600061345182613e6a565b61345b8185613e97565b935061346b818560208601614016565b80840191505092915050565b6000613484601c83613e86565b915061348f82614219565b602082019050919050565b60006134a7602b83613e86565b91506134b282614242565b604082019050919050565b60006134ca603283613e86565b91506134d582614291565b604082019050919050565b60006134ed602683613e86565b91506134f8826142e0565b604082019050919050565b6000613510602583613e86565b915061351b8261432f565b604082019050919050565b6000613533601c83613e86565b915061353e8261437e565b602082019050919050565b6000613556601b83613e86565b9150613561826143a7565b602082019050919050565b6000613579602483613e86565b9150613584826143d0565b604082019050919050565b600061359c601983613e86565b91506135a78261441f565b602082019050919050565b60006135bf601f83613e86565b91506135ca82614448565b602082019050919050565b60006135e2600e83613e86565b91506135ed82614471565b602082019050919050565b6000613605601883613e86565b91506136108261449a565b602082019050919050565b6000613628601e83613e86565b9150613633826144c3565b602082019050919050565b600061364b602983613e86565b9150613656826144ec565b604082019050919050565b600061366e602483613e86565b91506136798261453b565b604082019050919050565b6000613691602183613e86565b915061369c8261458a565b604082019050919050565b60006136b4601583613e86565b91506136bf826145d9565b602082019050919050565b60006136d7603e83613e86565b91506136e282614602565b604082019050919050565b60006136fa602083613e86565b915061370582614651565b602082019050919050565b600061371d601783613e86565b91506137288261467a565b602082019050919050565b6000613740601b83613e86565b915061374b826146a3565b602082019050919050565b6000613763602083613e86565b915061376e826146cc565b602082019050919050565b6000613786601183613e86565b9150613791826146f5565b602082019050919050565b60006137a9602f83613e86565b91506137b48261471e565b604082019050919050565b60006137cc601883613e86565b91506137d78261476d565b602082019050919050565b60006137ef602183613e86565b91506137fa82614796565b604082019050919050565b6000613812600e83613e86565b915061381d826147e5565b602082019050919050565b6000613835602c83613e86565b91506138408261480e565b604082019050919050565b6000613858601e83613e86565b91506138638261485d565b602082019050919050565b600061387b601583613e86565b915061388682614886565b602082019050919050565b600061389e602e83613e86565b91506138a9826148af565b604082019050919050565b6138bd81613ff0565b82525050565b6138d46138cf82613ff0565b6140f5565b82525050565b60006138e68285613446565b91506138f282846138c3565b6020820191508190509392505050565b600060208201905061391760008301846133b6565b92915050565b600060808201905061393260008301876133b6565b61393f60208301866133b6565b61394c60408301856138b4565b818103606083015261395e81846133d4565b905095945050505050565b600060208201905061397e60008301846133c5565b92915050565b600060608201905061399960008301866133c5565b6139a660208301856133c5565b6139b360408301846133c5565b949350505050565b600060208201905081810360008301526139d5818461340d565b905092915050565b600060208201905081810360008301526139f681613477565b9050919050565b60006020820190508181036000830152613a168161349a565b9050919050565b60006020820190508181036000830152613a36816134bd565b9050919050565b60006020820190508181036000830152613a56816134e0565b9050919050565b60006020820190508181036000830152613a7681613503565b9050919050565b60006020820190508181036000830152613a9681613526565b9050919050565b60006020820190508181036000830152613ab681613549565b9050919050565b60006020820190508181036000830152613ad68161356c565b9050919050565b60006020820190508181036000830152613af68161358f565b9050919050565b60006020820190508181036000830152613b16816135b2565b9050919050565b60006020820190508181036000830152613b36816135d5565b9050919050565b60006020820190508181036000830152613b56816135f8565b9050919050565b60006020820190508181036000830152613b768161361b565b9050919050565b60006020820190508181036000830152613b968161363e565b9050919050565b60006020820190508181036000830152613bb681613661565b9050919050565b60006020820190508181036000830152613bd681613684565b9050919050565b60006020820190508181036000830152613bf6816136a7565b9050919050565b60006020820190508181036000830152613c16816136ca565b9050919050565b60006020820190508181036000830152613c36816136ed565b9050919050565b60006020820190508181036000830152613c5681613710565b9050919050565b60006020820190508181036000830152613c7681613733565b9050919050565b60006020820190508181036000830152613c9681613756565b9050919050565b60006020820190508181036000830152613cb681613779565b9050919050565b60006020820190508181036000830152613cd68161379c565b9050919050565b60006020820190508181036000830152613cf6816137bf565b9050919050565b60006020820190508181036000830152613d16816137e2565b9050919050565b60006020820190508181036000830152613d3681613805565b9050919050565b60006020820190508181036000830152613d5681613828565b9050919050565b60006020820190508181036000830152613d768161384b565b9050919050565b60006020820190508181036000830152613d968161386e565b9050919050565b60006020820190508181036000830152613db681613891565b9050919050565b6000602082019050613dd260008301846138b4565b92915050565b6000613de2613df3565b9050613dee828261407b565b919050565b6000604051905090565b600067ffffffffffffffff821115613e1857613e176141bb565b5b613e2182614208565b9050602081019050919050565b600067ffffffffffffffff821115613e4957613e486141bb565b5b613e5282614208565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ead82613ff0565b9150613eb883613ff0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613eed57613eec6140ff565b5b828201905092915050565b6000613f0382613ff0565b9150613f0e83613ff0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f4757613f466140ff565b5b828202905092915050565b6000613f5d82613ff0565b9150613f6883613ff0565b925082821015613f7b57613f7a6140ff565b5b828203905092915050565b6000613f9182613fd0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614034578082015181840152602081019050614019565b83811115614043576000848401525b50505050565b6000600282049050600182168061406157607f821691505b602082108114156140755761407461412e565b5b50919050565b61408482614208565b810181811067ffffffffffffffff821117156140a3576140a26141bb565b5b80604052505050565b60006140b782613ff0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140ea576140e96140ff565b5b600182019050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f75722061646472657373206973206e6f7420616c6c6f7765642e00000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f45786365656473206d6178696d756d204d617820537570706c792e0000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f50756253616c6520436c6f736564000000000000000000000000000000000000600082015250565b7f4e4654732068617665206265656e20736f6c64206f7574210000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d2066697273742053616c6527732053757060008201527f706c792e00000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d2050726553616c65277320537570706c7960008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f62617365555249206973206e6f742073657465642e0000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f707265436f756e742068617665206265656e207365742e000000000000000000600082015250565b7f50726553616c652068617665206265656e20736f6c64206f7574210000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f46697273742053616c6520436c6f736564000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f50726553616c6520436c6f736564000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f46697273742053616c652068617665206265656e20736f6c64206f7574210000600082015250565b7f41646472657373206973206e6f742073657465642e0000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61490781613f86565b811461491257600080fd5b50565b61491e81613f98565b811461492957600080fd5b50565b61493581613fa4565b811461494057600080fd5b50565b61494c81613ff0565b811461495757600080fd5b50565b61496381613ffa565b811461496e57600080fd5b5056fea2646970667358221220620f5f52954b15d6a8384e34ff222ae1a20a622e40949bbc3378f89c32df4faf64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d636a545467785350387134435456395a435134364e335569664b63716462727a7575754d47786355464e6665000000000000000000000000000000000000000000000000000000000000000000000000000000000000094c75636b7954726970000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024c54000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initNotRevealedUri (string): ipfs://QmcjTTgxSP8q4CTV9ZCQ46N3UifKcqdbrzuuuMGxcUFNfe
Arg [1] : name_ (string): LuckyTrip
Arg [2] : symbol_ (string): LT
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [4] : 697066733a2f2f516d636a545467785350387134435456395a435134364e3355
Arg [5] : 69664b63716462727a7575754d47786355464e66650000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 4c75636b79547269700000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 4c54000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47723:5802:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41504:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28238:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29751:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29268:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42144:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30451:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51445:446;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41812:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51914:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51004:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30858:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52256:239;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;42334:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48246:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51310:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27949:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50779:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27680:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6767:103;;;;;;;;;;;;;:::i;:::-;;48703:702;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52086:146;;;;;;;;;;;;;:::i;:::-;;53265:257;;;:::i;:::-;;49413:725;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6119:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28407:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29994:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31114:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50146:604;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52616:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52501:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30220:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7025:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41504:224;41606:4;41645:35;41630:50;;;:11;:50;;;;:90;;;;41684:36;41708:11;41684:23;:36::i;:::-;41630:90;41623:97;;41504:224;;;:::o;28238:100::-;28292:13;28325:5;28318:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28238:100;:::o;29751:171::-;29827:7;29847:23;29862:7;29847:14;:23::i;:::-;29890:15;:24;29906:7;29890:24;;;;;;;;;;;;;;;;;;;;;29883:31;;29751:171;;;:::o;29268:417::-;29349:13;29365:23;29380:7;29365:14;:23::i;:::-;29349:39;;29413:5;29407:11;;:2;:11;;;;29399:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29507:5;29491:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29516:37;29533:5;29540:12;:10;:12::i;:::-;29516:16;:37::i;:::-;29491:62;29469:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;29656:21;29665:2;29669:7;29656:8;:21::i;:::-;29338:347;29268:417;;:::o;42144:113::-;42205:7;42232:10;:17;;;;42225:24;;42144:113;:::o;30451:336::-;30646:41;30665:12;:10;:12::i;:::-;30679:7;30646:18;:41::i;:::-;30638:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30751:28;30761:4;30767:2;30771:7;30751:9;:28::i;:::-;30451:336;;;:::o;51445:446::-;6005:13;:11;:13::i;:::-;51516:1:::1;51508:4;:9;;;:25;;;;;51522:11;;;;;;;;;;;51521:12;51508:25;:39;;;;;51538:9;;;;;;;;;;;51537:10;51508:39;:53;;;;;51552:9;;;;;;;;;;;51551:10;51508:53;51504:380;;;51592:4;51578:11;;:18;;;;;;;;;;;;;;;;;;51504:380;;;51626:1;51618:4;:9;;;:24;;;;;51631:11;;;;;;;;;;;51618:24;:38;;;;;51647:9;;;;;;;;;;;51646:10;51618:38;:52;;;;;51661:9;;;;;;;;;;;51660:10;51618:52;51614:270;;;51699:4;51687:9;;:16;;;;;;;;;;;;;;;;;;51730:5;51718:11;;:17;;;;;;;;;;;;;;;;;;51614:270;;;51765:1;51757:4;:9;;;:25;;;;;51771:11;;;;;;;;;;;51770:12;51757:25;:38;;;;;51786:9;;;;;;;;;;;51757:38;:52;;;;;51800:9;;;;;;;;;;;51799:10;51757:52;51753:131;;;51838:4;51826:9;;:16;;;;;;;;;;;;;;;;;;51867:5;51857:9;;:15;;;;;;;;;;;;;;;;;;51753:131;51614:270;51504:380;51445:446:::0;:::o;41812:256::-;41909:7;41945:23;41962:5;41945:16;:23::i;:::-;41937:5;:31;41929:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;42034:12;:19;42047:5;42034:19;;;;;;;;;;;;;;;:26;42054:5;42034:26;;;;;;;;;;;;42027:33;;41812:256;;;;:::o;51914:148::-;6005:13;:11;:13::i;:::-;51998:1:::1;51986:8;;:13;51978:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;52049:5;52038:8;:16;;;;51914:148:::0;:::o;51004:123::-;6005:13;:11;:13::i;:::-;51103:16:::1;51085:15;;:34;;;;;;;;;;;;;;;;;;51004:123:::0;:::o;30858:185::-;30996:39;31013:4;31019:2;31023:7;30996:39;;;;;;;;;;;;:16;:39::i;:::-;30858:185;;;:::o;52256:239::-;52358:11;52384:9;52408;6005:13;:11;:13::i;:::-;52453:11:::1;;;;;;;;;;;52466:9;;;;;;;;;;;52477;;;;;;;;;;;52445:42;;;;;;52256:239:::0;;;:::o;42334:233::-;42409:7;42445:30;:28;:30::i;:::-;42437:5;:38;42429:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;42542:10;42553:5;42542:17;;;;;;;;:::i;:::-;;;;;;;;;;42535:24;;42334:233;;;:::o;48246:28::-;;;;;;;;;;;;;:::o;51310:104::-;6005:13;:11;:13::i;:::-;51395:11:::1;51385:7;:21;;;;;;;;;;;;:::i;:::-;;51310:104:::0;:::o;27949:222::-;28021:7;28041:13;28057:7;:16;28065:7;28057:16;;;;;;;;;;;;;;;;;;;;;28041:32;;28109:1;28092:19;;:5;:19;;;;28084:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;28158:5;28151:12;;;27949:222;;;:::o;50779:192::-;6005:13;:11;:13::i;:::-;50864:9:::1;50859:105;50883:9;;:16;;50879:1;:20;50859:105;;;50948:4;50921:10;:24;50932:9;;50942:1;50932:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;50921:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;50901:3;;;;;:::i;:::-;;;;50859:105;;;;50779:192:::0;;:::o;27680:207::-;27752:7;27797:1;27780:19;;:5;:19;;;;27772:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27863:9;:16;27873:5;27863:16;;;;;;;;;;;;;;;;27856:23;;27680:207;;;:::o;6767:103::-;6005:13;:11;:13::i;:::-;6832:30:::1;6859:1;6832:18;:30::i;:::-;6767:103::o:0;48703:702::-;48419:10;48406:23;;:9;:23;;;48398:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48782:15:::1;48800:13;:11;:13::i;:::-;48782:31;;48832:11;;;;;;;;;;;48824:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;48884:10;:22;48895:10;48884:22;;;;;;;;;;;;;;;;;;;;;;;;;48876:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48984:9;48971;48050:10;48958:22;;;;:::i;:::-;:35;;48950:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;49073:1;49062:7;:12;;:36;;;;;47987:3;49078:7;:20;49062:36;49040:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;47987:3;49199:9;49189:7;:19;;;;:::i;:::-;:33;;49167:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;49302:9;49297:101;49321:9;49317:1;:13;49297:101;;;49352:34;49362:10;49384:1;49374:7;:11;;;;:::i;:::-;49352:9;:34::i;:::-;49332:3;;;;;:::i;:::-;;;;49297:101;;;;48771:634;48703:702:::0;:::o;52086:146::-;6005:13;:11;:13::i;:::-;52167:1:::1;52149:7;52143:21;;;;;:::i;:::-;;;:25;52135:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52216:8;;;;;;;;;;;52215:9;52204:8;;:20;;;;;;;;;;;;;;;;;;52086:146::o:0;53265:257::-;6005:13;:11;:13::i;:::-;53348:42:::1;53331:59;;:15;;;;;;;;;;;:59;;;;53323:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;53426:13;53442:21;53426:37;;53482:15;;;;;;;;;;;53474:33;;:40;53508:5;53474:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;53312:210;53265:257::o:0;49413:725::-;48419:10;48406:23;;:9;:23;;;48398:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49490:15:::1;49508:13;:11;:13::i;:::-;49490:31;;49540:9;;;;;;;;;;;:25;;;;;49564:1;49553:8;;:12;49540:25;49532:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;49603:10;:22;49614:10;49603:22;;;;;;;;;;;;;;;;;;;;;;;;;49595:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49701:9;49688;48095:10;49677:20;;;;:::i;:::-;:33;;49669:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49790:1;49779:7;:12;;:47;;;;;49818:8;;47987:3;49805:21;;;;:::i;:::-;49795:7;:31;49779:47;49757:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;49950:8;;47987:3;49937:21;;;;:::i;:::-;49924:9;49914:7;:19;;;;:::i;:::-;:44;;49892:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50035:9;50030:101;50054:9;50050:1;:13;50030:101;;;50085:34;50095:10;50117:1;50107:7;:11;;;;:::i;:::-;50085:9;:34::i;:::-;50065:3;;;;;:::i;:::-;;;;50030:101;;;;49479:659;49413:725:::0;:::o;6119:87::-;6165:7;6192:6;;;;;;;;;;;6185:13;;6119:87;:::o;28407:104::-;28463:13;28496:7;28489:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28407:104;:::o;29994:155::-;30089:52;30108:12;:10;:12::i;:::-;30122:8;30132;30089:18;:52::i;:::-;29994:155;;:::o;31114:323::-;31288:41;31307:12;:10;:12::i;:::-;31321:7;31288:18;:41::i;:::-;31280:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;31391:38;31405:4;31411:2;31415:7;31424:4;31391:13;:38::i;:::-;31114:323;;;;:::o;50146:604::-;48419:10;48406:23;;:9;:23;;;48398:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50223:15:::1;50241:13;:11;:13::i;:::-;50223:31;;50273:9;;;;;;;;;;;50265:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;50344:9;50331;48140:10;50320:20;;;;:::i;:::-;:33;;50312:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;50433:1;50422:7;:12;;:36;;;;;47946:4;50438:7;:20;50422:36;50400:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;47946:4;50553:9;50543:7;:19;;;;:::i;:::-;:33;;50521:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;50647:9;50642:101;50666:9;50662:1;:13;50642:101;;;50697:34;50707:10;50729:1;50719:7;:11;;;;:::i;:::-;50697:9;:34::i;:::-;50677:3;;;;;:::i;:::-;;;;50642:101;;;;50212:538;50146:604:::0;:::o;52616:529::-;52734:13;52787:16;52795:7;52787;:16::i;:::-;52765:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;52907:5;52895:17;;:8;;;;;;;;;;;:17;;;52891:71;;;52936:14;52929:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52891:71;52972:18;52993:10;:8;:10::i;:::-;52972:31;;53055:1;53040:4;53034:18;:22;:103;;;;;;;;;;;;;;;;;53100:4;53106:7;53083:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53034:103;53014:123;;;52616:529;;;;:::o;52501:109::-;52561:7;6005:13;:11;:13::i;:::-;52587:15:::1;;;;;;;;;;;52580:22;;52501:109:::0;:::o;30220:164::-;30317:4;30341:18;:25;30360:5;30341:25;;;;;;;;;;;;;;;:35;30367:8;30341:35;;;;;;;;;;;;;;;;;;;;;;;;;30334:42;;30220:164;;;;:::o;7025:201::-;6005:13;:11;:13::i;:::-;7134:1:::1;7114:22;;:8;:22;;;;7106:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7190:28;7209:8;7190:18;:28::i;:::-;7025:201:::0;:::o;27311:305::-;27413:4;27465:25;27450:40;;;:11;:40;;;;:105;;;;27522:33;27507:48;;;:11;:48;;;;27450:105;:158;;;;27572:36;27596:11;27572:23;:36::i;:::-;27450:158;27430:178;;27311:305;;;:::o;37726:135::-;37808:16;37816:7;37808;:16::i;:::-;37800:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;37726:135;:::o;4670:98::-;4723:7;4750:10;4743:17;;4670:98;:::o;37005:174::-;37107:2;37080:15;:24;37096:7;37080:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37163:7;37159:2;37125:46;;37134:23;37149:7;37134:14;:23::i;:::-;37125:46;;;;;;;;;;;;37005:174;;:::o;33238:264::-;33331:4;33348:13;33364:23;33379:7;33364:14;:23::i;:::-;33348:39;;33417:5;33406:16;;:7;:16;;;:52;;;;33426:32;33443:5;33450:7;33426:16;:32::i;:::-;33406:52;:87;;;;33486:7;33462:31;;:20;33474:7;33462:11;:20::i;:::-;:31;;;33406:87;33398:96;;;33238:264;;;;:::o;36261:625::-;36420:4;36393:31;;:23;36408:7;36393:14;:23::i;:::-;:31;;;36385:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;36499:1;36485:16;;:2;:16;;;;36477:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36555:39;36576:4;36582:2;36586:7;36555:20;:39::i;:::-;36659:29;36676:1;36680:7;36659:8;:29::i;:::-;36720:1;36701:9;:15;36711:4;36701:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36749:1;36732:9;:13;36742:2;36732:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36780:2;36761:7;:16;36769:7;36761:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36819:7;36815:2;36800:27;;36809:4;36800:27;;;;;;;;;;;;36840:38;36860:4;36866:2;36870:7;36840:19;:38::i;:::-;36261:625;;;:::o;6284:132::-;6359:12;:10;:12::i;:::-;6348:23;;:7;:5;:7::i;:::-;:23;;;6340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6284:132::o;7386:191::-;7460:16;7479:6;;;;;;;;;;;7460:25;;7505:8;7496:6;;:17;;;;;;;;;;;;;;;;;;7560:8;7529:40;;7550:8;7529:40;;;;;;;;;;;;7449:128;7386:191;:::o;33844:110::-;33920:26;33930:2;33934:7;33920:26;;;;;;;;;;;;:9;:26::i;:::-;33844:110;;:::o;37322:315::-;37477:8;37468:17;;:5;:17;;;;37460:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;37564:8;37526:18;:25;37545:5;37526:25;;;;;;;;;;;;;;;:35;37552:8;37526:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37610:8;37588:41;;37603:5;37588:41;;;37620:8;37588:41;;;;;;:::i;:::-;;;;;;;;37322:315;;;:::o;32318:313::-;32474:28;32484:4;32490:2;32494:7;32474:9;:28::i;:::-;32521:47;32544:4;32550:2;32554:7;32563:4;32521:22;:47::i;:::-;32513:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32318:313;;;;:::o;32944:127::-;33009:4;33061:1;33033:30;;:7;:16;33041:7;33033:16;;;;;;;;;;;;;;;;;;;;;:30;;;;33026:37;;32944:127;;;:::o;53151:108::-;53211:13;53244:7;53237:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53151:108;:::o;18973:157::-;19058:4;19097:25;19082:40;;;:11;:40;;;;19075:47;;18973:157;;;:::o;43180:589::-;43324:45;43351:4;43357:2;43361:7;43324:26;:45::i;:::-;43402:1;43386:18;;:4;:18;;;43382:187;;;43421:40;43453:7;43421:31;:40::i;:::-;43382:187;;;43491:2;43483:10;;:4;:10;;;43479:90;;43510:47;43543:4;43549:7;43510:32;:47::i;:::-;43479:90;43382:187;43597:1;43583:16;;:2;:16;;;43579:183;;;43616:45;43653:7;43616:36;:45::i;:::-;43579:183;;;43689:4;43683:10;;:2;:10;;;43679:83;;43710:40;43738:2;43742:7;43710:27;:40::i;:::-;43679:83;43579:183;43180:589;;;:::o;40361:125::-;;;;:::o;34181:319::-;34310:18;34316:2;34320:7;34310:5;:18::i;:::-;34361:53;34392:1;34396:2;34400:7;34409:4;34361:22;:53::i;:::-;34339:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;34181:319;;;:::o;38425:853::-;38579:4;38600:15;:2;:13;;;:15::i;:::-;38596:675;;;38652:2;38636:36;;;38673:12;:10;:12::i;:::-;38687:4;38693:7;38702:4;38636:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38632:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38894:1;38877:6;:13;:18;38873:328;;;38920:60;;;;;;;;;;:::i;:::-;;;;;;;;38873:328;39151:6;39145:13;39136:6;39132:2;39128:15;39121:38;38632:584;38768:41;;;38758:51;;;:6;:51;;;;38751:58;;;;;38596:675;39255:4;39248:11;;38425:853;;;;;;;:::o;39850:126::-;;;;:::o;44492:164::-;44596:10;:17;;;;44569:15;:24;44585:7;44569:24;;;;;;;;;;;:44;;;;44624:10;44640:7;44624:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44492:164;:::o;45283:988::-;45549:22;45599:1;45574:22;45591:4;45574:16;:22::i;:::-;:26;;;;:::i;:::-;45549:51;;45611:18;45632:17;:26;45650:7;45632:26;;;;;;;;;;;;45611:47;;45779:14;45765:10;:28;45761:328;;45810:19;45832:12;:18;45845:4;45832:18;;;;;;;;;;;;;;;:34;45851:14;45832:34;;;;;;;;;;;;45810:56;;45916:11;45883:12;:18;45896:4;45883:18;;;;;;;;;;;;;;;:30;45902:10;45883:30;;;;;;;;;;;:44;;;;46033:10;46000:17;:30;46018:11;46000:30;;;;;;;;;;;:43;;;;45795:294;45761:328;46185:17;:26;46203:7;46185:26;;;;;;;;;;;46178:33;;;46229:12;:18;46242:4;46229:18;;;;;;;;;;;;;;;:34;46248:14;46229:34;;;;;;;;;;;46222:41;;;45364:907;;45283:988;;:::o;46566:1079::-;46819:22;46864:1;46844:10;:17;;;;:21;;;;:::i;:::-;46819:46;;46876:18;46897:15;:24;46913:7;46897:24;;;;;;;;;;;;46876:45;;47248:19;47270:10;47281:14;47270:26;;;;;;;;:::i;:::-;;;;;;;;;;47248:48;;47334:11;47309:10;47320;47309:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;47445:10;47414:15;:28;47430:11;47414:28;;;;;;;;;;;:41;;;;47586:15;:24;47602:7;47586:24;;;;;;;;;;;47579:31;;;47621:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46637:1008;;;46566:1079;:::o;44070:221::-;44155:14;44172:20;44189:2;44172:16;:20::i;:::-;44155:37;;44230:7;44203:12;:16;44216:2;44203:16;;;;;;;;;;;;;;;:24;44220:6;44203:24;;;;;;;;;;;:34;;;;44277:6;44248:17;:26;44266:7;44248:26;;;;;;;;;;;:35;;;;44144:147;44070:221;;:::o;34836:439::-;34930:1;34916:16;;:2;:16;;;;34908:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34989:16;34997:7;34989;:16::i;:::-;34988:17;34980:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35051:45;35080:1;35084:2;35088:7;35051:20;:45::i;:::-;35126:1;35109:9;:13;35119:2;35109:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35157:2;35138:7;:16;35146:7;35138:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35202:7;35198:2;35177:33;;35194:1;35177:33;;;;;;;;;;;;35223:44;35251:1;35255:2;35259:7;35223:19;:44::i;:::-;34836:439;;:::o;8817:326::-;8877:4;9134:1;9112:7;:19;;;:23;9105:30;;8817:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:135::-;2912:5;2950:6;2937:20;2928:29;;2966:31;2991:5;2966:31;:::i;:::-;2868:135;;;;:::o;3009:329::-;3068:6;3117:2;3105:9;3096:7;3092:23;3088:32;3085:119;;;3123:79;;:::i;:::-;3085:119;3243:1;3268:53;3313:7;3304:6;3293:9;3289:22;3268:53;:::i;:::-;3258:63;;3214:117;3009:329;;;;:::o;3344:474::-;3412:6;3420;3469:2;3457:9;3448:7;3444:23;3440:32;3437:119;;;3475:79;;:::i;:::-;3437:119;3595:1;3620:53;3665:7;3656:6;3645:9;3641:22;3620:53;:::i;:::-;3610:63;;3566:117;3722:2;3748:53;3793:7;3784:6;3773:9;3769:22;3748:53;:::i;:::-;3738:63;;3693:118;3344:474;;;;;:::o;3824:619::-;3901:6;3909;3917;3966:2;3954:9;3945:7;3941:23;3937:32;3934:119;;;3972:79;;:::i;:::-;3934:119;4092:1;4117:53;4162:7;4153:6;4142:9;4138:22;4117:53;:::i;:::-;4107:63;;4063:117;4219:2;4245:53;4290:7;4281:6;4270:9;4266:22;4245:53;:::i;:::-;4235:63;;4190:118;4347:2;4373:53;4418:7;4409:6;4398:9;4394:22;4373:53;:::i;:::-;4363:63;;4318:118;3824:619;;;;;:::o;4449:943::-;4544:6;4552;4560;4568;4617:3;4605:9;4596:7;4592:23;4588:33;4585:120;;;4624:79;;:::i;:::-;4585:120;4744:1;4769:53;4814:7;4805:6;4794:9;4790:22;4769:53;:::i;:::-;4759:63;;4715:117;4871:2;4897:53;4942:7;4933:6;4922:9;4918:22;4897:53;:::i;:::-;4887:63;;4842:118;4999:2;5025:53;5070:7;5061:6;5050:9;5046:22;5025:53;:::i;:::-;5015:63;;4970:118;5155:2;5144:9;5140:18;5127:32;5186:18;5178:6;5175:30;5172:117;;;5208:79;;:::i;:::-;5172:117;5313:62;5367:7;5358:6;5347:9;5343:22;5313:62;:::i;:::-;5303:72;;5098:287;4449:943;;;;;;;:::o;5398:468::-;5463:6;5471;5520:2;5508:9;5499:7;5495:23;5491:32;5488:119;;;5526:79;;:::i;:::-;5488:119;5646:1;5671:53;5716:7;5707:6;5696:9;5692:22;5671:53;:::i;:::-;5661:63;;5617:117;5773:2;5799:50;5841:7;5832:6;5821:9;5817:22;5799:50;:::i;:::-;5789:60;;5744:115;5398:468;;;;;:::o;5872:474::-;5940:6;5948;5997:2;5985:9;5976:7;5972:23;5968:32;5965:119;;;6003:79;;:::i;:::-;5965:119;6123:1;6148:53;6193:7;6184:6;6173:9;6169:22;6148:53;:::i;:::-;6138:63;;6094:117;6250:2;6276:53;6321:7;6312:6;6301:9;6297:22;6276:53;:::i;:::-;6266:63;;6221:118;5872:474;;;;;:::o;6352:559::-;6438:6;6446;6495:2;6483:9;6474:7;6470:23;6466:32;6463:119;;;6501:79;;:::i;:::-;6463:119;6649:1;6638:9;6634:17;6621:31;6679:18;6671:6;6668:30;6665:117;;;6701:79;;:::i;:::-;6665:117;6814:80;6886:7;6877:6;6866:9;6862:22;6814:80;:::i;:::-;6796:98;;;;6592:312;6352:559;;;;;:::o;6917:327::-;6975:6;7024:2;7012:9;7003:7;6999:23;6995:32;6992:119;;;7030:79;;:::i;:::-;6992:119;7150:1;7175:52;7219:7;7210:6;7199:9;7195:22;7175:52;:::i;:::-;7165:62;;7121:116;6917:327;;;;:::o;7250:349::-;7319:6;7368:2;7356:9;7347:7;7343:23;7339:32;7336:119;;;7374:79;;:::i;:::-;7336:119;7494:1;7519:63;7574:7;7565:6;7554:9;7550:22;7519:63;:::i;:::-;7509:73;;7465:127;7250:349;;;;:::o;7605:509::-;7674:6;7723:2;7711:9;7702:7;7698:23;7694:32;7691:119;;;7729:79;;:::i;:::-;7691:119;7877:1;7866:9;7862:17;7849:31;7907:18;7899:6;7896:30;7893:117;;;7929:79;;:::i;:::-;7893:117;8034:63;8089:7;8080:6;8069:9;8065:22;8034:63;:::i;:::-;8024:73;;7820:287;7605:509;;;;:::o;8120:329::-;8179:6;8228:2;8216:9;8207:7;8203:23;8199:32;8196:119;;;8234:79;;:::i;:::-;8196:119;8354:1;8379:53;8424:7;8415:6;8404:9;8400:22;8379:53;:::i;:::-;8369:63;;8325:117;8120:329;;;;:::o;8455:325::-;8512:6;8561:2;8549:9;8540:7;8536:23;8532:32;8529:119;;;8567:79;;:::i;:::-;8529:119;8687:1;8712:51;8755:7;8746:6;8735:9;8731:22;8712:51;:::i;:::-;8702:61;;8658:115;8455:325;;;;:::o;8786:118::-;8873:24;8891:5;8873:24;:::i;:::-;8868:3;8861:37;8786:118;;:::o;8910:109::-;8991:21;9006:5;8991:21;:::i;:::-;8986:3;8979:34;8910:109;;:::o;9025:360::-;9111:3;9139:38;9171:5;9139:38;:::i;:::-;9193:70;9256:6;9251:3;9193:70;:::i;:::-;9186:77;;9272:52;9317:6;9312:3;9305:4;9298:5;9294:16;9272:52;:::i;:::-;9349:29;9371:6;9349:29;:::i;:::-;9344:3;9340:39;9333:46;;9115:270;9025:360;;;;:::o;9391:364::-;9479:3;9507:39;9540:5;9507:39;:::i;:::-;9562:71;9626:6;9621:3;9562:71;:::i;:::-;9555:78;;9642:52;9687:6;9682:3;9675:4;9668:5;9664:16;9642:52;:::i;:::-;9719:29;9741:6;9719:29;:::i;:::-;9714:3;9710:39;9703:46;;9483:272;9391:364;;;;:::o;9761:377::-;9867:3;9895:39;9928:5;9895:39;:::i;:::-;9950:89;10032:6;10027:3;9950:89;:::i;:::-;9943:96;;10048:52;10093:6;10088:3;10081:4;10074:5;10070:16;10048:52;:::i;:::-;10125:6;10120:3;10116:16;10109:23;;9871:267;9761:377;;;;:::o;10144:366::-;10286:3;10307:67;10371:2;10366:3;10307:67;:::i;:::-;10300:74;;10383:93;10472:3;10383:93;:::i;:::-;10501:2;10496:3;10492:12;10485:19;;10144:366;;;:::o;10516:::-;10658:3;10679:67;10743:2;10738:3;10679:67;:::i;:::-;10672:74;;10755:93;10844:3;10755:93;:::i;:::-;10873:2;10868:3;10864:12;10857:19;;10516:366;;;:::o;10888:::-;11030:3;11051:67;11115:2;11110:3;11051:67;:::i;:::-;11044:74;;11127:93;11216:3;11127:93;:::i;:::-;11245:2;11240:3;11236:12;11229:19;;10888:366;;;:::o;11260:::-;11402:3;11423:67;11487:2;11482:3;11423:67;:::i;:::-;11416:74;;11499:93;11588:3;11499:93;:::i;:::-;11617:2;11612:3;11608:12;11601:19;;11260:366;;;:::o;11632:::-;11774:3;11795:67;11859:2;11854:3;11795:67;:::i;:::-;11788:74;;11871:93;11960:3;11871:93;:::i;:::-;11989:2;11984:3;11980:12;11973:19;;11632:366;;;:::o;12004:::-;12146:3;12167:67;12231:2;12226:3;12167:67;:::i;:::-;12160:74;;12243:93;12332:3;12243:93;:::i;:::-;12361:2;12356:3;12352:12;12345:19;;12004:366;;;:::o;12376:::-;12518:3;12539:67;12603:2;12598:3;12539:67;:::i;:::-;12532:74;;12615:93;12704:3;12615:93;:::i;:::-;12733:2;12728:3;12724:12;12717:19;;12376:366;;;:::o;12748:::-;12890:3;12911:67;12975:2;12970:3;12911:67;:::i;:::-;12904:74;;12987:93;13076:3;12987:93;:::i;:::-;13105:2;13100:3;13096:12;13089:19;;12748:366;;;:::o;13120:::-;13262:3;13283:67;13347:2;13342:3;13283:67;:::i;:::-;13276:74;;13359:93;13448:3;13359:93;:::i;:::-;13477:2;13472:3;13468:12;13461:19;;13120:366;;;:::o;13492:::-;13634:3;13655:67;13719:2;13714:3;13655:67;:::i;:::-;13648:74;;13731:93;13820:3;13731:93;:::i;:::-;13849:2;13844:3;13840:12;13833:19;;13492:366;;;:::o;13864:::-;14006:3;14027:67;14091:2;14086:3;14027:67;:::i;:::-;14020:74;;14103:93;14192:3;14103:93;:::i;:::-;14221:2;14216:3;14212:12;14205:19;;13864:366;;;:::o;14236:::-;14378:3;14399:67;14463:2;14458:3;14399:67;:::i;:::-;14392:74;;14475:93;14564:3;14475:93;:::i;:::-;14593:2;14588:3;14584:12;14577:19;;14236:366;;;:::o;14608:::-;14750:3;14771:67;14835:2;14830:3;14771:67;:::i;:::-;14764:74;;14847:93;14936:3;14847:93;:::i;:::-;14965:2;14960:3;14956:12;14949:19;;14608:366;;;:::o;14980:::-;15122:3;15143:67;15207:2;15202:3;15143:67;:::i;:::-;15136:74;;15219:93;15308:3;15219:93;:::i;:::-;15337:2;15332:3;15328:12;15321:19;;14980:366;;;:::o;15352:::-;15494:3;15515:67;15579:2;15574:3;15515:67;:::i;:::-;15508:74;;15591:93;15680:3;15591:93;:::i;:::-;15709:2;15704:3;15700:12;15693:19;;15352:366;;;:::o;15724:::-;15866:3;15887:67;15951:2;15946:3;15887:67;:::i;:::-;15880:74;;15963:93;16052:3;15963:93;:::i;:::-;16081:2;16076:3;16072:12;16065:19;;15724:366;;;:::o;16096:::-;16238:3;16259:67;16323:2;16318:3;16259:67;:::i;:::-;16252:74;;16335:93;16424:3;16335:93;:::i;:::-;16453:2;16448:3;16444:12;16437:19;;16096:366;;;:::o;16468:::-;16610:3;16631:67;16695:2;16690:3;16631:67;:::i;:::-;16624:74;;16707:93;16796:3;16707:93;:::i;:::-;16825:2;16820:3;16816:12;16809:19;;16468:366;;;:::o;16840:::-;16982:3;17003:67;17067:2;17062:3;17003:67;:::i;:::-;16996:74;;17079:93;17168:3;17079:93;:::i;:::-;17197:2;17192:3;17188:12;17181:19;;16840:366;;;:::o;17212:::-;17354:3;17375:67;17439:2;17434:3;17375:67;:::i;:::-;17368:74;;17451:93;17540:3;17451:93;:::i;:::-;17569:2;17564:3;17560:12;17553:19;;17212:366;;;:::o;17584:::-;17726:3;17747:67;17811:2;17806:3;17747:67;:::i;:::-;17740:74;;17823:93;17912:3;17823:93;:::i;:::-;17941:2;17936:3;17932:12;17925:19;;17584:366;;;:::o;17956:::-;18098:3;18119:67;18183:2;18178:3;18119:67;:::i;:::-;18112:74;;18195:93;18284:3;18195:93;:::i;:::-;18313:2;18308:3;18304:12;18297:19;;17956:366;;;:::o;18328:::-;18470:3;18491:67;18555:2;18550:3;18491:67;:::i;:::-;18484:74;;18567:93;18656:3;18567:93;:::i;:::-;18685:2;18680:3;18676:12;18669:19;;18328:366;;;:::o;18700:::-;18842:3;18863:67;18927:2;18922:3;18863:67;:::i;:::-;18856:74;;18939:93;19028:3;18939:93;:::i;:::-;19057:2;19052:3;19048:12;19041:19;;18700:366;;;:::o;19072:::-;19214:3;19235:67;19299:2;19294:3;19235:67;:::i;:::-;19228:74;;19311:93;19400:3;19311:93;:::i;:::-;19429:2;19424:3;19420:12;19413:19;;19072:366;;;:::o;19444:::-;19586:3;19607:67;19671:2;19666:3;19607:67;:::i;:::-;19600:74;;19683:93;19772:3;19683:93;:::i;:::-;19801:2;19796:3;19792:12;19785:19;;19444:366;;;:::o;19816:::-;19958:3;19979:67;20043:2;20038:3;19979:67;:::i;:::-;19972:74;;20055:93;20144:3;20055:93;:::i;:::-;20173:2;20168:3;20164:12;20157:19;;19816:366;;;:::o;20188:::-;20330:3;20351:67;20415:2;20410:3;20351:67;:::i;:::-;20344:74;;20427:93;20516:3;20427:93;:::i;:::-;20545:2;20540:3;20536:12;20529:19;;20188:366;;;:::o;20560:::-;20702:3;20723:67;20787:2;20782:3;20723:67;:::i;:::-;20716:74;;20799:93;20888:3;20799:93;:::i;:::-;20917:2;20912:3;20908:12;20901:19;;20560:366;;;:::o;20932:::-;21074:3;21095:67;21159:2;21154:3;21095:67;:::i;:::-;21088:74;;21171:93;21260:3;21171:93;:::i;:::-;21289:2;21284:3;21280:12;21273:19;;20932:366;;;:::o;21304:::-;21446:3;21467:67;21531:2;21526:3;21467:67;:::i;:::-;21460:74;;21543:93;21632:3;21543:93;:::i;:::-;21661:2;21656:3;21652:12;21645:19;;21304:366;;;:::o;21676:118::-;21763:24;21781:5;21763:24;:::i;:::-;21758:3;21751:37;21676:118;;:::o;21800:157::-;21905:45;21925:24;21943:5;21925:24;:::i;:::-;21905:45;:::i;:::-;21900:3;21893:58;21800:157;;:::o;21963:416::-;22123:3;22145:95;22236:3;22227:6;22145:95;:::i;:::-;22138:102;;22250:75;22321:3;22312:6;22250:75;:::i;:::-;22350:2;22345:3;22341:12;22334:19;;22370:3;22363:10;;21963:416;;;;;:::o;22385:222::-;22478:4;22516:2;22505:9;22501:18;22493:26;;22529:71;22597:1;22586:9;22582:17;22573:6;22529:71;:::i;:::-;22385:222;;;;:::o;22613:640::-;22808:4;22846:3;22835:9;22831:19;22823:27;;22860:71;22928:1;22917:9;22913:17;22904:6;22860:71;:::i;:::-;22941:72;23009:2;22998:9;22994:18;22985:6;22941:72;:::i;:::-;23023;23091:2;23080:9;23076:18;23067:6;23023:72;:::i;:::-;23142:9;23136:4;23132:20;23127:2;23116:9;23112:18;23105:48;23170:76;23241:4;23232:6;23170:76;:::i;:::-;23162:84;;22613:640;;;;;;;:::o;23259:210::-;23346:4;23384:2;23373:9;23369:18;23361:26;;23397:65;23459:1;23448:9;23444:17;23435:6;23397:65;:::i;:::-;23259:210;;;;:::o;23475:406::-;23606:4;23644:2;23633:9;23629:18;23621:26;;23657:65;23719:1;23708:9;23704:17;23695:6;23657:65;:::i;:::-;23732:66;23794:2;23783:9;23779:18;23770:6;23732:66;:::i;:::-;23808;23870:2;23859:9;23855:18;23846:6;23808:66;:::i;:::-;23475:406;;;;;;:::o;23887:313::-;24000:4;24038:2;24027:9;24023:18;24015:26;;24087:9;24081:4;24077:20;24073:1;24062:9;24058:17;24051:47;24115:78;24188:4;24179:6;24115:78;:::i;:::-;24107:86;;23887:313;;;;:::o;24206:419::-;24372:4;24410:2;24399:9;24395:18;24387:26;;24459:9;24453:4;24449:20;24445:1;24434:9;24430:17;24423:47;24487:131;24613:4;24487:131;:::i;:::-;24479:139;;24206:419;;;:::o;24631:::-;24797:4;24835:2;24824:9;24820:18;24812:26;;24884:9;24878:4;24874:20;24870:1;24859:9;24855:17;24848:47;24912:131;25038:4;24912:131;:::i;:::-;24904:139;;24631:419;;;:::o;25056:::-;25222:4;25260:2;25249:9;25245:18;25237:26;;25309:9;25303:4;25299:20;25295:1;25284:9;25280:17;25273:47;25337:131;25463:4;25337:131;:::i;:::-;25329:139;;25056:419;;;:::o;25481:::-;25647:4;25685:2;25674:9;25670:18;25662:26;;25734:9;25728:4;25724:20;25720:1;25709:9;25705:17;25698:47;25762:131;25888:4;25762:131;:::i;:::-;25754:139;;25481:419;;;:::o;25906:::-;26072:4;26110:2;26099:9;26095:18;26087:26;;26159:9;26153:4;26149:20;26145:1;26134:9;26130:17;26123:47;26187:131;26313:4;26187:131;:::i;:::-;26179:139;;25906:419;;;:::o;26331:::-;26497:4;26535:2;26524:9;26520:18;26512:26;;26584:9;26578:4;26574:20;26570:1;26559:9;26555:17;26548:47;26612:131;26738:4;26612:131;:::i;:::-;26604:139;;26331:419;;;:::o;26756:::-;26922:4;26960:2;26949:9;26945:18;26937:26;;27009:9;27003:4;26999:20;26995:1;26984:9;26980:17;26973:47;27037:131;27163:4;27037:131;:::i;:::-;27029:139;;26756:419;;;:::o;27181:::-;27347:4;27385:2;27374:9;27370:18;27362:26;;27434:9;27428:4;27424:20;27420:1;27409:9;27405:17;27398:47;27462:131;27588:4;27462:131;:::i;:::-;27454:139;;27181:419;;;:::o;27606:::-;27772:4;27810:2;27799:9;27795:18;27787:26;;27859:9;27853:4;27849:20;27845:1;27834:9;27830:17;27823:47;27887:131;28013:4;27887:131;:::i;:::-;27879:139;;27606:419;;;:::o;28031:::-;28197:4;28235:2;28224:9;28220:18;28212:26;;28284:9;28278:4;28274:20;28270:1;28259:9;28255:17;28248:47;28312:131;28438:4;28312:131;:::i;:::-;28304:139;;28031:419;;;:::o;28456:::-;28622:4;28660:2;28649:9;28645:18;28637:26;;28709:9;28703:4;28699:20;28695:1;28684:9;28680:17;28673:47;28737:131;28863:4;28737:131;:::i;:::-;28729:139;;28456:419;;;:::o;28881:::-;29047:4;29085:2;29074:9;29070:18;29062:26;;29134:9;29128:4;29124:20;29120:1;29109:9;29105:17;29098:47;29162:131;29288:4;29162:131;:::i;:::-;29154:139;;28881:419;;;:::o;29306:::-;29472:4;29510:2;29499:9;29495:18;29487:26;;29559:9;29553:4;29549:20;29545:1;29534:9;29530:17;29523:47;29587:131;29713:4;29587:131;:::i;:::-;29579:139;;29306:419;;;:::o;29731:::-;29897:4;29935:2;29924:9;29920:18;29912:26;;29984:9;29978:4;29974:20;29970:1;29959:9;29955:17;29948:47;30012:131;30138:4;30012:131;:::i;:::-;30004:139;;29731:419;;;:::o;30156:::-;30322:4;30360:2;30349:9;30345:18;30337:26;;30409:9;30403:4;30399:20;30395:1;30384:9;30380:17;30373:47;30437:131;30563:4;30437:131;:::i;:::-;30429:139;;30156:419;;;:::o;30581:::-;30747:4;30785:2;30774:9;30770:18;30762:26;;30834:9;30828:4;30824:20;30820:1;30809:9;30805:17;30798:47;30862:131;30988:4;30862:131;:::i;:::-;30854:139;;30581:419;;;:::o;31006:::-;31172:4;31210:2;31199:9;31195:18;31187:26;;31259:9;31253:4;31249:20;31245:1;31234:9;31230:17;31223:47;31287:131;31413:4;31287:131;:::i;:::-;31279:139;;31006:419;;;:::o;31431:::-;31597:4;31635:2;31624:9;31620:18;31612:26;;31684:9;31678:4;31674:20;31670:1;31659:9;31655:17;31648:47;31712:131;31838:4;31712:131;:::i;:::-;31704:139;;31431:419;;;:::o;31856:::-;32022:4;32060:2;32049:9;32045:18;32037:26;;32109:9;32103:4;32099:20;32095:1;32084:9;32080:17;32073:47;32137:131;32263:4;32137:131;:::i;:::-;32129:139;;31856:419;;;:::o;32281:::-;32447:4;32485:2;32474:9;32470:18;32462:26;;32534:9;32528:4;32524:20;32520:1;32509:9;32505:17;32498:47;32562:131;32688:4;32562:131;:::i;:::-;32554:139;;32281:419;;;:::o;32706:::-;32872:4;32910:2;32899:9;32895:18;32887:26;;32959:9;32953:4;32949:20;32945:1;32934:9;32930:17;32923:47;32987:131;33113:4;32987:131;:::i;:::-;32979:139;;32706:419;;;:::o;33131:::-;33297:4;33335:2;33324:9;33320:18;33312:26;;33384:9;33378:4;33374:20;33370:1;33359:9;33355:17;33348:47;33412:131;33538:4;33412:131;:::i;:::-;33404:139;;33131:419;;;:::o;33556:::-;33722:4;33760:2;33749:9;33745:18;33737:26;;33809:9;33803:4;33799:20;33795:1;33784:9;33780:17;33773:47;33837:131;33963:4;33837:131;:::i;:::-;33829:139;;33556:419;;;:::o;33981:::-;34147:4;34185:2;34174:9;34170:18;34162:26;;34234:9;34228:4;34224:20;34220:1;34209:9;34205:17;34198:47;34262:131;34388:4;34262:131;:::i;:::-;34254:139;;33981:419;;;:::o;34406:::-;34572:4;34610:2;34599:9;34595:18;34587:26;;34659:9;34653:4;34649:20;34645:1;34634:9;34630:17;34623:47;34687:131;34813:4;34687:131;:::i;:::-;34679:139;;34406:419;;;:::o;34831:::-;34997:4;35035:2;35024:9;35020:18;35012:26;;35084:9;35078:4;35074:20;35070:1;35059:9;35055:17;35048:47;35112:131;35238:4;35112:131;:::i;:::-;35104:139;;34831:419;;;:::o;35256:::-;35422:4;35460:2;35449:9;35445:18;35437:26;;35509:9;35503:4;35499:20;35495:1;35484:9;35480:17;35473:47;35537:131;35663:4;35537:131;:::i;:::-;35529:139;;35256:419;;;:::o;35681:::-;35847:4;35885:2;35874:9;35870:18;35862:26;;35934:9;35928:4;35924:20;35920:1;35909:9;35905:17;35898:47;35962:131;36088:4;35962:131;:::i;:::-;35954:139;;35681:419;;;:::o;36106:::-;36272:4;36310:2;36299:9;36295:18;36287:26;;36359:9;36353:4;36349:20;36345:1;36334:9;36330:17;36323:47;36387:131;36513:4;36387:131;:::i;:::-;36379:139;;36106:419;;;:::o;36531:::-;36697:4;36735:2;36724:9;36720:18;36712:26;;36784:9;36778:4;36774:20;36770:1;36759:9;36755:17;36748:47;36812:131;36938:4;36812:131;:::i;:::-;36804:139;;36531:419;;;:::o;36956:::-;37122:4;37160:2;37149:9;37145:18;37137:26;;37209:9;37203:4;37199:20;37195:1;37184:9;37180:17;37173:47;37237:131;37363:4;37237:131;:::i;:::-;37229:139;;36956:419;;;:::o;37381:222::-;37474:4;37512:2;37501:9;37497:18;37489:26;;37525:71;37593:1;37582:9;37578:17;37569:6;37525:71;:::i;:::-;37381:222;;;;:::o;37609:129::-;37643:6;37670:20;;:::i;:::-;37660:30;;37699:33;37727:4;37719:6;37699:33;:::i;:::-;37609:129;;;:::o;37744:75::-;37777:6;37810:2;37804:9;37794:19;;37744:75;:::o;37825:307::-;37886:4;37976:18;37968:6;37965:30;37962:56;;;37998:18;;:::i;:::-;37962:56;38036:29;38058:6;38036:29;:::i;:::-;38028:37;;38120:4;38114;38110:15;38102:23;;37825:307;;;:::o;38138:308::-;38200:4;38290:18;38282:6;38279:30;38276:56;;;38312:18;;:::i;:::-;38276:56;38350:29;38372:6;38350:29;:::i;:::-;38342:37;;38434:4;38428;38424:15;38416:23;;38138:308;;;:::o;38452:98::-;38503:6;38537:5;38531:12;38521:22;;38452:98;;;:::o;38556:99::-;38608:6;38642:5;38636:12;38626:22;;38556:99;;;:::o;38661:168::-;38744:11;38778:6;38773:3;38766:19;38818:4;38813:3;38809:14;38794:29;;38661:168;;;;:::o;38835:169::-;38919:11;38953:6;38948:3;38941:19;38993:4;38988:3;38984:14;38969:29;;38835:169;;;;:::o;39010:148::-;39112:11;39149:3;39134:18;;39010:148;;;;:::o;39164:305::-;39204:3;39223:20;39241:1;39223:20;:::i;:::-;39218:25;;39257:20;39275:1;39257:20;:::i;:::-;39252:25;;39411:1;39343:66;39339:74;39336:1;39333:81;39330:107;;;39417:18;;:::i;:::-;39330:107;39461:1;39458;39454:9;39447:16;;39164:305;;;;:::o;39475:348::-;39515:7;39538:20;39556:1;39538:20;:::i;:::-;39533:25;;39572:20;39590:1;39572:20;:::i;:::-;39567:25;;39760:1;39692:66;39688:74;39685:1;39682:81;39677:1;39670:9;39663:17;39659:105;39656:131;;;39767:18;;:::i;:::-;39656:131;39815:1;39812;39808:9;39797:20;;39475:348;;;;:::o;39829:191::-;39869:4;39889:20;39907:1;39889:20;:::i;:::-;39884:25;;39923:20;39941:1;39923:20;:::i;:::-;39918:25;;39962:1;39959;39956:8;39953:34;;;39967:18;;:::i;:::-;39953:34;40012:1;40009;40005:9;39997:17;;39829:191;;;;:::o;40026:96::-;40063:7;40092:24;40110:5;40092:24;:::i;:::-;40081:35;;40026:96;;;:::o;40128:90::-;40162:7;40205:5;40198:13;40191:21;40180:32;;40128:90;;;:::o;40224:149::-;40260:7;40300:66;40293:5;40289:78;40278:89;;40224:149;;;:::o;40379:126::-;40416:7;40456:42;40449:5;40445:54;40434:65;;40379:126;;;:::o;40511:77::-;40548:7;40577:5;40566:16;;40511:77;;;:::o;40594:86::-;40629:7;40669:4;40662:5;40658:16;40647:27;;40594:86;;;:::o;40686:154::-;40770:6;40765:3;40760;40747:30;40832:1;40823:6;40818:3;40814:16;40807:27;40686:154;;;:::o;40846:307::-;40914:1;40924:113;40938:6;40935:1;40932:13;40924:113;;;41023:1;41018:3;41014:11;41008:18;41004:1;40999:3;40995:11;40988:39;40960:2;40957:1;40953:10;40948:15;;40924:113;;;41055:6;41052:1;41049:13;41046:101;;;41135:1;41126:6;41121:3;41117:16;41110:27;41046:101;40895:258;40846:307;;;:::o;41159:320::-;41203:6;41240:1;41234:4;41230:12;41220:22;;41287:1;41281:4;41277:12;41308:18;41298:81;;41364:4;41356:6;41352:17;41342:27;;41298:81;41426:2;41418:6;41415:14;41395:18;41392:38;41389:84;;;41445:18;;:::i;:::-;41389:84;41210:269;41159:320;;;:::o;41485:281::-;41568:27;41590:4;41568:27;:::i;:::-;41560:6;41556:40;41698:6;41686:10;41683:22;41662:18;41650:10;41647:34;41644:62;41641:88;;;41709:18;;:::i;:::-;41641:88;41749:10;41745:2;41738:22;41528:238;41485:281;;:::o;41772:233::-;41811:3;41834:24;41852:5;41834:24;:::i;:::-;41825:33;;41880:66;41873:5;41870:77;41867:103;;;41950:18;;:::i;:::-;41867:103;41997:1;41990:5;41986:13;41979:20;;41772:233;;;:::o;42011:79::-;42050:7;42079:5;42068:16;;42011:79;;;:::o;42096:180::-;42144:77;42141:1;42134:88;42241:4;42238:1;42231:15;42265:4;42262:1;42255:15;42282:180;42330:77;42327:1;42320:88;42427:4;42424:1;42417:15;42451:4;42448:1;42441:15;42468:180;42516:77;42513:1;42506:88;42613:4;42610:1;42603:15;42637:4;42634:1;42627:15;42654:180;42702:77;42699:1;42692:88;42799:4;42796:1;42789:15;42823:4;42820:1;42813:15;42840:180;42888:77;42885:1;42878:88;42985:4;42982:1;42975:15;43009:4;43006:1;42999:15;43026:117;43135:1;43132;43125:12;43149:117;43258:1;43255;43248:12;43272:117;43381:1;43378;43371:12;43395:117;43504:1;43501;43494:12;43518:117;43627:1;43624;43617:12;43641:117;43750:1;43747;43740:12;43764:102;43805:6;43856:2;43852:7;43847:2;43840:5;43836:14;43832:28;43822:38;;43764:102;;;:::o;43872:178::-;44012:30;44008:1;44000:6;43996:14;43989:54;43872:178;:::o;44056:230::-;44196:34;44192:1;44184:6;44180:14;44173:58;44265:13;44260:2;44252:6;44248:15;44241:38;44056:230;:::o;44292:237::-;44432:34;44428:1;44420:6;44416:14;44409:58;44501:20;44496:2;44488:6;44484:15;44477:45;44292:237;:::o;44535:225::-;44675:34;44671:1;44663:6;44659:14;44652:58;44744:8;44739:2;44731:6;44727:15;44720:33;44535:225;:::o;44766:224::-;44906:34;44902:1;44894:6;44890:14;44883:58;44975:7;44970:2;44962:6;44958:15;44951:32;44766:224;:::o;44996:178::-;45136:30;45132:1;45124:6;45120:14;45113:54;44996:178;:::o;45180:177::-;45320:29;45316:1;45308:6;45304:14;45297:53;45180:177;:::o;45363:223::-;45503:34;45499:1;45491:6;45487:14;45480:58;45572:6;45567:2;45559:6;45555:15;45548:31;45363:223;:::o;45592:175::-;45732:27;45728:1;45720:6;45716:14;45709:51;45592:175;:::o;45773:181::-;45913:33;45909:1;45901:6;45897:14;45890:57;45773:181;:::o;45960:164::-;46100:16;46096:1;46088:6;46084:14;46077:40;45960:164;:::o;46130:174::-;46270:26;46266:1;46258:6;46254:14;46247:50;46130:174;:::o;46310:180::-;46450:32;46446:1;46438:6;46434:14;46427:56;46310:180;:::o;46496:228::-;46636:34;46632:1;46624:6;46620:14;46613:58;46705:11;46700:2;46692:6;46688:15;46681:36;46496:228;:::o;46730:223::-;46870:34;46866:1;46858:6;46854:14;46847:58;46939:6;46934:2;46926:6;46922:15;46915:31;46730:223;:::o;46959:220::-;47099:34;47095:1;47087:6;47083:14;47076:58;47168:3;47163:2;47155:6;47151:15;47144:28;46959:220;:::o;47185:171::-;47325:23;47321:1;47313:6;47309:14;47302:47;47185:171;:::o;47362:249::-;47502:34;47498:1;47490:6;47486:14;47479:58;47571:32;47566:2;47558:6;47554:15;47547:57;47362:249;:::o;47617:182::-;47757:34;47753:1;47745:6;47741:14;47734:58;47617:182;:::o;47805:173::-;47945:25;47941:1;47933:6;47929:14;47922:49;47805:173;:::o;47984:177::-;48124:29;48120:1;48112:6;48108:14;48101:53;47984:177;:::o;48167:182::-;48307:34;48303:1;48295:6;48291:14;48284:58;48167:182;:::o;48355:167::-;48495:19;48491:1;48483:6;48479:14;48472:43;48355:167;:::o;48528:234::-;48668:34;48664:1;48656:6;48652:14;48645:58;48737:17;48732:2;48724:6;48720:15;48713:42;48528:234;:::o;48768:174::-;48908:26;48904:1;48896:6;48892:14;48885:50;48768:174;:::o;48948:220::-;49088:34;49084:1;49076:6;49072:14;49065:58;49157:3;49152:2;49144:6;49140:15;49133:28;48948:220;:::o;49174:164::-;49314:16;49310:1;49302:6;49298:14;49291:40;49174:164;:::o;49344:231::-;49484:34;49480:1;49472:6;49468:14;49461:58;49553:14;49548:2;49540:6;49536:15;49529:39;49344:231;:::o;49581:180::-;49721:32;49717:1;49709:6;49705:14;49698:56;49581:180;:::o;49767:171::-;49907:23;49903:1;49895:6;49891:14;49884:47;49767:171;:::o;49944:233::-;50084:34;50080:1;50072:6;50068:14;50061:58;50153:16;50148:2;50140:6;50136:15;50129:41;49944:233;:::o;50183:122::-;50256:24;50274:5;50256:24;:::i;:::-;50249:5;50246:35;50236:63;;50295:1;50292;50285:12;50236:63;50183:122;:::o;50311:116::-;50381:21;50396:5;50381:21;:::i;:::-;50374:5;50371:32;50361:60;;50417:1;50414;50407:12;50361:60;50311:116;:::o;50433:120::-;50505:23;50522:5;50505:23;:::i;:::-;50498:5;50495:34;50485:62;;50543:1;50540;50533:12;50485:62;50433:120;:::o;50559:122::-;50632:24;50650:5;50632:24;:::i;:::-;50625:5;50622:35;50612:63;;50671:1;50668;50661:12;50612:63;50559:122;:::o;50687:118::-;50758:22;50774:5;50758:22;:::i;:::-;50751:5;50748:33;50738:61;;50795:1;50792;50785:12;50738:61;50687:118;:::o
Swarm Source
ipfs://620f5f52954b15d6a8384e34ff222ae1a20a622e40949bbc3378f89c32df4faf
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.