Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 74 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 15789763 | 1225 days ago | IN | 0 ETH | 0.00136158 | ||||
| Set Approval For... | 15582355 | 1254 days ago | IN | 0 ETH | 0.00025429 | ||||
| Set Approval For... | 15524492 | 1262 days ago | IN | 0 ETH | 0.00081125 | ||||
| Transfer From | 14778399 | 1383 days ago | IN | 0 ETH | 0.00186085 | ||||
| Set Approval For... | 14778388 | 1383 days ago | IN | 0 ETH | 0.00104951 | ||||
| Set Approval For... | 14659932 | 1402 days ago | IN | 0 ETH | 0.00219012 | ||||
| Set Approval For... | 14658378 | 1402 days ago | IN | 0 ETH | 0.00149885 | ||||
| Safe Transfer Fr... | 14642768 | 1405 days ago | IN | 0 ETH | 0.00199866 | ||||
| Set Approval For... | 14634792 | 1406 days ago | IN | 0 ETH | 0.00170325 | ||||
| Set Approval For... | 14599386 | 1411 days ago | IN | 0 ETH | 0.00094612 | ||||
| Transfer From | 14598754 | 1412 days ago | IN | 0 ETH | 0.00212784 | ||||
| Set Approval For... | 14598489 | 1412 days ago | IN | 0 ETH | 0.00080237 | ||||
| Transfer From | 14583951 | 1414 days ago | IN | 0 ETH | 0.00464447 | ||||
| Withdraw | 14583903 | 1414 days ago | IN | 0 ETH | 0.0020302 | ||||
| Set Withdraw Add... | 14583888 | 1414 days ago | IN | 0 ETH | 0.00200887 | ||||
| Public Mint | 14520314 | 1424 days ago | IN | 0.7 ETH | 0.01468435 | ||||
| Founder Mint | 14500100 | 1427 days ago | IN | 0 ETH | 0.00473159 | ||||
| Founder Mint | 14484264 | 1429 days ago | IN | 0 ETH | 0.0052437 | ||||
| Public Mint | 14483348 | 1430 days ago | IN | 0.35 ETH | 0.00399356 | ||||
| Set Base Uri | 14463664 | 1433 days ago | IN | 0 ETH | 0.00111654 | ||||
| Toggle Reveal | 14463659 | 1433 days ago | IN | 0 ETH | 0.00074684 | ||||
| Set Extention | 14463655 | 1433 days ago | IN | 0 ETH | 0.00098392 | ||||
| Set Base Uri | 14463648 | 1433 days ago | IN | 0 ETH | 0.00186513 | ||||
| Set Approval For... | 14460168 | 1433 days ago | IN | 0 ETH | 0.00115767 | ||||
| Public Mint | 14450370 | 1435 days ago | IN | 0.35 ETH | 0.00992952 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 14583903 | 1414 days ago | 9.8 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
KWWBoats
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-03-20
*/
// SPDX-License-Identifier: MIT
// File: contracts/IKWWDataBoats.sol
pragma solidity ^0.8.4;
interface IKWWDataBoats {
struct BoatDetails{
//Kangaroos on the boat
uint32[] kangaroos;
//When the sail started
uint64 startSailTime;
//Status of the boat in the game
uint8 status;
//Types of the boat (Pirate, Native, etc.)
uint8 boatState;
//What is the route of the boat?
uint8 route;
}
function initBoat(uint16 tokenId) external;
}
// File: @openzeppelin/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = _efficientHash(computedHash, proofElement);
} else {
// Hash(current element of the proof + current computed hash)
computedHash = _efficientHash(proofElement, computedHash);
}
}
return computedHash;
}
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}
// 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 v4.4.1 (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 Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: contracts/ERC721AB.sol
// Creators: locationtba.eth, 2pmflow.eth
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support burning tokens to address(0).
*/
contract ERC721AB is
Context,
ERC165,
IERC721,
IERC721Metadata,
IERC721Enumerable
{
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMinted;
}
uint256 private currentIndex = 1;
uint256 internal immutable maxBatchSize;
// 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 ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) private _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev
* `maxBatchSize` refers to how much a minter can mint at a time.
*/
constructor(
string memory name_,
string memory symbol_,
uint256 maxBatchSize_
) {
require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
_name = name_;
_symbol = symbol_;
maxBatchSize = maxBatchSize_;
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return currentIndex;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index)
public
view
override
returns (uint256)
{
require(index < totalSupply(), "ERC721A: global index out of bounds");
return index;
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
* This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
* It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
*/
function tokenOfOwnerByIndex(address owner, uint256 index)
public
view
override
returns (uint256)
{
require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
uint256 numMintedSoFar = totalSupply();
uint256 tokenIdsIdx = 0;
address currOwnershipAddr = address(0);
for (uint256 i = 0; i < numMintedSoFar; i++) {
TokenOwnership memory ownership = _ownerships[i];
if (ownership.addr != address(0)) {
currOwnershipAddr = ownership.addr;
}
if (currOwnershipAddr == owner) {
if (tokenIdsIdx == index) {
return i;
}
tokenIdsIdx++;
}
}
revert("ERC721A: unable to get token of owner by index");
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(ERC165, IERC165)
returns (bool)
{
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
interfaceId == type(IERC721Enumerable).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
require(
owner != address(0),
"ERC721A: balance query for the zero address"
);
return uint256(_addressData[owner].balance);
}
function _numberMinted(address owner) internal view returns (uint256) {
require(
owner != address(0),
"ERC721A: number minted query for the zero address"
);
return uint256(_addressData[owner].numberMinted);
}
function ownershipOf(uint256 tokenId)
internal
view
returns (TokenOwnership memory)
{
require(_exists(tokenId), "ERC721A: owner query for nonexistent token");
uint256 lowestTokenToCheck;
if (tokenId >= maxBatchSize) {
lowestTokenToCheck = tokenId - maxBatchSize + 1;
}
for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
TokenOwnership memory ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
revert("ERC721A: unable to determine the owner of token");
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return ownershipOf(tokenId).addr;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
string memory baseURI = _baseURI();
return
bytes(baseURI).length > 0
? string(abi.encodePacked(baseURI, tokenId.toString()))
: "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public override {
address owner = ERC721AB.ownerOf(tokenId);
require(to != owner, "ERC721A: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721A: approve caller is not owner nor approved for all"
);
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId)
public
view
override
returns (address)
{
require(
_exists(tokenId),
"ERC721A: approved query for nonexistent token"
);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved)
public
override
{
require(operator != _msgSender(), "ERC721A: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator)
public
view
virtual
override
returns (bool)
{
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public override {
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public override {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
"ERC721A: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return tokenId < currentIndex;
}
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, quantity, "");
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` cannot be larger than the max batch size.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
uint256 startTokenId = currentIndex;
require(to != address(0), "ERC721A: mint to the zero address");
// We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
require(!_exists(startTokenId), "ERC721A: token already minted");
require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
AddressData memory addressData = _addressData[to];
_addressData[to] = AddressData(
addressData.balance + uint128(quantity),
addressData.numberMinted + uint128(quantity)
);
_ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));
uint256 updatedIndex = startTokenId;
for (uint256 i = 0; i < quantity; i++) {
emit Transfer(address(0), to, updatedIndex);
require(
_checkOnERC721Received(address(0), to, updatedIndex, _data),
"ERC721A: transfer to non ERC721Receiver implementer"
);
updatedIndex++;
}
currentIndex = updatedIndex;
_afterTokenTransfers(address(0), to, startTokenId, quantity);
_afterMinting(startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) private {
TokenOwnership memory prevOwnership = ownershipOf(tokenId);
bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
getApproved(tokenId) == _msgSender() ||
isApprovedForAll(prevOwnership.addr, _msgSender()));
require(
isApprovedOrOwner,
"ERC721A: transfer caller is not owner nor approved"
);
require(
prevOwnership.addr == from,
"ERC721A: transfer from incorrect owner"
);
require(to != address(0), "ERC721A: transfer to the zero address");
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, prevOwnership.addr);
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
_ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
if (_ownerships[nextTokenId].addr == address(0)) {
if (_exists(nextTokenId)) {
_ownerships[nextTokenId] = TokenOwnership(
prevOwnership.addr,
prevOwnership.startTimestamp
);
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
uint256 public nextOwnerToExplicitlySet = 0;
/**
* @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
*/
function _setOwnersExplicit(uint256 quantity) internal {
uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
require(quantity > 0, "quantity must be nonzero");
uint256 endIndex = oldNextOwnerToSet + quantity - 1;
if (endIndex > currentIndex - 1) {
endIndex = currentIndex - 1;
}
// We know if the last one in the group exists, all in the group exist, due to serial ordering.
require(_exists(endIndex), "not enough minted yet for this cleanup");
for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
if (_ownerships[i].addr == address(0)) {
TokenOwnership memory ownership = ownershipOf(i);
_ownerships[i] = TokenOwnership(
ownership.addr,
ownership.startTimestamp
);
}
}
nextOwnerToExplicitlySet = endIndex + 1;
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try
IERC721Receiver(to).onERC721Received(
_msgSender(),
from,
tokenId,
_data
)
returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert(
"ERC721A: transfer to non ERC721Receiver implementer"
);
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
*
* 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`.
*/
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.
*
* 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` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
function _afterMinting(
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// File: contracts/KWWBoats.sol
pragma solidity ^0.8.4;
//KKKKKKKKK KKKKKKKWWWWWWWW WWWWWWWWWWWWWWWW WWWWWWWW
//K:::::::K K:::::KW::::::W W::::::WW::::::W W::::::W
//K:::::::K K:::::KW::::::W W::::::WW::::::W W::::::W
//K:::::::K K::::::KW::::::W W::::::WW::::::W W::::::W
//KK::::::K K:::::KKK W:::::W WWWWW W:::::W W:::::W WWWWW W:::::W
// K:::::K K:::::K W:::::W W:::::W W:::::W W:::::W W:::::W W:::::W
// K::::::K:::::K W:::::W W:::::::W W:::::W W:::::W W:::::::W W:::::W
// K:::::::::::K W:::::W W:::::::::W W:::::W W:::::W W:::::::::W W:::::W
// K:::::::::::K W:::::W W:::::W:::::W W:::::W W:::::W W:::::W:::::W W:::::W
// K::::::K:::::K W:::::W W:::::W W:::::W W:::::W W:::::W W:::::W W:::::W W:::::W
// K:::::K K:::::K W:::::W:::::W W:::::W:::::W W:::::W:::::W W:::::W:::::W
//KK::::::K K:::::KKK W:::::::::W W:::::::::W W:::::::::W W:::::::::W
//K:::::::K K::::::K W:::::::W W:::::::W W:::::::W W:::::::W
//K:::::::K K:::::K W:::::W W:::::W W:::::W W:::::W
//K:::::::K K:::::K W:::W W:::W W:::W W:::W
//KKKKKKKKK KKKKKKK WWW WWW WWW WWW
contract KWWBoats is ERC721AB, Ownable {
using SafeMath for uint256;
using Strings for uint256;
uint256 public price = 0.35 ether;
uint256 public genesisSupply = 500;
string public baseUri = "";
string public notRevealedUri = "";
string public extension = ".json";
bytes32 public whitelistMT;
address withdrawAddress;
uint8 public whitelistMaxAmount = 1;
uint8 public publicMaxAmount = 1;
bool public whitelistLive;
bool public publicLive;
bool public revealed;
IKWWDataBoats dataContract;
constructor()
ERC721AB(
"Kangaroos Wild World - Boats",
"BoatsKWW",
genesisSupply
)
{}
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
string memory currentBaseURI = revealed ? baseUri : notRevealedUri;
return
bytes(currentBaseURI).length > 0
? string(
abi.encodePacked(
currentBaseURI,
tokenId.toString(),
extension
)
)
: "";
}
function getPriceForAmount(uint8 amount) public view returns(uint256){
return uint256(amount).mul(price);
}
function whitelistMint(uint8 amount, bytes32[] calldata proof)
public
payable
isMintValid(amount)
{
require(address(dataContract) != address(0), "Data Contract not set");
require(whitelistLive, "Whitelist sale is not live");
require(amount > 0, "Amount not valid");
uint256 currentPrice = getPriceForAmount(amount);
require(msg.value >= currentPrice, "price is invalid");
require(
checkWhitelist(proof),
"Your wallet is not whitelisted."
);
require(
_numberMinted(msg.sender) + amount <= whitelistMaxAmount,
"You've minted the maximum amount of boats that you can"
);
_safeMint(msg.sender, amount);
}
function publicMint(uint8 amount) public payable isMintValid(amount) {
require(address(dataContract) != address(0), "Data Contract not set");
require(publicLive, "Public sale is not live");
require(amount > 0, "Amount not valid");
uint256 currentPrice = getPriceForAmount(amount);
require(msg.value >= currentPrice, "price is invalid");
require(
_numberMinted(msg.sender) + amount <= publicMaxAmount,
"You've minted the maximum amount of boats that you can"
);
_safeMint(msg.sender, amount);
}
function _afterMinting(uint256 startTokenId, uint256 quantity) override internal {
for(uint256 i = startTokenId; i < startTokenId + quantity; i++){
dataContract.initBoat(uint16(i));
}
}
function checkWhitelist(bytes32[] memory proof)
public
view
returns (bool)
{
return
MerkleProof.verify(
proof,
whitelistMT,
keccak256(abi.encodePacked(msg.sender))
);
}
/**
//
// ONLY OWNER
//
**/
function checkNumMinted(address user) public view returns (uint256) {
return _numberMinted(user);
}
modifier isMintValid(uint256 amount) {
require(
totalSupply() + amount < genesisSupply + 1,
"Not enough remaining for mint amount requested"
);
require(amount > 0, "Quantity needs to be more than 0");
_;
}
function founderMint(uint256 count, address to)
public
onlyOwner
isMintValid(count)
{
require(address(dataContract) != address(0), "Data Contract not set");
_safeMint(to, count);
}
function setMaxAmount(uint8 _whitelist, uint8 _public) public onlyOwner {
whitelistMaxAmount = _whitelist;
publicMaxAmount = _public;
}
function setDataContract(address _contract) public onlyOwner{
dataContract = IKWWDataBoats(_contract);
}
function setWithdrawAddress(address _addr) public onlyOwner {
withdrawAddress = _addr;
}
function setGenesisSupply(uint256 _supply) public onlyOwner {
genesisSupply = _supply;
}
function setPrice(uint256 _price) public onlyOwner {
price = _price;
}
function setBaseUri(string calldata _baseUri) public onlyOwner {
baseUri = _baseUri;
}
function setNotRevealedUri(string calldata _uri) public onlyOwner {
notRevealedUri = _uri;
}
function setExtention(string calldata _ext) public onlyOwner {
extension = _ext;
}
function setWhitelistMerkleTree(bytes32 _whitelist) external onlyOwner {
whitelistMT = _whitelist;
}
function setMintStages(bool _wl, bool _public) public onlyOwner {
whitelistLive = _wl;
publicLive = _public;
}
function toggleReveal() public onlyOwner {
revealed = !revealed;
}
function withdraw() public onlyOwner{
(bool os, ) = payable(withdrawAddress).call{value: address(this).balance}("");
require(os);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"checkNumMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"extension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"founderMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesisSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"getPriceForAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMaxAmount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"setDataContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_ext","type":"string"}],"name":"setExtention","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setGenesisSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_whitelist","type":"uint8"},{"internalType":"uint8","name":"_public","type":"uint8"}],"name":"setMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_wl","type":"bool"},{"internalType":"bool","name":"_public","type":"bool"}],"name":"setMintStages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setNotRevealedUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelist","type":"bytes32"}],"name":"setWhitelistMerkleTree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMaxAmount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6001600090815560078190556704db7325476300006009556101f4600a5560c0604081905260a08290526200003891600b919062000200565b506040805160208101918290526000908190526200005991600c9162000200565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200008891600d9162000200565b50600f805461ffff60a01b191661010160a01b179055348015620000ab57600080fd5b506040518060400160405280601c81526020017f4b616e6761726f6f732057696c6420576f726c64202d20426f6174730000000081525060405180604001604052806008815260200167426f6174734b575760c01b815250600a54600081116200016b5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b82516200018090600190602086019062000200565b5081516200019690600290602085019062000200565b5060805250620001a8905033620001ae565b620002e3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200020e90620002a6565b90600052602060002090601f0160209004810192826200023257600085556200027d565b82601f106200024d57805160ff19168380011785556200027d565b828001600101855582156200027d579182015b828111156200027d57825182559160200191906001019062000260565b506200028b9291506200028f565b5090565b5b808211156200028b576000815560010162000290565b600181811c90821680620002bb57607f821691505b60208210811415620002dd57634e487b7160e01b600052602260045260246000fd5b50919050565b6080516131136200030d60003960008181611fae01528181611fd8015261240701526131136000f3fe6080604052600436106102ae5760003560e01c8063715018a611610175578063b88d4fde116100dc578063ccf2b28f11610095578063e7559b1e1161006f578063e7559b1e14610809578063e985e9c514610829578063f2fde38b14610872578063fe2e96ba1461089257600080fd5b8063ccf2b28f146107bd578063d7224ba0146107dd578063db1d2544146107f357600080fd5b8063b88d4fde146106fc578063b8dde1121461071c578063ba70732b1461073c578063bb54cc271461075c578063c17ecd121461077d578063c87b56dd1461079d57600080fd5b80639979a1941161012e5780639979a1941461064f5780639abc832014610670578063a035b1fe14610685578063a0bcfc7f1461069b578063a22cb465146106bb578063b7f751d8146106db57600080fd5b8063715018a6146105b4578063858e83b5146105c95780638da5cb5b146105dc57806391b7f5ed146105fa57806395d89b411461061a57806395ec1ff71461062f57600080fd5b80633ccfd60b1161021957806358381669116101d2578063583816691461050c5780635b8ad4291461051f5780635bfbd769146105345780635c69cbac146105545780636352211e1461057457806370a082311461059457600080fd5b80633ccfd60b1461046057806342842e0e146104755780634ad7b029146104955780634bbf179b146104b55780634f6ccce7146104cb57806351830227146104eb57600080fd5b806318160ddd1161026b57806318160ddd146103995780631ddf074f146103b857806323b872dd146103eb5780632d5537b01461040b5780632f745c59146104205780633ab1a4941461044057600080fd5b806301ffc9a7146102b357806303959bb7146102e857806306fdde031461030a578063081812fc1461032c578063081c8c4414610364578063095ea7b314610379575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612a72565b6108b2565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506103086103033660046127f2565b61091f565b005b34801561031657600080fd5b5061031f610974565b6040516102df9190612d39565b34801561033857600080fd5b5061034c610347366004612a59565b610a06565b6040516001600160a01b0390911681526020016102df565b34801561037057600080fd5b5061031f610a91565b34801561038557600080fd5b50610308610394366004612966565b610b1f565b3480156103a557600080fd5b506000545b6040519081526020016102df565b3480156103c457600080fd5b50600f546103d990600160a01b900460ff1681565b60405160ff90911681526020016102df565b3480156103f757600080fd5b50610308610406366004612840565b610c37565b34801561041757600080fd5b5061031f610c42565b34801561042c57600080fd5b506103aa61043b366004612966565b610c4f565b34801561044c57600080fd5b5061030861045b3660046127f2565b610dbd565b34801561046c57600080fd5b50610308610e09565b34801561048157600080fd5b50610308610490366004612840565b610e96565b3480156104a157600080fd5b506103086104b0366004612a3d565b610eb1565b3480156104c157600080fd5b506103aa600a5481565b3480156104d757600080fd5b506103aa6104e6366004612a59565b610f0f565b3480156104f757600080fd5b50600f546102d390600160c01b900460ff1681565b61030861051a366004612b5c565b610f71565b34801561052b57600080fd5b506103086111cb565b34801561054057600080fd5b506103aa61054f366004612b41565b611216565b34801561056057600080fd5b5061030861056f366004612a59565b611230565b34801561058057600080fd5b5061034c61058f366004612a59565b61125f565b3480156105a057600080fd5b506103aa6105af3660046127f2565b611271565b3480156105c057600080fd5b50610308611302565b6103086105d7366004612b41565b611338565b3480156105e857600080fd5b506008546001600160a01b031661034c565b34801561060657600080fd5b50610308610615366004612a59565b611503565b34801561062657600080fd5b5061031f611532565b34801561063b57600080fd5b5061030861064a366004612a59565b611541565b34801561065b57600080fd5b50600f546102d390600160b01b900460ff1681565b34801561067c57600080fd5b5061031f611570565b34801561069157600080fd5b506103aa60095481565b3480156106a757600080fd5b506103086106b6366004612aac565b61157d565b3480156106c757600080fd5b506103086106d636600461293c565b6115b3565b3480156106e757600080fd5b50600f546102d390600160b81b900460ff1681565b34801561070857600080fd5b5061030861071736600461287c565b611678565b34801561072857600080fd5b506102d3610737366004612990565b6116b1565b34801561074857600080fd5b50610308610757366004612aac565b6116f7565b34801561076857600080fd5b50600f546103d990600160a81b900460ff1681565b34801561078957600080fd5b50610308610798366004612aac565b61172d565b3480156107a957600080fd5b5061031f6107b8366004612a59565b611763565b3480156107c957600080fd5b506103aa6107d83660046127f2565b6118c2565b3480156107e957600080fd5b506103aa60075481565b3480156107ff57600080fd5b506103aa600e5481565b34801561081557600080fd5b50610308610824366004612b1e565b6118cd565b34801561083557600080fd5b506102d361084436600461280d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561087e57600080fd5b5061030861088d3660046127f2565b61198a565b34801561089e57600080fd5b506103086108ad366004612be2565b611a22565b60006001600160e01b031982166380ac58cd60e01b14806108e357506001600160e01b03198216635b5e139f60e01b145b806108fe57506001600160e01b0319821663780e9d6360e01b145b8061091957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109525760405162461bcd60e51b815260040161094990612d81565b60405180910390fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b60606001805461098390613005565b80601f01602080910402602001604051908101604052809291908181526020018280546109af90613005565b80156109fc5780601f106109d1576101008083540402835291602001916109fc565b820191906000526020600020905b8154815290600101906020018083116109df57829003601f168201915b5050505050905090565b6000610a13826000541190565b610a755760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610949565b506000908152600560205260409020546001600160a01b031690565b600c8054610a9e90613005565b80601f0160208091040260200160405190810160405280929190818152602001828054610aca90613005565b8015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b505050505081565b6000610b2a8261125f565b9050806001600160a01b0316836001600160a01b03161415610b995760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610949565b336001600160a01b0382161480610bb55750610bb58133610844565b610c275760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610949565b610c32838383611a80565b505050565b610c32838383611adc565b600d8054610a9e90613005565b6000610c5a83611271565b8210610cb35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610949565b600080549080805b83811015610d5d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d0e57805192505b876001600160a01b0316836001600160a01b03161415610d4a5786841415610d3c5750935061091992505050565b83610d4681613040565b9450505b5080610d5581613040565b915050610cbb565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610949565b6008546001600160a01b03163314610de75760405162461bcd60e51b815260040161094990612d81565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610e335760405162461bcd60e51b815260040161094990612d81565b600f546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610e80576040519150601f19603f3d011682016040523d82523d6000602084013e610e85565b606091505b5050905080610e9357600080fd5b50565b610c3283838360405180602001604052806000815250611678565b6008546001600160a01b03163314610edb5760405162461bcd60e51b815260040161094990612d81565b600f805461ffff60b01b1916600160b01b9315159390930260ff60b81b191692909217600160b81b91151591909102179055565b600080548210610f6d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610949565b5090565b8260ff16600a546001610f849190612f38565b81610f8e60005490565b610f989190612f38565b10610fb55760405162461bcd60e51b815260040161094990612e8e565b60008111610fd55760405162461bcd60e51b815260040161094990612d4c565b6010546001600160a01b0316610ffd5760405162461bcd60e51b815260040161094990612e0c565b600f54600160b01b900460ff166110565760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206973206e6f74206c6976650000000000006044820152606401610949565b60008460ff161161109c5760405162461bcd60e51b815260206004820152601060248201526f105b5bdd5b9d081b9bdd081d985b1a5960821b6044820152606401610949565b60006110a785611216565b9050803410156110ec5760405162461bcd60e51b815260206004820152601060248201526f1c1c9a58d9481a5cc81a5b9d985b1a5960821b6044820152606401610949565b6111288484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506116b192505050565b6111745760405162461bcd60e51b815260206004820152601f60248201527f596f75722077616c6c6574206973206e6f742077686974656c69737465642e006044820152606401610949565b600f5460ff600160a01b909104811690861661118f33611e64565b6111999190612f38565b11156111b75760405162461bcd60e51b815260040161094990612db6565b6111c4338660ff16611f02565b5050505050565b6008546001600160a01b031633146111f55760405162461bcd60e51b815260040161094990612d81565b600f805460ff60c01b198116600160c01b9182900460ff1615909102179055565b60006109196009548360ff16611f2090919063ffffffff16565b6008546001600160a01b0316331461125a5760405162461bcd60e51b815260040161094990612d81565b600a55565b600061126a82611f2c565b5192915050565b60006001600160a01b0382166112dd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610949565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b0316331461132c5760405162461bcd60e51b815260040161094990612d81565b61133660006120d6565b565b8060ff16600a54600161134b9190612f38565b8161135560005490565b61135f9190612f38565b1061137c5760405162461bcd60e51b815260040161094990612e8e565b6000811161139c5760405162461bcd60e51b815260040161094990612d4c565b6010546001600160a01b03166113c45760405162461bcd60e51b815260040161094990612e0c565b600f54600160b81b900460ff1661141d5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206c6976650000000000000000006044820152606401610949565b60008260ff16116114635760405162461bcd60e51b815260206004820152601060248201526f105b5bdd5b9d081b9bdd081d985b1a5960821b6044820152606401610949565b600061146e83611216565b9050803410156114b35760405162461bcd60e51b815260206004820152601060248201526f1c1c9a58d9481a5cc81a5b9d985b1a5960821b6044820152606401610949565b600f5460ff600160a81b90910481169084166114ce33611e64565b6114d89190612f38565b11156114f65760405162461bcd60e51b815260040161094990612db6565b610c32338460ff16611f02565b6008546001600160a01b0316331461152d5760405162461bcd60e51b815260040161094990612d81565b600955565b60606002805461098390613005565b6008546001600160a01b0316331461156b5760405162461bcd60e51b815260040161094990612d81565b600e55565b600b8054610a9e90613005565b6008546001600160a01b031633146115a75760405162461bcd60e51b815260040161094990612d81565b610c32600b8383612725565b6001600160a01b03821633141561160c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610949565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611683848484611adc565b61168f84848484612128565b6116ab5760405162461bcd60e51b815260040161094990612e3b565b50505050565b600e546040516bffffffffffffffffffffffff193360601b1660208201526000916109199184919060340160405160208183030381529060405280519060200120612236565b6008546001600160a01b031633146117215760405162461bcd60e51b815260040161094990612d81565b610c32600d8383612725565b6008546001600160a01b031633146117575760405162461bcd60e51b815260040161094990612d81565b610c32600c8383612725565b6060611770826000541190565b6117c65760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610949565b600f54600090600160c01b900460ff166117e157600c6117e4565b600b5b80546117ef90613005565b80601f016020809104026020016040519081016040528092919081815260200182805461181b90613005565b80156118685780601f1061183d57610100808354040283529160200191611868565b820191906000526020600020905b81548152906001019060200180831161184b57829003601f168201915b50505050509050600081511161188d57604051806020016040528060008152506118bb565b806118978461224c565b600d6040516020016118ab93929190612c38565b6040516020818303038152906040525b9392505050565b600061091982611e64565b6008546001600160a01b031633146118f75760405162461bcd60e51b815260040161094990612d81565b81600a5460016119079190612f38565b8161191160005490565b61191b9190612f38565b106119385760405162461bcd60e51b815260040161094990612e8e565b600081116119585760405162461bcd60e51b815260040161094990612d4c565b6010546001600160a01b03166119805760405162461bcd60e51b815260040161094990612e0c565b610c328284611f02565b6008546001600160a01b031633146119b45760405162461bcd60e51b815260040161094990612d81565b6001600160a01b038116611a195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610949565b610e93816120d6565b6008546001600160a01b03163314611a4c5760405162461bcd60e51b815260040161094990612d81565b600f805461ffff60a01b1916600160a01b60ff9485160260ff60a81b191617600160a81b9290931691909102919091179055565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ae782611f2c565b80519091506000906001600160a01b0316336001600160a01b03161480611b1e575033611b1384610a06565b6001600160a01b0316145b80611b3057508151611b309033610844565b905080611b9a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610949565b846001600160a01b031682600001516001600160a01b031614611c0e5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610949565b6001600160a01b038416611c725760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610949565b611c826000848460000151611a80565b6001600160a01b0385166000908152600460205260408120805460019290611cb49084906001600160801b0316612f83565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611d0091859116612f0d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611d88846001612f38565b6000818152600360205260409020549091506001600160a01b0316611e1a57611db2816000541190565b15611e1a5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60006001600160a01b038216611ed65760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610949565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b611f1c82826040518060200160405280600081525061234a565b5050565b60006118bb8284612f64565b6040805180820190915260008082526020820152611f4b826000541190565b611faa5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610949565b60007f0000000000000000000000000000000000000000000000000000000000000000831061200b57611ffd7f000000000000000000000000000000000000000000000000000000000000000084612fab565b612008906001612f38565b90505b825b818110612075576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561206257949350505050565b508061206d81612fee565b91505061200d565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610949565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561222a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061216c903390899088908890600401612cfc565b602060405180830381600087803b15801561218657600080fd5b505af19250505080156121b6575060408051601f3d908101601f191682019092526121b391810190612a8f565b60015b612210573d8080156121e4576040519150601f19603f3d011682016040523d82523d6000602084013e6121e9565b606091505b5080516122085760405162461bcd60e51b815260040161094990612e3b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061222e565b5060015b949350505050565b600082612243858461262a565b14949350505050565b6060816122705750506040805180820190915260018152600360fc1b602082015290565b8160005b811561229a578061228481613040565b91506122939050600a83612f50565b9150612274565b60008167ffffffffffffffff8111156122b5576122b56130b1565b6040519080825280601f01601f1916602001820160405280156122df576020820181803683370190505b5090505b841561222e576122f4600183612fab565b9150612301600a8661305b565b61230c906030612f38565b60f81b8183815181106123215761232161309b565b60200101906001600160f81b031916908160001a905350612343600a86612f50565b94506122e3565b6000546001600160a01b0384166123ad5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610949565b6123b8816000541190565b156124055760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610949565b7f00000000000000000000000000000000000000000000000000000000000000008311156124805760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610949565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906124dc908790612f0d565b6001600160801b031681526020018583602001516124fa9190612f0d565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561261a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125de6000888488612128565b6125fa5760405162461bcd60e51b815260040161094990612e3b565b8161260481613040565b925050808061261290613040565b915050612591565b506000819055611e5c838661269e565b600081815b845181101561269657600085828151811061264c5761264c61309b565b602002602001015190508083116126725760008381526020829052604090209250612683565b600081815260208490526040902092505b508061268e81613040565b91505061262f565b509392505050565b815b6126aa8284612f38565b811015610c3257601054604051636bc3706960e11b815261ffff831660048201526001600160a01b039091169063d786e0d290602401600060405180830381600087803b1580156126fa57600080fd5b505af115801561270e573d6000803e3d6000fd5b50505050808061271d90613040565b9150506126a0565b82805461273190613005565b90600052602060002090601f0160209004810192826127535760008555612799565b82601f1061276c5782800160ff19823516178555612799565b82800160010185558215612799579182015b8281111561279957823582559160200191906001019061277e565b50610f6d9291505b80821115610f6d57600081556001016127a1565b80356001600160a01b03811681146127cc57600080fd5b919050565b803580151581146127cc57600080fd5b803560ff811681146127cc57600080fd5b60006020828403121561280457600080fd5b6118bb826127b5565b6000806040838503121561282057600080fd5b612829836127b5565b9150612837602084016127b5565b90509250929050565b60008060006060848603121561285557600080fd5b61285e846127b5565b925061286c602085016127b5565b9150604084013590509250925092565b6000806000806080858703121561289257600080fd5b61289b856127b5565b935060206128aa8187016127b5565b935060408601359250606086013567ffffffffffffffff808211156128ce57600080fd5b818801915088601f8301126128e257600080fd5b8135818111156128f4576128f46130b1565b612906601f8201601f19168501612edc565b9150808252898482850101111561291c57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561294f57600080fd5b612958836127b5565b9150612837602084016127d1565b6000806040838503121561297957600080fd5b612982836127b5565b946020939093013593505050565b600060208083850312156129a357600080fd5b823567ffffffffffffffff808211156129bb57600080fd5b818501915085601f8301126129cf57600080fd5b8135818111156129e1576129e16130b1565b8060051b91506129f2848301612edc565b8181528481019084860184860187018a1015612a0d57600080fd5b600095505b83861015612a30578035835260019590950194918601918601612a12565b5098975050505050505050565b60008060408385031215612a5057600080fd5b612958836127d1565b600060208284031215612a6b57600080fd5b5035919050565b600060208284031215612a8457600080fd5b81356118bb816130c7565b600060208284031215612aa157600080fd5b81516118bb816130c7565b60008060208385031215612abf57600080fd5b823567ffffffffffffffff80821115612ad757600080fd5b818501915085601f830112612aeb57600080fd5b813581811115612afa57600080fd5b866020828501011115612b0c57600080fd5b60209290920196919550909350505050565b60008060408385031215612b3157600080fd5b82359150612837602084016127b5565b600060208284031215612b5357600080fd5b6118bb826127e1565b600080600060408486031215612b7157600080fd5b612b7a846127e1565b9250602084013567ffffffffffffffff80821115612b9757600080fd5b818601915086601f830112612bab57600080fd5b813581811115612bba57600080fd5b8760208260051b8501011115612bcf57600080fd5b6020830194508093505050509250925092565b60008060408385031215612bf557600080fd5b612bfe836127e1565b9150612837602084016127e1565b60008151808452612c24816020860160208601612fc2565b601f01601f19169290920160200192915050565b600084516020612c4b8285838a01612fc2565b855191840191612c5e8184848a01612fc2565b8554920191600090600181811c9080831680612c7b57607f831692505b858310811415612c9957634e487b7160e01b85526022600452602485fd5b808015612cad5760018114612cbe57612ceb565b60ff19851688528388019550612ceb565b60008b81526020902060005b85811015612ce35781548a820152908401908801612cca565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d2f90830184612c0c565b9695505050505050565b6020815260006118bb6020830184612c0c565b6020808252818101527f5175616e74697479206e6565647320746f206265206d6f7265207468616e2030604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526036908201527f596f75277665206d696e74656420746865206d6178696d756d20616d6f756e746040820152751037b3103137b0ba39903a3430ba103cb7ba9031b0b760511b606082015260800190565b60208082526015908201527411185d184810dbdb9d1c9858dd081b9bdd081cd95d605a1b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252602e908201527f4e6f7420656e6f7567682072656d61696e696e6720666f72206d696e7420616d60408201526d1bdd5b9d081c995c5d595cdd195960921b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612f0557612f056130b1565b604052919050565b60006001600160801b03808316818516808303821115612f2f57612f2f61306f565b01949350505050565b60008219821115612f4b57612f4b61306f565b500190565b600082612f5f57612f5f613085565b500490565b6000816000190483118215151615612f7e57612f7e61306f565b500290565b60006001600160801b0383811690831681811015612fa357612fa361306f565b039392505050565b600082821015612fbd57612fbd61306f565b500390565b60005b83811015612fdd578181015183820152602001612fc5565b838111156116ab5750506000910152565b600081612ffd57612ffd61306f565b506000190190565b600181811c9082168061301957607f821691505b6020821081141561303a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130545761305461306f565b5060010190565b60008261306a5761306a613085565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e9357600080fdfea264697066735822122058acf745d1df5546299143a44e71ecac7d45be03140e15c842867c75b1e2069864736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c8063715018a611610175578063b88d4fde116100dc578063ccf2b28f11610095578063e7559b1e1161006f578063e7559b1e14610809578063e985e9c514610829578063f2fde38b14610872578063fe2e96ba1461089257600080fd5b8063ccf2b28f146107bd578063d7224ba0146107dd578063db1d2544146107f357600080fd5b8063b88d4fde146106fc578063b8dde1121461071c578063ba70732b1461073c578063bb54cc271461075c578063c17ecd121461077d578063c87b56dd1461079d57600080fd5b80639979a1941161012e5780639979a1941461064f5780639abc832014610670578063a035b1fe14610685578063a0bcfc7f1461069b578063a22cb465146106bb578063b7f751d8146106db57600080fd5b8063715018a6146105b4578063858e83b5146105c95780638da5cb5b146105dc57806391b7f5ed146105fa57806395d89b411461061a57806395ec1ff71461062f57600080fd5b80633ccfd60b1161021957806358381669116101d2578063583816691461050c5780635b8ad4291461051f5780635bfbd769146105345780635c69cbac146105545780636352211e1461057457806370a082311461059457600080fd5b80633ccfd60b1461046057806342842e0e146104755780634ad7b029146104955780634bbf179b146104b55780634f6ccce7146104cb57806351830227146104eb57600080fd5b806318160ddd1161026b57806318160ddd146103995780631ddf074f146103b857806323b872dd146103eb5780632d5537b01461040b5780632f745c59146104205780633ab1a4941461044057600080fd5b806301ffc9a7146102b357806303959bb7146102e857806306fdde031461030a578063081812fc1461032c578063081c8c4414610364578063095ea7b314610379575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612a72565b6108b2565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506103086103033660046127f2565b61091f565b005b34801561031657600080fd5b5061031f610974565b6040516102df9190612d39565b34801561033857600080fd5b5061034c610347366004612a59565b610a06565b6040516001600160a01b0390911681526020016102df565b34801561037057600080fd5b5061031f610a91565b34801561038557600080fd5b50610308610394366004612966565b610b1f565b3480156103a557600080fd5b506000545b6040519081526020016102df565b3480156103c457600080fd5b50600f546103d990600160a01b900460ff1681565b60405160ff90911681526020016102df565b3480156103f757600080fd5b50610308610406366004612840565b610c37565b34801561041757600080fd5b5061031f610c42565b34801561042c57600080fd5b506103aa61043b366004612966565b610c4f565b34801561044c57600080fd5b5061030861045b3660046127f2565b610dbd565b34801561046c57600080fd5b50610308610e09565b34801561048157600080fd5b50610308610490366004612840565b610e96565b3480156104a157600080fd5b506103086104b0366004612a3d565b610eb1565b3480156104c157600080fd5b506103aa600a5481565b3480156104d757600080fd5b506103aa6104e6366004612a59565b610f0f565b3480156104f757600080fd5b50600f546102d390600160c01b900460ff1681565b61030861051a366004612b5c565b610f71565b34801561052b57600080fd5b506103086111cb565b34801561054057600080fd5b506103aa61054f366004612b41565b611216565b34801561056057600080fd5b5061030861056f366004612a59565b611230565b34801561058057600080fd5b5061034c61058f366004612a59565b61125f565b3480156105a057600080fd5b506103aa6105af3660046127f2565b611271565b3480156105c057600080fd5b50610308611302565b6103086105d7366004612b41565b611338565b3480156105e857600080fd5b506008546001600160a01b031661034c565b34801561060657600080fd5b50610308610615366004612a59565b611503565b34801561062657600080fd5b5061031f611532565b34801561063b57600080fd5b5061030861064a366004612a59565b611541565b34801561065b57600080fd5b50600f546102d390600160b01b900460ff1681565b34801561067c57600080fd5b5061031f611570565b34801561069157600080fd5b506103aa60095481565b3480156106a757600080fd5b506103086106b6366004612aac565b61157d565b3480156106c757600080fd5b506103086106d636600461293c565b6115b3565b3480156106e757600080fd5b50600f546102d390600160b81b900460ff1681565b34801561070857600080fd5b5061030861071736600461287c565b611678565b34801561072857600080fd5b506102d3610737366004612990565b6116b1565b34801561074857600080fd5b50610308610757366004612aac565b6116f7565b34801561076857600080fd5b50600f546103d990600160a81b900460ff1681565b34801561078957600080fd5b50610308610798366004612aac565b61172d565b3480156107a957600080fd5b5061031f6107b8366004612a59565b611763565b3480156107c957600080fd5b506103aa6107d83660046127f2565b6118c2565b3480156107e957600080fd5b506103aa60075481565b3480156107ff57600080fd5b506103aa600e5481565b34801561081557600080fd5b50610308610824366004612b1e565b6118cd565b34801561083557600080fd5b506102d361084436600461280d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561087e57600080fd5b5061030861088d3660046127f2565b61198a565b34801561089e57600080fd5b506103086108ad366004612be2565b611a22565b60006001600160e01b031982166380ac58cd60e01b14806108e357506001600160e01b03198216635b5e139f60e01b145b806108fe57506001600160e01b0319821663780e9d6360e01b145b8061091957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109525760405162461bcd60e51b815260040161094990612d81565b60405180910390fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b60606001805461098390613005565b80601f01602080910402602001604051908101604052809291908181526020018280546109af90613005565b80156109fc5780601f106109d1576101008083540402835291602001916109fc565b820191906000526020600020905b8154815290600101906020018083116109df57829003601f168201915b5050505050905090565b6000610a13826000541190565b610a755760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610949565b506000908152600560205260409020546001600160a01b031690565b600c8054610a9e90613005565b80601f0160208091040260200160405190810160405280929190818152602001828054610aca90613005565b8015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b505050505081565b6000610b2a8261125f565b9050806001600160a01b0316836001600160a01b03161415610b995760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610949565b336001600160a01b0382161480610bb55750610bb58133610844565b610c275760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610949565b610c32838383611a80565b505050565b610c32838383611adc565b600d8054610a9e90613005565b6000610c5a83611271565b8210610cb35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610949565b600080549080805b83811015610d5d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d0e57805192505b876001600160a01b0316836001600160a01b03161415610d4a5786841415610d3c5750935061091992505050565b83610d4681613040565b9450505b5080610d5581613040565b915050610cbb565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610949565b6008546001600160a01b03163314610de75760405162461bcd60e51b815260040161094990612d81565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610e335760405162461bcd60e51b815260040161094990612d81565b600f546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610e80576040519150601f19603f3d011682016040523d82523d6000602084013e610e85565b606091505b5050905080610e9357600080fd5b50565b610c3283838360405180602001604052806000815250611678565b6008546001600160a01b03163314610edb5760405162461bcd60e51b815260040161094990612d81565b600f805461ffff60b01b1916600160b01b9315159390930260ff60b81b191692909217600160b81b91151591909102179055565b600080548210610f6d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610949565b5090565b8260ff16600a546001610f849190612f38565b81610f8e60005490565b610f989190612f38565b10610fb55760405162461bcd60e51b815260040161094990612e8e565b60008111610fd55760405162461bcd60e51b815260040161094990612d4c565b6010546001600160a01b0316610ffd5760405162461bcd60e51b815260040161094990612e0c565b600f54600160b01b900460ff166110565760405162461bcd60e51b815260206004820152601a60248201527f57686974656c6973742073616c65206973206e6f74206c6976650000000000006044820152606401610949565b60008460ff161161109c5760405162461bcd60e51b815260206004820152601060248201526f105b5bdd5b9d081b9bdd081d985b1a5960821b6044820152606401610949565b60006110a785611216565b9050803410156110ec5760405162461bcd60e51b815260206004820152601060248201526f1c1c9a58d9481a5cc81a5b9d985b1a5960821b6044820152606401610949565b6111288484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506116b192505050565b6111745760405162461bcd60e51b815260206004820152601f60248201527f596f75722077616c6c6574206973206e6f742077686974656c69737465642e006044820152606401610949565b600f5460ff600160a01b909104811690861661118f33611e64565b6111999190612f38565b11156111b75760405162461bcd60e51b815260040161094990612db6565b6111c4338660ff16611f02565b5050505050565b6008546001600160a01b031633146111f55760405162461bcd60e51b815260040161094990612d81565b600f805460ff60c01b198116600160c01b9182900460ff1615909102179055565b60006109196009548360ff16611f2090919063ffffffff16565b6008546001600160a01b0316331461125a5760405162461bcd60e51b815260040161094990612d81565b600a55565b600061126a82611f2c565b5192915050565b60006001600160a01b0382166112dd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610949565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b0316331461132c5760405162461bcd60e51b815260040161094990612d81565b61133660006120d6565b565b8060ff16600a54600161134b9190612f38565b8161135560005490565b61135f9190612f38565b1061137c5760405162461bcd60e51b815260040161094990612e8e565b6000811161139c5760405162461bcd60e51b815260040161094990612d4c565b6010546001600160a01b03166113c45760405162461bcd60e51b815260040161094990612e0c565b600f54600160b81b900460ff1661141d5760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206c6976650000000000000000006044820152606401610949565b60008260ff16116114635760405162461bcd60e51b815260206004820152601060248201526f105b5bdd5b9d081b9bdd081d985b1a5960821b6044820152606401610949565b600061146e83611216565b9050803410156114b35760405162461bcd60e51b815260206004820152601060248201526f1c1c9a58d9481a5cc81a5b9d985b1a5960821b6044820152606401610949565b600f5460ff600160a81b90910481169084166114ce33611e64565b6114d89190612f38565b11156114f65760405162461bcd60e51b815260040161094990612db6565b610c32338460ff16611f02565b6008546001600160a01b0316331461152d5760405162461bcd60e51b815260040161094990612d81565b600955565b60606002805461098390613005565b6008546001600160a01b0316331461156b5760405162461bcd60e51b815260040161094990612d81565b600e55565b600b8054610a9e90613005565b6008546001600160a01b031633146115a75760405162461bcd60e51b815260040161094990612d81565b610c32600b8383612725565b6001600160a01b03821633141561160c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610949565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611683848484611adc565b61168f84848484612128565b6116ab5760405162461bcd60e51b815260040161094990612e3b565b50505050565b600e546040516bffffffffffffffffffffffff193360601b1660208201526000916109199184919060340160405160208183030381529060405280519060200120612236565b6008546001600160a01b031633146117215760405162461bcd60e51b815260040161094990612d81565b610c32600d8383612725565b6008546001600160a01b031633146117575760405162461bcd60e51b815260040161094990612d81565b610c32600c8383612725565b6060611770826000541190565b6117c65760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610949565b600f54600090600160c01b900460ff166117e157600c6117e4565b600b5b80546117ef90613005565b80601f016020809104026020016040519081016040528092919081815260200182805461181b90613005565b80156118685780601f1061183d57610100808354040283529160200191611868565b820191906000526020600020905b81548152906001019060200180831161184b57829003601f168201915b50505050509050600081511161188d57604051806020016040528060008152506118bb565b806118978461224c565b600d6040516020016118ab93929190612c38565b6040516020818303038152906040525b9392505050565b600061091982611e64565b6008546001600160a01b031633146118f75760405162461bcd60e51b815260040161094990612d81565b81600a5460016119079190612f38565b8161191160005490565b61191b9190612f38565b106119385760405162461bcd60e51b815260040161094990612e8e565b600081116119585760405162461bcd60e51b815260040161094990612d4c565b6010546001600160a01b03166119805760405162461bcd60e51b815260040161094990612e0c565b610c328284611f02565b6008546001600160a01b031633146119b45760405162461bcd60e51b815260040161094990612d81565b6001600160a01b038116611a195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610949565b610e93816120d6565b6008546001600160a01b03163314611a4c5760405162461bcd60e51b815260040161094990612d81565b600f805461ffff60a01b1916600160a01b60ff9485160260ff60a81b191617600160a81b9290931691909102919091179055565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ae782611f2c565b80519091506000906001600160a01b0316336001600160a01b03161480611b1e575033611b1384610a06565b6001600160a01b0316145b80611b3057508151611b309033610844565b905080611b9a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610949565b846001600160a01b031682600001516001600160a01b031614611c0e5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610949565b6001600160a01b038416611c725760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610949565b611c826000848460000151611a80565b6001600160a01b0385166000908152600460205260408120805460019290611cb49084906001600160801b0316612f83565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611d0091859116612f0d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611d88846001612f38565b6000818152600360205260409020549091506001600160a01b0316611e1a57611db2816000541190565b15611e1a5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60006001600160a01b038216611ed65760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610949565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b611f1c82826040518060200160405280600081525061234a565b5050565b60006118bb8284612f64565b6040805180820190915260008082526020820152611f4b826000541190565b611faa5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610949565b60007f00000000000000000000000000000000000000000000000000000000000001f4831061200b57611ffd7f00000000000000000000000000000000000000000000000000000000000001f484612fab565b612008906001612f38565b90505b825b818110612075576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561206257949350505050565b508061206d81612fee565b91505061200d565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610949565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561222a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061216c903390899088908890600401612cfc565b602060405180830381600087803b15801561218657600080fd5b505af19250505080156121b6575060408051601f3d908101601f191682019092526121b391810190612a8f565b60015b612210573d8080156121e4576040519150601f19603f3d011682016040523d82523d6000602084013e6121e9565b606091505b5080516122085760405162461bcd60e51b815260040161094990612e3b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061222e565b5060015b949350505050565b600082612243858461262a565b14949350505050565b6060816122705750506040805180820190915260018152600360fc1b602082015290565b8160005b811561229a578061228481613040565b91506122939050600a83612f50565b9150612274565b60008167ffffffffffffffff8111156122b5576122b56130b1565b6040519080825280601f01601f1916602001820160405280156122df576020820181803683370190505b5090505b841561222e576122f4600183612fab565b9150612301600a8661305b565b61230c906030612f38565b60f81b8183815181106123215761232161309b565b60200101906001600160f81b031916908160001a905350612343600a86612f50565b94506122e3565b6000546001600160a01b0384166123ad5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610949565b6123b8816000541190565b156124055760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610949565b7f00000000000000000000000000000000000000000000000000000000000001f48311156124805760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610949565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906124dc908790612f0d565b6001600160801b031681526020018583602001516124fa9190612f0d565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561261a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125de6000888488612128565b6125fa5760405162461bcd60e51b815260040161094990612e3b565b8161260481613040565b925050808061261290613040565b915050612591565b506000819055611e5c838661269e565b600081815b845181101561269657600085828151811061264c5761264c61309b565b602002602001015190508083116126725760008381526020829052604090209250612683565b600081815260208490526040902092505b508061268e81613040565b91505061262f565b509392505050565b815b6126aa8284612f38565b811015610c3257601054604051636bc3706960e11b815261ffff831660048201526001600160a01b039091169063d786e0d290602401600060405180830381600087803b1580156126fa57600080fd5b505af115801561270e573d6000803e3d6000fd5b50505050808061271d90613040565b9150506126a0565b82805461273190613005565b90600052602060002090601f0160209004810192826127535760008555612799565b82601f1061276c5782800160ff19823516178555612799565b82800160010185558215612799579182015b8281111561279957823582559160200191906001019061277e565b50610f6d9291505b80821115610f6d57600081556001016127a1565b80356001600160a01b03811681146127cc57600080fd5b919050565b803580151581146127cc57600080fd5b803560ff811681146127cc57600080fd5b60006020828403121561280457600080fd5b6118bb826127b5565b6000806040838503121561282057600080fd5b612829836127b5565b9150612837602084016127b5565b90509250929050565b60008060006060848603121561285557600080fd5b61285e846127b5565b925061286c602085016127b5565b9150604084013590509250925092565b6000806000806080858703121561289257600080fd5b61289b856127b5565b935060206128aa8187016127b5565b935060408601359250606086013567ffffffffffffffff808211156128ce57600080fd5b818801915088601f8301126128e257600080fd5b8135818111156128f4576128f46130b1565b612906601f8201601f19168501612edc565b9150808252898482850101111561291c57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561294f57600080fd5b612958836127b5565b9150612837602084016127d1565b6000806040838503121561297957600080fd5b612982836127b5565b946020939093013593505050565b600060208083850312156129a357600080fd5b823567ffffffffffffffff808211156129bb57600080fd5b818501915085601f8301126129cf57600080fd5b8135818111156129e1576129e16130b1565b8060051b91506129f2848301612edc565b8181528481019084860184860187018a1015612a0d57600080fd5b600095505b83861015612a30578035835260019590950194918601918601612a12565b5098975050505050505050565b60008060408385031215612a5057600080fd5b612958836127d1565b600060208284031215612a6b57600080fd5b5035919050565b600060208284031215612a8457600080fd5b81356118bb816130c7565b600060208284031215612aa157600080fd5b81516118bb816130c7565b60008060208385031215612abf57600080fd5b823567ffffffffffffffff80821115612ad757600080fd5b818501915085601f830112612aeb57600080fd5b813581811115612afa57600080fd5b866020828501011115612b0c57600080fd5b60209290920196919550909350505050565b60008060408385031215612b3157600080fd5b82359150612837602084016127b5565b600060208284031215612b5357600080fd5b6118bb826127e1565b600080600060408486031215612b7157600080fd5b612b7a846127e1565b9250602084013567ffffffffffffffff80821115612b9757600080fd5b818601915086601f830112612bab57600080fd5b813581811115612bba57600080fd5b8760208260051b8501011115612bcf57600080fd5b6020830194508093505050509250925092565b60008060408385031215612bf557600080fd5b612bfe836127e1565b9150612837602084016127e1565b60008151808452612c24816020860160208601612fc2565b601f01601f19169290920160200192915050565b600084516020612c4b8285838a01612fc2565b855191840191612c5e8184848a01612fc2565b8554920191600090600181811c9080831680612c7b57607f831692505b858310811415612c9957634e487b7160e01b85526022600452602485fd5b808015612cad5760018114612cbe57612ceb565b60ff19851688528388019550612ceb565b60008b81526020902060005b85811015612ce35781548a820152908401908801612cca565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d2f90830184612c0c565b9695505050505050565b6020815260006118bb6020830184612c0c565b6020808252818101527f5175616e74697479206e6565647320746f206265206d6f7265207468616e2030604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526036908201527f596f75277665206d696e74656420746865206d6178696d756d20616d6f756e746040820152751037b3103137b0ba39903a3430ba103cb7ba9031b0b760511b606082015260800190565b60208082526015908201527411185d184810dbdb9d1c9858dd081b9bdd081cd95d605a1b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252602e908201527f4e6f7420656e6f7567682072656d61696e696e6720666f72206d696e7420616d60408201526d1bdd5b9d081c995c5d595cdd195960921b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612f0557612f056130b1565b604052919050565b60006001600160801b03808316818516808303821115612f2f57612f2f61306f565b01949350505050565b60008219821115612f4b57612f4b61306f565b500190565b600082612f5f57612f5f613085565b500490565b6000816000190483118215151615612f7e57612f7e61306f565b500290565b60006001600160801b0383811690831681811015612fa357612fa361306f565b039392505050565b600082821015612fbd57612fbd61306f565b500390565b60005b83811015612fdd578181015183820152602001612fc5565b838111156116ab5750506000910152565b600081612ffd57612ffd61306f565b506000190190565b600181811c9082168061301957607f821691505b6020821081141561303a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130545761305461306f565b5060010190565b60008261306a5761306a613085565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e9357600080fdfea264697066735822122058acf745d1df5546299143a44e71ecac7d45be03140e15c842867c75b1e2069864736f6c63430008070033
Deployed Bytecode Sourcemap
66704:5555:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37111:422;;;;;;;;;;-1:-1:-1;37111:422:0;;;;;:::i;:::-;;:::i;:::-;;;9993:14:1;;9986:22;9968:41;;9956:2;9941:18;37111:422:0;;;;;;;;70987:118;;;;;;;;;;-1:-1:-1;70987:118:0;;;;;:::i;:::-;;:::i;:::-;;39072:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40768:292::-;;;;;;;;;;-1:-1:-1;40768:292:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9291:32:1;;;9273:51;;9261:2;9246:18;40768:292:0;9127:203:1;66937:33:0;;;;;;;;;;;;;:::i;40288:414::-;;;;;;;;;;-1:-1:-1;40288:414:0;;;;;:::i;:::-;;:::i;35470:100::-;;;;;;;;;;-1:-1:-1;35523:7:0;35550:12;35470:100;;;10166:25:1;;;10154:2;10139:18;35470:100:0;10020:177:1;67090:35:0;;;;;;;;;;-1:-1:-1;67090:35:0;;;;-1:-1:-1;;;67090:35:0;;;;;;;;;22741:4:1;22729:17;;;22711:36;;22699:2;22684:18;67090:35:0;22569:184:1;41795:162:0;;;;;;;;;;-1:-1:-1;41795:162:0;;;;;:::i;:::-;;:::i;66977:33::-;;;;;;;;;;;;;:::i;36175:864::-;;;;;;;;;;-1:-1:-1;36175:864:0;;;;;:::i;:::-;;:::i;71113:102::-;;;;;;;;;;-1:-1:-1;71113:102:0;;;;;:::i;:::-;;:::i;72102:154::-;;;;;;;;;;;;;:::i;42028:177::-;;;;;;;;;;-1:-1:-1;42028:177:0;;;;;:::i;:::-;;:::i;71873:133::-;;;;;;;;;;-1:-1:-1;71873:133:0;;;;;:::i;:::-;;:::i;66857:34::-;;;;;;;;;;;;;;;;35647:228;;;;;;;;;;-1:-1:-1;35647:228:0;;;;;:::i;:::-;;:::i;67234:20::-;;;;;;;;;;-1:-1:-1;67234:20:0;;;;-1:-1:-1;;;67234:20:0;;;;;;68201:779;;;;;;:::i;:::-;;:::i;72014:80::-;;;;;;;;;;;;;:::i;68072:121::-;;;;;;;;;;-1:-1:-1;68072:121:0;;;;;:::i;:::-;;:::i;71223:102::-;;;;;;;;;;-1:-1:-1;71223:102:0;;;;;:::i;:::-;;:::i;38881:124::-;;;;;;;;;;-1:-1:-1;38881:124:0;;;;;:::i;:::-;;:::i;37597:258::-;;;;;;;;;;-1:-1:-1;37597:258:0;;;;;:::i;:::-;;:::i;12565:103::-;;;;;;;;;;;;;:::i;68988:596::-;;;;;;:::i;:::-;;:::i;11914:87::-;;;;;;;;;;-1:-1:-1;11987:6:0;;-1:-1:-1;;;;;11987:6:0;11914:87;;71333:84;;;;;;;;;;-1:-1:-1;71333:84:0;;;;;:::i;:::-;;:::i;39241:104::-;;;;;;;;;;;;;:::i;71751:114::-;;;;;;;;;;-1:-1:-1;71751:114:0;;;;;:::i;:::-;;:::i;67173:25::-;;;;;;;;;;-1:-1:-1;67173:25:0;;;;-1:-1:-1;;;67173:25:0;;;;;;66904:26;;;;;;;;;;;;;:::i;66817:33::-;;;;;;;;;;;;;;;;71425:100;;;;;;;;;;-1:-1:-1;71425:100:0;;;;;:::i;:::-;;:::i;41132:311::-;;;;;;;;;;-1:-1:-1;41132:311:0;;;;;:::i;:::-;;:::i;67205:22::-;;;;;;;;;;-1:-1:-1;67205:22:0;;;;-1:-1:-1;;;67205:22:0;;;;;;42276:355;;;;;;;;;;-1:-1:-1;42276:355:0;;;;;:::i;:::-;;:::i;69823:291::-;;;;;;;;;;-1:-1:-1;69823:291:0;;;;;:::i;:::-;;:::i;71647:96::-;;;;;;;;;;-1:-1:-1;71647:96:0;;;;;:::i;:::-;;:::i;67132:32::-;;;;;;;;;;-1:-1:-1;67132:32:0;;;;-1:-1:-1;;;67132:32:0;;;;;;71533:106;;;;;;;;;;-1:-1:-1;71533:106:0;;;;;:::i;:::-;;:::i;67454:610::-;;;;;;;;;;-1:-1:-1;67454:610:0;;;;;:::i;:::-;;:::i;70177:113::-;;;;;;;;;;-1:-1:-1;70177:113:0;;;;;:::i;:::-;;:::i;47119:43::-;;;;;;;;;;;;;;;;67019:26;;;;;;;;;;;;;;;;70578:235;;;;;;;;;;-1:-1:-1;70578:235:0;;;;;:::i;:::-;;:::i;41514:214::-;;;;;;;;;;-1:-1:-1;41514:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;41685:25:0;;;41656:4;41685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41514:214;12823:201;;;;;;;;;;-1:-1:-1;12823:201:0;;;;;:::i;:::-;;:::i;70821:158::-;;;;;;;;;;-1:-1:-1;70821:158:0;;;;;:::i;:::-;;:::i;37111:422::-;37258:4;-1:-1:-1;;;;;;37300:40:0;;-1:-1:-1;;;37300:40:0;;:105;;-1:-1:-1;;;;;;;37357:48:0;;-1:-1:-1;;;37357:48:0;37300:105;:172;;;-1:-1:-1;;;;;;;37422:50:0;;-1:-1:-1;;;37422:50:0;37300:172;:225;;;-1:-1:-1;;;;;;;;;;24455:40:0;;;37489:36;37280:245;37111:422;-1:-1:-1;;37111:422:0:o;70987:118::-;11987:6;;-1:-1:-1;;;;;11987:6:0;10718:10;12134:23;12126:68;;;;-1:-1:-1;;;12126:68:0;;;;;;;:::i;:::-;;;;;;;;;71058:12:::1;:39:::0;;-1:-1:-1;;;;;;71058:39:0::1;-1:-1:-1::0;;;;;71058:39:0;;;::::1;::::0;;;::::1;::::0;;70987:118::o;39072:100::-;39126:13;39159:5;39152:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39072:100;:::o;40768:292::-;40872:7;40919:16;40927:7;42943:4;42977:12;-1:-1:-1;42967:22:0;42886:111;40919:16;40897:111;;;;-1:-1:-1;;;40897:111:0;;21234:2:1;40897:111:0;;;21216:21:1;21273:2;21253:18;;;21246:30;21312:34;21292:18;;;21285:62;-1:-1:-1;;;21363:18:1;;;21356:43;21416:19;;40897:111:0;21032:409:1;40897:111:0;-1:-1:-1;41028:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41028:24:0;;40768:292::o;66937:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40288:414::-;40361:13;40377:25;40394:7;40377:16;:25::i;:::-;40361:41;;40427:5;-1:-1:-1;;;;;40421:11:0;:2;-1:-1:-1;;;;;40421:11:0;;;40413:58;;;;-1:-1:-1;;;40413:58:0;;17703:2:1;40413:58:0;;;17685:21:1;17742:2;17722:18;;;17715:30;17781:34;17761:18;;;17754:62;-1:-1:-1;;;17832:18:1;;;17825:32;17874:19;;40413:58:0;17501:398:1;40413:58:0;10718:10;-1:-1:-1;;;;;40506:21:0;;;;:62;;-1:-1:-1;40531:37:0;40548:5;10718:10;41514:214;:::i;40531:37::-;40484:169;;;;-1:-1:-1;;;40484:169:0;;14540:2:1;40484:169:0;;;14522:21:1;14579:2;14559:18;;;14552:30;14618:34;14598:18;;;14591:62;14689:27;14669:18;;;14662:55;14734:19;;40484:169:0;14338:421:1;40484:169:0;40666:28;40675:2;40679:7;40688:5;40666:8;:28::i;:::-;40350:352;40288:414;;:::o;41795:162::-;41921:28;41931:4;41937:2;41941:7;41921:9;:28::i;66977:33::-;;;;;;;:::i;36175:864::-;36300:7;36341:16;36351:5;36341:9;:16::i;:::-;36333:5;:24;36325:71;;;;-1:-1:-1;;;36325:71:0;;10628:2:1;36325:71:0;;;10610:21:1;10667:2;10647:18;;;10640:30;10706:34;10686:18;;;10679:62;-1:-1:-1;;;10757:18:1;;;10750:32;10799:19;;36325:71:0;10426:398:1;36325:71:0;36407:22;35550:12;;;36407:22;;36539:426;36563:14;36559:1;:18;36539:426;;;36599:31;36633:14;;;:11;:14;;;;;;;;;36599:48;;;;;;;;;-1:-1:-1;;;;;36599:48:0;;;;;-1:-1:-1;;;36599:48:0;;;;;;;;;;;;36666:28;36662:103;;36735:14;;;-1:-1:-1;36662:103:0;36804:5;-1:-1:-1;;;;;36783:26:0;:17;-1:-1:-1;;;;;36783:26:0;;36779:175;;;36849:5;36834:11;:20;36830:77;;;-1:-1:-1;36886:1:0;-1:-1:-1;36879:8:0;;-1:-1:-1;;;36879:8:0;36830:77;36925:13;;;;:::i;:::-;;;;36779:175;-1:-1:-1;36579:3:0;;;;:::i;:::-;;;;36539:426;;;-1:-1:-1;36975:56:0;;-1:-1:-1;;;36975:56:0;;20051:2:1;36975:56:0;;;20033:21:1;20090:2;20070:18;;;20063:30;20129:34;20109:18;;;20102:62;-1:-1:-1;;;20180:18:1;;;20173:44;20234:19;;36975:56:0;19849:410:1;71113:102:0;11987:6;;-1:-1:-1;;;;;11987:6:0;10718:10;12134:23;12126:68;;;;-1:-1:-1;;;12126:68:0;;;;;;;:::i;:::-;71184:15:::1;:23:::0;;-1:-1:-1;;;;;;71184:23:0::1;-1:-1:-1::0;;;;;71184:23:0;;;::::1;::::0;;;::::1;::::0;;71113:102::o;72102:154::-;11987:6;;-1:-1:-1;;;;;11987:6:0;10718:10;12134:23;12126:68;;;;-1:-1:-1;;;12126:68:0;;;;;;;:::i;:::-;72171:15:::1;::::0;72163:63:::1;::::0;72150:7:::1;::::0;-1:-1:-1;;;;;72171:15:0::1;::::0;72200:21:::1;::::0;72150:7;72163:63;72150:7;72163:63;72200:21;72171:15;72163:63:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72149:77;;;72245:2;72237:11;;;::::0;::::1;;72138:118;72102:154::o:0;42028:177::-;42158:39;42175:4;42181:2;42185:7;42158:39;;;;;;;;;;;;:16;:39::i;71873:133::-;11987:6;;-1:-1:-1;;;;;11987:6:0;10718:10;12134:23;12126:68;;;;-1:-1:-1;;;12126:68:0;;;;;;;:::i;:::-;71948:13:::1;:19:::0;;-1:-1:-1;;;;71978:20:0;-1:-1:-1;;;71948:19:0;::::1;;::::0;;;::::1;-1:-1:-1::0;;;;71978:20:0;;;;;-1:-1:-1;;;71978:20:0;::::1;;::::0;;;::::1;;::::0;;71873:133::o;35647:228::-;35750:7;35550:12;;35783:5;:21;35775:69;;;;-1:-1:-1;;;35775:69:0;;12957:2:1;35775:69:0;;;12939:21:1;12996:2;12976:18;;;12969:30;13035:34;13015:18;;;13008:62;-1:-1:-1;;;13086:18:1;;;13079:33;13129:19;;35775:69:0;12755:399:1;35775:69:0;-1:-1:-1;35862:5:0;35647:228::o;68201:779::-;68318:6;70298:272;;70393:13;;70409:1;70393:17;;;;:::i;:::-;70384:6;70368:13;35523:7;35550:12;;35470:100;70368:13;:22;;;;:::i;:::-;:42;70346:138;;;;-1:-1:-1;;;70346:138:0;;;;;;;:::i;:::-;70512:1;70503:6;:10;70495:55;;;;-1:-1:-1;;;70495:55:0;;;;;;;:::i;:::-;68358:12:::1;::::0;-1:-1:-1;;;;;68358:12:0::1;68342:69;;;;-1:-1:-1::0;;;68342:69:0::1;;;;;;;:::i;:::-;68430:13;::::0;-1:-1:-1;;;68430:13:0;::::1;;;68422:52;;;::::0;-1:-1:-1;;;68422:52:0;;14185:2:1;68422:52:0::1;::::0;::::1;14167:21:1::0;14224:2;14204:18;;;14197:30;14263:28;14243:18;;;14236:56;14309:18;;68422:52:0::1;13983:350:1::0;68422:52:0::1;68502:1;68493:6;:10;;;68485:39;;;::::0;-1:-1:-1;;;68485:39:0;;11433:2:1;68485:39:0::1;::::0;::::1;11415:21:1::0;11472:2;11452:18;;;11445:30;-1:-1:-1;;;11491:18:1;;;11484:46;11547:18;;68485:39:0::1;11231:340:1::0;68485:39:0::1;68535:20;68558:25;68576:6;68558:17;:25::i;:::-;68535:48;;68615:12;68602:9;:25;;68594:54;;;::::0;-1:-1:-1;;;68594:54:0;;21648:2:1;68594:54:0::1;::::0;::::1;21630:21:1::0;21687:2;21667:18;;;21660:30;-1:-1:-1;;;21706:18:1;;;21699:46;21762:18;;68594:54:0::1;21446:340:1::0;68594:54:0::1;68681:21;68696:5;;68681:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;68681:14:0::1;::::0;-1:-1:-1;;;68681:21:0:i:1;:::-;68659:102;;;::::0;-1:-1:-1;;;68659:102:0;;15378:2:1;68659:102:0::1;::::0;::::1;15360:21:1::0;15417:2;15397:18;;;15390:30;15456:33;15436:18;;;15429:61;15507:18;;68659:102:0::1;15176:355:1::0;68659:102:0::1;68832:18;::::0;::::1;-1:-1:-1::0;;;68832:18:0;;::::1;::::0;::::1;::::0;68794:34;::::1;:25;68808:10;68794:13;:25::i;:::-;:34;;;;:::i;:::-;:56;;68772:160;;;;-1:-1:-1::0;;;68772:160:0::1;;;;;;;:::i;:::-;68943:29;68953:10;68965:6;68943:29;;:9;:29::i;:::-;68331:649;68201:779:::0;;;;:::o;72014:80::-;11987:6;;-1:-1:-1;;;;;11987:6:0;10718:10;12134:23;12126:68;;;;-1:-1:-1;;;12126:68:0;;;;;;;:::i;:::-;72078:8:::1;::::0;;-1:-1:-1;;;;72066:20:0;::::1;-1:-1:-1::0;;;72078:8:0;;;::::1;;;72077:9;72066:20:::0;;::::1;;::::0;;72014:80::o;68072:121::-;68133:7;68159:26;68179:5;;68167:6;68159:15;;:19;;:26;;;;:::i;71223:102::-;11987:6;;-1:-1:-1;;;;;11987:6:0;10718:10;12134:23;12126:68;;;;-1:-1:-1;;;12126:68:0;;;;;;;:::i;:::-;71294:13:::1;:23:::0;71223:102::o;38881:124::-;38945:7;38972:20;38984:7;38972:11;:20::i;:::-;:25;;38881:124;-1:-1:-1;;38881:124:0:o;37597:258::-;37661:7;-1:-1:-1;;;;;37703:19:0;;37681:112;;;;-1:-1:-1;;;37681:112:0;;14966:2:1;37681:112:0;;;14948:21:1;15005:2;14985:18;;;14978:30;15044:34;15024:18;;;15017:62;-1:-1:-1;;;15095:18:1;;;15088:41;15146:19;;37681:112:0;14764:407:1;37681:112:0;-1:-1:-1;;;;;;37819:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37819:27:0;;37597:258::o;12565:103::-;11987:6;;-1:-1:-1;;;;;11987:6:0;10718:10;12134:23;12126:68;;;;-1:-1:-1;;;12126:68:0;;;;;;;:::i;:::-;12630:30:::1;12657:1;12630:18;:30::i;:::-;12565:103::o:0;68988:596::-;69049:6;70298:272;;70393:13;;70409:1;70393:17;;;;:::i;:::-;70384:6;70368:13;35523:7;35550:12;;35470:100;70368:13;:22;;;;:::i;:::-;:42;70346:138;;;;-1:-1:-1;;;70346:138:0;;;;;;;:::i;:::-;70512:1;70503:6;:10;70495:55;;;;-1:-1:-1;;;70495:55:0;;;;;;;:::i;:::-;69084:12:::1;::::0;-1:-1:-1;;;;;69084:12:0::1;69068:69;;;;-1:-1:-1::0;;;69068:69:0::1;;;;;;;:::i;:::-;69156:10;::::0;-1:-1:-1;;;69156:10:0;::::1;;;69148:46;;;::::0;-1:-1:-1;;;69148:46:0;;20466:2:1;69148:46:0::1;::::0;::::1;20448:21:1::0;20505:2;20485:18;;;20478:30;20544:25;20524:18;;;20517:53;20587:18;;69148:46:0::1;20264:347:1::0;69148:46:0::1;69222:1;69213:6;:10;;;69205:39;;;::::0;-1:-1:-1;;;69205:39:0;;11433:2:1;69205:39:0::1;::::0;::::1;11415:21:1::0;11472:2;11452:18;;;11445:30;-1:-1:-1;;;11491:18:1;;;11484:46;11547:18;;69205:39:0::1;11231:340:1::0;69205:39:0::1;69255:20;69278:25;69296:6;69278:17;:25::i;:::-;69255:48;;69335:12;69322:9;:25;;69314:54;;;::::0;-1:-1:-1;;;69314:54:0;;21648:2:1;69314:54:0::1;::::0;::::1;21630:21:1::0;21687:2;21667:18;;;21660:30;-1:-1:-1;;;21706:18:1;;;21699:46;21762:18;;69314:54:0::1;21446:340:1::0;69314:54:0::1;69439:15;::::0;::::1;-1:-1:-1::0;;;69439:15:0;;::::1;::::0;::::1;::::0;69401:34;::::1;:25;69415:10;69401:13;:25::i;:::-;:34;;;;:::i;:::-;:53;;69379:157;;;;-1:-1:-1::0;;;69379:157:0::1;;;;;;;:::i;:::-;69547:29;69557:10;69569:6;69547:29;;:9;:29::i;71333:84::-:0;11987:6;;-1:-1:-1;;;;;11987:6:0;10718:10;12134:23;12126:68;;;;-1:-1:-1;;;12126:68:0;;;;;;;:::i;:::-;71395:5:::1;:14:::0;71333:84::o;39241:104::-;39297:13;39330:7;39323:14;;;;;:::i;71751:114::-;11987:6;;-1:-1:-1;;;;;11987:6:0;10718:10;12134:23;12126:68;;;;-1:-1:-1;;;12126:68:0;;;;;;;:::i;:::-;71833:11:::1;:24:::0;71751:114::o;66904:26::-;;;;;;;:::i;71425:100::-;11987:6;;-1:-1:-1;;;;;11987:6:0;10718:10;12134:23;12126:68;;;;-1:-1:-1;;;12126:68:0;;;;;;;:::i;:::-;71499:18:::1;:7;71509:8:::0;;71499:18:::1;:::i;41132:311::-:0;-1:-1:-1;;;;;41250:24:0;;10718:10;41250:24;;41242:63;;;;-1:-1:-1;;;41242:63:0;;16506:2:1;41242:63:0;;;16488:21:1;16545:2;16525:18;;;16518:30;16584:28;16564:18;;;16557:56;16630:18;;41242:63:0;16304:350:1;41242:63:0;10718:10;41318:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;41318:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;41318:53:0;;;;;;;;;;41387:48;;9968:41:1;;;41318:42:0;;10718:10;41387:48;;9941:18:1;41387:48:0;;;;;;;41132:311;;:::o;42276:355::-;42435:28;42445:4;42451:2;42455:7;42435:9;:28::i;:::-;42496:48;42519:4;42525:2;42529:7;42538:5;42496:22;:48::i;:::-;42474:149;;;;-1:-1:-1;;;42474:149:0;;;;;;;:::i;:::-;42276:355;;;;:::o;69823:291::-;70022:11;;70062:28;;-1:-1:-1;;70079:10:0;7300:2:1;7296:15;7292:53;70062:28:0;;;7280:66:1;69919:4:0;;69961:145;;69998:5;;70022:11;7362:12:1;;70062:28:0;;;;;;;;;;;;70052:39;;;;;;69961:18;:145::i;71647:96::-;11987:6;;-1:-1:-1;;;;;11987:6:0;10718:10;12134:23;12126:68;;;;-1:-1:-1;;;12126:68:0;;;;;;;:::i;:::-;71719:16:::1;:9;71731:4:::0;;71719:16:::1;:::i;71533:106::-:0;11987:6;;-1:-1:-1;;;;;11987:6:0;10718:10;12134:23;12126:68;;;;-1:-1:-1;;;12126:68:0;;;;;;;:::i;:::-;71610:21:::1;:14;71627:4:::0;;71610:21:::1;:::i;67454:610::-:0;67572:13;67611:16;67619:7;42943:4;42977:12;-1:-1:-1;42967:22:0;42886:111;67611:16;67603:62;;;;-1:-1:-1;;;67603:62:0;;11031:2:1;67603:62:0;;;11013:21:1;11070:2;11050:18;;;11043:30;11109:34;11089:18;;;11082:62;-1:-1:-1;;;11160:18:1;;;11153:31;11201:19;;67603:62:0;10829:397:1;67603:62:0;67707:8;;67676:28;;-1:-1:-1;;;67707:8:0;;;;:35;;67728:14;67707:35;;;67718:7;67707:35;67676:66;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67804:1;67779:14;67773:28;:32;:283;;;;;;;;;;;;;;;;;67897:14;67938:18;:7;:16;:18::i;:::-;67983:9;67854:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67773:283;67753:303;67454:610;-1:-1:-1;;;67454:610:0:o;70177:113::-;70236:7;70263:19;70277:4;70263:13;:19::i;70578:235::-;11987:6;;-1:-1:-1;;;;;11987:6:0;10718:10;12134:23;12126:68;;;;-1:-1:-1;;;12126:68:0;;;;;;;:::i;:::-;70682:5:::1;70393:13;;70409:1;70393:17;;;;:::i;:::-;70384:6;70368:13;35523:7:::0;35550:12;;35470:100;70368:13:::1;:22;;;;:::i;:::-;:42;70346:138;;;;-1:-1:-1::0;;;70346:138:0::1;;;;;;;:::i;:::-;70512:1;70503:6;:10;70495:55;;;;-1:-1:-1::0;;;70495:55:0::1;;;;;;;:::i;:::-;70721:12:::2;::::0;-1:-1:-1;;;;;70721:12:0::2;70705:69;;;;-1:-1:-1::0;;;70705:69:0::2;;;;;;;:::i;:::-;70785:20;70795:2;70799:5;70785:9;:20::i;12823:201::-:0;11987:6;;-1:-1:-1;;;;;11987:6:0;10718:10;12134:23;12126:68;;;;-1:-1:-1;;;12126:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12912:22:0;::::1;12904:73;;;::::0;-1:-1:-1;;;12904:73:0;;11778:2:1;12904:73:0::1;::::0;::::1;11760:21:1::0;11817:2;11797:18;;;11790:30;11856:34;11836:18;;;11829:62;-1:-1:-1;;;11907:18:1;;;11900:36;11953:19;;12904:73:0::1;11576:402:1::0;12904:73:0::1;12988:28;13007:8;12988:18;:28::i;70821:158::-:0;11987:6;;-1:-1:-1;;;;;11987:6:0;10718:10;12134:23;12126:68;;;;-1:-1:-1;;;12126:68:0;;;;;;;:::i;:::-;70904:18:::1;:31:::0;;-1:-1:-1;;;;70946:25:0;-1:-1:-1;;;70904:31:0::1;::::0;;::::1;;-1:-1:-1::0;;;;70946:25:0;;-1:-1:-1;;;70946:25:0;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;70821:158::o;46915:196::-;47030:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47030:29:0;-1:-1:-1;;;;;47030:29:0;;;;;;;;;47075:28;;47030:24;;47075:28;;;;;;;46915:196;;;:::o;45088:1709::-;45203:35;45241:20;45253:7;45241:11;:20::i;:::-;45316:18;;45203:58;;-1:-1:-1;45274:22:0;;-1:-1:-1;;;;;45300:34:0;10718:10;-1:-1:-1;;;;;45300:34:0;;:87;;;-1:-1:-1;10718:10:0;45351:20;45363:7;45351:11;:20::i;:::-;-1:-1:-1;;;;;45351:36:0;;45300:87;:154;;;-1:-1:-1;45421:18:0;;45404:50;;10718:10;41514:214;:::i;45404:50::-;45274:181;;45490:17;45468:117;;;;-1:-1:-1;;;45468:117:0;;16861:2:1;45468:117:0;;;16843:21:1;16900:2;16880:18;;;16873:30;16939:34;16919:18;;;16912:62;-1:-1:-1;;;16990:18:1;;;16983:48;17048:19;;45468:117:0;16659:414:1;45468:117:0;45642:4;-1:-1:-1;;;;;45620:26:0;:13;:18;;;-1:-1:-1;;;;;45620:26:0;;45598:114;;;;-1:-1:-1;;;45598:114:0;;15738:2:1;45598:114:0;;;15720:21:1;15777:2;15757:18;;;15750:30;15816:34;15796:18;;;15789:62;-1:-1:-1;;;15867:18:1;;;15860:36;15913:19;;45598:114:0;15536:402:1;45598:114:0;-1:-1:-1;;;;;45731:16:0;;45723:66;;;;-1:-1:-1;;;45723:66:0;;13361:2:1;45723:66:0;;;13343:21:1;13400:2;13380:18;;;13373:30;13439:34;13419:18;;;13412:62;-1:-1:-1;;;13490:18:1;;;13483:35;13535:19;;45723:66:0;13159:401:1;45723:66:0;45910:49;45927:1;45931:7;45940:13;:18;;;45910:8;:49::i;:::-;-1:-1:-1;;;;;45972:18:0;;;;;;:12;:18;;;;;:31;;46002:1;;45972:18;:31;;46002:1;;-1:-1:-1;;;;;45972:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;45972:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46014:16:0;;-1:-1:-1;46014:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;46014:16:0;;:29;;-1:-1:-1;;46014:29:0;;:::i;:::-;;;-1:-1:-1;;;;;46014:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46077:43:0;;;;;;;;-1:-1:-1;;;;;46077:43:0;;;;;;46103:15;46077:43;;;;;;;;;-1:-1:-1;46054:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;46054:66:0;-1:-1:-1;;;;;;46054:66:0;;;;;;;;;;;46382:11;46066:7;-1:-1:-1;46382:11:0;:::i;:::-;46449:1;46408:24;;;:11;:24;;;;;:29;46360:33;;-1:-1:-1;;;;;;46408:29:0;46404:288;;46472:20;46480:11;42943:4;42977:12;-1:-1:-1;42967:22:0;42886:111;46472:20;46468:213;;;46540:125;;;;;;;;46577:18;;-1:-1:-1;;;;;46540:125:0;;;;;;46618:28;;;;46540:125;;;;;;;;;;-1:-1:-1;46513:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;46513:152:0;-1:-1:-1;;;;;;46513:152:0;;;;;;;;;;;;46468:213;46728:7;46724:2;-1:-1:-1;;;;;46709:27:0;46718:4;-1:-1:-1;;;;;46709:27:0;;;;;;;;;;;46747:42;45192:1605;;;45088:1709;;;:::o;37863:266::-;37924:7;-1:-1:-1;;;;;37966:19:0;;37944:118;;;;-1:-1:-1;;;37944:118:0;;13767:2:1;37944:118:0;;;13749:21:1;13806:2;13786:18;;;13779:30;13845:34;13825:18;;;13818:62;-1:-1:-1;;;13896:18:1;;;13889:47;13953:19;;37944:118:0;13565:413:1;37944:118:0;-1:-1:-1;;;;;;38088:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;38088:32:0;;-1:-1:-1;;;;;38088:32:0;;37863:266::o;43005:104::-;43074:27;43084:2;43088:8;43074:27;;;;;;;;;;;;:9;:27::i;:::-;43005:104;;:::o;4143:98::-;4201:7;4228:5;4232:1;4228;:5;:::i;38137:682::-;-1:-1:-1;;;;;;;;;;;;;;;;;38272:16:0;38280:7;42943:4;42977:12;-1:-1:-1;42967:22:0;42886:111;38272:16;38264:71;;;;-1:-1:-1;;;38264:71:0;;12185:2:1;38264:71:0;;;12167:21:1;12224:2;12204:18;;;12197:30;12263:34;12243:18;;;12236:62;-1:-1:-1;;;12314:18:1;;;12307:40;12364:19;;38264:71:0;11983:406:1;38264:71:0;38348:26;38400:12;38389:7;:23;38385:103;;38450:22;38460:12;38450:7;:22;:::i;:::-;:26;;38475:1;38450:26;:::i;:::-;38429:47;;38385:103;38520:7;38500:242;38537:18;38529:4;:26;38500:242;;38580:31;38614:17;;;:11;:17;;;;;;;;;38580:51;;;;;;;;;-1:-1:-1;;;;;38580:51:0;;;;;-1:-1:-1;;;38580:51:0;;;;;;;;;;;;38650:28;38646:85;;38706:9;38137:682;-1:-1:-1;;;;38137:682:0:o;38646:85::-;-1:-1:-1;38557:6:0;;;;:::i;:::-;;;;38500:242;;;-1:-1:-1;38754:57:0;;-1:-1:-1;;;38754:57:0;;20818:2:1;38754:57:0;;;20800:21:1;20857:2;20837:18;;;20830:30;20896:34;20876:18;;;20869:62;-1:-1:-1;;;20947:18:1;;;20940:45;21002:19;;38754:57:0;20616:411:1;13184:191:0;13277:6;;;-1:-1:-1;;;;;13294:17:0;;;-1:-1:-1;;;;;;13294:17:0;;;;;;;13327:40;;13277:6;;;13294:17;13277:6;;13327:40;;13258:16;;13327:40;13247:128;13184:191;:::o;48786:985::-;48941:4;-1:-1:-1;;;;;48962:13:0;;14525:20;14573:8;48958:806;;49015:175;;-1:-1:-1;;;49015:175:0;;-1:-1:-1;;;;;49015:36:0;;;;;:175;;10718:10;;49109:4;;49136:7;;49166:5;;49015:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49015:175:0;;;;;;;;-1:-1:-1;;49015:175:0;;;;;;;;;;;;:::i;:::-;;;48994:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49377:13:0;;49373:321;;49420:109;;-1:-1:-1;;;49420:109:0;;;;;;;:::i;49373:321::-;49644:6;49638:13;49629:6;49625:2;49621:15;49614:38;48994:715;-1:-1:-1;;;;;;49254:55:0;-1:-1:-1;;;49254:55:0;;-1:-1:-1;49247:62:0;;48958:806;-1:-1:-1;49748:4:0;48958:806;48786:985;;;;;;:::o;8493:190::-;8618:4;8671;8642:25;8655:5;8662:4;8642:12;:25::i;:::-;:33;;8493:190;-1:-1:-1;;;;8493:190:0:o;31623:723::-;31679:13;31900:10;31896:53;;-1:-1:-1;;31927:10:0;;;;;;;;;;;;-1:-1:-1;;;31927:10:0;;;;;31623:723::o;31896:53::-;31974:5;31959:12;32015:78;32022:9;;32015:78;;32048:8;;;;:::i;:::-;;-1:-1:-1;32071:10:0;;-1:-1:-1;32079:2:0;32071:10;;:::i;:::-;;;32015:78;;;32103:19;32135:6;32125:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32125:17:0;;32103:39;;32153:154;32160:10;;32153:154;;32187:11;32197:1;32187:11;;:::i;:::-;;-1:-1:-1;32256:10:0;32264:2;32256:5;:10;:::i;:::-;32243:24;;:2;:24;:::i;:::-;32230:39;;32213:6;32220;32213:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;32213:56:0;;;;;;;;-1:-1:-1;32284:11:0;32293:2;32284:11;;:::i;:::-;;;32153:154;;43386:1448;43509:20;43532:12;-1:-1:-1;;;;;43563:16:0;;43555:62;;;;-1:-1:-1;;;43555:62:0;;19649:2:1;43555:62:0;;;19631:21:1;19688:2;19668:18;;;19661:30;19727:34;19707:18;;;19700:62;-1:-1:-1;;;19778:18:1;;;19771:31;19819:19;;43555:62:0;19447:397:1;43555:62:0;43762:21;43770:12;42943:4;42977:12;-1:-1:-1;42967:22:0;42886:111;43762:21;43761:22;43753:64;;;;-1:-1:-1;;;43753:64:0;;18876:2:1;43753:64:0;;;18858:21:1;18915:2;18895:18;;;18888:30;18954:31;18934:18;;;18927:59;19003:18;;43753:64:0;18674:353:1;43753:64:0;43848:12;43836:8;:24;;43828:71;;;;-1:-1:-1;;;43828:71:0;;21993:2:1;43828:71:0;;;21975:21:1;22032:2;22012:18;;;22005:30;22071:34;22051:18;;;22044:62;-1:-1:-1;;;22122:18:1;;;22115:32;22164:19;;43828:71:0;21791:398:1;43828:71:0;-1:-1:-1;;;;;44019:16:0;;43986:30;44019:16;;;:12;:16;;;;;;;;;43986:49;;;;;;;;;-1:-1:-1;;;;;43986:49:0;;;;;-1:-1:-1;;;43986:49:0;;;;;;;;;;;44065:135;;;;;;;;44091:19;;43986:49;;44065:135;;;44091:39;;44121:8;;44091:39;:::i;:::-;-1:-1:-1;;;;;44065:135:0;;;;;44180:8;44145:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;44065:135:0;;;;;;-1:-1:-1;;;;;44046:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;44046:154:0;;;;;;;;;;;;44239:43;;;;;;;;;;;44265:15;44239:43;;;;;;;;44211:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;44211:71:0;-1:-1:-1;;;;;;44211:71:0;;;;;;;;;;;;;;;;;;44223:12;;44343:325;44367:8;44363:1;:12;44343:325;;;44402:38;;44427:12;;-1:-1:-1;;;;;44402:38:0;;;44419:1;;44402:38;;44419:1;;44402:38;44481:59;44512:1;44516:2;44520:12;44534:5;44481:22;:59::i;:::-;44455:172;;;;-1:-1:-1;;;44455:172:0;;;;;;;:::i;:::-;44642:14;;;;:::i;:::-;;;;44377:3;;;;;:::i;:::-;;;;44343:325;;;-1:-1:-1;44680:12:0;:27;;;44789:37;44803:12;44817:8;44789:13;:37::i;9045:675::-;9128:7;9171:4;9128:7;9186:497;9210:5;:12;9206:1;:16;9186:497;;;9244:20;9267:5;9273:1;9267:8;;;;;;;;:::i;:::-;;;;;;;9244:31;;9310:12;9294;:28;9290:382;;9796:13;9846:15;;;9882:4;9875:15;;;9929:4;9913:21;;9422:57;;9290:382;;;9796:13;9846:15;;;9882:4;9875:15;;;9929:4;9913:21;;9599:57;;9290:382;-1:-1:-1;9224:3:0;;;;:::i;:::-;;;;9186:497;;;-1:-1:-1;9700:12:0;9045:675;-1:-1:-1;;;9045:675:0:o;69592:221::-;69700:12;69684:122;69718:23;69733:8;69718:12;:23;:::i;:::-;69714:1;:27;69684:122;;;69762:12;;:32;;-1:-1:-1;;;69762:32:0;;22368:6:1;22356:19;;69762:32:0;;;22338:38:1;-1:-1:-1;;;;;69762:12:0;;;;:21;;22311:18:1;;69762:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69743:3;;;;;:::i;:::-;;;;69684:122;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:156;423:20;;483:4;472:16;;462:27;;452:55;;503:1;500;493:12;518:186;577:6;630:2;618:9;609:7;605:23;601:32;598:52;;;646:1;643;636:12;598:52;669:29;688:9;669:29;:::i;709:260::-;777:6;785;838:2;826:9;817:7;813:23;809:32;806:52;;;854:1;851;844:12;806:52;877:29;896:9;877:29;:::i;:::-;867:39;;925:38;959:2;948:9;944:18;925:38;:::i;:::-;915:48;;709:260;;;;;:::o;974:328::-;1051:6;1059;1067;1120:2;1108:9;1099:7;1095:23;1091:32;1088:52;;;1136:1;1133;1126:12;1088:52;1159:29;1178:9;1159:29;:::i;:::-;1149:39;;1207:38;1241:2;1230:9;1226:18;1207:38;:::i;:::-;1197:48;;1292:2;1281:9;1277:18;1264:32;1254:42;;974:328;;;;;:::o;1307:980::-;1402:6;1410;1418;1426;1479:3;1467:9;1458:7;1454:23;1450:33;1447:53;;;1496:1;1493;1486:12;1447:53;1519:29;1538:9;1519:29;:::i;:::-;1509:39;;1567:2;1588:38;1622:2;1611:9;1607:18;1588:38;:::i;:::-;1578:48;;1673:2;1662:9;1658:18;1645:32;1635:42;;1728:2;1717:9;1713:18;1700:32;1751:18;1792:2;1784:6;1781:14;1778:34;;;1808:1;1805;1798:12;1778:34;1846:6;1835:9;1831:22;1821:32;;1891:7;1884:4;1880:2;1876:13;1872:27;1862:55;;1913:1;1910;1903:12;1862:55;1949:2;1936:16;1971:2;1967;1964:10;1961:36;;;1977:18;;:::i;:::-;2019:53;2062:2;2043:13;;-1:-1:-1;;2039:27:1;2035:36;;2019:53;:::i;:::-;2006:66;;2095:2;2088:5;2081:17;2135:7;2130:2;2125;2121;2117:11;2113:20;2110:33;2107:53;;;2156:1;2153;2146:12;2107:53;2211:2;2206;2202;2198:11;2193:2;2186:5;2182:14;2169:45;2255:1;2250:2;2245;2238:5;2234:14;2230:23;2223:34;;2276:5;2266:15;;;;;1307:980;;;;;;;:::o;2292:254::-;2357:6;2365;2418:2;2406:9;2397:7;2393:23;2389:32;2386:52;;;2434:1;2431;2424:12;2386:52;2457:29;2476:9;2457:29;:::i;:::-;2447:39;;2505:35;2536:2;2525:9;2521:18;2505:35;:::i;2551:254::-;2619:6;2627;2680:2;2668:9;2659:7;2655:23;2651:32;2648:52;;;2696:1;2693;2686:12;2648:52;2719:29;2738:9;2719:29;:::i;:::-;2709:39;2795:2;2780:18;;;;2767:32;;-1:-1:-1;;;2551:254:1:o;2810:957::-;2894:6;2925:2;2968;2956:9;2947:7;2943:23;2939:32;2936:52;;;2984:1;2981;2974:12;2936:52;3024:9;3011:23;3053:18;3094:2;3086:6;3083:14;3080:34;;;3110:1;3107;3100:12;3080:34;3148:6;3137:9;3133:22;3123:32;;3193:7;3186:4;3182:2;3178:13;3174:27;3164:55;;3215:1;3212;3205:12;3164:55;3251:2;3238:16;3273:2;3269;3266:10;3263:36;;;3279:18;;:::i;:::-;3325:2;3322:1;3318:10;3308:20;;3348:28;3372:2;3368;3364:11;3348:28;:::i;:::-;3410:15;;;3441:12;;;;3473:11;;;3503;;;3499:20;;3496:33;-1:-1:-1;3493:53:1;;;3542:1;3539;3532:12;3493:53;3564:1;3555:10;;3574:163;3588:2;3585:1;3582:9;3574:163;;;3645:17;;3633:30;;3606:1;3599:9;;;;;3683:12;;;;3715;;3574:163;;;-1:-1:-1;3756:5:1;2810:957;-1:-1:-1;;;;;;;;2810:957:1:o;3772:248::-;3834:6;3842;3895:2;3883:9;3874:7;3870:23;3866:32;3863:52;;;3911:1;3908;3901:12;3863:52;3934:26;3950:9;3934:26;:::i;4025:180::-;4084:6;4137:2;4125:9;4116:7;4112:23;4108:32;4105:52;;;4153:1;4150;4143:12;4105:52;-1:-1:-1;4176:23:1;;4025:180;-1:-1:-1;4025:180:1:o;4210:245::-;4268:6;4321:2;4309:9;4300:7;4296:23;4292:32;4289:52;;;4337:1;4334;4327:12;4289:52;4376:9;4363:23;4395:30;4419:5;4395:30;:::i;4460:249::-;4529:6;4582:2;4570:9;4561:7;4557:23;4553:32;4550:52;;;4598:1;4595;4588:12;4550:52;4630:9;4624:16;4649:30;4673:5;4649:30;:::i;4714:592::-;4785:6;4793;4846:2;4834:9;4825:7;4821:23;4817:32;4814:52;;;4862:1;4859;4852:12;4814:52;4902:9;4889:23;4931:18;4972:2;4964:6;4961:14;4958:34;;;4988:1;4985;4978:12;4958:34;5026:6;5015:9;5011:22;5001:32;;5071:7;5064:4;5060:2;5056:13;5052:27;5042:55;;5093:1;5090;5083:12;5042:55;5133:2;5120:16;5159:2;5151:6;5148:14;5145:34;;;5175:1;5172;5165:12;5145:34;5220:7;5215:2;5206:6;5202:2;5198:15;5194:24;5191:37;5188:57;;;5241:1;5238;5231:12;5188:57;5272:2;5264:11;;;;;5294:6;;-1:-1:-1;4714:592:1;;-1:-1:-1;;;;4714:592:1:o;5496:254::-;5564:6;5572;5625:2;5613:9;5604:7;5600:23;5596:32;5593:52;;;5641:1;5638;5631:12;5593:52;5677:9;5664:23;5654:33;;5706:38;5740:2;5729:9;5725:18;5706:38;:::i;5755:182::-;5812:6;5865:2;5853:9;5844:7;5840:23;5836:32;5833:52;;;5881:1;5878;5871:12;5833:52;5904:27;5921:9;5904:27;:::i;5942:685::-;6035:6;6043;6051;6104:2;6092:9;6083:7;6079:23;6075:32;6072:52;;;6120:1;6117;6110:12;6072:52;6143:27;6160:9;6143:27;:::i;:::-;6133:37;;6221:2;6210:9;6206:18;6193:32;6244:18;6285:2;6277:6;6274:14;6271:34;;;6301:1;6298;6291:12;6271:34;6339:6;6328:9;6324:22;6314:32;;6384:7;6377:4;6373:2;6369:13;6365:27;6355:55;;6406:1;6403;6396:12;6355:55;6446:2;6433:16;6472:2;6464:6;6461:14;6458:34;;;6488:1;6485;6478:12;6458:34;6541:7;6536:2;6526:6;6523:1;6519:14;6515:2;6511:23;6507:32;6504:45;6501:65;;;6562:1;6559;6552:12;6501:65;6593:2;6589;6585:11;6575:21;;6615:6;6605:16;;;;;5942:685;;;;;:::o;6632:252::-;6696:6;6704;6757:2;6745:9;6736:7;6732:23;6728:32;6725:52;;;6773:1;6770;6763:12;6725:52;6796:27;6813:9;6796:27;:::i;:::-;6786:37;;6842:36;6874:2;6863:9;6859:18;6842:36;:::i;6889:257::-;6930:3;6968:5;6962:12;6995:6;6990:3;6983:19;7011:63;7067:6;7060:4;7055:3;7051:14;7044:4;7037:5;7033:16;7011:63;:::i;:::-;7128:2;7107:15;-1:-1:-1;;7103:29:1;7094:39;;;;7135:4;7090:50;;6889:257;-1:-1:-1;;6889:257:1:o;7385:1527::-;7609:3;7647:6;7641:13;7673:4;7686:51;7730:6;7725:3;7720:2;7712:6;7708:15;7686:51;:::i;:::-;7800:13;;7759:16;;;;7822:55;7800:13;7759:16;7844:15;;;7822:55;:::i;:::-;7966:13;;7899:20;;;7939:1;;8026;8048:18;;;;8101;;;;8128:93;;8206:4;8196:8;8192:19;8180:31;;8128:93;8269:2;8259:8;8256:16;8236:18;8233:40;8230:167;;;-1:-1:-1;;;8296:33:1;;8352:4;8349:1;8342:15;8382:4;8303:3;8370:17;8230:167;8413:18;8440:110;;;;8564:1;8559:328;;;;8406:481;;8440:110;-1:-1:-1;;8475:24:1;;8461:39;;8520:20;;;;-1:-1:-1;8440:110:1;;8559:328;23111:1;23104:14;;;23148:4;23135:18;;8654:1;8668:169;8682:8;8679:1;8676:15;8668:169;;;8764:14;;8749:13;;;8742:37;8807:16;;;;8699:10;;8668:169;;;8672:3;;8868:8;8861:5;8857:20;8850:27;;8406:481;-1:-1:-1;8903:3:1;;7385:1527;-1:-1:-1;;;;;;;;;;;7385:1527:1:o;9335:488::-;-1:-1:-1;;;;;9604:15:1;;;9586:34;;9656:15;;9651:2;9636:18;;9629:43;9703:2;9688:18;;9681:34;;;9751:3;9746:2;9731:18;;9724:31;;;9529:4;;9772:45;;9797:19;;9789:6;9772:45;:::i;:::-;9764:53;9335:488;-1:-1:-1;;;;;;9335:488:1:o;10202:219::-;10351:2;10340:9;10333:21;10314:4;10371:44;10411:2;10400:9;10396:18;10388:6;10371:44;:::i;12394:356::-;12596:2;12578:21;;;12615:18;;;12608:30;12674:34;12669:2;12654:18;;12647:62;12741:2;12726:18;;12394:356::o;15943:::-;16145:2;16127:21;;;16164:18;;;16157:30;16223:34;16218:2;16203:18;;16196:62;16290:2;16275:18;;15943:356::o;17078:418::-;17280:2;17262:21;;;17319:2;17299:18;;;17292:30;17358:34;17353:2;17338:18;;17331:62;-1:-1:-1;;;17424:2:1;17409:18;;17402:52;17486:3;17471:19;;17078:418::o;17904:345::-;18106:2;18088:21;;;18145:2;18125:18;;;18118:30;-1:-1:-1;;;18179:2:1;18164:18;;18157:51;18240:2;18225:18;;17904:345::o;18254:415::-;18456:2;18438:21;;;18495:2;18475:18;;;18468:30;18534:34;18529:2;18514:18;;18507:62;-1:-1:-1;;;18600:2:1;18585:18;;18578:49;18659:3;18644:19;;18254:415::o;19032:410::-;19234:2;19216:21;;;19273:2;19253:18;;;19246:30;19312:34;19307:2;19292:18;;19285:62;-1:-1:-1;;;19378:2:1;19363:18;;19356:44;19432:3;19417:19;;19032:410::o;22758:275::-;22829:2;22823:9;22894:2;22875:13;;-1:-1:-1;;22871:27:1;22859:40;;22929:18;22914:34;;22950:22;;;22911:62;22908:88;;;22976:18;;:::i;:::-;23012:2;23005:22;22758:275;;-1:-1:-1;22758:275:1:o;23164:253::-;23204:3;-1:-1:-1;;;;;23293:2:1;23290:1;23286:10;23323:2;23320:1;23316:10;23354:3;23350:2;23346:12;23341:3;23338:21;23335:47;;;23362:18;;:::i;:::-;23398:13;;23164:253;-1:-1:-1;;;;23164:253:1:o;23422:128::-;23462:3;23493:1;23489:6;23486:1;23483:13;23480:39;;;23499:18;;:::i;:::-;-1:-1:-1;23535:9:1;;23422:128::o;23555:120::-;23595:1;23621;23611:35;;23626:18;;:::i;:::-;-1:-1:-1;23660:9:1;;23555:120::o;23680:168::-;23720:7;23786:1;23782;23778:6;23774:14;23771:1;23768:21;23763:1;23756:9;23749:17;23745:45;23742:71;;;23793:18;;:::i;:::-;-1:-1:-1;23833:9:1;;23680:168::o;23853:246::-;23893:4;-1:-1:-1;;;;;24006:10:1;;;;23976;;24028:12;;;24025:38;;;24043:18;;:::i;:::-;24080:13;;23853:246;-1:-1:-1;;;23853:246:1:o;24104:125::-;24144:4;24172:1;24169;24166:8;24163:34;;;24177:18;;:::i;:::-;-1:-1:-1;24214:9:1;;24104:125::o;24234:258::-;24306:1;24316:113;24330:6;24327:1;24324:13;24316:113;;;24406:11;;;24400:18;24387:11;;;24380:39;24352:2;24345:10;24316:113;;;24447:6;24444:1;24441:13;24438:48;;;-1:-1:-1;;24482:1:1;24464:16;;24457:27;24234:258::o;24497:136::-;24536:3;24564:5;24554:39;;24573:18;;:::i;:::-;-1:-1:-1;;;24609:18:1;;24497:136::o;24638:380::-;24717:1;24713:12;;;;24760;;;24781:61;;24835:4;24827:6;24823:17;24813:27;;24781:61;24888:2;24880:6;24877:14;24857:18;24854:38;24851:161;;;24934:10;24929:3;24925:20;24922:1;24915:31;24969:4;24966:1;24959:15;24997:4;24994:1;24987:15;24851:161;;24638:380;;;:::o;25023:135::-;25062:3;-1:-1:-1;;25083:17:1;;25080:43;;;25103:18;;:::i;:::-;-1:-1:-1;25150:1:1;25139:13;;25023:135::o;25163:112::-;25195:1;25221;25211:35;;25226:18;;:::i;:::-;-1:-1:-1;25260:9:1;;25163:112::o;25280:127::-;25341:10;25336:3;25332:20;25329:1;25322:31;25372:4;25369:1;25362:15;25396:4;25393:1;25386:15;25412:127;25473:10;25468:3;25464:20;25461:1;25454:31;25504:4;25501:1;25494:15;25528:4;25525:1;25518:15;25544:127;25605:10;25600:3;25596:20;25593:1;25586:31;25636:4;25633:1;25626:15;25660:4;25657:1;25650:15;25676:127;25737:10;25732:3;25728:20;25725:1;25718:31;25768:4;25765:1;25758:15;25792:4;25789:1;25782:15;25808:131;-1:-1:-1;;;;;;25882:32:1;;25872:43;;25862:71;;25929:1;25926;25919:12
Swarm Source
ipfs://58acf745d1df5546299143a44e71ecac7d45be03140e15c842867c75b1e20698
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.04
Net Worth in ETH
0.000019
Token Allocations
POL
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| POL | 100.00% | $0.11031 | 0.35 | $0.038608 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.