Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 55 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 20818150 | 75 days ago | IN | 0 ETH | 0.00050322 | ||||
Safe Transfer Fr... | 20818132 | 75 days ago | IN | 0 ETH | 0.00080003 | ||||
Set Approval For... | 20131158 | 171 days ago | IN | 0 ETH | 0.0005069 | ||||
Set Approval For... | 18971295 | 333 days ago | IN | 0 ETH | 0.00086012 | ||||
Safe Transfer Fr... | 18896597 | 344 days ago | IN | 0 ETH | 0.00083656 | ||||
Set Approval For... | 18596226 | 386 days ago | IN | 0 ETH | 0.00104467 | ||||
Set Approval For... | 17536298 | 534 days ago | IN | 0 ETH | 0.00083968 | ||||
Set Approval For... | 17400252 | 553 days ago | IN | 0 ETH | 0.00093322 | ||||
Set Approval For... | 17391582 | 555 days ago | IN | 0 ETH | 0.00127604 | ||||
Set Approval For... | 17390692 | 555 days ago | IN | 0 ETH | 0.0013459 | ||||
Set Approval For... | 17009589 | 609 days ago | IN | 0 ETH | 0.00094676 | ||||
Set Approval For... | 17009587 | 609 days ago | IN | 0 ETH | 0.00101509 | ||||
Set Approval For... | 16945186 | 618 days ago | IN | 0 ETH | 0.00093915 | ||||
Set Approval For... | 16945182 | 618 days ago | IN | 0 ETH | 0.00102442 | ||||
Set Approval For... | 16938785 | 619 days ago | IN | 0 ETH | 0.00134815 | ||||
Set Approval For... | 16872060 | 628 days ago | IN | 0 ETH | 0.00076527 | ||||
Set Approval For... | 16844250 | 632 days ago | IN | 0 ETH | 0.0008074 | ||||
Set Approval For... | 16844244 | 632 days ago | IN | 0 ETH | 0.00071499 | ||||
Set Approval For... | 16844243 | 632 days ago | IN | 0 ETH | 0.00074705 | ||||
Set Approval For... | 16820077 | 635 days ago | IN | 0 ETH | 0.00288632 | ||||
Set Approval For... | 16773945 | 642 days ago | IN | 0 ETH | 0.00126351 | ||||
Set Approval For... | 16773942 | 642 days ago | IN | 0 ETH | 0.00134047 | ||||
Transfer From | 16761456 | 644 days ago | IN | 0 ETH | 0.00129859 | ||||
Set Approval For... | 16751695 | 645 days ago | IN | 0 ETH | 0.00100099 | ||||
Set Approval For... | 16726074 | 649 days ago | IN | 0 ETH | 0.00087511 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
UAENobleApe
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-28 */ /** *Submitted for verification at Etherscan.io on 2022-08-18 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) // SPDX-License-Identifier: MIT 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/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.2 // 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(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * 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; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @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; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // 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/ERC721A.sol // ERC721A Contracts v4.2.2 // 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 { // Reference type for token approval. 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 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 { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _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]`. 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 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 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 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. 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`. ) 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 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // 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: BoredApeKennelClub.sol pragma solidity >=0.7.0 <0.9.0; contract UAENobleApe is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public baseURI="https://ipfs.io/ipfs/QmVJE1yHsxH8Phw6r1eDtq6nn8t98F1PGQTaKoNRZbJUKE/"; string public baseExtension = ".json"; string public notRevealedUri=""; uint256 public cost = 0.02 ether; uint256 public maxSupply = 10000; uint256 public FreeSupply = 0; uint256 public MaxperWallet = 10000; uint256 public MaxperWalletFree = 10000; bool public paused = false; bool public revealed = true; constructor() ERC721A("UAENobleApe", "UAENobleApe") {} function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function mint(uint256 tokens) public payable nonReentrant { require(!paused, "oops contract is paused"); require(tokens <= MaxperWallet, "max mint amount per tx exceeded"); require(totalSupply() + tokens <= maxSupply, "We Soldout"); require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWallet, "Max NFT Per Wallet exceeded"); require(msg.value >= cost * tokens, "insufficient funds"); _safeMint(_msgSenderERC721A(), tokens); } function freemint(uint256 tokens) public nonReentrant { require(!paused, "oops contract is paused"); require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWalletFree, "Max NFT Per Wallet exceeded"); require(tokens <= MaxperWalletFree, "max mint per Tx exceeded"); require(totalSupply() + tokens <= FreeSupply, "Whitelist MaxSupply exceeded"); _safeMint(_msgSenderERC721A(), tokens); } function airdrop(uint256 _mintAmount, address destination) public onlyOwner nonReentrant { require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded"); _safeMint(destination, _mintAmount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721AMetadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function tokensOfOwner(address owner) public view 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; } } function reveal(bool _state) public onlyOwner { revealed = _state; } function setMaxPerWallet(uint256 _limit) public onlyOwner { MaxperWallet = _limit; } function setFreeMaxPerWallet(uint256 _limit) public onlyOwner { MaxperWalletFree = _limit; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setFreesupply(uint256 _newsupply) public onlyOwner { FreeSupply = _newsupply; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner nonReentrant { uint256 balance = address(this).balance; payable(_msgSenderERC721A()).transfer(balance); } }
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":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","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":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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","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":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setFreesupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052604051806080016040528060448152602001620043ee60449139600a90816200002e919062000524565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b908162000075919062000524565b5060405180602001604052806000815250600c908162000096919062000524565b5066470de4df820000600d55612710600e556000600f556127106010556127106011556000601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff021916908315150217905550348015620000fc57600080fd5b506040518060400160405280600b81526020017f5541454e6f626c654170650000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f5541454e6f626c6541706500000000000000000000000000000000000000000081525081600290816200017a919062000524565b5080600390816200018c919062000524565b506200019d620001d360201b60201c565b6000819055505050620001c5620001b9620001dc60201b60201c565b620001e460201b60201c565b60016009819055506200060b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032c57607f821691505b602082108103620003425762000341620002e4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003ac7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200036d565b620003b886836200036d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000405620003ff620003f984620003d0565b620003da565b620003d0565b9050919050565b6000819050919050565b6200042183620003e4565b6200043962000430826200040c565b8484546200037a565b825550505050565b600090565b6200045062000441565b6200045d81848462000416565b505050565b5b8181101562000485576200047960008262000446565b60018101905062000463565b5050565b601f821115620004d4576200049e8162000348565b620004a9846200035d565b81016020851015620004b9578190505b620004d1620004c8856200035d565b83018262000462565b50505b505050565b600082821c905092915050565b6000620004f960001984600802620004d9565b1980831691505092915050565b6000620005148383620004e6565b9150826002028217905092915050565b6200052f82620002aa565b67ffffffffffffffff8111156200054b576200054a620002b5565b5b62000557825462000313565b6200056482828562000489565b600060209050601f8311600181146200059c576000841562000587578287015190505b62000593858262000506565b86555062000603565b601f198416620005ac8662000348565b60005b82811015620005d657848901518255600182019150602085019450602081019050620005af565b86831015620005f65784890151620005f2601f891682620004e6565b8355505b6001600288020188555050505b505050505050565b613dd3806200061b6000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063bd7a1998116100b6578063dc33e6811161007a578063dc33e68114610870578063e1cf8baa146108ad578063e268e4d3146108d6578063e985e9c5146108ff578063f2c4ce1e1461093c578063f2fde38b1461096557610251565b8063bd7a199814610789578063c6682862146107b4578063c87b56dd146107df578063d5abeb011461081c578063da3ef23f1461084757610251565b806395d89b41116100fd57806395d89b41146106c7578063a0712d68146106f2578063a22cb4651461070e578063b88d4fde14610737578063bc63f02e1461076057610251565b806370a08231146105e2578063715018a61461061f5780638462151c146106365780638da5cb5b14610673578063940cd05b1461069e57610251565b8063351de26e116101d2578063518302271161019657806351830227146104d057806355f804b3146104fb5780635c975abb14610524578063624208ae1461054f5780636352211e1461057a5780636c0360eb146105b757610251565b8063351de26e146104205780633ccfd60b1461044957806342842e0e1461045357806344a0d68a1461047c57806350839bef146104a557610251565b8063095ea7b311610219578063095ea7b31461034f5780630fbe4fe21461037857806313faede6146103a157806318160ddd146103cc57806323b872dd146103f757610251565b806301ffc9a71461025657806302329a291461029357806306fdde03146102bc578063081812fc146102e7578063081c8c4414610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612a2a565b61098e565b60405161028a9190612a72565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190612ab9565b610a20565b005b3480156102c857600080fd5b506102d1610a45565b6040516102de9190612b76565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190612bce565b610ad7565b60405161031b9190612c3c565b60405180910390f35b34801561033057600080fd5b50610339610b56565b6040516103469190612b76565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190612c83565b610be4565b005b34801561038457600080fd5b5061039f600480360381019061039a9190612bce565b610d28565b005b3480156103ad57600080fd5b506103b6610edc565b6040516103c39190612cd2565b60405180910390f35b3480156103d857600080fd5b506103e1610ee2565b6040516103ee9190612cd2565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190612ced565b610ef9565b005b34801561042c57600080fd5b5061044760048036038101906104429190612bce565b61121b565b005b61045161122d565b005b34801561045f57600080fd5b5061047a60048036038101906104759190612ced565b6112e0565b005b34801561048857600080fd5b506104a3600480360381019061049e9190612bce565b611300565b005b3480156104b157600080fd5b506104ba611312565b6040516104c79190612cd2565b60405180910390f35b3480156104dc57600080fd5b506104e5611318565b6040516104f29190612a72565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190612e75565b61132b565b005b34801561053057600080fd5b50610539611346565b6040516105469190612a72565b60405180910390f35b34801561055b57600080fd5b50610564611359565b6040516105719190612cd2565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c9190612bce565b61135f565b6040516105ae9190612c3c565b60405180910390f35b3480156105c357600080fd5b506105cc611371565b6040516105d99190612b76565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190612ebe565b6113ff565b6040516106169190612cd2565b60405180910390f35b34801561062b57600080fd5b506106346114b7565b005b34801561064257600080fd5b5061065d60048036038101906106589190612ebe565b6114cb565b60405161066a9190612fa9565b60405180910390f35b34801561067f57600080fd5b5061068861160e565b6040516106959190612c3c565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190612ab9565b611638565b005b3480156106d357600080fd5b506106dc61165d565b6040516106e99190612b76565b60405180910390f35b61070c60048036038101906107079190612bce565b6116ef565b005b34801561071a57600080fd5b5061073560048036038101906107309190612fcb565b6118f3565b005b34801561074357600080fd5b5061075e600480360381019061075991906130ac565b611a6a565b005b34801561076c57600080fd5b506107876004803603810190610782919061312f565b611add565b005b34801561079557600080fd5b5061079e611b9f565b6040516107ab9190612cd2565b60405180910390f35b3480156107c057600080fd5b506107c9611ba5565b6040516107d69190612b76565b60405180910390f35b3480156107eb57600080fd5b5061080660048036038101906108019190612bce565b611c33565b6040516108139190612b76565b60405180910390f35b34801561082857600080fd5b50610831611d8b565b60405161083e9190612cd2565b60405180910390f35b34801561085357600080fd5b5061086e60048036038101906108699190612e75565b611d91565b005b34801561087c57600080fd5b5061089760048036038101906108929190612ebe565b611dac565b6040516108a49190612cd2565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf9190612bce565b611dbe565b005b3480156108e257600080fd5b506108fd60048036038101906108f89190612bce565b611dd0565b005b34801561090b57600080fd5b506109266004803603810190610921919061316f565b611de2565b6040516109339190612a72565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190612e75565b611e76565b005b34801561097157600080fd5b5061098c60048036038101906109879190612ebe565b611e91565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a195750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a28611f14565b80601260006101000a81548160ff02191690831515021790555050565b606060028054610a54906131de565b80601f0160208091040260200160405190810160405280929190818152602001828054610a80906131de565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b5050505050905090565b6000610ae282611f92565b610b18576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610b63906131de565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8f906131de565b8015610bdc5780601f10610bb157610100808354040283529160200191610bdc565b820191906000526020600020905b815481529060010190602001808311610bbf57829003601f168201915b505050505081565b6000610bef8261135f565b90508073ffffffffffffffffffffffffffffffffffffffff16610c10611ff1565b73ffffffffffffffffffffffffffffffffffffffff1614610c7357610c3c81610c37611ff1565b611de2565b610c72576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600260095403610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d649061325b565b60405180910390fd5b6002600981905550601260009054906101000a900460ff1615610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc906132c7565b60405180910390fd5b60115481610dd9610dd4611ff1565b611ff9565b610de39190613316565b1115610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90613396565b60405180910390fd5b601154811115610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090613402565b60405180910390fd5b600f5481610e75610ee2565b610e7f9190613316565b1115610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb79061346e565b60405180910390fd5b610ed1610ecb611ff1565b82612050565b600160098190555050565b600d5481565b6000610eec61206e565b6001546000540303905090565b6000610f0482612077565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f6b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f7784612143565b91509150610f8d8187610f88611ff1565b61216a565b610fd957610fa286610f9d611ff1565b611de2565b610fd8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361103f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61104c86868660016121ae565b801561105757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611125856111018888876121b4565b7c0200000000000000000000000000000000000000000000000000000000176121dc565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111ab57600060018501905060006004600083815260200190815260200160002054036111a95760005481146111a8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112138686866001612207565b505050505050565b611223611f14565b8060118190555050565b611235611f14565b60026009540361127a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112719061325b565b60405180910390fd5b6002600981905550600047905061128f611ff1565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112d4573d6000803e3d6000fd5b50506001600981905550565b6112fb83838360405180602001604052806000815250611a6a565b505050565b611308611f14565b80600d8190555050565b600f5481565b601260019054906101000a900460ff1681565b611333611f14565b80600a9081611342919061363a565b5050565b601260009054906101000a900460ff1681565b60115481565b600061136a82612077565b9050919050565b600a805461137e906131de565b80601f01602080910402602001604051908101604052809291908181526020018280546113aa906131de565b80156113f75780601f106113cc576101008083540402835291602001916113f7565b820191906000526020600020905b8154815290600101906020018083116113da57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611466576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114bf611f14565b6114c9600061220d565b565b606060008060006114db856113ff565b905060008167ffffffffffffffff8111156114f9576114f8612d4a565b5b6040519080825280602002602001820160405280156115275781602001602082028036833780820191505090505b50905061153261296f565b600061153c61206e565b90505b8386146116005761154f816122d3565b915081604001516115f557600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461159a57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036115f457808387806001019850815181106115e7576115e661370c565b5b6020026020010181815250505b5b80600101905061153f565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611640611f14565b80601260016101000a81548160ff02191690831515021790555050565b60606003805461166c906131de565b80601f0160208091040260200160405190810160405280929190818152602001828054611698906131de565b80156116e55780601f106116ba576101008083540402835291602001916116e5565b820191906000526020600020905b8154815290600101906020018083116116c857829003601f168201915b5050505050905090565b600260095403611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b9061325b565b60405180910390fd5b6002600981905550601260009054906101000a900460ff161561178c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611783906132c7565b60405180910390fd5b6010548111156117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890613787565b60405180910390fd5b600e54816117dd610ee2565b6117e79190613316565b1115611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f906137f3565b60405180910390fd5b6010548161183c611837611ff1565b611ff9565b6118469190613316565b1115611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e90613396565b60405180910390fd5b80600d546118959190613813565b3410156118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce906138a1565b60405180910390fd5b6118e86118e2611ff1565b82612050565b600160098190555050565b6118fb611ff1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361195f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061196c611ff1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a19611ff1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a5e9190612a72565b60405180910390a35050565b611a75848484610ef9565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ad757611aa0848484846122fe565b611ad6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611ae5611f14565b600260095403611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b219061325b565b60405180910390fd5b6002600981905550600e5482611b3e610ee2565b611b489190613316565b1115611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b809061390d565b60405180910390fd5b611b938183612050565b60016009819055505050565b60105481565b600b8054611bb2906131de565b80601f0160208091040260200160405190810160405280929190818152602001828054611bde906131de565b8015611c2b5780601f10611c0057610100808354040283529160200191611c2b565b820191906000526020600020905b815481529060010190602001808311611c0e57829003601f168201915b505050505081565b6060611c3e82611f92565b611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c749061399f565b60405180910390fd5b60001515601260019054906101000a900460ff16151503611d2a57600c8054611ca5906131de565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd1906131de565b8015611d1e5780601f10611cf357610100808354040283529160200191611d1e565b820191906000526020600020905b815481529060010190602001808311611d0157829003601f168201915b50505050509050611d86565b6000611d3461244e565b90506000815111611d545760405180602001604052806000815250611d82565b80611d5e846124e0565b600b604051602001611d7293929190613a7e565b6040516020818303038152906040525b9150505b919050565b600e5481565b611d99611f14565b80600b9081611da8919061363a565b5050565b6000611db782611ff9565b9050919050565b611dc6611f14565b80600f8190555050565b611dd8611f14565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e7e611f14565b80600c9081611e8d919061363a565b5050565b611e99611f14565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eff90613b21565b60405180910390fd5b611f118161220d565b50565b611f1c612640565b73ffffffffffffffffffffffffffffffffffffffff16611f3a61160e565b73ffffffffffffffffffffffffffffffffffffffff1614611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790613b8d565b60405180910390fd5b565b600081611f9d61206e565b11158015611fac575060005482105b8015611fea575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b61206a828260405180602001604052806000815250612648565b5050565b60006001905090565b6000808290508061208661206e565b1161210c5760005481101561210b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612109575b600081036120ff5760046000836001900393508381526020019081526020016000205490506120d5565b809250505061213e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86121cb8686846126e5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122db61296f565b6122f760046000848152602001908152602001600020546126ee565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612324611ff1565b8786866040518563ffffffff1660e01b81526004016123469493929190613c02565b6020604051808303816000875af192505050801561238257506040513d601f19601f8201168201806040525081019061237f9190613c63565b60015b6123fb573d80600081146123b2576040519150601f19603f3d011682016040523d82523d6000602084013e6123b7565b606091505b5060008151036123f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461245d906131de565b80601f0160208091040260200160405190810160405280929190818152602001828054612489906131de565b80156124d65780601f106124ab576101008083540402835291602001916124d6565b820191906000526020600020905b8154815290600101906020018083116124b957829003601f168201915b5050505050905090565b606060008203612527576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061263b565b600082905060005b6000821461255957808061254290613c90565b915050600a826125529190613d07565b915061252f565b60008167ffffffffffffffff81111561257557612574612d4a565b5b6040519080825280601f01601f1916602001820160405280156125a75781602001600182028036833780820191505090505b5090505b60008514612634576001826125c09190613d38565b9150600a856125cf9190613d6c565b60306125db9190613316565b60f81b8183815181106125f1576125f061370c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561262d9190613d07565b94506125ab565b8093505050505b919050565b600033905090565b61265283836127a4565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126e057600080549050600083820390505b61269260008683806001019450866122fe565b6126c8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061267f5781600054146126dd57600080fd5b50505b505050565b60009392505050565b6126f661296f565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080549050600082036127e4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127f160008483856121ae565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128688361285960008660006121b4565b6128628561295f565b176121dc565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461290957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506128ce565b5060008203612944576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061295a6000848385612207565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a07816129d2565b8114612a1257600080fd5b50565b600081359050612a24816129fe565b92915050565b600060208284031215612a4057612a3f6129c8565b5b6000612a4e84828501612a15565b91505092915050565b60008115159050919050565b612a6c81612a57565b82525050565b6000602082019050612a876000830184612a63565b92915050565b612a9681612a57565b8114612aa157600080fd5b50565b600081359050612ab381612a8d565b92915050565b600060208284031215612acf57612ace6129c8565b5b6000612add84828501612aa4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b20578082015181840152602081019050612b05565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b4882612ae6565b612b528185612af1565b9350612b62818560208601612b02565b612b6b81612b2c565b840191505092915050565b60006020820190508181036000830152612b908184612b3d565b905092915050565b6000819050919050565b612bab81612b98565b8114612bb657600080fd5b50565b600081359050612bc881612ba2565b92915050565b600060208284031215612be457612be36129c8565b5b6000612bf284828501612bb9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c2682612bfb565b9050919050565b612c3681612c1b565b82525050565b6000602082019050612c516000830184612c2d565b92915050565b612c6081612c1b565b8114612c6b57600080fd5b50565b600081359050612c7d81612c57565b92915050565b60008060408385031215612c9a57612c996129c8565b5b6000612ca885828601612c6e565b9250506020612cb985828601612bb9565b9150509250929050565b612ccc81612b98565b82525050565b6000602082019050612ce76000830184612cc3565b92915050565b600080600060608486031215612d0657612d056129c8565b5b6000612d1486828701612c6e565b9350506020612d2586828701612c6e565b9250506040612d3686828701612bb9565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d8282612b2c565b810181811067ffffffffffffffff82111715612da157612da0612d4a565b5b80604052505050565b6000612db46129be565b9050612dc08282612d79565b919050565b600067ffffffffffffffff821115612de057612ddf612d4a565b5b612de982612b2c565b9050602081019050919050565b82818337600083830152505050565b6000612e18612e1384612dc5565b612daa565b905082815260208101848484011115612e3457612e33612d45565b5b612e3f848285612df6565b509392505050565b600082601f830112612e5c57612e5b612d40565b5b8135612e6c848260208601612e05565b91505092915050565b600060208284031215612e8b57612e8a6129c8565b5b600082013567ffffffffffffffff811115612ea957612ea86129cd565b5b612eb584828501612e47565b91505092915050565b600060208284031215612ed457612ed36129c8565b5b6000612ee284828501612c6e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f2081612b98565b82525050565b6000612f328383612f17565b60208301905092915050565b6000602082019050919050565b6000612f5682612eeb565b612f608185612ef6565b9350612f6b83612f07565b8060005b83811015612f9c578151612f838882612f26565b9750612f8e83612f3e565b925050600181019050612f6f565b5085935050505092915050565b60006020820190508181036000830152612fc38184612f4b565b905092915050565b60008060408385031215612fe257612fe16129c8565b5b6000612ff085828601612c6e565b925050602061300185828601612aa4565b9150509250929050565b600067ffffffffffffffff82111561302657613025612d4a565b5b61302f82612b2c565b9050602081019050919050565b600061304f61304a8461300b565b612daa565b90508281526020810184848401111561306b5761306a612d45565b5b613076848285612df6565b509392505050565b600082601f83011261309357613092612d40565b5b81356130a384826020860161303c565b91505092915050565b600080600080608085870312156130c6576130c56129c8565b5b60006130d487828801612c6e565b94505060206130e587828801612c6e565b93505060406130f687828801612bb9565b925050606085013567ffffffffffffffff811115613117576131166129cd565b5b6131238782880161307e565b91505092959194509250565b60008060408385031215613146576131456129c8565b5b600061315485828601612bb9565b925050602061316585828601612c6e565b9150509250929050565b60008060408385031215613186576131856129c8565b5b600061319485828601612c6e565b92505060206131a585828601612c6e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131f657607f821691505b602082108103613209576132086131af565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613245601f83612af1565b91506132508261320f565b602082019050919050565b6000602082019050818103600083015261327481613238565b9050919050565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b60006132b1601783612af1565b91506132bc8261327b565b602082019050919050565b600060208201905081810360008301526132e0816132a4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061332182612b98565b915061332c83612b98565b9250828201905080821115613344576133436132e7565b5b92915050565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b6000613380601b83612af1565b915061338b8261334a565b602082019050919050565b600060208201905081810360008301526133af81613373565b9050919050565b7f6d6178206d696e74207065722054782065786365656465640000000000000000600082015250565b60006133ec601883612af1565b91506133f7826133b6565b602082019050919050565b6000602082019050818103600083015261341b816133df565b9050919050565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b6000613458601c83612af1565b915061346382613422565b602082019050919050565b600060208201905081810360008301526134878161344b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134b3565b6134fa86836134b3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061353761353261352d84612b98565b613512565b612b98565b9050919050565b6000819050919050565b6135518361351c565b61356561355d8261353e565b8484546134c0565b825550505050565b600090565b61357a61356d565b613585818484613548565b505050565b5b818110156135a95761359e600082613572565b60018101905061358b565b5050565b601f8211156135ee576135bf8161348e565b6135c8846134a3565b810160208510156135d7578190505b6135eb6135e3856134a3565b83018261358a565b50505b505050565b600082821c905092915050565b6000613611600019846008026135f3565b1980831691505092915050565b600061362a8383613600565b9150826002028217905092915050565b61364382612ae6565b67ffffffffffffffff81111561365c5761365b612d4a565b5b61366682546131de565b6136718282856135ad565b600060209050601f8311600181146136a45760008415613692578287015190505b61369c858261361e565b865550613704565b601f1984166136b28661348e565b60005b828110156136da578489015182556001820191506020850194506020810190506136b5565b868310156136f757848901516136f3601f891682613600565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b6000613771601f83612af1565b915061377c8261373b565b602082019050919050565b600060208201905081810360008301526137a081613764565b9050919050565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b60006137dd600a83612af1565b91506137e8826137a7565b602082019050919050565b6000602082019050818103600083015261380c816137d0565b9050919050565b600061381e82612b98565b915061382983612b98565b925082820261383781612b98565b9150828204841483151761384e5761384d6132e7565b5b5092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b600061388b601283612af1565b915061389682613855565b602082019050919050565b600060208201905081810360008301526138ba8161387e565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b60006138f7601683612af1565b9150613902826138c1565b602082019050919050565b60006020820190508181036000830152613926816138ea565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000613989603083612af1565b91506139948261392d565b604082019050919050565b600060208201905081810360008301526139b88161397c565b9050919050565b600081905092915050565b60006139d582612ae6565b6139df81856139bf565b93506139ef818560208601612b02565b80840191505092915050565b60008154613a08816131de565b613a1281866139bf565b94506001821660008114613a2d5760018114613a4257613a75565b60ff1983168652811515820286019350613a75565b613a4b8561348e565b60005b83811015613a6d57815481890152600182019150602081019050613a4e565b838801955050505b50505092915050565b6000613a8a82866139ca565b9150613a9682856139ca565b9150613aa282846139fb565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b0b602683612af1565b9150613b1682613aaf565b604082019050919050565b60006020820190508181036000830152613b3a81613afe565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b77602083612af1565b9150613b8282613b41565b602082019050919050565b60006020820190508181036000830152613ba681613b6a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613bd482613bad565b613bde8185613bb8565b9350613bee818560208601612b02565b613bf781612b2c565b840191505092915050565b6000608082019050613c176000830187612c2d565b613c246020830186612c2d565b613c316040830185612cc3565b8181036060830152613c438184613bc9565b905095945050505050565b600081519050613c5d816129fe565b92915050565b600060208284031215613c7957613c786129c8565b5b6000613c8784828501613c4e565b91505092915050565b6000613c9b82612b98565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ccd57613ccc6132e7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d1282612b98565b9150613d1d83612b98565b925082613d2d57613d2c613cd8565b5b828204905092915050565b6000613d4382612b98565b9150613d4e83612b98565b9250828203905081811115613d6657613d656132e7565b5b92915050565b6000613d7782612b98565b9150613d8283612b98565b925082613d9257613d91613cd8565b5b82820690509291505056fea2646970667358221220f489207921200106d00e44dfec5c397597016073704a1e04ffee648c9e1860ce64736f6c6343000811003368747470733a2f2f697066732e696f2f697066732f516d564a453179487378483850687736723165447471366e6e38743938463150475154614b6f4e525a624a554b452f
Deployed Bytecode
0x6080604052600436106102515760003560e01c806370a0823111610139578063bd7a1998116100b6578063dc33e6811161007a578063dc33e68114610870578063e1cf8baa146108ad578063e268e4d3146108d6578063e985e9c5146108ff578063f2c4ce1e1461093c578063f2fde38b1461096557610251565b8063bd7a199814610789578063c6682862146107b4578063c87b56dd146107df578063d5abeb011461081c578063da3ef23f1461084757610251565b806395d89b41116100fd57806395d89b41146106c7578063a0712d68146106f2578063a22cb4651461070e578063b88d4fde14610737578063bc63f02e1461076057610251565b806370a08231146105e2578063715018a61461061f5780638462151c146106365780638da5cb5b14610673578063940cd05b1461069e57610251565b8063351de26e116101d2578063518302271161019657806351830227146104d057806355f804b3146104fb5780635c975abb14610524578063624208ae1461054f5780636352211e1461057a5780636c0360eb146105b757610251565b8063351de26e146104205780633ccfd60b1461044957806342842e0e1461045357806344a0d68a1461047c57806350839bef146104a557610251565b8063095ea7b311610219578063095ea7b31461034f5780630fbe4fe21461037857806313faede6146103a157806318160ddd146103cc57806323b872dd146103f757610251565b806301ffc9a71461025657806302329a291461029357806306fdde03146102bc578063081812fc146102e7578063081c8c4414610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612a2a565b61098e565b60405161028a9190612a72565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190612ab9565b610a20565b005b3480156102c857600080fd5b506102d1610a45565b6040516102de9190612b76565b60405180910390f35b3480156102f357600080fd5b5061030e60048036038101906103099190612bce565b610ad7565b60405161031b9190612c3c565b60405180910390f35b34801561033057600080fd5b50610339610b56565b6040516103469190612b76565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190612c83565b610be4565b005b34801561038457600080fd5b5061039f600480360381019061039a9190612bce565b610d28565b005b3480156103ad57600080fd5b506103b6610edc565b6040516103c39190612cd2565b60405180910390f35b3480156103d857600080fd5b506103e1610ee2565b6040516103ee9190612cd2565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190612ced565b610ef9565b005b34801561042c57600080fd5b5061044760048036038101906104429190612bce565b61121b565b005b61045161122d565b005b34801561045f57600080fd5b5061047a60048036038101906104759190612ced565b6112e0565b005b34801561048857600080fd5b506104a3600480360381019061049e9190612bce565b611300565b005b3480156104b157600080fd5b506104ba611312565b6040516104c79190612cd2565b60405180910390f35b3480156104dc57600080fd5b506104e5611318565b6040516104f29190612a72565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190612e75565b61132b565b005b34801561053057600080fd5b50610539611346565b6040516105469190612a72565b60405180910390f35b34801561055b57600080fd5b50610564611359565b6040516105719190612cd2565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c9190612bce565b61135f565b6040516105ae9190612c3c565b60405180910390f35b3480156105c357600080fd5b506105cc611371565b6040516105d99190612b76565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190612ebe565b6113ff565b6040516106169190612cd2565b60405180910390f35b34801561062b57600080fd5b506106346114b7565b005b34801561064257600080fd5b5061065d60048036038101906106589190612ebe565b6114cb565b60405161066a9190612fa9565b60405180910390f35b34801561067f57600080fd5b5061068861160e565b6040516106959190612c3c565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190612ab9565b611638565b005b3480156106d357600080fd5b506106dc61165d565b6040516106e99190612b76565b60405180910390f35b61070c60048036038101906107079190612bce565b6116ef565b005b34801561071a57600080fd5b5061073560048036038101906107309190612fcb565b6118f3565b005b34801561074357600080fd5b5061075e600480360381019061075991906130ac565b611a6a565b005b34801561076c57600080fd5b506107876004803603810190610782919061312f565b611add565b005b34801561079557600080fd5b5061079e611b9f565b6040516107ab9190612cd2565b60405180910390f35b3480156107c057600080fd5b506107c9611ba5565b6040516107d69190612b76565b60405180910390f35b3480156107eb57600080fd5b5061080660048036038101906108019190612bce565b611c33565b6040516108139190612b76565b60405180910390f35b34801561082857600080fd5b50610831611d8b565b60405161083e9190612cd2565b60405180910390f35b34801561085357600080fd5b5061086e60048036038101906108699190612e75565b611d91565b005b34801561087c57600080fd5b5061089760048036038101906108929190612ebe565b611dac565b6040516108a49190612cd2565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf9190612bce565b611dbe565b005b3480156108e257600080fd5b506108fd60048036038101906108f89190612bce565b611dd0565b005b34801561090b57600080fd5b506109266004803603810190610921919061316f565b611de2565b6040516109339190612a72565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190612e75565b611e76565b005b34801561097157600080fd5b5061098c60048036038101906109879190612ebe565b611e91565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a195750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a28611f14565b80601260006101000a81548160ff02191690831515021790555050565b606060028054610a54906131de565b80601f0160208091040260200160405190810160405280929190818152602001828054610a80906131de565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b5050505050905090565b6000610ae282611f92565b610b18576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610b63906131de565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8f906131de565b8015610bdc5780601f10610bb157610100808354040283529160200191610bdc565b820191906000526020600020905b815481529060010190602001808311610bbf57829003601f168201915b505050505081565b6000610bef8261135f565b90508073ffffffffffffffffffffffffffffffffffffffff16610c10611ff1565b73ffffffffffffffffffffffffffffffffffffffff1614610c7357610c3c81610c37611ff1565b611de2565b610c72576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600260095403610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d649061325b565b60405180910390fd5b6002600981905550601260009054906101000a900460ff1615610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc906132c7565b60405180910390fd5b60115481610dd9610dd4611ff1565b611ff9565b610de39190613316565b1115610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90613396565b60405180910390fd5b601154811115610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090613402565b60405180910390fd5b600f5481610e75610ee2565b610e7f9190613316565b1115610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb79061346e565b60405180910390fd5b610ed1610ecb611ff1565b82612050565b600160098190555050565b600d5481565b6000610eec61206e565b6001546000540303905090565b6000610f0482612077565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f6b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f7784612143565b91509150610f8d8187610f88611ff1565b61216a565b610fd957610fa286610f9d611ff1565b611de2565b610fd8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361103f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61104c86868660016121ae565b801561105757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611125856111018888876121b4565b7c0200000000000000000000000000000000000000000000000000000000176121dc565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111ab57600060018501905060006004600083815260200190815260200160002054036111a95760005481146111a8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112138686866001612207565b505050505050565b611223611f14565b8060118190555050565b611235611f14565b60026009540361127a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112719061325b565b60405180910390fd5b6002600981905550600047905061128f611ff1565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112d4573d6000803e3d6000fd5b50506001600981905550565b6112fb83838360405180602001604052806000815250611a6a565b505050565b611308611f14565b80600d8190555050565b600f5481565b601260019054906101000a900460ff1681565b611333611f14565b80600a9081611342919061363a565b5050565b601260009054906101000a900460ff1681565b60115481565b600061136a82612077565b9050919050565b600a805461137e906131de565b80601f01602080910402602001604051908101604052809291908181526020018280546113aa906131de565b80156113f75780601f106113cc576101008083540402835291602001916113f7565b820191906000526020600020905b8154815290600101906020018083116113da57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611466576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114bf611f14565b6114c9600061220d565b565b606060008060006114db856113ff565b905060008167ffffffffffffffff8111156114f9576114f8612d4a565b5b6040519080825280602002602001820160405280156115275781602001602082028036833780820191505090505b50905061153261296f565b600061153c61206e565b90505b8386146116005761154f816122d3565b915081604001516115f557600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461159a57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036115f457808387806001019850815181106115e7576115e661370c565b5b6020026020010181815250505b5b80600101905061153f565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611640611f14565b80601260016101000a81548160ff02191690831515021790555050565b60606003805461166c906131de565b80601f0160208091040260200160405190810160405280929190818152602001828054611698906131de565b80156116e55780601f106116ba576101008083540402835291602001916116e5565b820191906000526020600020905b8154815290600101906020018083116116c857829003601f168201915b5050505050905090565b600260095403611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b9061325b565b60405180910390fd5b6002600981905550601260009054906101000a900460ff161561178c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611783906132c7565b60405180910390fd5b6010548111156117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890613787565b60405180910390fd5b600e54816117dd610ee2565b6117e79190613316565b1115611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f906137f3565b60405180910390fd5b6010548161183c611837611ff1565b611ff9565b6118469190613316565b1115611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e90613396565b60405180910390fd5b80600d546118959190613813565b3410156118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce906138a1565b60405180910390fd5b6118e86118e2611ff1565b82612050565b600160098190555050565b6118fb611ff1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361195f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061196c611ff1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a19611ff1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a5e9190612a72565b60405180910390a35050565b611a75848484610ef9565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ad757611aa0848484846122fe565b611ad6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611ae5611f14565b600260095403611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b219061325b565b60405180910390fd5b6002600981905550600e5482611b3e610ee2565b611b489190613316565b1115611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b809061390d565b60405180910390fd5b611b938183612050565b60016009819055505050565b60105481565b600b8054611bb2906131de565b80601f0160208091040260200160405190810160405280929190818152602001828054611bde906131de565b8015611c2b5780601f10611c0057610100808354040283529160200191611c2b565b820191906000526020600020905b815481529060010190602001808311611c0e57829003601f168201915b505050505081565b6060611c3e82611f92565b611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c749061399f565b60405180910390fd5b60001515601260019054906101000a900460ff16151503611d2a57600c8054611ca5906131de565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd1906131de565b8015611d1e5780601f10611cf357610100808354040283529160200191611d1e565b820191906000526020600020905b815481529060010190602001808311611d0157829003601f168201915b50505050509050611d86565b6000611d3461244e565b90506000815111611d545760405180602001604052806000815250611d82565b80611d5e846124e0565b600b604051602001611d7293929190613a7e565b6040516020818303038152906040525b9150505b919050565b600e5481565b611d99611f14565b80600b9081611da8919061363a565b5050565b6000611db782611ff9565b9050919050565b611dc6611f14565b80600f8190555050565b611dd8611f14565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e7e611f14565b80600c9081611e8d919061363a565b5050565b611e99611f14565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eff90613b21565b60405180910390fd5b611f118161220d565b50565b611f1c612640565b73ffffffffffffffffffffffffffffffffffffffff16611f3a61160e565b73ffffffffffffffffffffffffffffffffffffffff1614611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8790613b8d565b60405180910390fd5b565b600081611f9d61206e565b11158015611fac575060005482105b8015611fea575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b61206a828260405180602001604052806000815250612648565b5050565b60006001905090565b6000808290508061208661206e565b1161210c5760005481101561210b5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612109575b600081036120ff5760046000836001900393508381526020019081526020016000205490506120d5565b809250505061213e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86121cb8686846126e5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122db61296f565b6122f760046000848152602001908152602001600020546126ee565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612324611ff1565b8786866040518563ffffffff1660e01b81526004016123469493929190613c02565b6020604051808303816000875af192505050801561238257506040513d601f19601f8201168201806040525081019061237f9190613c63565b60015b6123fb573d80600081146123b2576040519150601f19603f3d011682016040523d82523d6000602084013e6123b7565b606091505b5060008151036123f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461245d906131de565b80601f0160208091040260200160405190810160405280929190818152602001828054612489906131de565b80156124d65780601f106124ab576101008083540402835291602001916124d6565b820191906000526020600020905b8154815290600101906020018083116124b957829003601f168201915b5050505050905090565b606060008203612527576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061263b565b600082905060005b6000821461255957808061254290613c90565b915050600a826125529190613d07565b915061252f565b60008167ffffffffffffffff81111561257557612574612d4a565b5b6040519080825280601f01601f1916602001820160405280156125a75781602001600182028036833780820191505090505b5090505b60008514612634576001826125c09190613d38565b9150600a856125cf9190613d6c565b60306125db9190613316565b60f81b8183815181106125f1576125f061370c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561262d9190613d07565b94506125ab565b8093505050505b919050565b600033905090565b61265283836127a4565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126e057600080549050600083820390505b61269260008683806001019450866122fe565b6126c8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061267f5781600054146126dd57600080fd5b50505b505050565b60009392505050565b6126f661296f565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080549050600082036127e4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127f160008483856121ae565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128688361285960008660006121b4565b6128628561295f565b176121dc565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461290957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506128ce565b5060008203612944576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061295a6000848385612207565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a07816129d2565b8114612a1257600080fd5b50565b600081359050612a24816129fe565b92915050565b600060208284031215612a4057612a3f6129c8565b5b6000612a4e84828501612a15565b91505092915050565b60008115159050919050565b612a6c81612a57565b82525050565b6000602082019050612a876000830184612a63565b92915050565b612a9681612a57565b8114612aa157600080fd5b50565b600081359050612ab381612a8d565b92915050565b600060208284031215612acf57612ace6129c8565b5b6000612add84828501612aa4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b20578082015181840152602081019050612b05565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b4882612ae6565b612b528185612af1565b9350612b62818560208601612b02565b612b6b81612b2c565b840191505092915050565b60006020820190508181036000830152612b908184612b3d565b905092915050565b6000819050919050565b612bab81612b98565b8114612bb657600080fd5b50565b600081359050612bc881612ba2565b92915050565b600060208284031215612be457612be36129c8565b5b6000612bf284828501612bb9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c2682612bfb565b9050919050565b612c3681612c1b565b82525050565b6000602082019050612c516000830184612c2d565b92915050565b612c6081612c1b565b8114612c6b57600080fd5b50565b600081359050612c7d81612c57565b92915050565b60008060408385031215612c9a57612c996129c8565b5b6000612ca885828601612c6e565b9250506020612cb985828601612bb9565b9150509250929050565b612ccc81612b98565b82525050565b6000602082019050612ce76000830184612cc3565b92915050565b600080600060608486031215612d0657612d056129c8565b5b6000612d1486828701612c6e565b9350506020612d2586828701612c6e565b9250506040612d3686828701612bb9565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d8282612b2c565b810181811067ffffffffffffffff82111715612da157612da0612d4a565b5b80604052505050565b6000612db46129be565b9050612dc08282612d79565b919050565b600067ffffffffffffffff821115612de057612ddf612d4a565b5b612de982612b2c565b9050602081019050919050565b82818337600083830152505050565b6000612e18612e1384612dc5565b612daa565b905082815260208101848484011115612e3457612e33612d45565b5b612e3f848285612df6565b509392505050565b600082601f830112612e5c57612e5b612d40565b5b8135612e6c848260208601612e05565b91505092915050565b600060208284031215612e8b57612e8a6129c8565b5b600082013567ffffffffffffffff811115612ea957612ea86129cd565b5b612eb584828501612e47565b91505092915050565b600060208284031215612ed457612ed36129c8565b5b6000612ee284828501612c6e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f2081612b98565b82525050565b6000612f328383612f17565b60208301905092915050565b6000602082019050919050565b6000612f5682612eeb565b612f608185612ef6565b9350612f6b83612f07565b8060005b83811015612f9c578151612f838882612f26565b9750612f8e83612f3e565b925050600181019050612f6f565b5085935050505092915050565b60006020820190508181036000830152612fc38184612f4b565b905092915050565b60008060408385031215612fe257612fe16129c8565b5b6000612ff085828601612c6e565b925050602061300185828601612aa4565b9150509250929050565b600067ffffffffffffffff82111561302657613025612d4a565b5b61302f82612b2c565b9050602081019050919050565b600061304f61304a8461300b565b612daa565b90508281526020810184848401111561306b5761306a612d45565b5b613076848285612df6565b509392505050565b600082601f83011261309357613092612d40565b5b81356130a384826020860161303c565b91505092915050565b600080600080608085870312156130c6576130c56129c8565b5b60006130d487828801612c6e565b94505060206130e587828801612c6e565b93505060406130f687828801612bb9565b925050606085013567ffffffffffffffff811115613117576131166129cd565b5b6131238782880161307e565b91505092959194509250565b60008060408385031215613146576131456129c8565b5b600061315485828601612bb9565b925050602061316585828601612c6e565b9150509250929050565b60008060408385031215613186576131856129c8565b5b600061319485828601612c6e565b92505060206131a585828601612c6e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131f657607f821691505b602082108103613209576132086131af565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613245601f83612af1565b91506132508261320f565b602082019050919050565b6000602082019050818103600083015261327481613238565b9050919050565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b60006132b1601783612af1565b91506132bc8261327b565b602082019050919050565b600060208201905081810360008301526132e0816132a4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061332182612b98565b915061332c83612b98565b9250828201905080821115613344576133436132e7565b5b92915050565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b6000613380601b83612af1565b915061338b8261334a565b602082019050919050565b600060208201905081810360008301526133af81613373565b9050919050565b7f6d6178206d696e74207065722054782065786365656465640000000000000000600082015250565b60006133ec601883612af1565b91506133f7826133b6565b602082019050919050565b6000602082019050818103600083015261341b816133df565b9050919050565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b6000613458601c83612af1565b915061346382613422565b602082019050919050565b600060208201905081810360008301526134878161344b565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134b3565b6134fa86836134b3565b95508019841693508086168417925050509392505050565b6000819050919050565b600061353761353261352d84612b98565b613512565b612b98565b9050919050565b6000819050919050565b6135518361351c565b61356561355d8261353e565b8484546134c0565b825550505050565b600090565b61357a61356d565b613585818484613548565b505050565b5b818110156135a95761359e600082613572565b60018101905061358b565b5050565b601f8211156135ee576135bf8161348e565b6135c8846134a3565b810160208510156135d7578190505b6135eb6135e3856134a3565b83018261358a565b50505b505050565b600082821c905092915050565b6000613611600019846008026135f3565b1980831691505092915050565b600061362a8383613600565b9150826002028217905092915050565b61364382612ae6565b67ffffffffffffffff81111561365c5761365b612d4a565b5b61366682546131de565b6136718282856135ad565b600060209050601f8311600181146136a45760008415613692578287015190505b61369c858261361e565b865550613704565b601f1984166136b28661348e565b60005b828110156136da578489015182556001820191506020850194506020810190506136b5565b868310156136f757848901516136f3601f891682613600565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b6000613771601f83612af1565b915061377c8261373b565b602082019050919050565b600060208201905081810360008301526137a081613764565b9050919050565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b60006137dd600a83612af1565b91506137e8826137a7565b602082019050919050565b6000602082019050818103600083015261380c816137d0565b9050919050565b600061381e82612b98565b915061382983612b98565b925082820261383781612b98565b9150828204841483151761384e5761384d6132e7565b5b5092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b600061388b601283612af1565b915061389682613855565b602082019050919050565b600060208201905081810360008301526138ba8161387e565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b60006138f7601683612af1565b9150613902826138c1565b602082019050919050565b60006020820190508181036000830152613926816138ea565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000613989603083612af1565b91506139948261392d565b604082019050919050565b600060208201905081810360008301526139b88161397c565b9050919050565b600081905092915050565b60006139d582612ae6565b6139df81856139bf565b93506139ef818560208601612b02565b80840191505092915050565b60008154613a08816131de565b613a1281866139bf565b94506001821660008114613a2d5760018114613a4257613a75565b60ff1983168652811515820286019350613a75565b613a4b8561348e565b60005b83811015613a6d57815481890152600182019150602081019050613a4e565b838801955050505b50505092915050565b6000613a8a82866139ca565b9150613a9682856139ca565b9150613aa282846139fb565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b0b602683612af1565b9150613b1682613aaf565b604082019050919050565b60006020820190508181036000830152613b3a81613afe565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b77602083612af1565b9150613b8282613b41565b602082019050919050565b60006020820190508181036000830152613ba681613b6a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613bd482613bad565b613bde8185613bb8565b9350613bee818560208601612b02565b613bf781612b2c565b840191505092915050565b6000608082019050613c176000830187612c2d565b613c246020830186612c2d565b613c316040830185612cc3565b8181036060830152613c438184613bc9565b905095945050505050565b600081519050613c5d816129fe565b92915050565b600060208284031215613c7957613c786129c8565b5b6000613c8784828501613c4e565b91505092915050565b6000613c9b82612b98565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ccd57613ccc6132e7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d1282612b98565b9150613d1d83612b98565b925082613d2d57613d2c613cd8565b5b828204905092915050565b6000613d4382612b98565b9150613d4e83612b98565b9250828203905081811115613d6657613d656132e7565b5b92915050565b6000613d7782612b98565b9150613d8283612b98565b925082613d9257613d91613cd8565b5b82820690509291505056fea2646970667358221220f489207921200106d00e44dfec5c397597016073704a1e04ffee648c9e1860ce64736f6c63430008110033
Deployed Bytecode Sourcemap
59875:4585:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27400:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64208:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28302:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34785:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60109:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34226:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61165:429;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60145:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24049:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38492:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63547:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64290:167;;;:::i;:::-;;41405:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63655:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60219:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60369:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63850:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60338:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60293:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29695:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59970:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25237:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8134:103;;;;;;;;;;;;;:::i;:::-;;62468:881;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7486:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63359:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28478:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60684:469;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35343:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42188:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61605:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60253:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60067:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61836:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60182:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63954:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62349:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63745:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63445:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35808:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64082:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8392:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27400:639;27485:4;27824:10;27809:25;;:11;:25;;;;:102;;;;27901:10;27886:25;;:11;:25;;;;27809:102;:179;;;;27978:10;27963:25;;:11;:25;;;;27809:179;27789:199;;27400:639;;;:::o;64208:73::-;7372:13;:11;:13::i;:::-;64269:6:::1;64260;;:15;;;;;;;;;;;;;;;;;;64208:73:::0;:::o;28302:100::-;28356:13;28389:5;28382:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28302:100;:::o;34785:218::-;34861:7;34886:16;34894:7;34886;:16::i;:::-;34881:64;;34911:34;;;;;;;;;;;;;;34881:64;34965:15;:24;34981:7;34965:24;;;;;;;;;;;:30;;;;;;;;;;;;34958:37;;34785:218;;;:::o;60109:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34226:400::-;34307:13;34323:16;34331:7;34323;:16::i;:::-;34307:32;;34379:5;34356:28;;:19;:17;:19::i;:::-;:28;;;34352:175;;34404:44;34421:5;34428:19;:17;:19::i;:::-;34404:16;:44::i;:::-;34399:128;;34476:35;;;;;;;;;;;;;;34399:128;34352:175;34572:2;34539:15;:24;34555:7;34539:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34610:7;34606:2;34590:28;;34599:5;34590:28;;;;;;;;;;;;34296:330;34226:400;;:::o;61165:429::-;1914:1;2512:7;;:19;2504:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1914:1;2645:7;:18;;;;61235:6:::1;;;;;;;;;;;61234:7;61226:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;61331:16;;61321:6;61284:34;61298:19;:17;:19::i;:::-;61284:13;:34::i;:::-;:43;;;;:::i;:::-;:63;;61276:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;61404:16;;61394:6;:26;;61386:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;61490:10;;61480:6;61464:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;61456:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;61544:38;61554:19;:17;:19::i;:::-;61575:6;61544:9;:38::i;:::-;1870:1:::0;2824:7;:22;;;;61165:429;:::o;60145:32::-;;;;:::o;24049:323::-;24110:7;24338:15;:13;:15::i;:::-;24323:12;;24307:13;;:28;:46;24300:53;;24049:323;:::o;38492:2817::-;38626:27;38656;38675:7;38656:18;:27::i;:::-;38626:57;;38741:4;38700:45;;38716:19;38700:45;;;38696:86;;38754:28;;;;;;;;;;;;;;38696:86;38796:27;38825:23;38852:35;38879:7;38852:26;:35::i;:::-;38795:92;;;;38987:68;39012:15;39029:4;39035:19;:17;:19::i;:::-;38987:24;:68::i;:::-;38982:180;;39075:43;39092:4;39098:19;:17;:19::i;:::-;39075:16;:43::i;:::-;39070:92;;39127:35;;;;;;;;;;;;;;39070:92;38982:180;39193:1;39179:16;;:2;:16;;;39175:52;;39204:23;;;;;;;;;;;;;;39175:52;39240:43;39262:4;39268:2;39272:7;39281:1;39240:21;:43::i;:::-;39376:15;39373:160;;;39516:1;39495:19;39488:30;39373:160;39913:18;:24;39932:4;39913:24;;;;;;;;;;;;;;;;39911:26;;;;;;;;;;;;39982:18;:22;40001:2;39982:22;;;;;;;;;;;;;;;;39980:24;;;;;;;;;;;40304:146;40341:2;40390:45;40405:4;40411:2;40415:19;40390:14;:45::i;:::-;20448:8;40362:73;40304:18;:146::i;:::-;40275:17;:26;40293:7;40275:26;;;;;;;;;;;:175;;;;40621:1;20448:8;40570:19;:47;:52;40566:627;;40643:19;40675:1;40665:7;:11;40643:33;;40832:1;40798:17;:30;40816:11;40798:30;;;;;;;;;;;;:35;40794:384;;40936:13;;40921:11;:28;40917:242;;41116:19;41083:17;:30;41101:11;41083:30;;;;;;;;;;;:52;;;;40917:242;40794:384;40624:569;40566:627;41240:7;41236:2;41221:27;;41230:4;41221:27;;;;;;;;;;;;41259:42;41280:4;41286:2;41290:7;41299:1;41259:20;:42::i;:::-;38615:2694;;;38492:2817;;;:::o;63547:100::-;7372:13;:11;:13::i;:::-;63635:6:::1;63616:16;:25;;;;63547:100:::0;:::o;64290:167::-;7372:13;:11;:13::i;:::-;1914:1:::1;2512:7;;:19:::0;2504:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1914:1;2645:7;:18;;;;64357:15:::2;64375:21;64357:39;;64413:19;:17;:19::i;:::-;64405:37;;:46;64443:7;64405:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;64348:109;1870:1:::1;2824:7;:22;;;;64290:167::o:0;41405:185::-;41543:39;41560:4;41566:2;41570:7;41543:39;;;;;;;;;;;;:16;:39::i;:::-;41405:185;;;:::o;63655:80::-;7372:13;:11;:13::i;:::-;63721:8:::1;63714:4;:15;;;;63655:80:::0;:::o;60219:29::-;;;;:::o;60369:27::-;;;;;;;;;;;;;:::o;63850:98::-;7372:13;:11;:13::i;:::-;63931:11:::1;63921:7;:21;;;;;;:::i;:::-;;63850:98:::0;:::o;60338:26::-;;;;;;;;;;;;;:::o;60293:39::-;;;;:::o;29695:152::-;29767:7;29810:27;29829:7;29810:18;:27::i;:::-;29787:52;;29695:152;;;:::o;59970:92::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25237:233::-;25309:7;25350:1;25333:19;;:5;:19;;;25329:60;;25361:28;;;;;;;;;;;;;;25329:60;19392:13;25407:18;:25;25426:5;25407:25;;;;;;;;;;;;;;;;:55;25400:62;;25237:233;;;:::o;8134:103::-;7372:13;:11;:13::i;:::-;8199:30:::1;8226:1;8199:18;:30::i;:::-;8134:103::o:0;62468:881::-;62527:16;62581:19;62615:25;62655:22;62680:16;62690:5;62680:9;:16::i;:::-;62655:41;;62711:25;62753:14;62739:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62711:57;;62783:31;;:::i;:::-;62834:9;62846:15;:13;:15::i;:::-;62834:27;;62829:472;62878:14;62863:11;:29;62829:472;;62930:15;62943:1;62930:12;:15::i;:::-;62918:27;;62968:9;:16;;;63009:8;62964:73;63085:1;63059:28;;:9;:14;;;:28;;;63055:111;;63132:9;:14;;;63112:34;;63055:111;63209:5;63188:26;;:17;:26;;;63184:102;;63265:1;63239:8;63248:13;;;;;;63239:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;63184:102;62829:472;62894:3;;;;;62829:472;;;;63322:8;63315:15;;;;;;;62468:881;;;:::o;7486:87::-;7532:7;7559:6;;;;;;;;;;;7552:13;;7486:87;:::o;63359:78::-;7372:13;:11;:13::i;:::-;63425:6:::1;63414:8;;:17;;;;;;;;;;;;;;;;;;63359:78:::0;:::o;28478:104::-;28534:13;28567:7;28560:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28478:104;:::o;60684:469::-;1914:1;2512:7;;:19;2504:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1914:1;2645:7;:18;;;;60758:6:::1;;;;;;;;;;;60757:7;60749:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;60817:12;;60807:6;:22;;60799:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;60906:9;;60896:6;60880:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;60872:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;60992:12;;60982:6;60945:34;60959:19;:17;:19::i;:::-;60945:13;:34::i;:::-;:43;;;;:::i;:::-;:59;;60937:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;61071:6;61064:4;;:13;;;;:::i;:::-;61051:9;:26;;61043:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;61109:38;61119:19;:17;:19::i;:::-;61140:6;61109:9;:38::i;:::-;1870:1:::0;2824:7;:22;;;;60684:469;:::o;35343:308::-;35454:19;:17;:19::i;:::-;35442:31;;:8;:31;;;35438:61;;35482:17;;;;;;;;;;;;;;35438:61;35564:8;35512:18;:39;35531:19;:17;:19::i;:::-;35512:39;;;;;;;;;;;;;;;:49;35552:8;35512:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35624:8;35588:55;;35603:19;:17;:19::i;:::-;35588:55;;;35634:8;35588:55;;;;;;:::i;:::-;;;;;;;;35343:308;;:::o;42188:399::-;42355:31;42368:4;42374:2;42378:7;42355:12;:31::i;:::-;42419:1;42401:2;:14;;;:19;42397:183;;42440:56;42471:4;42477:2;42481:7;42490:5;42440:30;:56::i;:::-;42435:145;;42524:40;;;;;;;;;;;;;;42435:145;42397:183;42188:399;;;;:::o;61605:223::-;7372:13;:11;:13::i;:::-;1914:1:::1;2512:7;;:19:::0;2504:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1914:1;2645:7;:18;;;;61740:9:::2;;61725:11;61709:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;61701:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;61787:35;61797:11;61810;61787:9;:35::i;:::-;1870:1:::1;2824:7;:22;;;;61605:223:::0;;:::o;60253:35::-;;;;:::o;60067:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61836:498::-;61934:13;61975:16;61983:7;61975;:16::i;:::-;61959:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;62085:5;62073:17;;:8;;;;;;;;;;;:17;;;62070:62;;62110:14;62103:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62070:62;62140:28;62171:10;:8;:10::i;:::-;62140:41;;62226:1;62201:14;62195:28;:32;:133;;;;;;;;;;;;;;;;;62263:14;62279:18;:7;:16;:18::i;:::-;62299:13;62246:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62195:133;62188:140;;;61836:498;;;;:::o;60182:32::-;;;;:::o;63954:122::-;7372:13;:11;:13::i;:::-;64053:17:::1;64037:13;:33;;;;;;:::i;:::-;;63954:122:::0;:::o;62349:107::-;62407:7;62430:20;62444:5;62430:13;:20::i;:::-;62423:27;;62349:107;;;:::o;63745:96::-;7372:13;:11;:13::i;:::-;63825:10:::1;63812;:23;;;;63745:96:::0;:::o;63445:92::-;7372:13;:11;:13::i;:::-;63525:6:::1;63510:12;:21;;;;63445:92:::0;:::o;35808:164::-;35905:4;35929:18;:25;35948:5;35929:25;;;;;;;;;;;;;;;:35;35955:8;35929:35;;;;;;;;;;;;;;;;;;;;;;;;;35922:42;;35808:164;;;;:::o;64082:120::-;7372:13;:11;:13::i;:::-;64181:15:::1;64164:14;:32;;;;;;:::i;:::-;;64082:120:::0;:::o;8392:201::-;7372:13;:11;:13::i;:::-;8501:1:::1;8481:22;;:8;:22;;::::0;8473:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8557:28;8576:8;8557:18;:28::i;:::-;8392:201:::0;:::o;7651:132::-;7726:12;:10;:12::i;:::-;7715:23;;:7;:5;:7::i;:::-;:23;;;7707:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7651:132::o;36230:282::-;36295:4;36351:7;36332:15;:13;:15::i;:::-;:26;;:66;;;;;36385:13;;36375:7;:23;36332:66;:153;;;;;36484:1;20168:8;36436:17;:26;36454:7;36436:26;;;;;;;;;;;;:44;:49;36332:153;36312:173;;36230:282;;;:::o;57996:105::-;58056:7;58083:10;58076:17;;57996:105;:::o;25552:178::-;25613:7;19392:13;19530:2;25641:18;:25;25660:5;25641:25;;;;;;;;;;;;;;;;:50;;25640:82;25633:89;;25552:178;;;:::o;51828:112::-;51905:27;51915:2;51919:8;51905:27;;;;;;;;;;;;:9;:27::i;:::-;51828:112;;:::o;60575:101::-;60640:7;60667:1;60660:8;;60575:101;:::o;30850:1275::-;30917:7;30937:12;30952:7;30937:22;;31020:4;31001:15;:13;:15::i;:::-;:23;30997:1061;;31054:13;;31047:4;:20;31043:1015;;;31092:14;31109:17;:23;31127:4;31109:23;;;;;;;;;;;;31092:40;;31226:1;20168:8;31198:6;:24;:29;31194:845;;31863:113;31880:1;31870:6;:11;31863:113;;31923:17;:25;31941:6;;;;;;;31923:25;;;;;;;;;;;;31914:34;;31863:113;;;32009:6;32002:13;;;;;;31194:845;31069:989;31043:1015;30997:1061;32086:31;;;;;;;;;;;;;;30850:1275;;;;:::o;37393:479::-;37495:27;37524:23;37565:38;37606:15;:24;37622:7;37606:24;;;;;;;;;;;37565:65;;37777:18;37754:41;;37834:19;37828:26;37809:45;;37739:126;37393:479;;;:::o;36621:659::-;36770:11;36935:16;36928:5;36924:28;36915:37;;37095:16;37084:9;37080:32;37067:45;;37245:15;37234:9;37231:30;37223:5;37212:9;37209:20;37206:56;37196:66;;36621:659;;;;;:::o;43249:159::-;;;;;:::o;57305:311::-;57440:7;57460:16;20572:3;57486:19;:41;;57460:68;;20572:3;57554:31;57565:4;57571:2;57575:9;57554:10;:31::i;:::-;57546:40;;:62;;57539:69;;;57305:311;;;;;:::o;32673:450::-;32753:14;32921:16;32914:5;32910:28;32901:37;;33098:5;33084:11;33059:23;33055:41;33052:52;33045:5;33042:63;33032:73;;32673:450;;;;:::o;44073:158::-;;;;;:::o;8753:191::-;8827:16;8846:6;;;;;;;;;;;8827:25;;8872:8;8863:6;;:17;;;;;;;;;;;;;;;;;;8927:8;8896:40;;8917:8;8896:40;;;;;;;;;;;;8816:128;8753:191;:::o;30298:161::-;30366:21;;:::i;:::-;30407:44;30426:17;:24;30444:5;30426:24;;;;;;;;;;;;30407:18;:44::i;:::-;30400:51;;30298:161;;;:::o;44671:716::-;44834:4;44880:2;44855:45;;;44901:19;:17;:19::i;:::-;44922:4;44928:7;44937:5;44855:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44851:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45155:1;45138:6;:13;:18;45134:235;;45184:40;;;;;;;;;;;;;;45134:235;45327:6;45321:13;45312:6;45308:2;45304:15;45297:38;44851:529;45024:54;;;45014:64;;;:6;:64;;;;45007:71;;;44671:716;;;;;;:::o;60465:102::-;60525:13;60554:7;60547:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60465:102;:::o;3291:723::-;3347:13;3577:1;3568:5;:10;3564:53;;3595:10;;;;;;;;;;;;;;;;;;;;;3564:53;3627:12;3642:5;3627:20;;3658:14;3683:78;3698:1;3690:4;:9;3683:78;;3716:8;;;;;:::i;:::-;;;;3747:2;3739:10;;;;;:::i;:::-;;;3683:78;;;3771:19;3803:6;3793:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3771:39;;3821:154;3837:1;3828:5;:10;3821:154;;3865:1;3855:11;;;;;:::i;:::-;;;3932:2;3924:5;:10;;;;:::i;:::-;3911:2;:24;;;;:::i;:::-;3898:39;;3881:6;3888;3881:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3961:2;3952:11;;;;;:::i;:::-;;;3821:154;;;3999:6;3985:21;;;;;3291:723;;;;:::o;6037:98::-;6090:7;6117:10;6110:17;;6037:98;:::o;51055:689::-;51186:19;51192:2;51196:8;51186:5;:19::i;:::-;51265:1;51247:2;:14;;;:19;51243:483;;51287:11;51301:13;;51287:27;;51333:13;51355:8;51349:3;:14;51333:30;;51382:233;51413:62;51452:1;51456:2;51460:7;;;;;;51469:5;51413:30;:62::i;:::-;51408:167;;51511:40;;;;;;;;;;;;;;51408:167;51610:3;51602:5;:11;51382:233;;51697:3;51680:13;;:20;51676:34;;51702:8;;;51676:34;51268:458;;51243:483;51055:689;;;:::o;57006:147::-;57143:6;57006:147;;;;;:::o;32224:366::-;32290:31;;:::i;:::-;32367:6;32334:9;:14;;:41;;;;;;;;;;;20051:3;32420:6;:33;;32386:9;:24;;:68;;;;;;;;;;;32512:1;20168:8;32484:6;:24;:29;;32465:9;:16;;:48;;;;;;;;;;;20572:3;32553:6;:28;;32524:9;:19;;:58;;;;;;;;;;;32224:366;;;:::o;45849:2454::-;45922:20;45945:13;;45922:36;;45985:1;45973:8;:13;45969:44;;45995:18;;;;;;;;;;;;;;45969:44;46026:61;46056:1;46060:2;46064:12;46078:8;46026:21;:61::i;:::-;46570:1;19530:2;46540:1;:26;;46539:32;46527:8;:45;46501:18;:22;46520:2;46501:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46849:139;46886:2;46940:33;46963:1;46967:2;46971:1;46940:14;:33::i;:::-;46907:30;46928:8;46907:20;:30::i;:::-;:66;46849:18;:139::i;:::-;46815:17;:31;46833:12;46815:31;;;;;;;;;;;:173;;;;47005:16;47036:11;47065:8;47050:12;:23;47036:37;;47320:16;47316:2;47312:25;47300:37;;47692:12;47652:8;47611:1;47549:25;47490:1;47429;47402:335;47817:1;47803:12;47799:20;47757:346;47858:3;47849:7;47846:16;47757:346;;48076:7;48066:8;48063:1;48036:25;48033:1;48030;48025:59;47911:1;47902:7;47898:15;47887:26;;47757:346;;;47761:77;48148:1;48136:8;:13;48132:45;;48158:19;;;;;;;;;;;;;;48132:45;48210:3;48194:13;:19;;;;46275:1950;;48235:60;48264:1;48268:2;48272:12;48286:8;48235:20;:60::i;:::-;45911:2392;45849:2454;;:::o;33225:324::-;33295:14;33528:1;33518:8;33515:15;33489:24;33485:46;33475:56;;33225:324;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:246::-;2469:1;2479:113;2493:6;2490:1;2487:13;2479:113;;;2578:1;2573:3;2569:11;2563:18;2559:1;2554:3;2550:11;2543:39;2515:2;2512:1;2508:10;2503:15;;2479:113;;;2626:1;2617:6;2612:3;2608:16;2601:27;2450:184;2388:246;;;:::o;2640:102::-;2681:6;2732:2;2728:7;2723:2;2716:5;2712:14;2708:28;2698:38;;2640:102;;;:::o;2748:377::-;2836:3;2864:39;2897:5;2864:39;:::i;:::-;2919:71;2983:6;2978:3;2919:71;:::i;:::-;2912:78;;2999:65;3057:6;3052:3;3045:4;3038:5;3034:16;2999:65;:::i;:::-;3089:29;3111:6;3089:29;:::i;:::-;3084:3;3080:39;3073:46;;2840:285;2748:377;;;;:::o;3131:313::-;3244:4;3282:2;3271:9;3267:18;3259:26;;3331:9;3325:4;3321:20;3317:1;3306:9;3302:17;3295:47;3359:78;3432:4;3423:6;3359:78;:::i;:::-;3351:86;;3131:313;;;;:::o;3450:77::-;3487:7;3516:5;3505:16;;3450:77;;;:::o;3533:122::-;3606:24;3624:5;3606:24;:::i;:::-;3599:5;3596:35;3586:63;;3645:1;3642;3635:12;3586:63;3533:122;:::o;3661:139::-;3707:5;3745:6;3732:20;3723:29;;3761:33;3788:5;3761:33;:::i;:::-;3661:139;;;;:::o;3806:329::-;3865:6;3914:2;3902:9;3893:7;3889:23;3885:32;3882:119;;;3920:79;;:::i;:::-;3882:119;4040:1;4065:53;4110:7;4101:6;4090:9;4086:22;4065:53;:::i;:::-;4055:63;;4011:117;3806:329;;;;:::o;4141:126::-;4178:7;4218:42;4211:5;4207:54;4196:65;;4141:126;;;:::o;4273:96::-;4310:7;4339:24;4357:5;4339:24;:::i;:::-;4328:35;;4273:96;;;:::o;4375:118::-;4462:24;4480:5;4462:24;:::i;:::-;4457:3;4450:37;4375:118;;:::o;4499:222::-;4592:4;4630:2;4619:9;4615:18;4607:26;;4643:71;4711:1;4700:9;4696:17;4687:6;4643:71;:::i;:::-;4499:222;;;;:::o;4727:122::-;4800:24;4818:5;4800:24;:::i;:::-;4793:5;4790:35;4780:63;;4839:1;4836;4829:12;4780:63;4727:122;:::o;4855:139::-;4901:5;4939:6;4926:20;4917:29;;4955:33;4982:5;4955:33;:::i;:::-;4855:139;;;;:::o;5000:474::-;5068:6;5076;5125:2;5113:9;5104:7;5100:23;5096:32;5093:119;;;5131:79;;:::i;:::-;5093:119;5251:1;5276:53;5321:7;5312:6;5301:9;5297:22;5276:53;:::i;:::-;5266:63;;5222:117;5378:2;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5349:118;5000:474;;;;;:::o;5480:118::-;5567:24;5585:5;5567:24;:::i;:::-;5562:3;5555:37;5480:118;;:::o;5604:222::-;5697:4;5735:2;5724:9;5720:18;5712:26;;5748:71;5816:1;5805:9;5801:17;5792:6;5748:71;:::i;:::-;5604:222;;;;:::o;5832:619::-;5909:6;5917;5925;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6071:117;6227:2;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6198:118;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;5832:619;;;;;:::o;6457:117::-;6566:1;6563;6556:12;6580:117;6689:1;6686;6679:12;6703:180;6751:77;6748:1;6741:88;6848:4;6845:1;6838:15;6872:4;6869:1;6862:15;6889:281;6972:27;6994:4;6972:27;:::i;:::-;6964:6;6960:40;7102:6;7090:10;7087:22;7066:18;7054:10;7051:34;7048:62;7045:88;;;7113:18;;:::i;:::-;7045:88;7153:10;7149:2;7142:22;6932:238;6889:281;;:::o;7176:129::-;7210:6;7237:20;;:::i;:::-;7227:30;;7266:33;7294:4;7286:6;7266:33;:::i;:::-;7176:129;;;:::o;7311:308::-;7373:4;7463:18;7455:6;7452:30;7449:56;;;7485:18;;:::i;:::-;7449:56;7523:29;7545:6;7523:29;:::i;:::-;7515:37;;7607:4;7601;7597:15;7589:23;;7311:308;;;:::o;7625:146::-;7722:6;7717:3;7712;7699:30;7763:1;7754:6;7749:3;7745:16;7738:27;7625:146;;;:::o;7777:425::-;7855:5;7880:66;7896:49;7938:6;7896:49;:::i;:::-;7880:66;:::i;:::-;7871:75;;7969:6;7962:5;7955:21;8007:4;8000:5;7996:16;8045:3;8036:6;8031:3;8027:16;8024:25;8021:112;;;8052:79;;:::i;:::-;8021:112;8142:54;8189:6;8184:3;8179;8142:54;:::i;:::-;7861:341;7777:425;;;;;:::o;8222:340::-;8278:5;8327:3;8320:4;8312:6;8308:17;8304:27;8294:122;;8335:79;;:::i;:::-;8294:122;8452:6;8439:20;8477:79;8552:3;8544:6;8537:4;8529:6;8525:17;8477:79;:::i;:::-;8468:88;;8284:278;8222:340;;;;:::o;8568:509::-;8637:6;8686:2;8674:9;8665:7;8661:23;8657:32;8654:119;;;8692:79;;:::i;:::-;8654:119;8840:1;8829:9;8825:17;8812:31;8870:18;8862:6;8859:30;8856:117;;;8892:79;;:::i;:::-;8856:117;8997:63;9052:7;9043:6;9032:9;9028:22;8997:63;:::i;:::-;8987:73;;8783:287;8568:509;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:114::-;9485:6;9519:5;9513:12;9503:22;;9418:114;;;:::o;9538:184::-;9637:11;9671:6;9666:3;9659:19;9711:4;9706:3;9702:14;9687:29;;9538:184;;;;:::o;9728:132::-;9795:4;9818:3;9810:11;;9848:4;9843:3;9839:14;9831:22;;9728:132;;;:::o;9866:108::-;9943:24;9961:5;9943:24;:::i;:::-;9938:3;9931:37;9866:108;;:::o;9980:179::-;10049:10;10070:46;10112:3;10104:6;10070:46;:::i;:::-;10148:4;10143:3;10139:14;10125:28;;9980:179;;;;:::o;10165:113::-;10235:4;10267;10262:3;10258:14;10250:22;;10165:113;;;:::o;10314:732::-;10433:3;10462:54;10510:5;10462:54;:::i;:::-;10532:86;10611:6;10606:3;10532:86;:::i;:::-;10525:93;;10642:56;10692:5;10642:56;:::i;:::-;10721:7;10752:1;10737:284;10762:6;10759:1;10756:13;10737:284;;;10838:6;10832:13;10865:63;10924:3;10909:13;10865:63;:::i;:::-;10858:70;;10951:60;11004:6;10951:60;:::i;:::-;10941:70;;10797:224;10784:1;10781;10777:9;10772:14;;10737:284;;;10741:14;11037:3;11030:10;;10438:608;;;10314:732;;;;:::o;11052:373::-;11195:4;11233:2;11222:9;11218:18;11210:26;;11282:9;11276:4;11272:20;11268:1;11257:9;11253:17;11246:47;11310:108;11413:4;11404:6;11310:108;:::i;:::-;11302:116;;11052:373;;;;:::o;11431:468::-;11496:6;11504;11553:2;11541:9;11532:7;11528:23;11524:32;11521:119;;;11559:79;;:::i;:::-;11521:119;11679:1;11704:53;11749:7;11740:6;11729:9;11725:22;11704:53;:::i;:::-;11694:63;;11650:117;11806:2;11832:50;11874:7;11865:6;11854:9;11850:22;11832:50;:::i;:::-;11822:60;;11777:115;11431:468;;;;;:::o;11905:307::-;11966:4;12056:18;12048:6;12045:30;12042:56;;;12078:18;;:::i;:::-;12042:56;12116:29;12138:6;12116:29;:::i;:::-;12108:37;;12200:4;12194;12190:15;12182:23;;11905:307;;;:::o;12218:423::-;12295:5;12320:65;12336:48;12377:6;12336:48;:::i;:::-;12320:65;:::i;:::-;12311:74;;12408:6;12401:5;12394:21;12446:4;12439:5;12435:16;12484:3;12475:6;12470:3;12466:16;12463:25;12460:112;;;12491:79;;:::i;:::-;12460:112;12581:54;12628:6;12623:3;12618;12581:54;:::i;:::-;12301:340;12218:423;;;;;:::o;12660:338::-;12715:5;12764:3;12757:4;12749:6;12745:17;12741:27;12731:122;;12772:79;;:::i;:::-;12731:122;12889:6;12876:20;12914:78;12988:3;12980:6;12973:4;12965:6;12961:17;12914:78;:::i;:::-;12905:87;;12721:277;12660:338;;;;:::o;13004:943::-;13099:6;13107;13115;13123;13172:3;13160:9;13151:7;13147:23;13143:33;13140:120;;;13179:79;;:::i;:::-;13140:120;13299:1;13324:53;13369:7;13360:6;13349:9;13345:22;13324:53;:::i;:::-;13314:63;;13270:117;13426:2;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13397:118;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13710:2;13699:9;13695:18;13682:32;13741:18;13733:6;13730:30;13727:117;;;13763:79;;:::i;:::-;13727:117;13868:62;13922:7;13913:6;13902:9;13898:22;13868:62;:::i;:::-;13858:72;;13653:287;13004:943;;;;;;;:::o;13953:474::-;14021:6;14029;14078:2;14066:9;14057:7;14053:23;14049:32;14046:119;;;14084:79;;:::i;:::-;14046:119;14204:1;14229:53;14274:7;14265:6;14254:9;14250:22;14229:53;:::i;:::-;14219:63;;14175:117;14331:2;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14302:118;13953:474;;;;;:::o;14433:::-;14501:6;14509;14558:2;14546:9;14537:7;14533:23;14529:32;14526:119;;;14564:79;;:::i;:::-;14526:119;14684:1;14709:53;14754:7;14745:6;14734:9;14730:22;14709:53;:::i;:::-;14699:63;;14655:117;14811:2;14837:53;14882:7;14873:6;14862:9;14858:22;14837:53;:::i;:::-;14827:63;;14782:118;14433:474;;;;;:::o;14913:180::-;14961:77;14958:1;14951:88;15058:4;15055:1;15048:15;15082:4;15079:1;15072:15;15099:320;15143:6;15180:1;15174:4;15170:12;15160:22;;15227:1;15221:4;15217:12;15248:18;15238:81;;15304:4;15296:6;15292:17;15282:27;;15238:81;15366:2;15358:6;15355:14;15335:18;15332:38;15329:84;;15385:18;;:::i;:::-;15329:84;15150:269;15099:320;;;:::o;15425:181::-;15565:33;15561:1;15553:6;15549:14;15542:57;15425:181;:::o;15612:366::-;15754:3;15775:67;15839:2;15834:3;15775:67;:::i;:::-;15768:74;;15851:93;15940:3;15851:93;:::i;:::-;15969:2;15964:3;15960:12;15953:19;;15612:366;;;:::o;15984:419::-;16150:4;16188:2;16177:9;16173:18;16165:26;;16237:9;16231:4;16227:20;16223:1;16212:9;16208:17;16201:47;16265:131;16391:4;16265:131;:::i;:::-;16257:139;;15984:419;;;:::o;16409:173::-;16549:25;16545:1;16537:6;16533:14;16526:49;16409:173;:::o;16588:366::-;16730:3;16751:67;16815:2;16810:3;16751:67;:::i;:::-;16744:74;;16827:93;16916:3;16827:93;:::i;:::-;16945:2;16940:3;16936:12;16929:19;;16588:366;;;:::o;16960:419::-;17126:4;17164:2;17153:9;17149:18;17141:26;;17213:9;17207:4;17203:20;17199:1;17188:9;17184:17;17177:47;17241:131;17367:4;17241:131;:::i;:::-;17233:139;;16960:419;;;:::o;17385:180::-;17433:77;17430:1;17423:88;17530:4;17527:1;17520:15;17554:4;17551:1;17544:15;17571:191;17611:3;17630:20;17648:1;17630:20;:::i;:::-;17625:25;;17664:20;17682:1;17664:20;:::i;:::-;17659:25;;17707:1;17704;17700:9;17693:16;;17728:3;17725:1;17722:10;17719:36;;;17735:18;;:::i;:::-;17719:36;17571:191;;;;:::o;17768:177::-;17908:29;17904:1;17896:6;17892:14;17885:53;17768:177;:::o;17951:366::-;18093:3;18114:67;18178:2;18173:3;18114:67;:::i;:::-;18107:74;;18190:93;18279:3;18190:93;:::i;:::-;18308:2;18303:3;18299:12;18292:19;;17951:366;;;:::o;18323:419::-;18489:4;18527:2;18516:9;18512:18;18504:26;;18576:9;18570:4;18566:20;18562:1;18551:9;18547:17;18540:47;18604:131;18730:4;18604:131;:::i;:::-;18596:139;;18323:419;;;:::o;18748:174::-;18888:26;18884:1;18876:6;18872:14;18865:50;18748:174;:::o;18928:366::-;19070:3;19091:67;19155:2;19150:3;19091:67;:::i;:::-;19084:74;;19167:93;19256:3;19167:93;:::i;:::-;19285:2;19280:3;19276:12;19269:19;;18928:366;;;:::o;19300:419::-;19466:4;19504:2;19493:9;19489:18;19481:26;;19553:9;19547:4;19543:20;19539:1;19528:9;19524:17;19517:47;19581:131;19707:4;19581:131;:::i;:::-;19573:139;;19300:419;;;:::o;19725:178::-;19865:30;19861:1;19853:6;19849:14;19842:54;19725:178;:::o;19909:366::-;20051:3;20072:67;20136:2;20131:3;20072:67;:::i;:::-;20065:74;;20148:93;20237:3;20148:93;:::i;:::-;20266:2;20261:3;20257:12;20250:19;;19909:366;;;:::o;20281:419::-;20447:4;20485:2;20474:9;20470:18;20462:26;;20534:9;20528:4;20524:20;20520:1;20509:9;20505:17;20498:47;20562:131;20688:4;20562:131;:::i;:::-;20554:139;;20281:419;;;:::o;20706:141::-;20755:4;20778:3;20770:11;;20801:3;20798:1;20791:14;20835:4;20832:1;20822:18;20814:26;;20706:141;;;:::o;20853:93::-;20890:6;20937:2;20932;20925:5;20921:14;20917:23;20907:33;;20853:93;;;:::o;20952:107::-;20996:8;21046:5;21040:4;21036:16;21015:37;;20952:107;;;;:::o;21065:393::-;21134:6;21184:1;21172:10;21168:18;21207:97;21237:66;21226:9;21207:97;:::i;:::-;21325:39;21355:8;21344:9;21325:39;:::i;:::-;21313:51;;21397:4;21393:9;21386:5;21382:21;21373:30;;21446:4;21436:8;21432:19;21425:5;21422:30;21412:40;;21141:317;;21065:393;;;;;:::o;21464:60::-;21492:3;21513:5;21506:12;;21464:60;;;:::o;21530:142::-;21580:9;21613:53;21631:34;21640:24;21658:5;21640:24;:::i;:::-;21631:34;:::i;:::-;21613:53;:::i;:::-;21600:66;;21530:142;;;:::o;21678:75::-;21721:3;21742:5;21735:12;;21678:75;;;:::o;21759:269::-;21869:39;21900:7;21869:39;:::i;:::-;21930:91;21979:41;22003:16;21979:41;:::i;:::-;21971:6;21964:4;21958:11;21930:91;:::i;:::-;21924:4;21917:105;21835:193;21759:269;;;:::o;22034:73::-;22079:3;22034:73;:::o;22113:189::-;22190:32;;:::i;:::-;22231:65;22289:6;22281;22275:4;22231:65;:::i;:::-;22166:136;22113:189;;:::o;22308:186::-;22368:120;22385:3;22378:5;22375:14;22368:120;;;22439:39;22476:1;22469:5;22439:39;:::i;:::-;22412:1;22405:5;22401:13;22392:22;;22368:120;;;22308:186;;:::o;22500:543::-;22601:2;22596:3;22593:11;22590:446;;;22635:38;22667:5;22635:38;:::i;:::-;22719:29;22737:10;22719:29;:::i;:::-;22709:8;22705:44;22902:2;22890:10;22887:18;22884:49;;;22923:8;22908:23;;22884:49;22946:80;23002:22;23020:3;23002:22;:::i;:::-;22992:8;22988:37;22975:11;22946:80;:::i;:::-;22605:431;;22590:446;22500:543;;;:::o;23049:117::-;23103:8;23153:5;23147:4;23143:16;23122:37;;23049:117;;;;:::o;23172:169::-;23216:6;23249:51;23297:1;23293:6;23285:5;23282:1;23278:13;23249:51;:::i;:::-;23245:56;23330:4;23324;23320:15;23310:25;;23223:118;23172:169;;;;:::o;23346:295::-;23422:4;23568:29;23593:3;23587:4;23568:29;:::i;:::-;23560:37;;23630:3;23627:1;23623:11;23617:4;23614:21;23606:29;;23346:295;;;;:::o;23646:1395::-;23763:37;23796:3;23763:37;:::i;:::-;23865:18;23857:6;23854:30;23851:56;;;23887:18;;:::i;:::-;23851:56;23931:38;23963:4;23957:11;23931:38;:::i;:::-;24016:67;24076:6;24068;24062:4;24016:67;:::i;:::-;24110:1;24134:4;24121:17;;24166:2;24158:6;24155:14;24183:1;24178:618;;;;24840:1;24857:6;24854:77;;;24906:9;24901:3;24897:19;24891:26;24882:35;;24854:77;24957:67;25017:6;25010:5;24957:67;:::i;:::-;24951:4;24944:81;24813:222;24148:887;;24178:618;24230:4;24226:9;24218:6;24214:22;24264:37;24296:4;24264:37;:::i;:::-;24323:1;24337:208;24351:7;24348:1;24345:14;24337:208;;;24430:9;24425:3;24421:19;24415:26;24407:6;24400:42;24481:1;24473:6;24469:14;24459:24;;24528:2;24517:9;24513:18;24500:31;;24374:4;24371:1;24367:12;24362:17;;24337:208;;;24573:6;24564:7;24561:19;24558:179;;;24631:9;24626:3;24622:19;24616:26;24674:48;24716:4;24708:6;24704:17;24693:9;24674:48;:::i;:::-;24666:6;24659:64;24581:156;24558:179;24783:1;24779;24771:6;24767:14;24763:22;24757:4;24750:36;24185:611;;;24148:887;;23738:1303;;;23646:1395;;:::o;25047:180::-;25095:77;25092:1;25085:88;25192:4;25189:1;25182:15;25216:4;25213:1;25206:15;25233:181;25373:33;25369:1;25361:6;25357:14;25350:57;25233:181;:::o;25420:366::-;25562:3;25583:67;25647:2;25642:3;25583:67;:::i;:::-;25576:74;;25659:93;25748:3;25659:93;:::i;:::-;25777:2;25772:3;25768:12;25761:19;;25420:366;;;:::o;25792:419::-;25958:4;25996:2;25985:9;25981:18;25973:26;;26045:9;26039:4;26035:20;26031:1;26020:9;26016:17;26009:47;26073:131;26199:4;26073:131;:::i;:::-;26065:139;;25792:419;;;:::o;26217:160::-;26357:12;26353:1;26345:6;26341:14;26334:36;26217:160;:::o;26383:366::-;26525:3;26546:67;26610:2;26605:3;26546:67;:::i;:::-;26539:74;;26622:93;26711:3;26622:93;:::i;:::-;26740:2;26735:3;26731:12;26724:19;;26383:366;;;:::o;26755:419::-;26921:4;26959:2;26948:9;26944:18;26936:26;;27008:9;27002:4;26998:20;26994:1;26983:9;26979:17;26972:47;27036:131;27162:4;27036:131;:::i;:::-;27028:139;;26755:419;;;:::o;27180:410::-;27220:7;27243:20;27261:1;27243:20;:::i;:::-;27238:25;;27277:20;27295:1;27277:20;:::i;:::-;27272:25;;27332:1;27329;27325:9;27354:30;27372:11;27354:30;:::i;:::-;27343:41;;27533:1;27524:7;27520:15;27517:1;27514:22;27494:1;27487:9;27467:83;27444:139;;27563:18;;:::i;:::-;27444:139;27228:362;27180:410;;;;:::o;27596:168::-;27736:20;27732:1;27724:6;27720:14;27713:44;27596:168;:::o;27770:366::-;27912:3;27933:67;27997:2;27992:3;27933:67;:::i;:::-;27926:74;;28009:93;28098:3;28009:93;:::i;:::-;28127:2;28122:3;28118:12;28111:19;;27770:366;;;:::o;28142:419::-;28308:4;28346:2;28335:9;28331:18;28323:26;;28395:9;28389:4;28385:20;28381:1;28370:9;28366:17;28359:47;28423:131;28549:4;28423:131;:::i;:::-;28415:139;;28142:419;;;:::o;28567:172::-;28707:24;28703:1;28695:6;28691:14;28684:48;28567:172;:::o;28745:366::-;28887:3;28908:67;28972:2;28967:3;28908:67;:::i;:::-;28901:74;;28984:93;29073:3;28984:93;:::i;:::-;29102:2;29097:3;29093:12;29086:19;;28745:366;;;:::o;29117:419::-;29283:4;29321:2;29310:9;29306:18;29298:26;;29370:9;29364:4;29360:20;29356:1;29345:9;29341:17;29334:47;29398:131;29524:4;29398:131;:::i;:::-;29390:139;;29117:419;;;:::o;29542:235::-;29682:34;29678:1;29670:6;29666:14;29659:58;29751:18;29746:2;29738:6;29734:15;29727:43;29542:235;:::o;29783:366::-;29925:3;29946:67;30010:2;30005:3;29946:67;:::i;:::-;29939:74;;30022:93;30111:3;30022:93;:::i;:::-;30140:2;30135:3;30131:12;30124:19;;29783:366;;;:::o;30155:419::-;30321:4;30359:2;30348:9;30344:18;30336:26;;30408:9;30402:4;30398:20;30394:1;30383:9;30379:17;30372:47;30436:131;30562:4;30436:131;:::i;:::-;30428:139;;30155:419;;;:::o;30580:148::-;30682:11;30719:3;30704:18;;30580:148;;;;:::o;30734:390::-;30840:3;30868:39;30901:5;30868:39;:::i;:::-;30923:89;31005:6;31000:3;30923:89;:::i;:::-;30916:96;;31021:65;31079:6;31074:3;31067:4;31060:5;31056:16;31021:65;:::i;:::-;31111:6;31106:3;31102:16;31095:23;;30844:280;30734:390;;;;:::o;31154:874::-;31257:3;31294:5;31288:12;31323:36;31349:9;31323:36;:::i;:::-;31375:89;31457:6;31452:3;31375:89;:::i;:::-;31368:96;;31495:1;31484:9;31480:17;31511:1;31506:166;;;;31686:1;31681:341;;;;31473:549;;31506:166;31590:4;31586:9;31575;31571:25;31566:3;31559:38;31652:6;31645:14;31638:22;31630:6;31626:35;31621:3;31617:45;31610:52;;31506:166;;31681:341;31748:38;31780:5;31748:38;:::i;:::-;31808:1;31822:154;31836:6;31833:1;31830:13;31822:154;;;31910:7;31904:14;31900:1;31895:3;31891:11;31884:35;31960:1;31951:7;31947:15;31936:26;;31858:4;31855:1;31851:12;31846:17;;31822:154;;;32005:6;32000:3;31996:16;31989:23;;31688:334;;31473:549;;31261:767;;31154:874;;;;:::o;32034:589::-;32259:3;32281:95;32372:3;32363:6;32281:95;:::i;:::-;32274:102;;32393:95;32484:3;32475:6;32393:95;:::i;:::-;32386:102;;32505:92;32593:3;32584:6;32505:92;:::i;:::-;32498:99;;32614:3;32607:10;;32034:589;;;;;;:::o;32629:225::-;32769:34;32765:1;32757:6;32753:14;32746:58;32838:8;32833:2;32825:6;32821:15;32814:33;32629:225;:::o;32860:366::-;33002:3;33023:67;33087:2;33082:3;33023:67;:::i;:::-;33016:74;;33099:93;33188:3;33099:93;:::i;:::-;33217:2;33212:3;33208:12;33201:19;;32860:366;;;:::o;33232:419::-;33398:4;33436:2;33425:9;33421:18;33413:26;;33485:9;33479:4;33475:20;33471:1;33460:9;33456:17;33449:47;33513:131;33639:4;33513:131;:::i;:::-;33505:139;;33232:419;;;:::o;33657:182::-;33797:34;33793:1;33785:6;33781:14;33774:58;33657:182;:::o;33845:366::-;33987:3;34008:67;34072:2;34067:3;34008:67;:::i;:::-;34001:74;;34084:93;34173:3;34084:93;:::i;:::-;34202:2;34197:3;34193:12;34186:19;;33845:366;;;:::o;34217:419::-;34383:4;34421:2;34410:9;34406:18;34398:26;;34470:9;34464:4;34460:20;34456:1;34445:9;34441:17;34434:47;34498:131;34624:4;34498:131;:::i;:::-;34490:139;;34217:419;;;:::o;34642:98::-;34693:6;34727:5;34721:12;34711:22;;34642:98;;;:::o;34746:168::-;34829:11;34863:6;34858:3;34851:19;34903:4;34898:3;34894:14;34879:29;;34746:168;;;;:::o;34920:373::-;35006:3;35034:38;35066:5;35034:38;:::i;:::-;35088:70;35151:6;35146:3;35088:70;:::i;:::-;35081:77;;35167:65;35225:6;35220:3;35213:4;35206:5;35202:16;35167:65;:::i;:::-;35257:29;35279:6;35257:29;:::i;:::-;35252:3;35248:39;35241:46;;35010:283;34920:373;;;;:::o;35299:640::-;35494:4;35532:3;35521:9;35517:19;35509:27;;35546:71;35614:1;35603:9;35599:17;35590:6;35546:71;:::i;:::-;35627:72;35695:2;35684:9;35680:18;35671:6;35627:72;:::i;:::-;35709;35777:2;35766:9;35762:18;35753:6;35709:72;:::i;:::-;35828:9;35822:4;35818:20;35813:2;35802:9;35798:18;35791:48;35856:76;35927:4;35918:6;35856:76;:::i;:::-;35848:84;;35299:640;;;;;;;:::o;35945:141::-;36001:5;36032:6;36026:13;36017:22;;36048:32;36074:5;36048:32;:::i;:::-;35945:141;;;;:::o;36092:349::-;36161:6;36210:2;36198:9;36189:7;36185:23;36181:32;36178:119;;;36216:79;;:::i;:::-;36178:119;36336:1;36361:63;36416:7;36407:6;36396:9;36392:22;36361:63;:::i;:::-;36351:73;;36307:127;36092:349;;;;:::o;36447:233::-;36486:3;36509:24;36527:5;36509:24;:::i;:::-;36500:33;;36555:66;36548:5;36545:77;36542:103;;36625:18;;:::i;:::-;36542:103;36672:1;36665:5;36661:13;36654:20;;36447:233;;;:::o;36686:180::-;36734:77;36731:1;36724:88;36831:4;36828:1;36821:15;36855:4;36852:1;36845:15;36872:185;36912:1;36929:20;36947:1;36929:20;:::i;:::-;36924:25;;36963:20;36981:1;36963:20;:::i;:::-;36958:25;;37002:1;36992:35;;37007:18;;:::i;:::-;36992:35;37049:1;37046;37042:9;37037:14;;36872:185;;;;:::o;37063:194::-;37103:4;37123:20;37141:1;37123:20;:::i;:::-;37118:25;;37157:20;37175:1;37157:20;:::i;:::-;37152:25;;37201:1;37198;37194:9;37186:17;;37225:1;37219:4;37216:11;37213:37;;;37230:18;;:::i;:::-;37213:37;37063:194;;;;:::o;37263:176::-;37295:1;37312:20;37330:1;37312:20;:::i;:::-;37307:25;;37346:20;37364:1;37346:20;:::i;:::-;37341:25;;37385:1;37375:35;;37390:18;;:::i;:::-;37375:35;37431:1;37428;37424:9;37419:14;;37263:176;;;;:::o
Swarm Source
ipfs://f489207921200106d00e44dfec5c397597016073704a1e04ffee648c9e1860ce
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.