Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
7.871 ETH
Eth Value
$20,671.62 (@ $2,626.30/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 208 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 20227075 | 125 days ago | IN | 0 ETH | 0.00134905 | ||||
Safe Transfer Fr... | 19904497 | 170 days ago | IN | 0 ETH | 0.00026717 | ||||
Set Approval For... | 19352278 | 248 days ago | IN | 0 ETH | 0.00197176 | ||||
Safe Transfer Fr... | 19346645 | 249 days ago | IN | 0 ETH | 0.00580465 | ||||
Mint Box | 19346644 | 249 days ago | IN | 0.053 ETH | 0.02061906 | ||||
Safe Transfer Fr... | 19330471 | 251 days ago | IN | 0 ETH | 0.00447982 | ||||
Mint Box | 19330470 | 251 days ago | IN | 0.053 ETH | 0.02123512 | ||||
Safe Transfer Fr... | 19327242 | 251 days ago | IN | 0 ETH | 0.01161138 | ||||
Mint Box | 19327241 | 251 days ago | IN | 0.053 ETH | 0.03848622 | ||||
Safe Transfer Fr... | 19327239 | 251 days ago | IN | 0 ETH | 0.01135544 | ||||
Mint Box | 19327238 | 251 days ago | IN | 0.053 ETH | 0.03631891 | ||||
Safe Transfer Fr... | 19327235 | 251 days ago | IN | 0 ETH | 0.00822312 | ||||
Mint Box | 19327234 | 251 days ago | IN | 0.053 ETH | 0.03963583 | ||||
Safe Transfer Fr... | 19327229 | 251 days ago | IN | 0 ETH | 0.01061162 | ||||
Mint Box | 19327228 | 251 days ago | IN | 0.053 ETH | 0.03554809 | ||||
Safe Transfer Fr... | 19325710 | 251 days ago | IN | 0 ETH | 0.00448299 | ||||
Mint Box | 19325709 | 251 days ago | IN | 0.053 ETH | 0.02137259 | ||||
Safe Transfer Fr... | 17869238 | 456 days ago | IN | 0 ETH | 0.00128018 | ||||
Mint Box | 17869237 | 456 days ago | IN | 0.053 ETH | 0.00440001 | ||||
Set Approval For... | 17746661 | 473 days ago | IN | 0 ETH | 0.00071266 | ||||
Safe Transfer Fr... | 17607765 | 492 days ago | IN | 0 ETH | 0.00089209 | ||||
Transfer From | 17607693 | 492 days ago | IN | 0 ETH | 0.00155069 | ||||
Approve | 17607530 | 492 days ago | IN | 0 ETH | 0.00131632 | ||||
Safe Transfer Fr... | 17470497 | 512 days ago | IN | 0 ETH | 0.0008848 | ||||
Mint Box | 17470496 | 512 days ago | IN | 0.053 ETH | 0.00476027 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
SmyleRide
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-08 */ // SPDX-License-Identifier: MIT // File: contracts/MintBox.sol pragma solidity 0.8.15; library MintBox { struct Box { uint256 boxId; uint256 totalSupply; uint256 price; uint256 totalMint; uint256 startTime; uint256 endTime; uint256 mintLimitPerBox; uint256 mintLimitPerTransaction; string baseURI; // end with a "/" uint16[] boxHashList; bool onlyWhitelisted; bool paused; bool closed; } struct BoxWithoutHashList { uint256 boxId; uint256 totalSupply; uint256 price; uint256 totalMint; uint256 startTime; uint256 endTime; uint256 mintLimitPerBox; uint256 mintLimitPerTransaction; string baseURI; // end with a "/" bool onlyWhitelisted; bool paused; bool closed; } } // File: contracts/Whitelist.sol pragma solidity 0.8.15; contract Whitelist { address public ownerAddress; mapping(address => bool) public whitelistedAddresses; modifier onlyOwner() { require(msg.sender == ownerAddress, "Only owner address"); _; } constructor() { ownerAddress = msg.sender; } function addAddresses(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; ++i) { if (!whitelistedAddresses[addresses[i]]) whitelistedAddresses[addresses[i]] = true; } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // 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/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/extensions/IERC721AQueryable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: erc721a/contracts/extensions/ERC721AQueryable.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File: contracts/SmyleRide.sol pragma solidity 0.8.15; interface IWhitelist { function whitelistedAddresses(address) external view returns (bool); } contract SmyleRide is ERC721A("Smyle Ride", "SMYLRD"), ERC721AQueryable, Ownable, Pausable, ReentrancyGuard { event CreateBox( uint256 indexed boxId, uint256 price, uint256 totalSupply, uint256 startTime, uint256 endTime, uint256 mintLimitPerBox, uint256 mintLimitPerTransaction, string baseURI, bool onlyWhitelisted ); event MintSuccess(uint256 boxId, uint256 startId, uint256 quantity); event BurnSuccess(uint256 tokenId, address owner); MintBox.Box[] private boxes; address private whitelistAddress; uint256 private lastIndex; mapping(uint256 => string) private tokenToHashURI; mapping(address => mapping(uint256 => uint256)) private adrressToBoxIdMintCount; constructor() {} function _startTokenId() internal pure override returns (uint256) { return 1; } function setWhitelisterAddress(address wlAddress) external onlyOwner { whitelistAddress = wlAddress; } function createBoxInfo( uint256 totalSupply, uint256 price, // in Wei uint256 startTime, uint256 endTime, uint256 mintLimitPerBox, uint256 mintLimitPerTransaction, string memory baseURI, bool onlyWhitelisted ) external onlyOwner returns (uint256) { uint256 boxId = boxes.length; boxes.push( MintBox.Box({ boxId: boxId, totalSupply: totalSupply, price: price, totalMint: 0, startTime: startTime, endTime: endTime, mintLimitPerBox: mintLimitPerBox, mintLimitPerTransaction: mintLimitPerTransaction, baseURI: baseURI, boxHashList: new uint16[](totalSupply), onlyWhitelisted: onlyWhitelisted, paused: false, closed: false }) ); emit CreateBox( boxId, totalSupply, price, startTime, endTime, mintLimitPerBox, mintLimitPerTransaction, baseURI, onlyWhitelisted ); return boxId; } function getBoxInfo(uint256 boxId) external view onlyOwner returns (MintBox.BoxWithoutHashList memory) { require(boxId < boxes.length, "Box Id out of range"); return MintBox.BoxWithoutHashList({ boxId: boxes[boxId].boxId, totalSupply: boxes[boxId].totalSupply, price: boxes[boxId].price, totalMint: boxes[boxId].totalMint, startTime: boxes[boxId].startTime, endTime: boxes[boxId].endTime, mintLimitPerBox: boxes[boxId].mintLimitPerBox, mintLimitPerTransaction: boxes[boxId].mintLimitPerTransaction, baseURI: boxes[boxId].baseURI, onlyWhitelisted: boxes[boxId].onlyWhitelisted, paused: boxes[boxId].paused, closed: boxes[boxId].closed }); } function getBoxInfoLength() external view returns (uint256) { return boxes.length; } function getBoxPrice(uint256 boxId) external view returns (uint256) { require(boxId < boxes.length, "Box Id out of range"); return boxes[boxId].price; } function getAdrressToBoxIdMintCount(address minter, uint256 boxId) external view returns (uint256){ require(boxId < boxes.length, "Box Id out of range"); return adrressToBoxIdMintCount[minter][boxId]; } function mintBox(uint256 boxId, uint256 quantity) external payable nonReentrant whenNotPaused { require(boxId < boxes.length, "Box Id out of range"); require( block.timestamp >= boxes[boxId].startTime && block.timestamp <= boxes[boxId].endTime, "Not in the mint period" ); require(quantity > 0, "Quantity cannot be zero"); require( msg.value == SafeMath.mul(boxes[boxId].price, quantity), "Not enough money" ); if (boxes[boxId].onlyWhitelisted) { require( whitelistAddress != address(0), "Whitelist address is not set" ); require( IWhitelist(whitelistAddress).whitelistedAddresses(msg.sender), "You are not whitelisted" ); } require(adrressToBoxIdMintCount[msg.sender][boxId] + quantity <= boxes[boxId].mintLimitPerBox, "Exceed mint quantity limit"); require(!boxes[boxId].closed, "The box is closed"); require(!boxes[boxId].paused, "The box is paused"); require(boxes[boxId].boxHashList.length >= quantity, "Exceed box hash limit"); require(boxes[boxId].totalMint + quantity <= boxes[boxId].totalSupply, "The box is sold out"); require(boxes[boxId].mintLimitPerTransaction >= quantity, "Exceed quantity limit"); uint256 tokenId = _nextTokenId(); for (uint256 i = 0; i < quantity; i++) { tokenToHashURI[tokenId + i] = string( abi.encodePacked( boxes[boxId].baseURI, Strings.toString(randomHashInArray(boxId)) ) ); } boxes[boxId].totalMint += quantity; adrressToBoxIdMintCount[msg.sender][boxId] += quantity; _safeMint(msg.sender, quantity); emit MintSuccess(boxId, tokenId, quantity); } function pauseBox(uint256 boxId, bool paused) external onlyOwner { boxes[boxId].paused = paused; } function setHashesToBox( uint256 boxID, uint16 startId, uint16 quantity ) external { require(boxID < boxes.length, "Box Id out of range"); require( quantity <= boxes[boxID].totalSupply, "Hashes exceed total supply" ); for (uint16 i = 0; i < quantity; i++) { boxes[boxID].boxHashList[(startId + i) - 1] = startId + i; } } function updateBoxInfo( uint256 boxID, uint256 startTime, uint256 endTime, string memory baseURI, bool isWhitelistOnly, uint256 mintLimitPerBox ) external onlyOwner { boxes[boxID].startTime = startTime; boxes[boxID].endTime = endTime; boxes[boxID].baseURI = baseURI; boxes[boxID].onlyWhitelisted = isWhitelistOnly; boxes[boxID].mintLimitPerBox = mintLimitPerBox; } function closeBox(uint256 boxID) external onlyOwner { boxes[boxID].closed = true; } function randomHashInArray(uint256 boxID) internal returns (uint256 _result) { require( boxes[boxID].boxHashList.length > 0, "Hash of the box is not set" ); uint256 random = uint256( keccak256( abi.encode( blockhash(block.number - 1), block.timestamp, block.difficulty, block.number, address(this), tx.gasprice, lastIndex ) ) ); lastIndex = random; uint256 index = random % boxes[boxID].boxHashList.length; _result = boxes[boxID].boxHashList[index]; boxes[boxID].boxHashList[index] = boxes[boxID].boxHashList[ boxes[boxID].boxHashList.length - 1 ]; boxes[boxID].boxHashList.pop(); } function tokenURI(uint256 tokenId) public view override(ERC721A, IERC721A) returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); return tokenToHashURI[tokenId]; } function burn(uint256 tokenId) external { _burn(tokenId, true); delete tokenToHashURI[tokenId]; emit BurnSuccess(tokenId, msg.sender); } function withdrawPayments() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } fallback() external payable {} receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"}],"name":"BurnSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"boxId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintLimitPerBox","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintLimitPerTransaction","type":"uint256"},{"indexed":false,"internalType":"string","name":"baseURI","type":"string"},{"indexed":false,"internalType":"bool","name":"onlyWhitelisted","type":"bool"}],"name":"CreateBox","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"boxId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"MintSuccess","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","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":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"boxID","type":"uint256"}],"name":"closeBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"mintLimitPerBox","type":"uint256"},{"internalType":"uint256","name":"mintLimitPerTransaction","type":"uint256"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"bool","name":"onlyWhitelisted","type":"bool"}],"name":"createBoxInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"uint256","name":"boxId","type":"uint256"}],"name":"getAdrressToBoxIdMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"boxId","type":"uint256"}],"name":"getBoxInfo","outputs":[{"components":[{"internalType":"uint256","name":"boxId","type":"uint256"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"totalMint","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"mintLimitPerBox","type":"uint256"},{"internalType":"uint256","name":"mintLimitPerTransaction","type":"uint256"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"bool","name":"onlyWhitelisted","type":"bool"},{"internalType":"bool","name":"paused","type":"bool"},{"internalType":"bool","name":"closed","type":"bool"}],"internalType":"struct MintBox.BoxWithoutHashList","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBoxInfoLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"boxId","type":"uint256"}],"name":"getBoxPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"boxId","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintBox","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"boxId","type":"uint256"},{"internalType":"bool","name":"paused","type":"bool"}],"name":"pauseBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"boxID","type":"uint256"},{"internalType":"uint16","name":"startId","type":"uint16"},{"internalType":"uint16","name":"quantity","type":"uint16"}],"name":"setHashesToBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wlAddress","type":"address"}],"name":"setWhitelisterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"boxID","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"bool","name":"isWhitelistOnly","type":"bool"},{"internalType":"uint256","name":"mintLimitPerBox","type":"uint256"}],"name":"updateBoxInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawPayments","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600a815260200169536d796c65205269646560b01b8152506040518060400160405280600681526020016514d35653149160d21b815250816002908162000065919062000196565b50600362000074828262000196565b505060016000555062000087336200009f565b6008805460ff60a01b19169055600160095562000262565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200011c57607f821691505b6020821081036200013d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200019157600081815260208120601f850160051c810160208610156200016c5750805b601f850160051c820191505b818110156200018d5782815560010162000178565b5050505b505050565b81516001600160401b03811115620001b257620001b2620000f1565b620001ca81620001c3845462000107565b8462000143565b602080601f831160018114620002025760008415620001e95750858301515b600019600386901b1c1916600185901b1785556200018d565b600085815260208120601f198616915b82811015620002335788860151825594840194600190910190840162000212565b5085821015620002525787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b613bc880620002726000396000f3fe6080604052600436106102475760003560e01c806370a082311161013e578063a22cb465116100bf578063c87b56dd11610079578063e4dd74b711610061578063e4dd74b714610674578063e985e9c514610694578063f2fde38b146106dd57005b8063c87b56dd14610641578063cdafcf681461066157005b8063b88d4fde116100a7578063b88d4fde146105e1578063c23dc68f146105f4578063c752e71a1461062157005b8063a22cb465146105a1578063b12c8163146105c157005b80638462151c116101105780638da5cb5b116100f85780638da5cb5b1461054e57806395d89b411461056c57806399a2557a1461058157005b80638462151c146105015780638c747d6c1461052e57005b806370a082311461048a578063715018a6146104aa57806379494afe146104bf5780638456cb59146104ec57005b806324b61b86116101c857806354cc3f271161019a5780635c975abb116101825780635c975abb146104365780636103d70b146104555780636352211e1461046a57005b806354cc3f27146103e95780635bbb21771461040957005b806324b61b86146103815780633f4ba83a146103a157806342842e0e146103b657806342966c68146103c957005b80630fceb9ab1161021957806318160ddd1161020157806318160ddd146103325780632015eee81461035957806323b872dd1461036e57005b80630fceb9ab146102f25780631662da6a1461031257005b806301ffc9a71461025057806306fdde0314610285578063081812fc146102a7578063095ea7b3146102df57005b3661024e57005b005b34801561025c57600080fd5b5061027061026b3660046130f6565b6106fd565b60405190151581526020015b60405180910390f35b34801561029157600080fd5b5061029a61079a565b60405161027c919061316b565b3480156102b357600080fd5b506102c76102c236600461317e565b61082c565b6040516001600160a01b03909116815260200161027c565b61024e6102ed3660046131ae565b610889565b3480156102fe57600080fd5b5061024e61030d36600461317e565b61094f565b34801561031e57600080fd5b5061024e61032d3660046131d8565b610997565b34801561033e57600080fd5b5060015460005403600019015b60405190815260200161027c565b34801561036557600080fd5b50600a5461034b565b61024e61037c3660046131f3565b6109ce565b34801561038d57600080fd5b5061034b61039c36600461317e565b610ba4565b3480156103ad57600080fd5b5061024e610c1f565b61024e6103c43660046131f3565b610c31565b3480156103d557600080fd5b5061024e6103e436600461317e565b610c51565b3480156103f557600080fd5b5061024e6104043660046132e9565b610cae565b34801561041557600080fd5b50610429610424366004613360565b610da7565b60405161027c91906133d5565b34801561044257600080fd5b50600854600160a01b900460ff16610270565b34801561046157600080fd5b5061024e610e73565b34801561047657600080fd5b506102c761048536600461317e565b610eaa565b34801561049657600080fd5b5061034b6104a53660046131d8565b610eb5565b3480156104b657600080fd5b5061024e610f1d565b3480156104cb57600080fd5b506104df6104da36600461317e565b610f2f565b60405161027c9190613452565b3480156104f857600080fd5b5061024e6112a4565b34801561050d57600080fd5b5061052161051c3660046131d8565b6112b4565b60405161027c9190613506565b34801561053a57600080fd5b5061024e610549366004613550565b6113b8565b34801561055a57600080fd5b506008546001600160a01b03166102c7565b34801561057857600080fd5b5061029a61152c565b34801561058d57600080fd5b5061052161059c36600461358c565b61153b565b3480156105ad57600080fd5b5061024e6105bc3660046135bf565b6116dc565b3480156105cd57600080fd5b5061034b6105dc3660046131ae565b611748565b61024e6105ef3660046135f6565b6117bb565b34801561060057600080fd5b5061061461060f36600461317e565b6117ff565b60405161027c9190613672565b34801561062d57600080fd5b5061024e61063c3660046136b7565b611887565b34801561064d57600080fd5b5061029a61065c36600461317e565b6118cf565b61024e61066f3660046136dc565b6119ae565b34801561068057600080fd5b5061034b61068f3660046136fe565b61219e565b3480156106a057600080fd5b506102706106af36600461378a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106e957600080fd5b5061024e6106f83660046131d8565b612391565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316148061076057507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b8061079457507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600280546107a9906137bd565b80601f01602080910402602001604051908101604052809291908181526020018280546107d5906137bd565b80156108225780601f106107f757610100808354040283529160200191610822565b820191906000526020600020905b81548152906001019060200180831161080557829003601f168201915b5050505050905090565b60006108378261241e565b61086d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089482610eaa565b9050336001600160a01b038216146108e6576108b081336106af565b6108e6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610957612453565b6001600a828154811061096c5761096c6137f7565b90600052602060002090600b0201600a0160026101000a81548160ff02191690831515021790555050565b61099f612453565b600b805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60006109d9826124ad565b9050836001600160a01b0316816001600160a01b031614610a26576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604090208054610a528187335b6001600160a01b039081169116811491141790565b610a7d57610a6086336106af565b610a7d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610abd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610ac857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610b5a57600184016000818152600460205260408120549003610b58576000548114610b585760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600a546000908210610bf35760405162461bcd60e51b8152602060048201526013602482015272426f78204964206f7574206f662072616e676560681b60448201526064015b60405180910390fd5b600a8281548110610c0657610c066137f7565b90600052602060002090600b0201600201549050919050565b610c27612453565b610c2f612535565b565b610c4c838383604051806020016040528060008152506117bb565b505050565b610c5c81600161258a565b6000818152600d60205260408120610c7391612fe8565b604080518281523360208201527fb69c8d6513931a76922f4cbcab727adb56dfe12c7083a5eb341860f237a4f19a910160405180910390a150565b610cb6612453565b84600a8781548110610cca57610cca6137f7565b90600052602060002090600b02016004018190555083600a8781548110610cf357610cf36137f7565b90600052602060002090600b02016005018190555082600a8781548110610d1c57610d1c6137f7565b90600052602060002090600b02016008019081610d399190613853565b5081600a8781548110610d4e57610d4e6137f7565b90600052602060002090600b0201600a0160006101000a81548160ff02191690831515021790555080600a8781548110610d8a57610d8a6137f7565b90600052602060002090600b020160060181905550505050505050565b60608160008167ffffffffffffffff811115610dc557610dc561322f565b604051908082528060200260200182016040528015610e1757816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610de35790505b50905060005b828114610e6a57610e45868683818110610e3957610e396137f7565b905060200201356117ff565b828281518110610e5757610e576137f7565b6020908102919091010152600101610e1d565b50949350505050565b610e7b612453565b60405133904780156108fc02916000818181858888f19350505050158015610ea7573d6000803e3d6000fd5b50565b6000610794826124ad565b60006001600160a01b038216610ef7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610f25612453565b610c2f60006126ed565b610f996040518061018001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001606081526020016000151581526020016000151581526020016000151581525090565b610fa1612453565b600a548210610fe85760405162461bcd60e51b8152602060048201526013602482015272426f78204964206f7574206f662072616e676560681b6044820152606401610bea565b604051806101800160405280600a8481548110611007576110076137f7565b90600052602060002090600b0201600001548152602001600a8481548110611031576110316137f7565b90600052602060002090600b0201600101548152602001600a848154811061105b5761105b6137f7565b90600052602060002090600b0201600201548152602001600a8481548110611085576110856137f7565b90600052602060002090600b0201600301548152602001600a84815481106110af576110af6137f7565b90600052602060002090600b0201600401548152602001600a84815481106110d9576110d96137f7565b90600052602060002090600b0201600501548152602001600a8481548110611103576111036137f7565b90600052602060002090600b0201600601548152602001600a848154811061112d5761112d6137f7565b90600052602060002090600b0201600701548152602001600a8481548110611157576111576137f7565b90600052602060002090600b02016008018054611173906137bd565b80601f016020809104026020016040519081016040528092919081815260200182805461119f906137bd565b80156111ec5780601f106111c1576101008083540402835291602001916111ec565b820191906000526020600020905b8154815290600101906020018083116111cf57829003601f168201915b50505050508152602001600a8481548110611209576112096137f7565b90600052602060002090600b0201600a0160009054906101000a900460ff1615158152602001600a8481548110611242576112426137f7565b90600052602060002090600b0201600a0160019054906101000a900460ff1615158152602001600a848154811061127b5761127b6137f7565b60009182526020909120600b90910201600a015462010000900460ff161515905290505b919050565b6112ac612453565b610c2f61274c565b606060008060006112c485610eb5565b905060008167ffffffffffffffff8111156112e1576112e161322f565b60405190808252806020026020018201604052801561130a578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081019190915290915060015b8386146113ac576113458161278f565b915081604001516113a45781516001600160a01b03161561136557815194505b876001600160a01b0316856001600160a01b0316036113a45780838780600101985081518110611397576113976137f7565b6020026020010181815250505b600101611335565b50909695505050505050565b600a5483106113ff5760405162461bcd60e51b8152602060048201526013602482015272426f78204964206f7574206f662072616e676560681b6044820152606401610bea565b600a8381548110611412576114126137f7565b90600052602060002090600b0201600101548161ffff1611156114775760405162461bcd60e51b815260206004820152601a60248201527f4861736865732065786365656420746f74616c20737570706c790000000000006044820152606401610bea565b60005b8161ffff168161ffff161015611526576114948184613929565b600a85815481106114a7576114a76137f7565b90600052602060002090600b0201600901600183866114c69190613929565b6114d0919061394f565b61ffff16815481106114e4576114e46137f7565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550808061151e90613972565b91505061147a565b50505050565b6060600380546107a9906137bd565b6060818310611576576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061158260005490565b9050600185101561159257600194505b8084111561159e578093505b60006115a987610eb5565b9050848610156115c857858503818110156115c2578091505b506115cc565b5060005b60008167ffffffffffffffff8111156115e7576115e761322f565b604051908082528060200260200182016040528015611610578160200160208202803683370190505b509050816000036116265793506116d592505050565b6000611631886117ff565b905060008160400151611642575080515b885b8881141580156116545750848714155b156116c9576116628161278f565b925082604001516116c15782516001600160a01b03161561168257825191505b8a6001600160a01b0316826001600160a01b0316036116c157808488806001019950815181106116b4576116b46137f7565b6020026020010181815250505b600101611644565b50505092835250909150505b9392505050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a5460009082106117925760405162461bcd60e51b8152602060048201526013602482015272426f78204964206f7574206f662072616e676560681b6044820152606401610bea565b506001600160a01b03919091166000908152600e60209081526040808320938352929052205490565b6117c68484846109ce565b6001600160a01b0383163b15611526576117e28484848461280e565b611526576040516368d2bf6b60e11b815260040160405180910390fd5b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061185857506000548310155b156118635792915050565b61186c8361278f565b905080604001511561187e5792915050565b6116d5836128fa565b61188f612453565b80600a83815481106118a3576118a36137f7565b90600052602060002090600b0201600a0160016101000a81548160ff0219169083151502179055505050565b60606118da8261241e565b611910576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000828152600d602052604090208054611929906137bd565b80601f0160208091040260200160405190810160405280929190818152602001828054611955906137bd565b80156119a25780601f10611977576101008083540402835291602001916119a2565b820191906000526020600020905b81548152906001019060200180831161198557829003601f168201915b50505050509050919050565b600260095403611a005760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bea565b6002600955611a0d612972565b600a548210611a545760405162461bcd60e51b8152602060048201526013602482015272426f78204964206f7574206f662072616e676560681b6044820152606401610bea565b600a8281548110611a6757611a676137f7565b90600052602060002090600b0201600401544210158015611aac5750600a8281548110611a9657611a966137f7565b90600052602060002090600b0201600501544211155b611af85760405162461bcd60e51b815260206004820152601660248201527f4e6f7420696e20746865206d696e7420706572696f64000000000000000000006044820152606401610bea565b60008111611b485760405162461bcd60e51b815260206004820152601760248201527f5175616e746974792063616e6e6f74206265207a65726f0000000000000000006044820152606401610bea565b611b76600a8381548110611b5e57611b5e6137f7565b90600052602060002090600b020160020154826129cc565b3414611bc45760405162461bcd60e51b815260206004820152601060248201527f4e6f7420656e6f756768206d6f6e6579000000000000000000000000000000006044820152606401610bea565b600a8281548110611bd757611bd76137f7565b60009182526020909120600a600b90920201015460ff1615611d1c57600b546001600160a01b0316611c4b5760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742061646472657373206973206e6f7420736574000000006044820152606401610bea565b600b546040517f06c933d80000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b03909116906306c933d890602401602060405180830381865afa158015611cac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cd09190613993565b611d1c5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c69737465640000000000000000006044820152606401610bea565b600a8281548110611d2f57611d2f6137f7565b600091825260208083206006600b909302019190910154338352600e82526040808420868552909252912054611d669083906139b0565b1115611db45760405162461bcd60e51b815260206004820152601a60248201527f457863656564206d696e74207175616e74697479206c696d69740000000000006044820152606401610bea565b600a8281548110611dc757611dc76137f7565b90600052602060002090600b0201600a0160029054906101000a900460ff1615611e335760405162461bcd60e51b815260206004820152601160248201527f54686520626f7820697320636c6f7365640000000000000000000000000000006044820152606401610bea565b600a8281548110611e4657611e466137f7565b90600052602060002090600b0201600a0160019054906101000a900460ff1615611eb25760405162461bcd60e51b815260206004820152601160248201527f54686520626f78206973207061757365640000000000000000000000000000006044820152606401610bea565b80600a8381548110611ec657611ec66137f7565b90600052602060002090600b0201600901805490501015611f295760405162461bcd60e51b815260206004820152601560248201527f45786365656420626f782068617368206c696d697400000000000000000000006044820152606401610bea565b600a8281548110611f3c57611f3c6137f7565b90600052602060002090600b02016001015481600a8481548110611f6257611f626137f7565b90600052602060002090600b020160030154611f7e91906139b0565b1115611fcc5760405162461bcd60e51b815260206004820152601360248201527f54686520626f7820697320736f6c64206f7574000000000000000000000000006044820152606401610bea565b80600a8381548110611fe057611fe06137f7565b90600052602060002090600b02016007015410156120405760405162461bcd60e51b815260206004820152601560248201527f457863656564207175616e74697479206c696d697400000000000000000000006044820152606401610bea565b60008054905b828110156120df57600a8481548110612061576120616137f7565b90600052602060002090600b020160080161208361207e866129d8565b612c9e565b6040516020016120949291906139c8565b60408051601f19818403018152919052600d60006120b284866139b0565b815260200190815260200160002090816120cc9190613853565b50806120d781613a46565b915050612046565b5081600a84815481106120f4576120f46137f7565b90600052602060002090600b0201600301600082825461211491906139b0565b9091555050336000908152600e60209081526040808320868452909152812080548492906121439084906139b0565b9091555061215390503383612dd3565b60408051848152602081018390529081018390527f7647de466d07c004d50b9047b97188baed8fd13cad77112649bc946c995b05c39060600160405180910390a15050600160095550565b60006121a8612453565b6000600a805490509050600a604051806101a001604052808381526020018c81526020018b8152602001600081526020018a81526020018981526020018881526020018781526020018681526020018c67ffffffffffffffff8111156122105761221061322f565b604051908082528060200260200182016040528015612239578160200160208202803683370190505b508152851515602080830191909152600060408084018290526060938401829052855460018181018855968352918390208551600b909302019182559184015194810194909455820151600284015581015160038301556080810151600483015560a0810151600583015560c0810151600683015560e0810151600783015561010081015190919060088201906122d09082613853565b5061012082015180516122ed916009840191602090910190613022565b50610140820151600a9091018054610160840151610180909401511515620100000262ff0000199415156101000261ff00199415159490941661ffff1990921691909117929092179290921617905560405181907f43ed2a7574890731002ef8212bb57eb941d898917b2b16797f719ddfeac02cf89061237c908d908d908d908d908d908d908d908d90613a5f565b60405180910390a29998505050505050505050565b612399612453565b6001600160a01b0381166124155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610bea565b610ea7816126ed565b600081600111158015612432575060005482105b8015610794575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610c2f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bea565b60008180600111612503576000548110156125035760008181526004602052604081205490600160e01b82169003612501575b806000036116d55750600019016000818152600460205260409020546124e0565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61253d612df1565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000612595836124ad565b9050806000806125b386600090815260066020526040902080549091565b9150915084156125f3576125c8818433610a3d565b6125f3576125d683336106af565b6125f357604051632ce44b5f60e11b815260040160405180910390fd5b80156125fe57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b177c030000000000000000000000000000000000000000000000000000000017600087815260046020526040812091909155600160e11b851690036126a5576001860160008181526004602052604081205490036126a35760005481146126a35760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612754612972565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861256d3390565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461079490604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612843903390899088908890600401613aaf565b6020604051808303816000875af192505050801561287e575060408051601f3d908101601f1916820190925261287b91810190613aeb565b60015b6128dc573d8080156128ac576040519150601f19603f3d011682016040523d82523d6000602084013e6128b1565b606091505b5080516000036128d4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60408051608081018252600080825260208201819052918101829052606081019190915261079461292a836124ad565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b600854600160a01b900460ff1615610c2f5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610bea565b60006116d58284613b08565b600080600a83815481106129ee576129ee6137f7565b90600052602060002090600b02016009018054905011612a505760405162461bcd60e51b815260206004820152601a60248201527f48617368206f662074686520626f78206973206e6f74207365740000000000006044820152606401610bea565b6000612a5d600143613b27565b600c54604080519240602084015242908301524460608301524360808301523060a08301523a60c083015260e0820152610100016040516020818303038152906040528051906020012060001c905080600c819055506000600a8481548110612ac857612ac86137f7565b600091825260209091206009600b909202010154612ae69083613b54565b9050600a8481548110612afb57612afb6137f7565b90600052602060002090600b02016009018181548110612b1d57612b1d6137f7565b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169250600a8481548110612b5a57612b5a6137f7565b90600052602060002090600b02016009016001600a8681548110612b8057612b806137f7565b90600052602060002090600b020160090180549050612b9f9190613b27565b81548110612baf57612baf6137f7565b90600052602060002090601091828204019190066002029054906101000a900461ffff16600a8581548110612be657612be66137f7565b90600052602060002090600b02016009018281548110612c0857612c086137f7565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550600a8481548110612c4a57612c4a6137f7565b90600052602060002090600b0201600901805480612c6a57612c6a613b68565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a02191690559055509092915050565b606081600003612ce157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612d0b5780612cf581613a46565b9150612d049050600a83613b7e565b9150612ce5565b60008167ffffffffffffffff811115612d2657612d2661322f565b6040519080825280601f01601f191660200182016040528015612d50576020820181803683370190505b5090505b84156128f257612d65600183613b27565b9150612d72600a86613b54565b612d7d9060306139b0565b60f81b818381518110612d9257612d926137f7565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612dcc600a86613b7e565b9450612d54565b612ded828260405180602001604052806000815250612e4a565b5050565b600854600160a01b900460ff16610c2f5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610bea565b612e548383612eb7565b6001600160a01b0383163b15610c4c576000548281035b612e7e600086838060010194508661280e565b612e9b576040516368d2bf6b60e11b815260040160405180910390fd5b818110612e6b578160005414612eb057600080fd5b5050505050565b6000805490829003612ef5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114612fa457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101612f6c565b5081600003612fdf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b508054612ff4906137bd565b6000825580601f10613004575050565b601f016020900490600052602060002090810190610ea791906130cb565b82805482825590600052602060002090600f016010900481019282156130bb5791602002820160005b8382111561308b57835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030261304b565b80156130b95782816101000a81549061ffff021916905560020160208160010104928301926001030261308b565b505b506130c79291506130cb565b5090565b5b808211156130c757600081556001016130cc565b6001600160e01b031981168114610ea757600080fd5b60006020828403121561310857600080fd5b81356116d5816130e0565b60005b8381101561312e578181015183820152602001613116565b838111156115265750506000910152565b60008151808452613157816020860160208601613113565b601f01601f19169290920160200192915050565b6020815260006116d5602083018461313f565b60006020828403121561319057600080fd5b5035919050565b80356001600160a01b038116811461129f57600080fd5b600080604083850312156131c157600080fd5b6131ca83613197565b946020939093013593505050565b6000602082840312156131ea57600080fd5b6116d582613197565b60008060006060848603121561320857600080fd5b61321184613197565b925061321f60208501613197565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156132605761326061322f565b604051601f8501601f19908116603f011681019082821181831017156132885761328861322f565b816040528093508581528686860111156132a157600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126132cc57600080fd5b6116d583833560208501613245565b8015158114610ea757600080fd5b60008060008060008060c0878903121561330257600080fd5b863595506020870135945060408701359350606087013567ffffffffffffffff81111561332e57600080fd5b61333a89828a016132bb565b935050608087013561334b816132db565b8092505060a087013590509295509295509295565b6000806020838503121561337357600080fd5b823567ffffffffffffffff8082111561338b57600080fd5b818501915085601f83011261339f57600080fd5b8135818111156133ae57600080fd5b8660208260051b85010111156133c357600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b818110156113ac5761343f8385516001600160a01b03815116825267ffffffffffffffff602082015116602083015260408101511515604083015262ffffff60608201511660608301525050565b92840192608092909201916001016133f1565b6020815281516020820152602082015160408201526040820151606082015260608201516080820152608082015160a082015260a082015160c082015260c082015160e0820152600060e083015161010081818501528085015191505061018061012081818601526134c86101a086018461313f565b908601519092506101406134df8682018315159052565b86015190506101606134f48682018315159052565b90950151151593019290925250919050565b6020808252825182820181905260009190848201906040850190845b818110156113ac57835183529284019291840191600101613522565b803561ffff8116811461129f57600080fd5b60008060006060848603121561356557600080fd5b833592506135756020850161353e565b91506135836040850161353e565b90509250925092565b6000806000606084860312156135a157600080fd5b6135aa84613197565b95602085013595506040909401359392505050565b600080604083850312156135d257600080fd5b6135db83613197565b915060208301356135eb816132db565b809150509250929050565b6000806000806080858703121561360c57600080fd5b61361585613197565b935061362360208601613197565b925060408501359150606085013567ffffffffffffffff81111561364657600080fd5b8501601f8101871361365757600080fd5b61366687823560208401613245565b91505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608083015162ffffff169082015260808101610794565b600080604083850312156136ca57600080fd5b8235915060208301356135eb816132db565b600080604083850312156136ef57600080fd5b50508035926020909101359150565b600080600080600080600080610100898b03121561371b57600080fd5b883597506020890135965060408901359550606089013594506080890135935060a0890135925060c089013567ffffffffffffffff81111561375c57600080fd5b6137688b828c016132bb565b92505060e0890135613779816132db565b809150509295985092959890939650565b6000806040838503121561379d57600080fd5b6137a683613197565b91506137b460208401613197565b90509250929050565b600181811c908216806137d157607f821691505b6020821081036137f157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b601f821115610c4c57600081815260208120601f850160051c810160208610156138345750805b601f850160051c820191505b81811015610b9c57828155600101613840565b815167ffffffffffffffff81111561386d5761386d61322f565b6138818161387b84546137bd565b8461380d565b602080601f8311600181146138b6576000841561389e5750858301515b600019600386901b1c1916600185901b178555610b9c565b600085815260208120601f198616915b828110156138e5578886015182559484019460019091019084016138c6565b50858210156139035787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600061ffff80831681851680830382111561394657613946613913565b01949350505050565b600061ffff8381169083168181101561396a5761396a613913565b039392505050565b600061ffff80831681810361398957613989613913565b6001019392505050565b6000602082840312156139a557600080fd5b81516116d5816132db565b600082198211156139c3576139c3613913565b500190565b60008084546139d6816137bd565b600182811680156139ee5760018114613a0357613a32565b60ff1984168752821515830287019450613a32565b8860005260208060002060005b85811015613a295781548a820152908401908201613a10565b50505082870194505b505050508351613946818360208801613113565b600060018201613a5857613a58613913565b5060010190565b60006101008a83528960208401528860408401528760608401528660808401528560a08401528060c0840152613a978184018661313f565b91505082151560e08301529998505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613ae1608083018461313f565b9695505050505050565b600060208284031215613afd57600080fd5b81516116d5816130e0565b6000816000190483118215151615613b2257613b22613913565b500290565b600082821015613b3957613b39613913565b500390565b634e487b7160e01b600052601260045260246000fd5b600082613b6357613b63613b3e565b500690565b634e487b7160e01b600052603160045260246000fd5b600082613b8d57613b8d613b3e565b50049056fea2646970667358221220f0b017e58ae7b9b33ae6647537d7023945dffb7f2996f56e07bc550956239d2664736f6c634300080f0033
Deployed Bytecode
0x6080604052600436106102475760003560e01c806370a082311161013e578063a22cb465116100bf578063c87b56dd11610079578063e4dd74b711610061578063e4dd74b714610674578063e985e9c514610694578063f2fde38b146106dd57005b8063c87b56dd14610641578063cdafcf681461066157005b8063b88d4fde116100a7578063b88d4fde146105e1578063c23dc68f146105f4578063c752e71a1461062157005b8063a22cb465146105a1578063b12c8163146105c157005b80638462151c116101105780638da5cb5b116100f85780638da5cb5b1461054e57806395d89b411461056c57806399a2557a1461058157005b80638462151c146105015780638c747d6c1461052e57005b806370a082311461048a578063715018a6146104aa57806379494afe146104bf5780638456cb59146104ec57005b806324b61b86116101c857806354cc3f271161019a5780635c975abb116101825780635c975abb146104365780636103d70b146104555780636352211e1461046a57005b806354cc3f27146103e95780635bbb21771461040957005b806324b61b86146103815780633f4ba83a146103a157806342842e0e146103b657806342966c68146103c957005b80630fceb9ab1161021957806318160ddd1161020157806318160ddd146103325780632015eee81461035957806323b872dd1461036e57005b80630fceb9ab146102f25780631662da6a1461031257005b806301ffc9a71461025057806306fdde0314610285578063081812fc146102a7578063095ea7b3146102df57005b3661024e57005b005b34801561025c57600080fd5b5061027061026b3660046130f6565b6106fd565b60405190151581526020015b60405180910390f35b34801561029157600080fd5b5061029a61079a565b60405161027c919061316b565b3480156102b357600080fd5b506102c76102c236600461317e565b61082c565b6040516001600160a01b03909116815260200161027c565b61024e6102ed3660046131ae565b610889565b3480156102fe57600080fd5b5061024e61030d36600461317e565b61094f565b34801561031e57600080fd5b5061024e61032d3660046131d8565b610997565b34801561033e57600080fd5b5060015460005403600019015b60405190815260200161027c565b34801561036557600080fd5b50600a5461034b565b61024e61037c3660046131f3565b6109ce565b34801561038d57600080fd5b5061034b61039c36600461317e565b610ba4565b3480156103ad57600080fd5b5061024e610c1f565b61024e6103c43660046131f3565b610c31565b3480156103d557600080fd5b5061024e6103e436600461317e565b610c51565b3480156103f557600080fd5b5061024e6104043660046132e9565b610cae565b34801561041557600080fd5b50610429610424366004613360565b610da7565b60405161027c91906133d5565b34801561044257600080fd5b50600854600160a01b900460ff16610270565b34801561046157600080fd5b5061024e610e73565b34801561047657600080fd5b506102c761048536600461317e565b610eaa565b34801561049657600080fd5b5061034b6104a53660046131d8565b610eb5565b3480156104b657600080fd5b5061024e610f1d565b3480156104cb57600080fd5b506104df6104da36600461317e565b610f2f565b60405161027c9190613452565b3480156104f857600080fd5b5061024e6112a4565b34801561050d57600080fd5b5061052161051c3660046131d8565b6112b4565b60405161027c9190613506565b34801561053a57600080fd5b5061024e610549366004613550565b6113b8565b34801561055a57600080fd5b506008546001600160a01b03166102c7565b34801561057857600080fd5b5061029a61152c565b34801561058d57600080fd5b5061052161059c36600461358c565b61153b565b3480156105ad57600080fd5b5061024e6105bc3660046135bf565b6116dc565b3480156105cd57600080fd5b5061034b6105dc3660046131ae565b611748565b61024e6105ef3660046135f6565b6117bb565b34801561060057600080fd5b5061061461060f36600461317e565b6117ff565b60405161027c9190613672565b34801561062d57600080fd5b5061024e61063c3660046136b7565b611887565b34801561064d57600080fd5b5061029a61065c36600461317e565b6118cf565b61024e61066f3660046136dc565b6119ae565b34801561068057600080fd5b5061034b61068f3660046136fe565b61219e565b3480156106a057600080fd5b506102706106af36600461378a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106e957600080fd5b5061024e6106f83660046131d8565b612391565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316148061076057507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b8061079457507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600280546107a9906137bd565b80601f01602080910402602001604051908101604052809291908181526020018280546107d5906137bd565b80156108225780601f106107f757610100808354040283529160200191610822565b820191906000526020600020905b81548152906001019060200180831161080557829003601f168201915b5050505050905090565b60006108378261241e565b61086d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089482610eaa565b9050336001600160a01b038216146108e6576108b081336106af565b6108e6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610957612453565b6001600a828154811061096c5761096c6137f7565b90600052602060002090600b0201600a0160026101000a81548160ff02191690831515021790555050565b61099f612453565b600b805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60006109d9826124ad565b9050836001600160a01b0316816001600160a01b031614610a26576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604090208054610a528187335b6001600160a01b039081169116811491141790565b610a7d57610a6086336106af565b610a7d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610abd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610ac857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610b5a57600184016000818152600460205260408120549003610b58576000548114610b585760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600a546000908210610bf35760405162461bcd60e51b8152602060048201526013602482015272426f78204964206f7574206f662072616e676560681b60448201526064015b60405180910390fd5b600a8281548110610c0657610c066137f7565b90600052602060002090600b0201600201549050919050565b610c27612453565b610c2f612535565b565b610c4c838383604051806020016040528060008152506117bb565b505050565b610c5c81600161258a565b6000818152600d60205260408120610c7391612fe8565b604080518281523360208201527fb69c8d6513931a76922f4cbcab727adb56dfe12c7083a5eb341860f237a4f19a910160405180910390a150565b610cb6612453565b84600a8781548110610cca57610cca6137f7565b90600052602060002090600b02016004018190555083600a8781548110610cf357610cf36137f7565b90600052602060002090600b02016005018190555082600a8781548110610d1c57610d1c6137f7565b90600052602060002090600b02016008019081610d399190613853565b5081600a8781548110610d4e57610d4e6137f7565b90600052602060002090600b0201600a0160006101000a81548160ff02191690831515021790555080600a8781548110610d8a57610d8a6137f7565b90600052602060002090600b020160060181905550505050505050565b60608160008167ffffffffffffffff811115610dc557610dc561322f565b604051908082528060200260200182016040528015610e1757816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610de35790505b50905060005b828114610e6a57610e45868683818110610e3957610e396137f7565b905060200201356117ff565b828281518110610e5757610e576137f7565b6020908102919091010152600101610e1d565b50949350505050565b610e7b612453565b60405133904780156108fc02916000818181858888f19350505050158015610ea7573d6000803e3d6000fd5b50565b6000610794826124ad565b60006001600160a01b038216610ef7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610f25612453565b610c2f60006126ed565b610f996040518061018001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001606081526020016000151581526020016000151581526020016000151581525090565b610fa1612453565b600a548210610fe85760405162461bcd60e51b8152602060048201526013602482015272426f78204964206f7574206f662072616e676560681b6044820152606401610bea565b604051806101800160405280600a8481548110611007576110076137f7565b90600052602060002090600b0201600001548152602001600a8481548110611031576110316137f7565b90600052602060002090600b0201600101548152602001600a848154811061105b5761105b6137f7565b90600052602060002090600b0201600201548152602001600a8481548110611085576110856137f7565b90600052602060002090600b0201600301548152602001600a84815481106110af576110af6137f7565b90600052602060002090600b0201600401548152602001600a84815481106110d9576110d96137f7565b90600052602060002090600b0201600501548152602001600a8481548110611103576111036137f7565b90600052602060002090600b0201600601548152602001600a848154811061112d5761112d6137f7565b90600052602060002090600b0201600701548152602001600a8481548110611157576111576137f7565b90600052602060002090600b02016008018054611173906137bd565b80601f016020809104026020016040519081016040528092919081815260200182805461119f906137bd565b80156111ec5780601f106111c1576101008083540402835291602001916111ec565b820191906000526020600020905b8154815290600101906020018083116111cf57829003601f168201915b50505050508152602001600a8481548110611209576112096137f7565b90600052602060002090600b0201600a0160009054906101000a900460ff1615158152602001600a8481548110611242576112426137f7565b90600052602060002090600b0201600a0160019054906101000a900460ff1615158152602001600a848154811061127b5761127b6137f7565b60009182526020909120600b90910201600a015462010000900460ff161515905290505b919050565b6112ac612453565b610c2f61274c565b606060008060006112c485610eb5565b905060008167ffffffffffffffff8111156112e1576112e161322f565b60405190808252806020026020018201604052801561130a578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081019190915290915060015b8386146113ac576113458161278f565b915081604001516113a45781516001600160a01b03161561136557815194505b876001600160a01b0316856001600160a01b0316036113a45780838780600101985081518110611397576113976137f7565b6020026020010181815250505b600101611335565b50909695505050505050565b600a5483106113ff5760405162461bcd60e51b8152602060048201526013602482015272426f78204964206f7574206f662072616e676560681b6044820152606401610bea565b600a8381548110611412576114126137f7565b90600052602060002090600b0201600101548161ffff1611156114775760405162461bcd60e51b815260206004820152601a60248201527f4861736865732065786365656420746f74616c20737570706c790000000000006044820152606401610bea565b60005b8161ffff168161ffff161015611526576114948184613929565b600a85815481106114a7576114a76137f7565b90600052602060002090600b0201600901600183866114c69190613929565b6114d0919061394f565b61ffff16815481106114e4576114e46137f7565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550808061151e90613972565b91505061147a565b50505050565b6060600380546107a9906137bd565b6060818310611576576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061158260005490565b9050600185101561159257600194505b8084111561159e578093505b60006115a987610eb5565b9050848610156115c857858503818110156115c2578091505b506115cc565b5060005b60008167ffffffffffffffff8111156115e7576115e761322f565b604051908082528060200260200182016040528015611610578160200160208202803683370190505b509050816000036116265793506116d592505050565b6000611631886117ff565b905060008160400151611642575080515b885b8881141580156116545750848714155b156116c9576116628161278f565b925082604001516116c15782516001600160a01b03161561168257825191505b8a6001600160a01b0316826001600160a01b0316036116c157808488806001019950815181106116b4576116b46137f7565b6020026020010181815250505b600101611644565b50505092835250909150505b9392505050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a5460009082106117925760405162461bcd60e51b8152602060048201526013602482015272426f78204964206f7574206f662072616e676560681b6044820152606401610bea565b506001600160a01b03919091166000908152600e60209081526040808320938352929052205490565b6117c68484846109ce565b6001600160a01b0383163b15611526576117e28484848461280e565b611526576040516368d2bf6b60e11b815260040160405180910390fd5b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061185857506000548310155b156118635792915050565b61186c8361278f565b905080604001511561187e5792915050565b6116d5836128fa565b61188f612453565b80600a83815481106118a3576118a36137f7565b90600052602060002090600b0201600a0160016101000a81548160ff0219169083151502179055505050565b60606118da8261241e565b611910576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000828152600d602052604090208054611929906137bd565b80601f0160208091040260200160405190810160405280929190818152602001828054611955906137bd565b80156119a25780601f10611977576101008083540402835291602001916119a2565b820191906000526020600020905b81548152906001019060200180831161198557829003601f168201915b50505050509050919050565b600260095403611a005760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bea565b6002600955611a0d612972565b600a548210611a545760405162461bcd60e51b8152602060048201526013602482015272426f78204964206f7574206f662072616e676560681b6044820152606401610bea565b600a8281548110611a6757611a676137f7565b90600052602060002090600b0201600401544210158015611aac5750600a8281548110611a9657611a966137f7565b90600052602060002090600b0201600501544211155b611af85760405162461bcd60e51b815260206004820152601660248201527f4e6f7420696e20746865206d696e7420706572696f64000000000000000000006044820152606401610bea565b60008111611b485760405162461bcd60e51b815260206004820152601760248201527f5175616e746974792063616e6e6f74206265207a65726f0000000000000000006044820152606401610bea565b611b76600a8381548110611b5e57611b5e6137f7565b90600052602060002090600b020160020154826129cc565b3414611bc45760405162461bcd60e51b815260206004820152601060248201527f4e6f7420656e6f756768206d6f6e6579000000000000000000000000000000006044820152606401610bea565b600a8281548110611bd757611bd76137f7565b60009182526020909120600a600b90920201015460ff1615611d1c57600b546001600160a01b0316611c4b5760405162461bcd60e51b815260206004820152601c60248201527f57686974656c6973742061646472657373206973206e6f7420736574000000006044820152606401610bea565b600b546040517f06c933d80000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b03909116906306c933d890602401602060405180830381865afa158015611cac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cd09190613993565b611d1c5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c69737465640000000000000000006044820152606401610bea565b600a8281548110611d2f57611d2f6137f7565b600091825260208083206006600b909302019190910154338352600e82526040808420868552909252912054611d669083906139b0565b1115611db45760405162461bcd60e51b815260206004820152601a60248201527f457863656564206d696e74207175616e74697479206c696d69740000000000006044820152606401610bea565b600a8281548110611dc757611dc76137f7565b90600052602060002090600b0201600a0160029054906101000a900460ff1615611e335760405162461bcd60e51b815260206004820152601160248201527f54686520626f7820697320636c6f7365640000000000000000000000000000006044820152606401610bea565b600a8281548110611e4657611e466137f7565b90600052602060002090600b0201600a0160019054906101000a900460ff1615611eb25760405162461bcd60e51b815260206004820152601160248201527f54686520626f78206973207061757365640000000000000000000000000000006044820152606401610bea565b80600a8381548110611ec657611ec66137f7565b90600052602060002090600b0201600901805490501015611f295760405162461bcd60e51b815260206004820152601560248201527f45786365656420626f782068617368206c696d697400000000000000000000006044820152606401610bea565b600a8281548110611f3c57611f3c6137f7565b90600052602060002090600b02016001015481600a8481548110611f6257611f626137f7565b90600052602060002090600b020160030154611f7e91906139b0565b1115611fcc5760405162461bcd60e51b815260206004820152601360248201527f54686520626f7820697320736f6c64206f7574000000000000000000000000006044820152606401610bea565b80600a8381548110611fe057611fe06137f7565b90600052602060002090600b02016007015410156120405760405162461bcd60e51b815260206004820152601560248201527f457863656564207175616e74697479206c696d697400000000000000000000006044820152606401610bea565b60008054905b828110156120df57600a8481548110612061576120616137f7565b90600052602060002090600b020160080161208361207e866129d8565b612c9e565b6040516020016120949291906139c8565b60408051601f19818403018152919052600d60006120b284866139b0565b815260200190815260200160002090816120cc9190613853565b50806120d781613a46565b915050612046565b5081600a84815481106120f4576120f46137f7565b90600052602060002090600b0201600301600082825461211491906139b0565b9091555050336000908152600e60209081526040808320868452909152812080548492906121439084906139b0565b9091555061215390503383612dd3565b60408051848152602081018390529081018390527f7647de466d07c004d50b9047b97188baed8fd13cad77112649bc946c995b05c39060600160405180910390a15050600160095550565b60006121a8612453565b6000600a805490509050600a604051806101a001604052808381526020018c81526020018b8152602001600081526020018a81526020018981526020018881526020018781526020018681526020018c67ffffffffffffffff8111156122105761221061322f565b604051908082528060200260200182016040528015612239578160200160208202803683370190505b508152851515602080830191909152600060408084018290526060938401829052855460018181018855968352918390208551600b909302019182559184015194810194909455820151600284015581015160038301556080810151600483015560a0810151600583015560c0810151600683015560e0810151600783015561010081015190919060088201906122d09082613853565b5061012082015180516122ed916009840191602090910190613022565b50610140820151600a9091018054610160840151610180909401511515620100000262ff0000199415156101000261ff00199415159490941661ffff1990921691909117929092179290921617905560405181907f43ed2a7574890731002ef8212bb57eb941d898917b2b16797f719ddfeac02cf89061237c908d908d908d908d908d908d908d908d90613a5f565b60405180910390a29998505050505050505050565b612399612453565b6001600160a01b0381166124155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610bea565b610ea7816126ed565b600081600111158015612432575060005482105b8015610794575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610c2f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bea565b60008180600111612503576000548110156125035760008181526004602052604081205490600160e01b82169003612501575b806000036116d55750600019016000818152600460205260409020546124e0565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61253d612df1565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000612595836124ad565b9050806000806125b386600090815260066020526040902080549091565b9150915084156125f3576125c8818433610a3d565b6125f3576125d683336106af565b6125f357604051632ce44b5f60e11b815260040160405180910390fd5b80156125fe57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b177c030000000000000000000000000000000000000000000000000000000017600087815260046020526040812091909155600160e11b851690036126a5576001860160008181526004602052604081205490036126a35760005481146126a35760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612754612972565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861256d3390565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461079490604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612843903390899088908890600401613aaf565b6020604051808303816000875af192505050801561287e575060408051601f3d908101601f1916820190925261287b91810190613aeb565b60015b6128dc573d8080156128ac576040519150601f19603f3d011682016040523d82523d6000602084013e6128b1565b606091505b5080516000036128d4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60408051608081018252600080825260208201819052918101829052606081019190915261079461292a836124ad565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b600854600160a01b900460ff1615610c2f5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610bea565b60006116d58284613b08565b600080600a83815481106129ee576129ee6137f7565b90600052602060002090600b02016009018054905011612a505760405162461bcd60e51b815260206004820152601a60248201527f48617368206f662074686520626f78206973206e6f74207365740000000000006044820152606401610bea565b6000612a5d600143613b27565b600c54604080519240602084015242908301524460608301524360808301523060a08301523a60c083015260e0820152610100016040516020818303038152906040528051906020012060001c905080600c819055506000600a8481548110612ac857612ac86137f7565b600091825260209091206009600b909202010154612ae69083613b54565b9050600a8481548110612afb57612afb6137f7565b90600052602060002090600b02016009018181548110612b1d57612b1d6137f7565b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169250600a8481548110612b5a57612b5a6137f7565b90600052602060002090600b02016009016001600a8681548110612b8057612b806137f7565b90600052602060002090600b020160090180549050612b9f9190613b27565b81548110612baf57612baf6137f7565b90600052602060002090601091828204019190066002029054906101000a900461ffff16600a8581548110612be657612be66137f7565b90600052602060002090600b02016009018281548110612c0857612c086137f7565b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550600a8481548110612c4a57612c4a6137f7565b90600052602060002090600b0201600901805480612c6a57612c6a613b68565b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a02191690559055509092915050565b606081600003612ce157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612d0b5780612cf581613a46565b9150612d049050600a83613b7e565b9150612ce5565b60008167ffffffffffffffff811115612d2657612d2661322f565b6040519080825280601f01601f191660200182016040528015612d50576020820181803683370190505b5090505b84156128f257612d65600183613b27565b9150612d72600a86613b54565b612d7d9060306139b0565b60f81b818381518110612d9257612d926137f7565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612dcc600a86613b7e565b9450612d54565b612ded828260405180602001604052806000815250612e4a565b5050565b600854600160a01b900460ff16610c2f5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610bea565b612e548383612eb7565b6001600160a01b0383163b15610c4c576000548281035b612e7e600086838060010194508661280e565b612e9b576040516368d2bf6b60e11b815260040160405180910390fd5b818110612e6b578160005414612eb057600080fd5b5050505050565b6000805490829003612ef5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114612fa457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101612f6c565b5081600003612fdf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b508054612ff4906137bd565b6000825580601f10613004575050565b601f016020900490600052602060002090810190610ea791906130cb565b82805482825590600052602060002090600f016010900481019282156130bb5791602002820160005b8382111561308b57835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030261304b565b80156130b95782816101000a81549061ffff021916905560020160208160010104928301926001030261308b565b505b506130c79291506130cb565b5090565b5b808211156130c757600081556001016130cc565b6001600160e01b031981168114610ea757600080fd5b60006020828403121561310857600080fd5b81356116d5816130e0565b60005b8381101561312e578181015183820152602001613116565b838111156115265750506000910152565b60008151808452613157816020860160208601613113565b601f01601f19169290920160200192915050565b6020815260006116d5602083018461313f565b60006020828403121561319057600080fd5b5035919050565b80356001600160a01b038116811461129f57600080fd5b600080604083850312156131c157600080fd5b6131ca83613197565b946020939093013593505050565b6000602082840312156131ea57600080fd5b6116d582613197565b60008060006060848603121561320857600080fd5b61321184613197565b925061321f60208501613197565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156132605761326061322f565b604051601f8501601f19908116603f011681019082821181831017156132885761328861322f565b816040528093508581528686860111156132a157600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126132cc57600080fd5b6116d583833560208501613245565b8015158114610ea757600080fd5b60008060008060008060c0878903121561330257600080fd5b863595506020870135945060408701359350606087013567ffffffffffffffff81111561332e57600080fd5b61333a89828a016132bb565b935050608087013561334b816132db565b8092505060a087013590509295509295509295565b6000806020838503121561337357600080fd5b823567ffffffffffffffff8082111561338b57600080fd5b818501915085601f83011261339f57600080fd5b8135818111156133ae57600080fd5b8660208260051b85010111156133c357600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b818110156113ac5761343f8385516001600160a01b03815116825267ffffffffffffffff602082015116602083015260408101511515604083015262ffffff60608201511660608301525050565b92840192608092909201916001016133f1565b6020815281516020820152602082015160408201526040820151606082015260608201516080820152608082015160a082015260a082015160c082015260c082015160e0820152600060e083015161010081818501528085015191505061018061012081818601526134c86101a086018461313f565b908601519092506101406134df8682018315159052565b86015190506101606134f48682018315159052565b90950151151593019290925250919050565b6020808252825182820181905260009190848201906040850190845b818110156113ac57835183529284019291840191600101613522565b803561ffff8116811461129f57600080fd5b60008060006060848603121561356557600080fd5b833592506135756020850161353e565b91506135836040850161353e565b90509250925092565b6000806000606084860312156135a157600080fd5b6135aa84613197565b95602085013595506040909401359392505050565b600080604083850312156135d257600080fd5b6135db83613197565b915060208301356135eb816132db565b809150509250929050565b6000806000806080858703121561360c57600080fd5b61361585613197565b935061362360208601613197565b925060408501359150606085013567ffffffffffffffff81111561364657600080fd5b8501601f8101871361365757600080fd5b61366687823560208401613245565b91505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608083015162ffffff169082015260808101610794565b600080604083850312156136ca57600080fd5b8235915060208301356135eb816132db565b600080604083850312156136ef57600080fd5b50508035926020909101359150565b600080600080600080600080610100898b03121561371b57600080fd5b883597506020890135965060408901359550606089013594506080890135935060a0890135925060c089013567ffffffffffffffff81111561375c57600080fd5b6137688b828c016132bb565b92505060e0890135613779816132db565b809150509295985092959890939650565b6000806040838503121561379d57600080fd5b6137a683613197565b91506137b460208401613197565b90509250929050565b600181811c908216806137d157607f821691505b6020821081036137f157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b601f821115610c4c57600081815260208120601f850160051c810160208610156138345750805b601f850160051c820191505b81811015610b9c57828155600101613840565b815167ffffffffffffffff81111561386d5761386d61322f565b6138818161387b84546137bd565b8461380d565b602080601f8311600181146138b6576000841561389e5750858301515b600019600386901b1c1916600185901b178555610b9c565b600085815260208120601f198616915b828110156138e5578886015182559484019460019091019084016138c6565b50858210156139035787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600061ffff80831681851680830382111561394657613946613913565b01949350505050565b600061ffff8381169083168181101561396a5761396a613913565b039392505050565b600061ffff80831681810361398957613989613913565b6001019392505050565b6000602082840312156139a557600080fd5b81516116d5816132db565b600082198211156139c3576139c3613913565b500190565b60008084546139d6816137bd565b600182811680156139ee5760018114613a0357613a32565b60ff1984168752821515830287019450613a32565b8860005260208060002060005b85811015613a295781548a820152908401908201613a10565b50505082870194505b505050508351613946818360208801613113565b600060018201613a5857613a58613913565b5060010190565b60006101008a83528960208401528860408401528760608401528660808401528560a08401528060c0840152613a978184018661313f565b91505082151560e08301529998505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613ae1608083018461313f565b9695505050505050565b600060208284031215613afd57600080fd5b81516116d5816130e0565b6000816000190483118215151615613b2257613b22613913565b500290565b600082821015613b3957613b39613913565b500390565b634e487b7160e01b600052601260045260246000fd5b600082613b6357613b63613b3e565b500690565b634e487b7160e01b600052603160045260246000fd5b600082613b8d57613b8d613b3e565b50049056fea2646970667358221220f0b017e58ae7b9b33ae6647537d7023945dffb7f2996f56e07bc550956239d2664736f6c634300080f0033
Deployed Bytecode Sourcemap
80707:8740:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41039:639;;;;;;;;;;-1:-1:-1;41039:639:0;;;;;:::i;:::-;;:::i;:::-;;;707:14:1;;700:22;682:41;;670:2;655:18;41039:639:0;;;;;;;;41941:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;48432:218::-;;;;;;;;;;-1:-1:-1;48432:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1834:55:1;;;1816:74;;1804:2;1789:18;48432:218:0;1670:226:1;47865:408:0;;;;;;:::i;:::-;;:::i;87602:97::-;;;;;;;;;;-1:-1:-1;87602:97:0;;;;;:::i;:::-;;:::i;81655:116::-;;;;;;;;;;-1:-1:-1;81655:116:0;;;;;:::i;:::-;;:::i;37692:323::-;;;;;;;;;;-1:-1:-1;81638:1:0;37966:12;37753:7;37950:13;:28;-1:-1:-1;;37950:46:0;37692:323;;;2698:25:1;;;2686:2;2671:18;37692:323:0;2552:177:1;84004:98:0;;;;;;;;;;-1:-1:-1;84082:5:0;:12;84004:98;;52071:2825;;;;;;:::i;:::-;;:::i;84110:175::-;;;;;;;;;;-1:-1:-1;84110:175:0;;;;;:::i;:::-;;:::i;89302:67::-;;;;;;;;;;;;;:::i;54992:193::-;;;;;;:::i;:::-;;:::i;88930:168::-;;;;;;;;;;-1:-1:-1;88930:168:0;;;;;:::i;:::-;;:::i;87121:473::-;;;;;;;;;;-1:-1:-1;87121:473:0;;;;;:::i;:::-;;:::i;75738:528::-;;;;;;;;;;-1:-1:-1;75738:528:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;16429:86::-;;;;;;;;;;-1:-1:-1;16500:7:0;;-1:-1:-1;;;16500:7:0;;;;16429:86;;89106:117;;;;;;;;;;;;;:::i;43334:152::-;;;;;;;;;;-1:-1:-1;43334:152:0;;;;;:::i;:::-;;:::i;38876:233::-;;;;;;;;;;-1:-1:-1;38876:233:0;;;;;:::i;:::-;;:::i;19294:103::-;;;;;;;;;;;;;:::i;83063:933::-;;;;;;;;;;-1:-1:-1;83063:933:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;89231:63::-;;;;;;;;;;;;;:::i;79614:900::-;;;;;;;;;;-1:-1:-1;79614:900:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;86672:441::-;;;;;;;;;;-1:-1:-1;86672:441:0;;;;;:::i;:::-;;:::i;18646:87::-;;;;;;;;;;-1:-1:-1;18719:6:0;;-1:-1:-1;;;;;18719:6:0;18646:87;;42117:104;;;;;;;;;;;;;:::i;76654:2513::-;;;;;;;;;;-1:-1:-1;76654:2513:0;;;;;:::i;:::-;;:::i;48990:234::-;;;;;;;;;;-1:-1:-1;48990:234:0;;;;;:::i;:::-;;:::i;84293:225::-;;;;;;;;;;-1:-1:-1;84293:225:0;;;;;:::i;:::-;;:::i;55783:407::-;;;;;;:::i;:::-;;:::i;75151:428::-;;;;;;;;;;-1:-1:-1;75151:428:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;86552:112::-;;;;;;;;;;-1:-1:-1;86552:112:0;;;;;:::i;:::-;;:::i;88663:259::-;;;;;;;;;;-1:-1:-1;88663:259:0;;;;;:::i;:::-;;:::i;84526:2018::-;;;;;;:::i;:::-;;:::i;81779:1276::-;;;;;;;;;;-1:-1:-1;81779:1276:0;;;;;:::i;:::-;;:::i;49381:164::-;;;;;;;;;;-1:-1:-1;49381:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;49502:25:0;;;49478:4;49502:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;49381:164;19552:201;;;;;;;;;;-1:-1:-1;19552:201:0;;;;;:::i;:::-;;:::i;41039:639::-;41124:4;41448:25;-1:-1:-1;;;;;;41448:25:0;;;;:102;;-1:-1:-1;41525:25:0;-1:-1:-1;;;;;;41525:25:0;;;41448:102;:179;;;-1:-1:-1;41602:25:0;-1:-1:-1;;;;;;41602:25:0;;;41448:179;41428:199;41039:639;-1:-1:-1;;41039:639:0:o;41941:100::-;41995:13;42028:5;42021:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41941:100;:::o;48432:218::-;48508:7;48533:16;48541:7;48533;:16::i;:::-;48528:64;;48558:34;;;;;;;;;;;;;;48528:64;-1:-1:-1;48612:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;48612:30:0;;48432:218::o;47865:408::-;47954:13;47970:16;47978:7;47970;:16::i;:::-;47954:32;-1:-1:-1;72198:10:0;-1:-1:-1;;;;;48003:28:0;;;47999:175;;48051:44;48068:5;72198:10;49381:164;:::i;48051:44::-;48046:128;;48123:35;;;;;;;;;;;;;;48046:128;48186:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;48186:35:0;-1:-1:-1;;;;;48186:35:0;;;;;;;;;48237:28;;48186:24;;48237:28;;;;;;;47943:330;47865:408;;:::o;87602:97::-;18532:13;:11;:13::i;:::-;87687:4:::1;87665:5;87671;87665:12;;;;;;;;:::i;:::-;;;;;;;;;;;:19;;;:26;;;;;;;;;;;;;;;;;;87602:97:::0;:::o;81655:116::-;18532:13;:11;:13::i;:::-;81735:16:::1;:28:::0;;-1:-1:-1;;81735:28:0::1;-1:-1:-1::0;;;;;81735:28:0;;;::::1;::::0;;;::::1;::::0;;81655:116::o;52071:2825::-;52213:27;52243;52262:7;52243:18;:27::i;:::-;52213:57;;52328:4;-1:-1:-1;;;;;52287:45:0;52303:19;-1:-1:-1;;;;;52287:45:0;;52283:86;;52341:28;;;;;;;;;;;;;;52283:86;52383:27;51179:24;;;:15;:24;;;;;51407:26;;52574:68;51407:26;52616:4;72198:10;52622:19;-1:-1:-1;;;;;50653:32:0;;;50497:28;;50782:20;;50804:30;;50779:56;;50194:659;52574:68;52569:180;;52662:43;52679:4;72198:10;49381:164;:::i;52662:43::-;52657:92;;52714:35;;-1:-1:-1;;;52714:35:0;;;;;;;;;;;52657:92;-1:-1:-1;;;;;52766:16:0;;52762:52;;52791:23;;;;;;;;;;;;;;52762:52;52963:15;52960:160;;;53103:1;53082:19;53075:30;52960:160;-1:-1:-1;;;;;53500:24:0;;;;;;;:18;:24;;;;;;53498:26;;-1:-1:-1;;53498:26:0;;;53569:22;;;;;;;;;53567:24;;-1:-1:-1;53567:24:0;;;46723:11;46698:23;46694:41;46681:63;-1:-1:-1;;;46681:63:0;53862:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;54157:47:0;;:52;;54153:627;;54262:1;54252:11;;54230:19;54385:30;;;:17;:30;;;;;;:35;;54381:384;;54523:13;;54508:11;:28;54504:242;;54670:30;;;;:17;:30;;;;;:52;;;54504:242;54211:569;54153:627;54827:7;54823:2;-1:-1:-1;;;;;54808:27:0;54817:4;-1:-1:-1;;;;;54808:27:0;;;;;;;;;;;54846:42;52202:2694;;;52071:2825;;;:::o;84110:175::-;84205:5;:12;84169:7;;84197:20;;84189:52;;;;-1:-1:-1;;;84189:52:0;;13295:2:1;84189:52:0;;;13277:21:1;13334:2;13314:18;;;13307:30;-1:-1:-1;;;13353:18:1;;;13346:49;13412:18;;84189:52:0;;;;;;;;;84259:5;84265;84259:12;;;;;;;;:::i;:::-;;;;;;;;;;;:18;;;84252:25;;84110:175;;;:::o;89302:67::-;18532:13;:11;:13::i;:::-;89351:10:::1;:8;:10::i;:::-;89302:67::o:0;54992:193::-;55138:39;55155:4;55161:2;55165:7;55138:39;;;;;;;;;;;;:16;:39::i;:::-;54992:193;;;:::o;88930:168::-;88981:20;88987:7;88996:4;88981:5;:20::i;:::-;89019:23;;;;:14;:23;;;;;89012:30;;;:::i;:::-;89058:32;;;13615:25:1;;;89079:10:0;13671:2:1;13656:18;;13649:83;89058:32:0;;13588:18:1;89058:32:0;;;;;;;88930:168;:::o;87121:473::-;18532:13;:11;:13::i;:::-;87381:9:::1;87356:5;87362;87356:12;;;;;;;;:::i;:::-;;;;;;;;;;;:22;;:34;;;;87424:7;87401:5;87407;87401:12;;;;;;;;:::i;:::-;;;;;;;;;;;:20;;:30;;;;87465:7;87442:5;87448;87442:12;;;;;;;;:::i;:::-;;;;;;;;;;;:20;;:30;;;;;;:::i;:::-;;87514:15;87483:5;87489;87483:12;;;;;;;;:::i;:::-;;;;;;;;;;;:28;;;:46;;;;;;;;;;;;;;;;;;87571:15;87540:5;87546;87540:12;;;;;;;;:::i;:::-;;;;;;;;;;;:28;;:46;;;;87121:473:::0;;;;;;:::o;75738:528::-;75882:23;75973:8;75948:22;75973:8;76040:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76040:36:0;;-1:-1:-1;;76040:36:0;;;;;;;;;;;;76003:73;;76096:9;76091:125;76112:14;76107:1;:19;76091:125;;76168:32;76188:8;;76197:1;76188:11;;;;;;;:::i;:::-;;;;;;;76168:19;:32::i;:::-;76152:10;76163:1;76152:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;76128:3;;76091:125;;;-1:-1:-1;76237:10:0;75738:528;-1:-1:-1;;;;75738:528:0:o;89106:117::-;18532:13;:11;:13::i;:::-;89164:51:::1;::::0;89172:10:::1;::::0;89193:21:::1;89164:51:::0;::::1;;;::::0;::::1;::::0;;;89193:21;89172:10;89164:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;89106:117::o:0;43334:152::-;43406:7;43449:27;43468:7;43449:18;:27::i;38876:233::-;38948:7;-1:-1:-1;;;;;38972:19:0;;38968:60;;39000:28;;;;;;;;;;;;;;38968:60;-1:-1:-1;;;;;;39046:25:0;;;;;:18;:25;;;;;;33035:13;39046:55;;38876:233::o;19294:103::-;18532:13;:11;:13::i;:::-;19359:30:::1;19386:1;19359:18;:30::i;83063:933::-:0;83167:33;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83167:33:0;18532:13;:11;:13::i;:::-;83234:5:::1;:12:::0;83226:20;::::1;83218:52;;;::::0;-1:-1:-1;;;83218:52:0;;13295:2:1;83218:52:0::1;::::0;::::1;13277:21:1::0;13334:2;13314:18;;;13307:30;-1:-1:-1;;;13353:18:1;;;13346:49;13412:18;;83218:52:0::1;13093:343:1::0;83218:52:0::1;83301:687;;;;;;;;83354:5;83360;83354:12;;;;;;;;:::i;:::-;;;;;;;;;;;:18;;;83301:687;;;;83404:5;83410;83404:12;;;;;;;;:::i;:::-;;;;;;;;;;;:24;;;83301:687;;;;83454:5;83460;83454:12;;;;;;;;:::i;:::-;;;;;;;;;;;:18;;;83301:687;;;;83502:5;83508;83502:12;;;;;;;;:::i;:::-;;;;;;;;;;;:22;;;83301:687;;;;83554:5;83560;83554:12;;;;;;;;:::i;:::-;;;;;;;;;;;:22;;;83301:687;;;;83604:5;83610;83604:12;;;;;;;;:::i;:::-;;;;;;;;;;;:20;;;83301:687;;;;83660:5;83666;83660:12;;;;;;;;:::i;:::-;;;;;;;;;;;:28;;;83301:687;;;;83732:5;83738;83732:12;;;;;;;;:::i;:::-;;;;;;;;;;;:36;;;83301:687;;;;83796:5;83802;83796:12;;;;;;;;:::i;:::-;;;;;;;;;;;:20;;83301:687;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83852:5;83858;83852:12;;;;;;;;:::i;:::-;;;;;;;;;;;:28;;;;;;;;;;;;83301:687;;;;;;83907:5;83913;83907:12;;;;;;;;:::i;:::-;;;;;;;;;;;:19;;;;;;;;;;;;83301:687;;;;;;83953:5;83959;83953:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:19;;::::0;;;::::1;;;83301:687;;::::0;;83281:707;-1:-1:-1;18556:1:0::1;83063:933:::0;;;:::o;89231:63::-;18532:13;:11;:13::i;:::-;89278:8:::1;:6;:8::i;79614:900::-:0;79692:16;79746:19;79780:25;79820:22;79845:16;79855:5;79845:9;:16::i;:::-;79820:41;;79876:25;79918:14;79904:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;79904:29:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79876:57:0;;-1:-1:-1;81638:1:0;79994:472;80043:14;80028:11;:29;79994:472;;80095:15;80108:1;80095:12;:15::i;:::-;80083:27;;80133:9;:16;;;80174:8;80129:73;80224:14;;-1:-1:-1;;;;;80224:28:0;;80220:111;;80297:14;;;-1:-1:-1;80220:111:0;80374:5;-1:-1:-1;;;;;80353:26:0;:17;-1:-1:-1;;;;;80353:26:0;;80349:102;;80430:1;80404:8;80413:13;;;;;;80404:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;80349:102;80059:3;;79994:472;;;-1:-1:-1;80487:8:0;;79614:900;-1:-1:-1;;;;;;79614:900:0:o;86672:441::-;86814:5;:12;86806:20;;86798:52;;;;-1:-1:-1;;;86798:52:0;;13295:2:1;86798:52:0;;;13277:21:1;13334:2;13314:18;;;13307:30;-1:-1:-1;;;13353:18:1;;;13346:49;13412:18;;86798:52:0;13093:343:1;86798:52:0;86895:5;86901;86895:12;;;;;;;;:::i;:::-;;;;;;;;;;;:24;;;86883:8;:36;;;;86861:112;;;;-1:-1:-1;;;86861:112:0;;16149:2:1;86861:112:0;;;16131:21:1;16188:2;16168:18;;;16161:30;16227:28;16207:18;;;16200:56;16273:18;;86861:112:0;15947:350:1;86861:112:0;86989:8;86984:122;87007:8;87003:12;;:1;:12;;;86984:122;;;87083:11;87093:1;87083:7;:11;:::i;:::-;87037:5;87043;87037:12;;;;;;;;:::i;:::-;;;;;;;;;;;:24;;87078:1;87073;87063:7;:11;;;;:::i;:::-;87062:17;;;;:::i;:::-;87037:43;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:57;;;;;;;;;;;;;;;;;;87017:3;;;;;:::i;:::-;;;;86984:122;;;;86672:441;;;:::o;42117:104::-;42173:13;42206:7;42199:14;;;;;:::i;76654:2513::-;76797:16;76864:4;76855:5;:13;76851:45;;76877:19;;;;;;;;;;;;;;76851:45;76911:19;76945:17;76965:14;37434:7;37461:13;;37379:103;76965:14;76945:34;-1:-1:-1;81638:1:0;77057:5;:23;77053:87;;;81638:1;77101:23;;77053:87;77216:9;77209:4;:16;77205:73;;;77253:9;77246:16;;77205:73;77292:25;77320:16;77330:5;77320:9;:16::i;:::-;77292:44;;77514:4;77506:5;:12;77502:278;;;77561:12;;;77596:31;;;77592:111;;;77672:11;77652:31;;77592:111;77520:198;77502:278;;;-1:-1:-1;77763:1:0;77502:278;77794:25;77836:17;77822:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;77822:32:0;;77794:60;;77873:17;77894:1;77873:22;77869:78;;77923:8;-1:-1:-1;77916:15:0;;-1:-1:-1;;;77916:15:0;77869:78;78091:31;78125:26;78145:5;78125:19;:26::i;:::-;78091:60;;78166:25;78411:9;:16;;;78406:92;;-1:-1:-1;78468:14:0;;78406:92;78529:5;78512:478;78541:4;78536:1;:9;;:45;;;;;78564:17;78549:11;:32;;78536:45;78512:478;;;78619:15;78632:1;78619:12;:15::i;:::-;78607:27;;78657:9;:16;;;78698:8;78653:73;78748:14;;-1:-1:-1;;;;;78748:28:0;;78744:111;;78821:14;;;-1:-1:-1;78744:111:0;78898:5;-1:-1:-1;;;;;78877:26:0;:17;-1:-1:-1;;;;;78877:26:0;;78873:102;;78954:1;78928:8;78937:13;;;;;;78928:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;78873:102;78583:3;;78512:478;;;-1:-1:-1;;;79075:29:0;;;-1:-1:-1;79082:8:0;;-1:-1:-1;;76654:2513:0;;;;;;:::o;48990:234::-;72198:10;49085:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;49085:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;49085:60:0;;;;;;;;;;49161:55;;682:41:1;;;49085:49:0;;72198:10;49161:55;;655:18:1;49161:55:0;;;;;;;48990:234;;:::o;84293:225::-;84418:5;:12;84383:7;;84410:20;;84402:52;;;;-1:-1:-1;;;84402:52:0;;13295:2:1;84402:52:0;;;13277:21:1;13334:2;13314:18;;;13307:30;-1:-1:-1;;;13353:18:1;;;13346:49;13412:18;;84402:52:0;13093:343:1;84402:52:0;-1:-1:-1;;;;;;84472:31:0;;;;;;;;:23;:31;;;;;;;;:38;;;;;;;;;84293:225::o;55783:407::-;55958:31;55971:4;55977:2;55981:7;55958:12;:31::i;:::-;-1:-1:-1;;;;;56004:14:0;;;:19;56000:183;;56043:56;56074:4;56080:2;56084:7;56093:5;56043:30;:56::i;:::-;56038:145;;56127:40;;-1:-1:-1;;;56127:40:0;;;;;;;;;;;75151:428;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81638:1:0;75315:7;:25;:54;;;-1:-1:-1;37434:7:0;37461:13;75344:7;:25;;75315:54;75311:103;;;75393:9;75151:428;-1:-1:-1;;75151:428:0:o;75311:103::-;75436:21;75449:7;75436:12;:21::i;:::-;75424:33;;75472:9;:16;;;75468:65;;;75512:9;75151:428;-1:-1:-1;;75151:428:0:o;75468:65::-;75550:21;75563:7;75550:12;:21::i;86552:112::-;18532:13;:11;:13::i;:::-;86650:6:::1;86628:5;86634;86628:12;;;;;;;;:::i;:::-;;;;;;;;;;;:19;;;:28;;;;;;;;;;;;;;;;;;86552:112:::0;;:::o;88663:259::-;88783:13;88819:16;88827:7;88819;:16::i;:::-;88814:59;;88844:29;;;;;;;;;;;;;;88814:59;88891:23;;;;:14;:23;;;;;88884:30;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88663:259;;;:::o;84526:2018::-;3378:1;3976:7;;:19;3968:63;;;;-1:-1:-1;;;3968:63:0;;17346:2:1;3968:63:0;;;17328:21:1;17385:2;17365:18;;;17358:30;17424:33;17404:18;;;17397:61;17475:18;;3968:63:0;17144:355:1;3968:63:0;3378:1;4109:7;:18;16034:19:::1;:17;:19::i;:::-;84688:5:::2;:12:::0;84680:20;::::2;84672:52;;;::::0;-1:-1:-1;;;84672:52:0;;13295:2:1;84672:52:0::2;::::0;::::2;13277:21:1::0;13334:2;13314:18;;;13307:30;-1:-1:-1;;;13353:18:1;;;13346:49;13412:18;;84672:52:0::2;13093:343:1::0;84672:52:0::2;84776:5;84782;84776:12;;;;;;;;:::i;:::-;;;;;;;;;;;:22;;;84757:15;:41;;:101;;;;;84838:5;84844;84838:12;;;;;;;;:::i;:::-;;;;;;;;;;;:20;;;84819:15;:39;;84757:101;84735:173;;;::::0;-1:-1:-1;;;84735:173:0;;17706:2:1;84735:173:0::2;::::0;::::2;17688:21:1::0;17745:2;17725:18;;;17718:30;17784:24;17764:18;;;17757:52;17826:18;;84735:173:0::2;17504:346:1::0;84735:173:0::2;84938:1;84927:8;:12;84919:48;;;::::0;-1:-1:-1;;;84919:48:0;;18057:2:1;84919:48:0::2;::::0;::::2;18039:21:1::0;18096:2;18076:18;;;18069:30;18135:25;18115:18;;;18108:53;18178:18;;84919:48:0::2;17855:347:1::0;84919:48:0::2;85013:42;85026:5;85032;85026:12;;;;;;;;:::i;:::-;;;;;;;;;;;:18;;;85046:8;85013:12;:42::i;:::-;85000:9;:55;84978:121;;;::::0;-1:-1:-1;;;84978:121:0;;18409:2:1;84978:121:0::2;::::0;::::2;18391:21:1::0;18448:2;18428:18;;;18421:30;18487:18;18467;;;18460:46;18523:18;;84978:121:0::2;18207:340:1::0;84978:121:0::2;85116:5;85122;85116:12;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;;:28:::2;:12;::::0;;::::2;;:28;::::0;::::2;;85112:342;;;85187:16;::::0;-1:-1:-1;;;;;85187:16:0::2;85161:120;;;::::0;-1:-1:-1;;;85161:120:0;;18754:2:1;85161:120:0::2;::::0;::::2;18736:21:1::0;18793:2;18773:18;;;18766:30;18832;18812:18;;;18805:58;18880:18;;85161:120:0::2;18552:352:1::0;85161:120:0::2;85333:16;::::0;85322:61:::2;::::0;;;;85372:10:::2;85322:61;::::0;::::2;1816:74:1::0;-1:-1:-1;;;;;85333:16:0;;::::2;::::0;85322:49:::2;::::0;1789:18:1;;85322:61:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;85296:146;;;::::0;-1:-1:-1;;;85296:146:0;;19361:2:1;85296:146:0::2;::::0;::::2;19343:21:1::0;19400:2;19380:18;;;19373:30;19439:25;19419:18;;;19412:53;19482:18;;85296:146:0::2;19159:347:1::0;85296:146:0::2;85529:5;85535;85529:12;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;;:28:::2;:12;::::0;;::::2;;:28:::0;;;::::2;::::0;85496:10:::2;85472:35:::0;;:23:::2;:35:::0;;;;;;:42;;;;;;;;;:53:::2;::::0;85517:8;;85472:53:::2;:::i;:::-;:85;;85464:124;;;::::0;-1:-1:-1;;;85464:124:0;;19846:2:1;85464:124:0::2;::::0;::::2;19828:21:1::0;19885:2;19865:18;;;19858:30;19924:28;19904:18;;;19897:56;19970:18;;85464:124:0::2;19644:350:1::0;85464:124:0::2;85608:5;85614;85608:12;;;;;;;;:::i;:::-;;;;;;;;;;;:19;;;;;;;;;;;;85607:20;85599:50;;;::::0;-1:-1:-1;;;85599:50:0;;20201:2:1;85599:50:0::2;::::0;::::2;20183:21:1::0;20240:2;20220:18;;;20213:30;20279:19;20259:18;;;20252:47;20316:18;;85599:50:0::2;19999:341:1::0;85599:50:0::2;85669:5;85675;85669:12;;;;;;;;:::i;:::-;;;;;;;;;;;:19;;;;;;;;;;;;85668:20;85660:50;;;::::0;-1:-1:-1;;;85660:50:0;;20547:2:1;85660:50:0::2;::::0;::::2;20529:21:1::0;20586:2;20566:18;;;20559:30;20625:19;20605:18;;;20598:47;20662:18;;85660:50:0::2;20345:341:1::0;85660:50:0::2;85764:8;85729:5;85735;85729:12;;;;;;;;:::i;:::-;;;;;;;;;;;:24;;:31;;;;:43;;85721:77;;;::::0;-1:-1:-1;;;85721:77:0;;20893:2:1;85721:77:0::2;::::0;::::2;20875:21:1::0;20932:2;20912:18;;;20905:30;20971:23;20951:18;;;20944:51;21012:18;;85721:77:0::2;20691:345:1::0;85721:77:0::2;85854:5;85860;85854:12;;;;;;;;:::i;:::-;;;;;;;;;;;:24;;;85842:8;85817:5;85823;85817:12;;;;;;;;:::i;:::-;;;;;;;;;;;:22;;;:33;;;;:::i;:::-;:61;;85809:93;;;::::0;-1:-1:-1;;;85809:93:0;;21243:2:1;85809:93:0::2;::::0;::::2;21225:21:1::0;21282:2;21262:18;;;21255:30;21321:21;21301:18;;;21294:49;21360:18;;85809:93:0::2;21041:343:1::0;85809:93:0::2;85961:8;85921:5;85927;85921:12;;;;;;;;:::i;:::-;;;;;;;;;;;:36;;;:48;;85913:82;;;::::0;-1:-1:-1;;;85913:82:0;;21591:2:1;85913:82:0::2;::::0;::::2;21573:21:1::0;21630:2;21610:18;;;21603:30;21669:23;21649:18;;;21642:51;21710:18;;85913:82:0::2;21389:345:1::0;85913:82:0::2;86008:15;37461:13:::0;;;86051:279:::2;86075:8;86071:1;:12;86051:279;;;86199:5;86205;86199:12;;;;;;;;:::i;:::-;;;;;;;;;;;:20;;86242:42;86259:24;86277:5;86259:17;:24::i;:::-;86242:16;:42::i;:::-;86160:143;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;86160:143:0;;::::2;::::0;;;;;;86105:14:::2;:27;86120:11;86130:1:::0;86120:7;:11:::2;:::i;:::-;86105:27;;;;;;;;;;;:213;;;;;;:::i;:::-;-1:-1:-1::0;86085:3:0;::::2;::::0;::::2;:::i;:::-;;;;86051:279;;;;86368:8;86342:5;86348;86342:12;;;;;;;;:::i;:::-;;;;;;;;;;;:22;;;:34;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;86411:10:0::2;86387:35;::::0;;;:23:::2;:35;::::0;;;;;;;:42;;;;;;;;:54;;86433:8;;86387:35;:54:::2;::::0;86433:8;;86387:54:::2;:::i;:::-;::::0;;;-1:-1:-1;86452:31:0::2;::::0;-1:-1:-1;86462:10:0::2;86474:8:::0;86452:9:::2;:31::i;:::-;86499:37;::::0;;23093:25:1;;;23149:2;23134:18;;23127:34;;;23177:18;;;23170:34;;;86499:37:0::2;::::0;23081:2:1;23066:18;86499:37:0::2;;;;;;;-1:-1:-1::0;;3334:1:0;4288:7;:22;-1:-1:-1;84526:2018:0:o;81779:1276::-;82094:7;18532:13;:11;:13::i;:::-;82114::::1;82130:5;:12;;;;82114:28;;82153:5;82178:563;;;;;;;;82216:5;82178:563;;;;82253:11;82178:563;;;;82290:5;82178:563;;;;82325:1;82178:563;;;;82356:9;82178:563;;;;82393:7;82178:563;;;;82436:15;82178:563;;;;82495:23;82178:563;;;;82546:7;82178:563;;;;82598:11;82585:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;82585:25:0::1;-1:-1:-1::0;82178:563:0;;;::::1;;;::::0;;::::1;::::0;;;;-1:-1:-1;82178:563:0;;;;;;;;;;;;;;82153:599;;82178:563;82153:599;;::::1;::::0;;;;;;;;;;;::::1;::::0;;::::1;;::::0;;;;;::::1;::::0;;;::::1;::::0;;;;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;:::i;:::-;-1:-1:-1::0;82153:599:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;82153:599:0::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;::::1;-1:-1:-1::0;;82153:599:0;::::1;;;;-1:-1:-1::0;;82153:599:0;::::1;;::::0;;;;-1:-1:-1;;82153:599:0;;;;;;;;;;::::1;::::0;;;::::1;;::::0;;82770:252:::1;::::0;82794:5;;82770:252:::1;::::0;::::1;::::0;82814:11;;82840:5;;82860:9;;82884:7;;82906:15;;82936:23;;82974:7;;82996:15;;82770:252:::1;:::i;:::-;;;;;;;;83042:5:::0;81779:1276;-1:-1:-1;;;;;;;;;81779:1276:0:o;19552:201::-;18532:13;:11;:13::i;:::-;-1:-1:-1;;;;;19641:22:0;::::1;19633:73;;;::::0;-1:-1:-1;;;19633:73:0;;24175:2:1;19633:73:0::1;::::0;::::1;24157:21:1::0;24214:2;24194:18;;;24187:30;24253:34;24233:18;;;24226:62;24324:8;24304:18;;;24297:36;24350:19;;19633:73:0::1;23973:402:1::0;19633:73:0::1;19717:28;19736:8;19717:18;:28::i;49803:282::-:0;49868:4;49924:7;81638:1;49905:26;;:66;;;;;49958:13;;49948:7;:23;49905:66;:153;;;;-1:-1:-1;;50009:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;50009:44:0;:49;;49803:282::o;18811:132::-;18719:6;;-1:-1:-1;;;;;18719:6:0;72198:10;18875:23;18867:68;;;;-1:-1:-1;;;18867:68:0;;24582:2:1;18867:68:0;;;24564:21:1;;;24601:18;;;24594:30;24660:34;24640:18;;;24633:62;24712:18;;18867:68:0;24380:356:1;44489:1275:0;44556:7;44591;;81638:1;44640:23;44636:1061;;44693:13;;44686:4;:20;44682:1015;;;44731:14;44748:23;;;:17;:23;;;;;;;-1:-1:-1;;;44837:24:0;;:29;;44833:845;;45502:113;45509:6;45519:1;45509:11;45502:113;;-1:-1:-1;;;45580:6:0;45562:25;;;;:17;:25;;;;;;45502:113;;44833:845;44708:989;44682:1015;45725:31;;;;;;;;;;;;;;17284:120;16293:16;:14;:16::i;:::-;17343:7:::1;:15:::0;;-1:-1:-1;;;;17343:15:0::1;::::0;;17374:22:::1;72198:10:::0;17383:12:::1;17374:22;::::0;-1:-1:-1;;;;;1834:55:1;;;1816:74;;1804:2;1789:18;17374:22:0::1;;;;;;;17284:120::o:0;66640:3081::-;66720:27;66750;66769:7;66750:18;:27::i;:::-;66720:57;-1:-1:-1;66720:57:0;66790:12;;66912:35;66939:7;51068:27;51179:24;;;:15;:24;;;;;51407:26;;51179:24;;50966:485;66912:35;66855:92;;;;66964:13;66960:316;;;67085:68;67110:15;67127:4;72198:10;67133:19;72111:105;67085:68;67080:184;;67177:43;67194:4;72198:10;49381:164;:::i;67177:43::-;67172:92;;67229:35;;-1:-1:-1;;;67229:35:0;;;;;;;;;;;67172:92;67432:15;67429:160;;;67572:1;67551:19;67544:30;67429:160;-1:-1:-1;;;;;68191:24:0;;;;;;:18;:24;;;;;:60;;68219:32;68191:60;;;46723:11;46698:23;46694:41;46681:63;68579:43;46681:63;68489:26;;;;:17;:26;;;;;:205;;;;-1:-1:-1;;;68814:47:0;;:52;;68810:627;;68919:1;68909:11;;68887:19;69042:30;;;:17;:30;;;;;;:35;;69038:384;;69180:13;;69165:11;:28;69161:242;;69327:30;;;;:17;:30;;;;;:52;;;69161:242;68868:569;68810:627;69465:35;;69492:7;;69488:1;;-1:-1:-1;;;;;69465:35:0;;;;;69488:1;;69465:35;-1:-1:-1;;69688:12:0;:14;;;;;;-1:-1:-1;;;;66640:3081:0:o;19913:191::-;20006:6;;;-1:-1:-1;;;;;20023:17:0;;;-1:-1:-1;;20023:17:0;;;;;;;20056:40;;20006:6;;;20023:17;20006:6;;20056:40;;19987:16;;20056:40;19976:128;19913:191;:::o;17025:118::-;16034:19;:17;:19::i;:::-;17085:7:::1;:14:::0;;-1:-1:-1;;;;17085:14:0::1;-1:-1:-1::0;;;17085:14:0::1;::::0;;17115:20:::1;17122:12;72198:10:::0;;72111:105;43937:161;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44065:24:0;;;;:17;:24;;;;;;44046:44;;-1:-1:-1;;;;;;;;;;;;;45973:41:0;;;;33694:3;46059:33;;;46025:68;;-1:-1:-1;;;46025:68:0;-1:-1:-1;;;46123:24:0;;:29;;-1:-1:-1;;;46104:48:0;;;;34215:3;46192:28;;;;-1:-1:-1;;;46163:58:0;-1:-1:-1;45863:366:0;58274:716;58458:88;;-1:-1:-1;;;58458:88:0;;58437:4;;-1:-1:-1;;;;;58458:45:0;;;;;:88;;72198:10;;58525:4;;58531:7;;58540:5;;58458:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58458:88:0;;;;;;;;-1:-1:-1;;58458:88:0;;;;;;;;;;;;:::i;:::-;;;58454:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58741:6;:13;58758:1;58741:18;58737:235;;58787:40;;-1:-1:-1;;;58787:40:0;;;;;;;;;;;58737:235;58930:6;58924:13;58915:6;58911:2;58907:15;58900:38;58454:529;-1:-1:-1;;;;;;58617:64:0;-1:-1:-1;;;58617:64:0;;-1:-1:-1;58454:529:0;58274:716;;;;;;:::o;43675:166::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43786:47:0;43805:27;43824:7;43805:18;:27::i;:::-;-1:-1:-1;;;;;;;;;;;;;45973:41:0;;;;33694:3;46059:33;;;46025:68;;-1:-1:-1;;;46025:68:0;-1:-1:-1;;;46123:24:0;;:29;;-1:-1:-1;;;46104:48:0;;;;34215:3;46192:28;;;;-1:-1:-1;;;46163:58:0;-1:-1:-1;45863:366:0;16588:108;16500:7;;-1:-1:-1;;;16500:7:0;;;;16658:9;16650:38;;;;-1:-1:-1;;;16650:38:0;;25714:2:1;16650:38:0;;;25696:21:1;25753:2;25733:18;;;25726:30;25792:18;25772;;;25765:46;25828:18;;16650:38:0;25512:340:1;7939:98:0;7997:7;8024:5;8028:1;8024;:5;:::i;87707:948::-;87785:15;87874:1;87840:5;87846;87840:12;;;;;;;;:::i;:::-;;;;;;;;;;;:24;;:31;;;;:35;87818:111;;;;-1:-1:-1;;;87818:111:0;;26232:2:1;87818:111:0;;;26214:21:1;26271:2;26251:18;;;26244:30;26310:28;26290:18;;;26283:56;26356:18;;87818:111:0;26030:350:1;87818:111:0;87940:14;88050:16;88065:1;88050:12;:16;:::i;:::-;88272:9;;88007:293;;;88040:27;;88007:293;;;26830:25:1;88090:15:0;26871:18:1;;;26864:34;88128:16:0;26914:18:1;;;26907:34;88167:12:0;26957:18:1;;;26950:34;88210:4:0;27000:19:1;;;26993:84;88238:11:0;27093:19:1;;;27086:35;27137:19;;;27130:35;26802:19;;88007:293:0;;;;;;;;;;;;87979:336;;;;;;87957:369;;87940:386;;88349:6;88337:9;:18;;;;88366:13;88391:5;88397;88391:12;;;;;;;;:::i;:::-;;;;;;;;;:24;:12;;;;;:24;:31;88382:40;;:6;:40;:::i;:::-;88366:56;;88443:5;88449;88443:12;;;;;;;;:::i;:::-;;;;;;;;;;;:24;;88468:5;88443:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;88433:41;;;;88521:5;88527;88521:12;;;;;;;;:::i;:::-;;;;;;;;;;;:24;;88594:1;88560:5;88566;88560:12;;;;;;;;:::i;:::-;;;;;;;;;;;:24;;:31;;;;:35;;;;:::i;:::-;88521:85;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;88487:5;88493;88487:12;;;;;;;;:::i;:::-;;;;;;;;;;;:24;;88512:5;88487:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:119;;;;;;;;;;;;;;;;;;88617:5;88623;88617:12;;;;;;;;:::i;:::-;;;;;;;;;;;:24;;:30;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;88617:30:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;87707:948:0;;;-1:-1:-1;;87707:948:0:o;11796:723::-;11852:13;12073:5;12082:1;12073:10;12069:53;;-1:-1:-1;;12100:10:0;;;;;;;;;;;;;;;;;;11796:723::o;12069:53::-;12147:5;12132:12;12188:78;12195:9;;12188:78;;12221:8;;;;:::i;:::-;;-1:-1:-1;12244:10:0;;-1:-1:-1;12252:2:0;12244:10;;:::i;:::-;;;12188:78;;;12276:19;12308:6;12298:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12298:17:0;;12276:39;;12326:154;12333:10;;12326:154;;12360:11;12370:1;12360:11;;:::i;:::-;;-1:-1:-1;12429:10:0;12437:2;12429:5;:10;:::i;:::-;12416:24;;:2;:24;:::i;:::-;12403:39;;12386:6;12393;12386:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;12457:11:0;12466:2;12457:11;;:::i;:::-;;;12326:154;;65943:112;66020:27;66030:2;66034:8;66020:27;;;;;;;;;;;;:9;:27::i;:::-;65943:112;;:::o;16773:108::-;16500:7;;-1:-1:-1;;;16500:7:0;;;;16832:41;;;;-1:-1:-1;;;16832:41:0;;27998:2:1;16832:41:0;;;27980:21:1;28037:2;28017:18;;;28010:30;28076:22;28056:18;;;28049:50;28116:18;;16832:41:0;27796:344:1;65170:689:0;65301:19;65307:2;65311:8;65301:5;:19::i;:::-;-1:-1:-1;;;;;65362:14:0;;;:19;65358:483;;65402:11;65416:13;65464:14;;;65497:233;65528:62;65567:1;65571:2;65575:7;;;;;;65584:5;65528:30;:62::i;:::-;65523:167;;65626:40;;-1:-1:-1;;;65626:40:0;;;;;;;;;;;65523:167;65725:3;65717:5;:11;65497:233;;65812:3;65795:13;;:20;65791:34;;65817:8;;;65791:34;65383:458;;65170:689;;;:::o;59452:2966::-;59525:20;59548:13;;;59576;;;59572:44;;59598:18;;;;;;;;;;;;;;59572:44;-1:-1:-1;;;;;60104:22:0;;;;;;:18;:22;;;;33173:2;60104:22;;;:71;;60142:32;60130:45;;60104:71;;;60418:31;;;:17;:31;;;;;-1:-1:-1;47154:15:0;;47128:24;47124:46;46723:11;46698:23;46694:41;46691:52;46681:63;;60418:173;;60653:23;;;;60418:31;;60104:22;;61418:25;60104:22;;61271:335;61932:1;61918:12;61914:20;61872:346;61973:3;61964:7;61961:16;61872:346;;62191:7;62181:8;62178:1;62151:25;62148:1;62145;62140:59;62026:1;62013:15;61872:346;;;61876:77;62251:8;62263:1;62251:13;62247:45;;62273:19;;;;;;;;;;;;;;62247:45;62309:13;:19;-1:-1:-1;54992:193:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;734:258::-;806:1;816:113;830:6;827:1;824:13;816:113;;;906:11;;;900:18;887:11;;;880:39;852:2;845:10;816:113;;;947:6;944:1;941:13;938:48;;;-1:-1:-1;;982:1:1;964:16;;957:27;734:258::o;997:::-;1039:3;1077:5;1071:12;1104:6;1099:3;1092:19;1120:63;1176:6;1169:4;1164:3;1160:14;1153:4;1146:5;1142:16;1120:63;:::i;:::-;1237:2;1216:15;-1:-1:-1;;1212:29:1;1203:39;;;;1244:4;1199:50;;997:258;-1:-1:-1;;997:258:1:o;1260:220::-;1409:2;1398:9;1391:21;1372:4;1429:45;1470:2;1459:9;1455:18;1447:6;1429:45;:::i;1485:180::-;1544:6;1597:2;1585:9;1576:7;1572:23;1568:32;1565:52;;;1613:1;1610;1603:12;1565:52;-1:-1:-1;1636:23:1;;1485:180;-1:-1:-1;1485:180:1:o;1901:196::-;1969:20;;-1:-1:-1;;;;;2018:54:1;;2008:65;;1998:93;;2087:1;2084;2077:12;2102:254;2170:6;2178;2231:2;2219:9;2210:7;2206:23;2202:32;2199:52;;;2247:1;2244;2237:12;2199:52;2270:29;2289:9;2270:29;:::i;:::-;2260:39;2346:2;2331:18;;;;2318:32;;-1:-1:-1;;;2102:254:1:o;2361:186::-;2420:6;2473:2;2461:9;2452:7;2448:23;2444:32;2441:52;;;2489:1;2486;2479:12;2441:52;2512:29;2531:9;2512:29;:::i;2734:328::-;2811:6;2819;2827;2880:2;2868:9;2859:7;2855:23;2851:32;2848:52;;;2896:1;2893;2886:12;2848:52;2919:29;2938:9;2919:29;:::i;:::-;2909:39;;2967:38;3001:2;2990:9;2986:18;2967:38;:::i;:::-;2957:48;;3052:2;3041:9;3037:18;3024:32;3014:42;;2734:328;;;;;:::o;3067:184::-;-1:-1:-1;;;3116:1:1;3109:88;3216:4;3213:1;3206:15;3240:4;3237:1;3230:15;3256:632;3321:5;3351:18;3392:2;3384:6;3381:14;3378:40;;;3398:18;;:::i;:::-;3473:2;3467:9;3441:2;3527:15;;-1:-1:-1;;3523:24:1;;;3549:2;3519:33;3515:42;3503:55;;;3573:18;;;3593:22;;;3570:46;3567:72;;;3619:18;;:::i;:::-;3659:10;3655:2;3648:22;3688:6;3679:15;;3718:6;3710;3703:22;3758:3;3749:6;3744:3;3740:16;3737:25;3734:45;;;3775:1;3772;3765:12;3734:45;3825:6;3820:3;3813:4;3805:6;3801:17;3788:44;3880:1;3873:4;3864:6;3856;3852:19;3848:30;3841:41;;;;3256:632;;;;;:::o;3893:222::-;3936:5;3989:3;3982:4;3974:6;3970:17;3966:27;3956:55;;4007:1;4004;3997:12;3956:55;4029:80;4105:3;4096:6;4083:20;4076:4;4068:6;4064:17;4029:80;:::i;4120:118::-;4206:5;4199:13;4192:21;4185:5;4182:32;4172:60;;4228:1;4225;4218:12;4243:726;4354:6;4362;4370;4378;4386;4394;4447:3;4435:9;4426:7;4422:23;4418:33;4415:53;;;4464:1;4461;4454:12;4415:53;4500:9;4487:23;4477:33;;4557:2;4546:9;4542:18;4529:32;4519:42;;4608:2;4597:9;4593:18;4580:32;4570:42;;4663:2;4652:9;4648:18;4635:32;4690:18;4682:6;4679:30;4676:50;;;4722:1;4719;4712:12;4676:50;4745;4787:7;4778:6;4767:9;4763:22;4745:50;:::i;:::-;4735:60;;;4845:3;4834:9;4830:19;4817:33;4859:28;4881:5;4859:28;:::i;:::-;4906:5;4896:15;;;4958:3;4947:9;4943:19;4930:33;4920:43;;4243:726;;;;;;;;:::o;4974:615::-;5060:6;5068;5121:2;5109:9;5100:7;5096:23;5092:32;5089:52;;;5137:1;5134;5127:12;5089:52;5177:9;5164:23;5206:18;5247:2;5239:6;5236:14;5233:34;;;5263:1;5260;5253:12;5233:34;5301:6;5290:9;5286:22;5276:32;;5346:7;5339:4;5335:2;5331:13;5327:27;5317:55;;5368:1;5365;5358:12;5317:55;5408:2;5395:16;5434:2;5426:6;5423:14;5420:34;;;5450:1;5447;5440:12;5420:34;5503:7;5498:2;5488:6;5485:1;5481:14;5477:2;5473:23;5469:32;5466:45;5463:65;;;5524:1;5521;5514:12;5463:65;5555:2;5547:11;;;;;5577:6;;-1:-1:-1;4974:615:1;;-1:-1:-1;;;;4974:615:1:o;5971:722::-;6204:2;6256:21;;;6326:13;;6229:18;;;6348:22;;;6175:4;;6204:2;6427:15;;;;6401:2;6386:18;;;6175:4;6470:197;6484:6;6481:1;6478:13;6470:197;;;6533:52;6581:3;6572:6;6566:13;-1:-1:-1;;;;;5684:5:1;5678:12;5674:61;5669:3;5662:74;5797:18;5789:4;5782:5;5778:16;5772:23;5768:48;5761:4;5756:3;5752:14;5745:72;5880:4;5873:5;5869:16;5863:23;5856:31;5849:39;5842:4;5837:3;5833:14;5826:63;5950:8;5942:4;5935:5;5931:16;5925:23;5921:38;5914:4;5909:3;5905:14;5898:62;;;5594:372;6533:52;6642:15;;;;6614:4;6605:14;;;;;6506:1;6499:9;6470:197;;6698:1338;6895:2;6884:9;6877:21;6940:6;6934:13;6929:2;6918:9;6914:18;6907:41;7002:2;6994:6;6990:15;6984:22;6979:2;6968:9;6964:18;6957:50;7061:2;7053:6;7049:15;7043:22;7038:2;7027:9;7023:18;7016:50;7121:2;7113:6;7109:15;7103:22;7097:3;7086:9;7082:19;7075:51;7181:3;7173:6;7169:16;7163:23;7157:3;7146:9;7142:19;7135:52;7242:3;7234:6;7230:16;7224:23;7218:3;7207:9;7203:19;7196:52;7303:3;7295:6;7291:16;7285:23;7279:3;7268:9;7264:19;7257:52;6858:4;7346:3;7338:6;7334:16;7328:23;7370:3;7409:2;7404;7393:9;7389:18;7382:30;7459:2;7451:6;7447:15;7441:22;7421:42;;;7482:6;7507:3;7546:2;7541;7530:9;7526:18;7519:30;7572:52;7619:3;7608:9;7604:19;7590:12;7572:52;:::i;:::-;7661:15;;;7655:22;7558:66;;-1:-1:-1;7696:3:1;7708:51;7740:18;;;7655:22;516:13;509:21;497:34;;446:91;7708:51;7796:15;;7790:22;;-1:-1:-1;7831:3:1;7843:51;7875:18;;;7790:22;516:13;509:21;497:34;;446:91;7843:51;7931:15;;;7925:22;516:13;509:21;7988:18;;497:34;;;;-1:-1:-1;8024:6:1;;-1:-1:-1;6698:1338:1:o;8041:632::-;8212:2;8264:21;;;8334:13;;8237:18;;;8356:22;;;8183:4;;8212:2;8435:15;;;;8409:2;8394:18;;;8183:4;8478:169;8492:6;8489:1;8486:13;8478:169;;;8553:13;;8541:26;;8622:15;;;;8587:12;;;;8514:1;8507:9;8478:169;;8678:159;8745:20;;8805:6;8794:18;;8784:29;;8774:57;;8827:1;8824;8817:12;8842:324;8917:6;8925;8933;8986:2;8974:9;8965:7;8961:23;8957:32;8954:52;;;9002:1;8999;8992:12;8954:52;9038:9;9025:23;9015:33;;9067:37;9100:2;9089:9;9085:18;9067:37;:::i;:::-;9057:47;;9123:37;9156:2;9145:9;9141:18;9123:37;:::i;:::-;9113:47;;8842:324;;;;;:::o;9171:322::-;9248:6;9256;9264;9317:2;9305:9;9296:7;9292:23;9288:32;9285:52;;;9333:1;9330;9323:12;9285:52;9356:29;9375:9;9356:29;:::i;:::-;9346:39;9432:2;9417:18;;9404:32;;-1:-1:-1;9483:2:1;9468:18;;;9455:32;;9171:322;-1:-1:-1;;;9171:322:1:o;9498:315::-;9563:6;9571;9624:2;9612:9;9603:7;9599:23;9595:32;9592:52;;;9640:1;9637;9630:12;9592:52;9663:29;9682:9;9663:29;:::i;:::-;9653:39;;9742:2;9731:9;9727:18;9714:32;9755:28;9777:5;9755:28;:::i;:::-;9802:5;9792:15;;;9498:315;;;;;:::o;9818:667::-;9913:6;9921;9929;9937;9990:3;9978:9;9969:7;9965:23;9961:33;9958:53;;;10007:1;10004;9997:12;9958:53;10030:29;10049:9;10030:29;:::i;:::-;10020:39;;10078:38;10112:2;10101:9;10097:18;10078:38;:::i;:::-;10068:48;;10163:2;10152:9;10148:18;10135:32;10125:42;;10218:2;10207:9;10203:18;10190:32;10245:18;10237:6;10234:30;10231:50;;;10277:1;10274;10267:12;10231:50;10300:22;;10353:4;10345:13;;10341:27;-1:-1:-1;10331:55:1;;10382:1;10379;10372:12;10331:55;10405:74;10471:7;10466:2;10453:16;10448:2;10444;10440:11;10405:74;:::i;:::-;10395:84;;;9818:667;;;;;;;:::o;10490:266::-;5678:12;;-1:-1:-1;;;;;5674:61:1;5662:74;;5789:4;5778:16;;;5772:23;5797:18;5768:48;5752:14;;;5745:72;5880:4;5869:16;;;5863:23;5856:31;5849:39;5833:14;;;5826:63;5942:4;5931:16;;;5925:23;5950:8;5921:38;5905:14;;;5898:62;10686:3;10671:19;;10699:51;5594:372;10761:309;10826:6;10834;10887:2;10875:9;10866:7;10862:23;10858:32;10855:52;;;10903:1;10900;10893:12;10855:52;10939:9;10926:23;10916:33;;10999:2;10988:9;10984:18;10971:32;11012:28;11034:5;11012:28;:::i;11075:248::-;11143:6;11151;11204:2;11192:9;11183:7;11179:23;11175:32;11172:52;;;11220:1;11217;11210:12;11172:52;-1:-1:-1;;11243:23:1;;;11313:2;11298:18;;;11285:32;;-1:-1:-1;11075:248:1:o;11328:864::-;11457:6;11465;11473;11481;11489;11497;11505;11513;11566:3;11554:9;11545:7;11541:23;11537:33;11534:53;;;11583:1;11580;11573:12;11534:53;11619:9;11606:23;11596:33;;11676:2;11665:9;11661:18;11648:32;11638:42;;11727:2;11716:9;11712:18;11699:32;11689:42;;11778:2;11767:9;11763:18;11750:32;11740:42;;11829:3;11818:9;11814:19;11801:33;11791:43;;11881:3;11870:9;11866:19;11853:33;11843:43;;11937:3;11926:9;11922:19;11909:33;11965:18;11957:6;11954:30;11951:50;;;11997:1;11994;11987:12;11951:50;12020;12062:7;12053:6;12042:9;12038:22;12020:50;:::i;:::-;12010:60;;;12120:3;12109:9;12105:19;12092:33;12134:28;12156:5;12134:28;:::i;:::-;12181:5;12171:15;;;11328:864;;;;;;;;;;;:::o;12197:260::-;12265:6;12273;12326:2;12314:9;12305:7;12301:23;12297:32;12294:52;;;12342:1;12339;12332:12;12294:52;12365:29;12384:9;12365:29;:::i;:::-;12355:39;;12413:38;12447:2;12436:9;12432:18;12413:38;:::i;:::-;12403:48;;12197:260;;;;;:::o;12462:437::-;12541:1;12537:12;;;;12584;;;12605:61;;12659:4;12651:6;12647:17;12637:27;;12605:61;12712:2;12704:6;12701:14;12681:18;12678:38;12675:218;;-1:-1:-1;;;12746:1:1;12739:88;12850:4;12847:1;12840:15;12878:4;12875:1;12868:15;12675:218;;12462:437;;;:::o;12904:184::-;-1:-1:-1;;;12953:1:1;12946:88;13053:4;13050:1;13043:15;13077:4;13074:1;13067:15;13869:545;13971:2;13966:3;13963:11;13960:448;;;14007:1;14032:5;14028:2;14021:17;14077:4;14073:2;14063:19;14147:2;14135:10;14131:19;14128:1;14124:27;14118:4;14114:38;14183:4;14171:10;14168:20;14165:47;;;-1:-1:-1;14206:4:1;14165:47;14261:2;14256:3;14252:12;14249:1;14245:20;14239:4;14235:31;14225:41;;14316:82;14334:2;14327:5;14324:13;14316:82;;;14379:17;;;14360:1;14349:13;14316:82;;14590:1352;14716:3;14710:10;14743:18;14735:6;14732:30;14729:56;;;14765:18;;:::i;:::-;14794:97;14884:6;14844:38;14876:4;14870:11;14844:38;:::i;:::-;14838:4;14794:97;:::i;:::-;14946:4;;15010:2;14999:14;;15027:1;15022:663;;;;15729:1;15746:6;15743:89;;;-1:-1:-1;15798:19:1;;;15792:26;15743:89;-1:-1:-1;;14547:1:1;14543:11;;;14539:24;14535:29;14525:40;14571:1;14567:11;;;14522:57;15845:81;;14992:944;;15022:663;13816:1;13809:14;;;13853:4;13840:18;;-1:-1:-1;;15058:20:1;;;15176:236;15190:7;15187:1;15184:14;15176:236;;;15279:19;;;15273:26;15258:42;;15371:27;;;;15339:1;15327:14;;;;15206:19;;15176:236;;;15180:3;15440:6;15431:7;15428:19;15425:201;;;15501:19;;;15495:26;-1:-1:-1;;15584:1:1;15580:14;;;15596:3;15576:24;15572:37;15568:42;15553:58;15538:74;;15425:201;-1:-1:-1;;;;;15672:1:1;15656:14;;;15652:22;15639:36;;-1:-1:-1;14590:1352:1:o;16302:184::-;-1:-1:-1;;;16351:1:1;16344:88;16451:4;16448:1;16441:15;16475:4;16472:1;16465:15;16491:224;16530:3;16558:6;16591:2;16588:1;16584:10;16621:2;16618:1;16614:10;16652:3;16648:2;16644:12;16639:3;16636:21;16633:47;;;16660:18;;:::i;:::-;16696:13;;16491:224;-1:-1:-1;;;;16491:224:1:o;16720:217::-;16759:4;16788:6;16844:10;;;;16814;;16866:12;;;16863:38;;;16881:18;;:::i;:::-;16918:13;;16720:217;-1:-1:-1;;;16720:217:1:o;16942:197::-;16980:3;17008:6;17049:2;17042:5;17038:14;17076:2;17067:7;17064:15;17061:41;;17082:18;;:::i;:::-;17131:1;17118:15;;16942:197;-1:-1:-1;;;16942:197:1:o;18909:245::-;18976:6;19029:2;19017:9;19008:7;19004:23;19000:32;18997:52;;;19045:1;19042;19035:12;18997:52;19077:9;19071:16;19096:28;19118:5;19096:28;:::i;19511:128::-;19551:3;19582:1;19578:6;19575:1;19572:13;19569:39;;;19588:18;;:::i;:::-;-1:-1:-1;19624:9:1;;19511:128::o;21739:1007::-;21915:3;21944:1;21977:6;21971:13;22007:36;22033:9;22007:36;:::i;:::-;22062:1;22079:18;;;22106:133;;;;22253:1;22248:356;;;;22072:532;;22106:133;-1:-1:-1;;22139:24:1;;22127:37;;22212:14;;22205:22;22193:35;;22184:45;;;-1:-1:-1;22106:133:1;;22248:356;22279:6;22276:1;22269:17;22309:4;22354:2;22351:1;22341:16;22379:1;22393:165;22407:6;22404:1;22401:13;22393:165;;;22485:14;;22472:11;;;22465:35;22528:16;;;;22422:10;;22393:165;;;22397:3;;;22587:6;22582:3;22578:16;22571:23;;22072:532;;;;;22635:6;22629:13;22651:55;22697:8;22692:3;22685:4;22677:6;22673:17;22651:55;:::i;22751:135::-;22790:3;22811:17;;;22808:43;;22831:18;;:::i;:::-;-1:-1:-1;22878:1:1;22867:13;;22751:135::o;23215:753::-;23517:4;23546:3;23576:6;23565:9;23558:25;23619:6;23614:2;23603:9;23599:18;23592:34;23662:6;23657:2;23646:9;23642:18;23635:34;23705:6;23700:2;23689:9;23685:18;23678:34;23749:6;23743:3;23732:9;23728:19;23721:35;23793:6;23787:3;23776:9;23772:19;23765:35;23837:2;23831:3;23820:9;23816:19;23809:31;23857:45;23898:2;23887:9;23883:18;23875:6;23857:45;:::i;:::-;23849:53;;;23953:6;23946:14;23939:22;23933:3;23922:9;23918:19;23911:51;23215:753;;;;;;;;;;;:::o;24741:512::-;24935:4;-1:-1:-1;;;;;25045:2:1;25037:6;25033:15;25022:9;25015:34;25097:2;25089:6;25085:15;25080:2;25069:9;25065:18;25058:43;;25137:6;25132:2;25121:9;25117:18;25110:34;25180:3;25175:2;25164:9;25160:18;25153:31;25201:46;25242:3;25231:9;25227:19;25219:6;25201:46;:::i;:::-;25193:54;24741:512;-1:-1:-1;;;;;;24741:512:1:o;25258:249::-;25327:6;25380:2;25368:9;25359:7;25355:23;25351:32;25348:52;;;25396:1;25393;25386:12;25348:52;25428:9;25422:16;25447:30;25471:5;25447:30;:::i;25857:168::-;25897:7;25963:1;25959;25955:6;25951:14;25948:1;25945:21;25940:1;25933:9;25926:17;25922:45;25919:71;;;25970:18;;:::i;:::-;-1:-1:-1;26010:9:1;;25857:168::o;26385:125::-;26425:4;26453:1;26450;26447:8;26444:34;;;26458:18;;:::i;:::-;-1:-1:-1;26495:9:1;;26385:125::o;27176:184::-;-1:-1:-1;;;27225:1:1;27218:88;27325:4;27322:1;27315:15;27349:4;27346:1;27339:15;27365:112;27397:1;27423;27413:35;;27428:18;;:::i;:::-;-1:-1:-1;27462:9:1;;27365:112::o;27482:184::-;-1:-1:-1;;;27531:1:1;27524:88;27631:4;27628:1;27621:15;27655:4;27652:1;27645:15;27671:120;27711:1;27737;27727:35;;27742:18;;:::i;:::-;-1:-1:-1;27776:9:1;;27671:120::o
Swarm Source
ipfs://f0b017e58ae7b9b33ae6647537d7023945dffb7f2996f56e07bc550956239d26
Loading...
Loading
Loading...
Loading
OVERVIEW
Smyle Ride vehicles to use in the SmyleLand.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $2,626.3 | 7.871 | $20,671.62 |
Loading...
Loading
[ 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.