ERC-721
Overview
Max Total Supply
98 BDOGE
Holders
52
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BDOGELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Bolddoges
Compiler Version
v0.8.2+commit.661d1103
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-12 */ // Sources flattened with hardhat v2.6.4 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT 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/[email protected] 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/math/[email protected] 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 no longer needed starting with Solidity 0.8. 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/introspection/[email protected] 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/token/ERC721/[email protected] 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/[email protected] 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/token/ERC721/extensions/[email protected] 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/[email protected] 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/utils/[email protected] 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 @openzeppelin/contracts/utils/introspection/[email protected] 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/[email protected] 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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _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 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 @openzeppelin/contracts/token/ERC721/extensions/[email protected] 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/[email protected] pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/security/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File contracts/Bolddoges.sol pragma solidity ^0.8.0; contract Bolddoges is ERC721Enumerable, ReentrancyGuard, Ownable { using SafeMath for uint256; uint256 constant MINT_FEE = 0.02 ether; uint256 constant MAX_SPECIAL_TOKEN_ID = 5; uint256 constant MAX_ZOMBIE_TOKEN_ID = 35; uint256 constant MAX_DOGE_TOKEN_ID = 3035; uint256 specialTokenId = 0; uint256 zombieTokenId = 5; uint256 dogeTokenId = 35; enum Character { Doge, Zombie, Special } mapping(address => uint256) public mintCount; constructor() ERC721("Bolddoges", "BDOGE") Ownable() { for (uint256 i; i < 5; i++) { _mintTo(owner(), Character.Special); } } function withdrawFee() external onlyOwner { payable(owner()).transfer(address(this).balance); } function claim(uint256 _count) external payable nonReentrant { require(msg.value >= MINT_FEE.mul(_count), 'Not enough fee'); require(_count > 0, 'Claim count empty'); for (uint256 i; i<_count; i++) { _mintTo(msg.sender, Character.Doge); mintCount[msg.sender]++; if (mintCount[msg.sender] == 10) { _mintTo(msg.sender, Character.Zombie); } } } function airdrop(address[] memory _accounts) external onlyOwner { for (uint256 i; i<_accounts.length; i++) { _mintTo(_accounts[i], Character.Doge); } } function _mintTo(address _to, Character _character) private { if (_character == Character.Special) { require(specialTokenId <= MAX_SPECIAL_TOKEN_ID, 'Special mint over'); specialTokenId++; _mint(_to, specialTokenId); } else if (_character == Character.Zombie) { require(zombieTokenId <= MAX_ZOMBIE_TOKEN_ID, 'Zombie mint over'); zombieTokenId++; _mint(_to, zombieTokenId); } else { require(dogeTokenId <= MAX_DOGE_TOKEN_ID, 'Doge mint over'); dogeTokenId++; _mint(_to, dogeTokenId); } } function tokenURI(uint256 _tokenId) public view override returns(string memory) { require((_tokenId > 0 && _tokenId <= specialTokenId) || (_tokenId > MAX_SPECIAL_TOKEN_ID && _tokenId <= zombieTokenId) || (_tokenId > MAX_ZOMBIE_TOKEN_ID && _tokenId <= dogeTokenId), 'Token not minted' ); return string(abi.encodePacked('https://bolddoges.io/nft/', toString(_tokenId))); } function toString(uint256 value) internal pure returns (string memory) { 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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"_accounts","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600c556005600d556023600e553480156200002057600080fd5b506040805180820182526009815268426f6c64646f67657360b81b60208083019182528351808501909452600584526442444f474560d81b9084015281519192916200006f916000916200078f565b508051620000859060019060208401906200078f565b50506001600a55506200009833620000e0565b60005b6005811015620000d957620000c4620000bc600b546001600160a01b031690565b600262000132565b80620000d081620008a7565b9150506200009b565b50620008db565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60028160028111156200015557634e487b7160e01b600052602160045260246000fd5b1415620001da576005600c541115620001a95760405162461bcd60e51b815260206004820152601160248201527029b832b1b4b0b61036b4b73a1037bb32b960791b60448201526064015b60405180910390fd5b600c8054906000620001bb83620008a7565b9190505550620001d482600c54620002ed60201b60201c565b620002e9565b6001816002811115620001fd57634e487b7160e01b600052602160045260246000fd5b141562000277576023600d5411156200024c5760405162461bcd60e51b815260206004820152601060248201526f2d37b6b134b29036b4b73a1037bb32b960811b6044820152606401620001a0565b600d80549060006200025e83620008a7565b9190505550620001d482600d54620002ed60201b60201c565b610bdb600e541115620002be5760405162461bcd60e51b815260206004820152600e60248201526d2237b3b29036b4b73a1037bb32b960911b6044820152606401620001a0565b600e8054906000620002d083620008a7565b9190505550620002e982600e54620002ed60201b60201c565b5050565b6001600160a01b038216620003455760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001a0565b6000818152600260205260409020546001600160a01b031615620003ac5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001a0565b620003ba6000838362000443565b6001600160a01b0382166000908152600360205260408120805460019290620003e590849062000835565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6200045b8383836200052560201b620006c51760201c565b6001600160a01b038316620004b957620004b381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620004df565b816001600160a01b0316836001600160a01b031614620004df57620004df83826200052a565b6001600160a01b038216620004ff57620004f981620005d7565b62000525565b826001600160a01b0316826001600160a01b0316146200052557620005258282620006b5565b505050565b6000600162000544846200070660201b62000a251760201c565b62000550919062000850565b600083815260076020526040902054909150808214620005a4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620005eb9060019062000850565b600083815260096020526040812054600880549394509092849081106200062257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106200065257634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806200069957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000620006cd836200070660201b62000a251760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620007735760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620001a0565b506001600160a01b031660009081526003602052604090205490565b8280546200079d906200086a565b90600052602060002090601f016020900481019282620007c157600085556200080c565b82601f10620007dc57805160ff19168380011785556200080c565b828001600101855582156200080c579182015b828111156200080c578251825591602001919060010190620007ef565b506200081a9291506200081e565b5090565b5b808211156200081a57600081556001016200081f565b600082198211156200084b576200084b620008c5565b500190565b600082821015620008655762000865620008c5565b500390565b6002810460018216806200087f57607f821691505b60208210811415620008a157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620008be57620008be620008c5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b611f9f80620008eb6000396000f3fe6080604052600436106101405760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde14610370578063c87b56dd14610390578063e941fa78146103b0578063e985e9c5146103c5578063ed9ec8881461040e578063f2fde38b1461043b57610140565b806370a08231146102c8578063715018a6146102e8578063729ad39e146102fd5780638da5cb5b1461031d57806395d89b411461033b578063a22cb4651461035057610140565b806323b872dd1161010857806323b872dd146102155780632f745c5914610235578063379607f51461025557806342842e0e146102685780634f6ccce7146102885780636352211e146102a857610140565b806301ffc9a71461014557806306fdde031461017a578063081812fc1461019c578063095ea7b3146101d457806318160ddd146101f6575b600080fd5b34801561015157600080fd5b50610165610160366004611bff565b61045b565b60405190151581526020015b60405180910390f35b34801561018657600080fd5b5061018f610488565b6040516101719190611cfd565b3480156101a857600080fd5b506101bc6101b7366004611c37565b61051a565b6040516001600160a01b039091168152602001610171565b3480156101e057600080fd5b506101f46101ef366004611b28565b6105b4565b005b34801561020257600080fd5b506008545b604051908152602001610171565b34801561022157600080fd5b506101f46102303660046119fb565b6106ca565b34801561024157600080fd5b50610207610250366004611b28565b6106fb565b6101f4610263366004611c37565b610791565b34801561027457600080fd5b506101f46102833660046119fb565b6108f2565b34801561029457600080fd5b506102076102a3366004611c37565b61090d565b3480156102b457600080fd5b506101bc6102c3366004611c37565b6109ae565b3480156102d457600080fd5b506102076102e33660046119af565b610a25565b3480156102f457600080fd5b506101f4610aac565b34801561030957600080fd5b506101f4610318366004611b51565b610ae2565b34801561032957600080fd5b50600b546001600160a01b03166101bc565b34801561034757600080fd5b5061018f610b60565b34801561035c57600080fd5b506101f461036b366004611aee565b610b6f565b34801561037c57600080fd5b506101f461038b366004611a36565b610c41565b34801561039c57600080fd5b5061018f6103ab366004611c37565b610c79565b3480156103bc57600080fd5b506101f4610d2b565b3480156103d157600080fd5b506101656103e03660046119c9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561041a57600080fd5b506102076104293660046119af565b600f6020526000908152604090205481565b34801561044757600080fd5b506101f46104563660046119af565b610d91565b60006001600160e01b0319821663780e9d6360e01b1480610480575061048082610e29565b90505b919050565b60606000805461049790611ea7565b80601f01602080910402602001604051908101604052809291908181526020018280546104c390611ea7565b80156105105780601f106104e557610100808354040283529160200191610510565b820191906000526020600020905b8154815290600101906020018083116104f357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105985760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105bf826109ae565b9050806001600160a01b0316836001600160a01b0316141561062d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161058f565b336001600160a01b0382161480610649575061064981336103e0565b6106bb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161058f565b6106c58383610e79565b505050565b6106d43382610ee7565b6106f05760405162461bcd60e51b815260040161058f90611d97565b6106c5838383610fde565b600061070683610a25565b82106107685760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161058f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6002600a5414156107e45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161058f565b6002600a556107fa66470de4df82000082611189565b34101561083a5760405162461bcd60e51b815260206004820152600e60248201526d4e6f7420656e6f7567682066656560901b604482015260640161058f565b6000811161087e5760405162461bcd60e51b8152602060048201526011602482015270436c61696d20636f756e7420656d70747960781b604482015260640161058f565b60005b818110156108e95761089433600061119c565b336000908152600f602052604081208054916108af83611ee2565b9091555050336000908152600f6020526040902054600a14156108d7576108d733600161119c565b806108e181611ee2565b915050610881565b50506001600a55565b6106c583838360405180602001604052806000815250610c41565b600061091860085490565b821061097b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161058f565b6008828154811061099c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161058f565b60006001600160a01b038216610a905760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161058f565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610ad65760405162461bcd60e51b815260040161058f90611d62565b610ae06000611326565b565b600b546001600160a01b03163314610b0c5760405162461bcd60e51b815260040161058f90611d62565b60005b8151811015610b5c57610b4a828281518110610b3b57634e487b7160e01b600052603260045260246000fd5b6020026020010151600061119c565b80610b5481611ee2565b915050610b0f565b5050565b60606001805461049790611ea7565b6001600160a01b038216331415610bc85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161058f565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c35911515815260200190565b60405180910390a35050565b610c4b3383610ee7565b610c675760405162461bcd60e51b815260040161058f90611d97565b610c7384848484611378565b50505050565b6060600082118015610c8d5750600c548211155b80610ca55750600582118015610ca55750600d548211155b80610cbd5750602382118015610cbd5750600e548211155b610cfc5760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881b9bdd081b5a5b9d195960821b604482015260640161058f565b610d05826113ab565b604051602001610d159190611c7b565b6040516020818303038152906040529050919050565b600b546001600160a01b03163314610d555760405162461bcd60e51b815260040161058f90611d62565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d8e573d6000803e3d6000fd5b50565b600b546001600160a01b03163314610dbb5760405162461bcd60e51b815260040161058f90611d62565b6001600160a01b038116610e205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161058f565b610d8e81611326565b60006001600160e01b031982166380ac58cd60e01b1480610e5a57506001600160e01b03198216635b5e139f60e01b145b8061048057506301ffc9a760e01b6001600160e01b0319831614610480565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610eae826109ae565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f605760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161058f565b6000610f6b836109ae565b9050806001600160a01b0316846001600160a01b03161480610fa65750836001600160a01b0316610f9b8461051a565b6001600160a01b0316145b80610fd657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610ff1826109ae565b6001600160a01b0316146110595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161058f565b6001600160a01b0382166110bb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161058f565b6110c68383836114c6565b6110d1600082610e79565b6001600160a01b03831660009081526003602052604081208054600192906110fa908490611e64565b90915550506001600160a01b0382166000908152600360205260408120805460019290611128908490611e19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006111958284611e45565b9392505050565b60028160028111156111be57634e487b7160e01b600052602160045260246000fd5b1415611231576005600c54111561120b5760405162461bcd60e51b815260206004820152601160248201527029b832b1b4b0b61036b4b73a1037bb32b960791b604482015260640161058f565b600c805490600061121b83611ee2565b919050555061122c82600c54611583565b610b5c565b600181600281111561125357634e487b7160e01b600052602160045260246000fd5b14156112c0576023600d54111561129f5760405162461bcd60e51b815260206004820152601060248201526f2d37b6b134b29036b4b73a1037bb32b960811b604482015260640161058f565b600d80549060006112af83611ee2565b919050555061122c82600d54611583565b610bdb600e5411156113055760405162461bcd60e51b815260206004820152600e60248201526d2237b3b29036b4b73a1037bb32b960911b604482015260640161058f565b600e805490600061131583611ee2565b9190505550610b5c82600e54611583565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611383848484610fde565b61138f848484846116d1565b610c735760405162461bcd60e51b815260040161058f90611d10565b6060816113d057506040805180820190915260018152600360fc1b6020820152610483565b8160005b81156113fa57806113e481611ee2565b91506113f39050600a83611e31565b91506113d4565b60008167ffffffffffffffff81111561142357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561144d576020820181803683370190505b5090505b8415610fd657611462600183611e64565b915061146f600a86611efd565b61147a906030611e19565b60f81b81838151811061149d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506114bf600a86611e31565b9450611451565b6001600160a01b0383166115215761151c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611544565b816001600160a01b0316836001600160a01b0316146115445761154483826117de565b6001600160a01b0382166115605761155b8161187b565b6106c5565b826001600160a01b0316826001600160a01b0316146106c5576106c58282611954565b6001600160a01b0382166115d95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161058f565b6000818152600260205260409020546001600160a01b03161561163e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161058f565b61164a600083836114c6565b6001600160a01b0382166000908152600360205260408120805460019290611673908490611e19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156117d357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611715903390899088908890600401611cc0565b602060405180830381600087803b15801561172f57600080fd5b505af192505050801561175f575060408051601f3d908101601f1916820190925261175c91810190611c1b565b60015b6117b9573d80801561178d576040519150601f19603f3d011682016040523d82523d6000602084013e611792565b606091505b5080516117b15760405162461bcd60e51b815260040161058f90611d10565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fd6565b506001949350505050565b600060016117eb84610a25565b6117f59190611e64565b600083815260076020526040902054909150808214611848576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061188d90600190611e64565b600083815260096020526040812054600880549394509092849081106118c357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106118f257634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061193857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061195f83610a25565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b80356001600160a01b038116811461048357600080fd5b6000602082840312156119c0578081fd5b61119582611998565b600080604083850312156119db578081fd5b6119e483611998565b91506119f260208401611998565b90509250929050565b600080600060608486031215611a0f578081fd5b611a1884611998565b9250611a2660208501611998565b9150604084013590509250925092565b60008060008060808587031215611a4b578081fd5b611a5485611998565b93506020611a63818701611998565b935060408601359250606086013567ffffffffffffffff80821115611a86578384fd5b818801915088601f830112611a99578384fd5b813581811115611aab57611aab611f3d565b611abd601f8201601f19168501611de8565b91508082528984828501011115611ad2578485fd5b8084840185840137810190920192909252939692955090935050565b60008060408385031215611b00578182fd5b611b0983611998565b915060208301358015158114611b1d578182fd5b809150509250929050565b60008060408385031215611b3a578182fd5b611b4383611998565b946020939093013593505050565b60006020808385031215611b63578182fd5b823567ffffffffffffffff80821115611b7a578384fd5b818501915085601f830112611b8d578384fd5b813581811115611b9f57611b9f611f3d565b8381029150611baf848301611de8565b8181528481019084860184860187018a1015611bc9578788fd5b8795505b83861015611bf257611bde81611998565b835260019590950194918601918601611bcd565b5098975050505050505050565b600060208284031215611c10578081fd5b813561119581611f53565b600060208284031215611c2c578081fd5b815161119581611f53565b600060208284031215611c48578081fd5b5035919050565b60008151808452611c67816020860160208601611e7b565b601f01601f19169290920160200192915050565b60007f68747470733a2f2f626f6c64646f6765732e696f2f6e66742f0000000000000082528251611cb3816019850160208701611e7b565b9190910160190192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cf390830184611c4f565b9695505050505050565b6000602082526111956020830184611c4f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611e1157611e11611f3d565b604052919050565b60008219821115611e2c57611e2c611f11565b500190565b600082611e4057611e40611f27565b500490565b6000816000190483118215151615611e5f57611e5f611f11565b500290565b600082821015611e7657611e76611f11565b500390565b60005b83811015611e96578181015183820152602001611e7e565b83811115610c735750506000910152565b600281046001821680611ebb57607f821691505b60208210811415611edc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ef657611ef6611f11565b5060010190565b600082611f0c57611f0c611f27565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d8e57600080fdfea26469706673582212208b10eb7251e5512f20624855d68c7ce743bd359d47642faf30460a5250b638bd64736f6c63430008020033
Deployed Bytecode
0x6080604052600436106101405760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde14610370578063c87b56dd14610390578063e941fa78146103b0578063e985e9c5146103c5578063ed9ec8881461040e578063f2fde38b1461043b57610140565b806370a08231146102c8578063715018a6146102e8578063729ad39e146102fd5780638da5cb5b1461031d57806395d89b411461033b578063a22cb4651461035057610140565b806323b872dd1161010857806323b872dd146102155780632f745c5914610235578063379607f51461025557806342842e0e146102685780634f6ccce7146102885780636352211e146102a857610140565b806301ffc9a71461014557806306fdde031461017a578063081812fc1461019c578063095ea7b3146101d457806318160ddd146101f6575b600080fd5b34801561015157600080fd5b50610165610160366004611bff565b61045b565b60405190151581526020015b60405180910390f35b34801561018657600080fd5b5061018f610488565b6040516101719190611cfd565b3480156101a857600080fd5b506101bc6101b7366004611c37565b61051a565b6040516001600160a01b039091168152602001610171565b3480156101e057600080fd5b506101f46101ef366004611b28565b6105b4565b005b34801561020257600080fd5b506008545b604051908152602001610171565b34801561022157600080fd5b506101f46102303660046119fb565b6106ca565b34801561024157600080fd5b50610207610250366004611b28565b6106fb565b6101f4610263366004611c37565b610791565b34801561027457600080fd5b506101f46102833660046119fb565b6108f2565b34801561029457600080fd5b506102076102a3366004611c37565b61090d565b3480156102b457600080fd5b506101bc6102c3366004611c37565b6109ae565b3480156102d457600080fd5b506102076102e33660046119af565b610a25565b3480156102f457600080fd5b506101f4610aac565b34801561030957600080fd5b506101f4610318366004611b51565b610ae2565b34801561032957600080fd5b50600b546001600160a01b03166101bc565b34801561034757600080fd5b5061018f610b60565b34801561035c57600080fd5b506101f461036b366004611aee565b610b6f565b34801561037c57600080fd5b506101f461038b366004611a36565b610c41565b34801561039c57600080fd5b5061018f6103ab366004611c37565b610c79565b3480156103bc57600080fd5b506101f4610d2b565b3480156103d157600080fd5b506101656103e03660046119c9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561041a57600080fd5b506102076104293660046119af565b600f6020526000908152604090205481565b34801561044757600080fd5b506101f46104563660046119af565b610d91565b60006001600160e01b0319821663780e9d6360e01b1480610480575061048082610e29565b90505b919050565b60606000805461049790611ea7565b80601f01602080910402602001604051908101604052809291908181526020018280546104c390611ea7565b80156105105780601f106104e557610100808354040283529160200191610510565b820191906000526020600020905b8154815290600101906020018083116104f357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105985760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105bf826109ae565b9050806001600160a01b0316836001600160a01b0316141561062d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161058f565b336001600160a01b0382161480610649575061064981336103e0565b6106bb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161058f565b6106c58383610e79565b505050565b6106d43382610ee7565b6106f05760405162461bcd60e51b815260040161058f90611d97565b6106c5838383610fde565b600061070683610a25565b82106107685760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161058f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6002600a5414156107e45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161058f565b6002600a556107fa66470de4df82000082611189565b34101561083a5760405162461bcd60e51b815260206004820152600e60248201526d4e6f7420656e6f7567682066656560901b604482015260640161058f565b6000811161087e5760405162461bcd60e51b8152602060048201526011602482015270436c61696d20636f756e7420656d70747960781b604482015260640161058f565b60005b818110156108e95761089433600061119c565b336000908152600f602052604081208054916108af83611ee2565b9091555050336000908152600f6020526040902054600a14156108d7576108d733600161119c565b806108e181611ee2565b915050610881565b50506001600a55565b6106c583838360405180602001604052806000815250610c41565b600061091860085490565b821061097b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161058f565b6008828154811061099c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161058f565b60006001600160a01b038216610a905760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161058f565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610ad65760405162461bcd60e51b815260040161058f90611d62565b610ae06000611326565b565b600b546001600160a01b03163314610b0c5760405162461bcd60e51b815260040161058f90611d62565b60005b8151811015610b5c57610b4a828281518110610b3b57634e487b7160e01b600052603260045260246000fd5b6020026020010151600061119c565b80610b5481611ee2565b915050610b0f565b5050565b60606001805461049790611ea7565b6001600160a01b038216331415610bc85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161058f565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c35911515815260200190565b60405180910390a35050565b610c4b3383610ee7565b610c675760405162461bcd60e51b815260040161058f90611d97565b610c7384848484611378565b50505050565b6060600082118015610c8d5750600c548211155b80610ca55750600582118015610ca55750600d548211155b80610cbd5750602382118015610cbd5750600e548211155b610cfc5760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881b9bdd081b5a5b9d195960821b604482015260640161058f565b610d05826113ab565b604051602001610d159190611c7b565b6040516020818303038152906040529050919050565b600b546001600160a01b03163314610d555760405162461bcd60e51b815260040161058f90611d62565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d8e573d6000803e3d6000fd5b50565b600b546001600160a01b03163314610dbb5760405162461bcd60e51b815260040161058f90611d62565b6001600160a01b038116610e205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161058f565b610d8e81611326565b60006001600160e01b031982166380ac58cd60e01b1480610e5a57506001600160e01b03198216635b5e139f60e01b145b8061048057506301ffc9a760e01b6001600160e01b0319831614610480565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610eae826109ae565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f605760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161058f565b6000610f6b836109ae565b9050806001600160a01b0316846001600160a01b03161480610fa65750836001600160a01b0316610f9b8461051a565b6001600160a01b0316145b80610fd657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610ff1826109ae565b6001600160a01b0316146110595760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161058f565b6001600160a01b0382166110bb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161058f565b6110c68383836114c6565b6110d1600082610e79565b6001600160a01b03831660009081526003602052604081208054600192906110fa908490611e64565b90915550506001600160a01b0382166000908152600360205260408120805460019290611128908490611e19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006111958284611e45565b9392505050565b60028160028111156111be57634e487b7160e01b600052602160045260246000fd5b1415611231576005600c54111561120b5760405162461bcd60e51b815260206004820152601160248201527029b832b1b4b0b61036b4b73a1037bb32b960791b604482015260640161058f565b600c805490600061121b83611ee2565b919050555061122c82600c54611583565b610b5c565b600181600281111561125357634e487b7160e01b600052602160045260246000fd5b14156112c0576023600d54111561129f5760405162461bcd60e51b815260206004820152601060248201526f2d37b6b134b29036b4b73a1037bb32b960811b604482015260640161058f565b600d80549060006112af83611ee2565b919050555061122c82600d54611583565b610bdb600e5411156113055760405162461bcd60e51b815260206004820152600e60248201526d2237b3b29036b4b73a1037bb32b960911b604482015260640161058f565b600e805490600061131583611ee2565b9190505550610b5c82600e54611583565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611383848484610fde565b61138f848484846116d1565b610c735760405162461bcd60e51b815260040161058f90611d10565b6060816113d057506040805180820190915260018152600360fc1b6020820152610483565b8160005b81156113fa57806113e481611ee2565b91506113f39050600a83611e31565b91506113d4565b60008167ffffffffffffffff81111561142357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561144d576020820181803683370190505b5090505b8415610fd657611462600183611e64565b915061146f600a86611efd565b61147a906030611e19565b60f81b81838151811061149d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506114bf600a86611e31565b9450611451565b6001600160a01b0383166115215761151c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611544565b816001600160a01b0316836001600160a01b0316146115445761154483826117de565b6001600160a01b0382166115605761155b8161187b565b6106c5565b826001600160a01b0316826001600160a01b0316146106c5576106c58282611954565b6001600160a01b0382166115d95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161058f565b6000818152600260205260409020546001600160a01b03161561163e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161058f565b61164a600083836114c6565b6001600160a01b0382166000908152600360205260408120805460019290611673908490611e19565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156117d357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611715903390899088908890600401611cc0565b602060405180830381600087803b15801561172f57600080fd5b505af192505050801561175f575060408051601f3d908101601f1916820190925261175c91810190611c1b565b60015b6117b9573d80801561178d576040519150601f19603f3d011682016040523d82523d6000602084013e611792565b606091505b5080516117b15760405162461bcd60e51b815260040161058f90611d10565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fd6565b506001949350505050565b600060016117eb84610a25565b6117f59190611e64565b600083815260076020526040902054909150808214611848576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061188d90600190611e64565b600083815260096020526040812054600880549394509092849081106118c357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106118f257634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061193857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061195f83610a25565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b80356001600160a01b038116811461048357600080fd5b6000602082840312156119c0578081fd5b61119582611998565b600080604083850312156119db578081fd5b6119e483611998565b91506119f260208401611998565b90509250929050565b600080600060608486031215611a0f578081fd5b611a1884611998565b9250611a2660208501611998565b9150604084013590509250925092565b60008060008060808587031215611a4b578081fd5b611a5485611998565b93506020611a63818701611998565b935060408601359250606086013567ffffffffffffffff80821115611a86578384fd5b818801915088601f830112611a99578384fd5b813581811115611aab57611aab611f3d565b611abd601f8201601f19168501611de8565b91508082528984828501011115611ad2578485fd5b8084840185840137810190920192909252939692955090935050565b60008060408385031215611b00578182fd5b611b0983611998565b915060208301358015158114611b1d578182fd5b809150509250929050565b60008060408385031215611b3a578182fd5b611b4383611998565b946020939093013593505050565b60006020808385031215611b63578182fd5b823567ffffffffffffffff80821115611b7a578384fd5b818501915085601f830112611b8d578384fd5b813581811115611b9f57611b9f611f3d565b8381029150611baf848301611de8565b8181528481019084860184860187018a1015611bc9578788fd5b8795505b83861015611bf257611bde81611998565b835260019590950194918601918601611bcd565b5098975050505050505050565b600060208284031215611c10578081fd5b813561119581611f53565b600060208284031215611c2c578081fd5b815161119581611f53565b600060208284031215611c48578081fd5b5035919050565b60008151808452611c67816020860160208601611e7b565b601f01601f19169290920160200192915050565b60007f68747470733a2f2f626f6c64646f6765732e696f2f6e66742f0000000000000082528251611cb3816019850160208701611e7b565b9190910160190192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cf390830184611c4f565b9695505050505050565b6000602082526111956020830184611c4f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611e1157611e11611f3d565b604052919050565b60008219821115611e2c57611e2c611f11565b500190565b600082611e4057611e40611f27565b500490565b6000816000190483118215151615611e5f57611e5f611f11565b500290565b600082821015611e7657611e76611f11565b500390565b60005b83811015611e96578181015183820152602001611e7e565b83811115610c735750506000910152565b600281046001821680611ebb57607f821691505b60208210811415611edc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ef657611ef6611f11565b5060010190565b600082611f0c57611f0c611f27565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d8e57600080fdfea26469706673582212208b10eb7251e5512f20624855d68c7ce743bd359d47642faf30460a5250b638bd64736f6c63430008020033
Deployed Bytecode Sourcemap
53027:2649:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44107:224;;;;;;;;;;-1:-1:-1;44107:224:0;;;;;:::i;:::-;;:::i;:::-;;;5992:14:1;;5985:22;5967:41;;5955:2;5940:18;44107:224:0;;;;;;;;30996:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32555:221::-;;;;;;;;;;-1:-1:-1;32555:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5290:32:1;;;5272:51;;5260:2;5245:18;32555:221:0;5227:102:1;32078:411:0;;;;;;;;;;-1:-1:-1;32078:411:0;;;;;:::i;:::-;;:::i;:::-;;44747:113;;;;;;;;;;-1:-1:-1;44835:10:0;:17;44747:113;;;15608:25:1;;;15596:2;15581:18;44747:113:0;15563:76:1;33445:339:0;;;;;;;;;;-1:-1:-1;33445:339:0;;;;;:::i;:::-;;:::i;44415:256::-;;;;;;;;;;-1:-1:-1;44415:256:0;;;;;:::i;:::-;;:::i;53734:382::-;;;;;;:::i;:::-;;:::i;33855:185::-;;;;;;;;;;-1:-1:-1;33855:185:0;;;;;:::i;:::-;;:::i;44937:233::-;;;;;;;;;;-1:-1:-1;44937:233:0;;;;;:::i;:::-;;:::i;30690:239::-;;;;;;;;;;-1:-1:-1;30690:239:0;;;;;:::i;:::-;;:::i;30420:208::-;;;;;;;;;;-1:-1:-1;30420:208:0;;;;;:::i;:::-;;:::i;2595:94::-;;;;;;;;;;;;;:::i;54121:172::-;;;;;;;;;;-1:-1:-1;54121:172:0;;;;;:::i;:::-;;:::i;1944:87::-;;;;;;;;;;-1:-1:-1;2017:6:0;;-1:-1:-1;;;;;2017:6:0;1944:87;;31165:104;;;;;;;;;;;;;:::i;32848:295::-;;;;;;;;;;-1:-1:-1;32848:295:0;;;;;:::i;:::-;;:::i;34111:328::-;;;;;;;;;;-1:-1:-1;34111:328:0;;;;;:::i;:::-;;:::i;54848:405::-;;;;;;;;;;-1:-1:-1;54848:405:0;;;;;:::i;:::-;;:::i;53629:100::-;;;;;;;;;;;;;:::i;33214:164::-;;;;;;;;;;-1:-1:-1;33214:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33335:25:0;;;33311:4;33335:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33214:164;53437:44;;;;;;;;;;-1:-1:-1;53437:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;2844:192;;;;;;;;;;-1:-1:-1;2844:192:0;;;;;:::i;:::-;;:::i;44107:224::-;44209:4;-1:-1:-1;;;;;;44233:50:0;;-1:-1:-1;;;44233:50:0;;:90;;;44287:36;44311:11;44287:23;:36::i;:::-;44226:97;;44107:224;;;;:::o;30996:100::-;31050:13;31083:5;31076:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30996:100;:::o;32555:221::-;32631:7;36038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36038:16:0;32651:73;;;;-1:-1:-1;;;32651:73:0;;12541:2:1;32651:73:0;;;12523:21:1;12580:2;12560:18;;;12553:30;12619:34;12599:18;;;12592:62;-1:-1:-1;;;12670:18:1;;;12663:42;12722:19;;32651:73:0;;;;;;;;;-1:-1:-1;32744:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32744:24:0;;32555:221::o;32078:411::-;32159:13;32175:23;32190:7;32175:14;:23::i;:::-;32159:39;;32223:5;-1:-1:-1;;;;;32217:11:0;:2;-1:-1:-1;;;;;32217:11:0;;;32209:57;;;;-1:-1:-1;;;32209:57:0;;14071:2:1;32209:57:0;;;14053:21:1;14110:2;14090:18;;;14083:30;14149:34;14129:18;;;14122:62;-1:-1:-1;;;14200:18:1;;;14193:31;14241:19;;32209:57:0;14043:223:1;32209:57:0;806:10;-1:-1:-1;;;;;32301:21:0;;;;:62;;-1:-1:-1;32326:37:0;32343:5;806:10;32350:12;726:98;32326:37;32279:168;;;;-1:-1:-1;;;32279:168:0;;10246:2:1;32279:168:0;;;10228:21:1;10285:2;10265:18;;;10258:30;10324:34;10304:18;;;10297:62;10395:26;10375:18;;;10368:54;10439:19;;32279:168:0;10218:246:1;32279:168:0;32460:21;32469:2;32473:7;32460:8;:21::i;:::-;32078:411;;;:::o;33445:339::-;33640:41;806:10;33673:7;33640:18;:41::i;:::-;33632:103;;;;-1:-1:-1;;;33632:103:0;;;;;;;:::i;:::-;33748:28;33758:4;33764:2;33768:7;33748:9;:28::i;44415:256::-;44512:7;44548:23;44565:5;44548:16;:23::i;:::-;44540:5;:31;44532:87;;;;-1:-1:-1;;;44532:87:0;;7134:2:1;44532:87:0;;;7116:21:1;7173:2;7153:18;;;7146:30;7212:34;7192:18;;;7185:62;-1:-1:-1;;;7263:18:1;;;7256:41;7314:19;;44532:87:0;7106:233:1;44532:87:0;-1:-1:-1;;;;;;44637:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;44415:256::o;53734:382::-;52010:1;52606:7;;:19;;52598:63;;;;-1:-1:-1;;;52598:63:0;;15304:2:1;52598:63:0;;;15286:21:1;15343:2;15323:18;;;15316:30;15382:33;15362:18;;;15355:61;15433:18;;52598:63:0;15276:181:1;52598:63:0;52010:1;52739:7;:18;53821:20:::1;53156:10;53834:6:::0;53821:12:::1;:20::i;:::-;53808:9;:33;;53800:60;;;::::0;-1:-1:-1;;;53800:60:0;;6791:2:1;53800:60:0::1;::::0;::::1;6773:21:1::0;6830:2;6810:18;;;6803:30;-1:-1:-1;;;6849:18:1;;;6842:44;6903:18;;53800:60:0::1;6763:164:1::0;53800:60:0::1;53888:1;53879:6;:10;53871:40;;;::::0;-1:-1:-1;;;53871:40:0;;13725:2:1;53871:40:0::1;::::0;::::1;13707:21:1::0;13764:2;13744:18;;;13737:30;-1:-1:-1;;;13783:18:1;;;13776:47;13840:18;;53871:40:0::1;13697:167:1::0;53871:40:0::1;53921:9;53916:196;53934:6;53932:1;:8;53916:196;;;53953:35;53961:10;53973:14;53953:7;:35::i;:::-;54004:10;53994:21;::::0;;;:9:::1;:21;::::0;;;;:23;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;54037:10:0::1;54027:21;::::0;;;:9:::1;:21;::::0;;;;;54052:2:::1;54027:27;54023:84;;;54063:37;54071:10;54083:16;54063:7;:37::i;:::-;53942:3:::0;::::1;::::0;::::1;:::i;:::-;;;;53916:196;;;-1:-1:-1::0;;51966:1:0;52918:7;:22;53734:382::o;33855:185::-;33993:39;34010:4;34016:2;34020:7;33993:39;;;;;;;;;;;;:16;:39::i;44937:233::-;45012:7;45048:30;44835:10;:17;44747:113;;45048:30;45040:5;:38;45032:95;;;;-1:-1:-1;;;45032:95:0;;14891:2:1;45032:95:0;;;14873:21:1;14930:2;14910:18;;;14903:30;14969:34;14949:18;;;14942:62;-1:-1:-1;;;15020:18:1;;;15013:42;15072:19;;45032:95:0;14863:234:1;45032:95:0;45145:10;45156:5;45145:17;;;;;;-1:-1:-1;;;45145:17:0;;;;;;;;;;;;;;;;;45138:24;;44937:233;;;:::o;30690:239::-;30762:7;30798:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30798:16:0;30833:19;30825:73;;;;-1:-1:-1;;;30825:73:0;;11082:2:1;30825:73:0;;;11064:21:1;11121:2;11101:18;;;11094:30;11160:34;11140:18;;;11133:62;-1:-1:-1;;;11211:18:1;;;11204:39;11260:19;;30825:73:0;11054:231:1;30420:208:0;30492:7;-1:-1:-1;;;;;30520:19:0;;30512:74;;;;-1:-1:-1;;;30512:74:0;;10671:2:1;30512:74:0;;;10653:21:1;10710:2;10690:18;;;10683:30;10749:34;10729:18;;;10722:62;-1:-1:-1;;;10800:18:1;;;10793:40;10850:19;;30512:74:0;10643:232:1;30512:74:0;-1:-1:-1;;;;;;30604:16:0;;;;;:9;:16;;;;;;;30420:208::o;2595:94::-;2017:6;;-1:-1:-1;;;;;2017:6:0;806:10;2164:23;2156:68;;;;-1:-1:-1;;;2156:68:0;;;;;;;:::i;:::-;2660:21:::1;2678:1;2660:9;:21::i;:::-;2595:94::o:0;54121:172::-;2017:6;;-1:-1:-1;;;;;2017:6:0;806:10;2164:23;2156:68;;;;-1:-1:-1;;;2156:68:0;;;;;;;:::i;:::-;54195:9:::1;54190:99;54208:9;:16;54206:1;:18;54190:99;;;54246:37;54254:9;54264:1;54254:12;;;;;;-1:-1:-1::0;;;54254:12:0::1;;;;;;;;;;;;;;;54268:14;54246:7;:37::i;:::-;54226:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54190:99;;;;54121:172:::0;:::o;31165:104::-;31221:13;31254:7;31247:14;;;;;:::i;32848:295::-;-1:-1:-1;;;;;32951:24:0;;806:10;32951:24;;32943:62;;;;-1:-1:-1;;;32943:62:0;;9479:2:1;32943:62:0;;;9461:21:1;9518:2;9498:18;;;9491:30;9557:27;9537:18;;;9530:55;9602:18;;32943:62:0;9451:175:1;32943:62:0;806:10;33018:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33018:42:0;;;;;;;;;;:53;;-1:-1:-1;;33018:53:0;;;;;;;:42;-1:-1:-1;;;;;33087:48:0;;33126:8;33087:48;;;;5992:14:1;5985:22;5967:41;;5955:2;5940:18;;5922:92;33087:48:0;;;;;;;;32848:295;;:::o;34111:328::-;34286:41;806:10;34319:7;34286:18;:41::i;:::-;34278:103;;;;-1:-1:-1;;;34278:103:0;;;;;;;:::i;:::-;34392:39;34406:4;34412:2;34416:7;34425:5;34392:13;:39::i;:::-;34111:328;;;;:::o;54848:405::-;54913:13;54959:1;54948:8;:12;:42;;;;;54976:14;;54964:8;:26;;54948:42;54947:114;;;;53210:1;55000:8;:31;:60;;;;;55047:13;;55035:8;:25;;55000:60;54947:181;;;;53254:2;55070:8;:30;:57;;;;;55116:11;;55104:8;:23;;55070:57;54939:218;;;;-1:-1:-1;;;54939:218:0;;11492:2:1;54939:218:0;;;11474:21:1;11531:2;11511:18;;;11504:30;-1:-1:-1;;;11550:18:1;;;11543:46;11606:18;;54939:218:0;11464:166:1;54939:218:0;55228:18;55237:8;55228;:18::i;:::-;55182:65;;;;;;;;:::i;:::-;;;;;;;;;;;;;55168:80;;54848:405;;;:::o;53629:100::-;2017:6;;-1:-1:-1;;;;;2017:6:0;806:10;2164:23;2156:68;;;;-1:-1:-1;;;2156:68:0;;;;;;;:::i;:::-;2017:6;;53676:48:::1;::::0;-1:-1:-1;;;;;2017:6:0;;;;53702:21:::1;53676:48:::0;::::1;;;::::0;::::1;::::0;;;53702:21;2017:6;53676:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53629:100::o:0;2844:192::-;2017:6;;-1:-1:-1;;;;;2017:6:0;806:10;2164:23;2156:68;;;;-1:-1:-1;;;2156:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2933:22:0;::::1;2925:73;;;::::0;-1:-1:-1;;;2925:73:0;;7965:2:1;2925:73:0::1;::::0;::::1;7947:21:1::0;8004:2;7984:18;;;7977:30;8043:34;8023:18;;;8016:62;-1:-1:-1;;;8094:18:1;;;8087:36;8140:19;;2925:73:0::1;7937:228:1::0;2925:73:0::1;3009:19;3019:8;3009:9;:19::i;30051:305::-:0;30153:4;-1:-1:-1;;;;;;30190:40:0;;-1:-1:-1;;;30190:40:0;;:105;;-1:-1:-1;;;;;;;30247:48:0;;-1:-1:-1;;;30247:48:0;30190:105;:158;;;-1:-1:-1;;;;;;;;;;28658:40:0;;;30312:36;28549:157;39931:174;40006:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40006:29:0;-1:-1:-1;;;;;40006:29:0;;;;;;;;:24;;40060:23;40006:24;40060:14;:23::i;:::-;-1:-1:-1;;;;;40051:46:0;;;;;;;;;;;39931:174;;:::o;36243:348::-;36336:4;36038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36038:16:0;36353:73;;;;-1:-1:-1;;;36353:73:0;;9833:2:1;36353:73:0;;;9815:21:1;9872:2;9852:18;;;9845:30;9911:34;9891:18;;;9884:62;-1:-1:-1;;;9962:18:1;;;9955:42;10014:19;;36353:73:0;9805:234:1;36353:73:0;36437:13;36453:23;36468:7;36453:14;:23::i;:::-;36437:39;;36506:5;-1:-1:-1;;;;;36495:16:0;:7;-1:-1:-1;;;;;36495:16:0;;:51;;;;36539:7;-1:-1:-1;;;;;36515:31:0;:20;36527:7;36515:11;:20::i;:::-;-1:-1:-1;;;;;36515:31:0;;36495:51;:87;;;-1:-1:-1;;;;;;33335:25:0;;;33311:4;33335:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36550:32;36487:96;36243:348;-1:-1:-1;;;;36243:348:0:o;39235:578::-;39394:4;-1:-1:-1;;;;;39367:31:0;:23;39382:7;39367:14;:23::i;:::-;-1:-1:-1;;;;;39367:31:0;;39359:85;;;;-1:-1:-1;;;39359:85:0;;13315:2:1;39359:85:0;;;13297:21:1;13354:2;13334:18;;;13327:30;13393:34;13373:18;;;13366:62;-1:-1:-1;;;13444:18:1;;;13437:39;13493:19;;39359:85:0;13287:231:1;39359:85:0;-1:-1:-1;;;;;39463:16:0;;39455:65;;;;-1:-1:-1;;;39455:65:0;;9074:2:1;39455:65:0;;;9056:21:1;9113:2;9093:18;;;9086:30;9152:34;9132:18;;;9125:62;-1:-1:-1;;;9203:18:1;;;9196:34;9247:19;;39455:65:0;9046:226:1;39455:65:0;39533:39;39554:4;39560:2;39564:7;39533:20;:39::i;:::-;39637:29;39654:1;39658:7;39637:8;:29::i;:::-;-1:-1:-1;;;;;39679:15:0;;;;;;:9;:15;;;;;:20;;39698:1;;39679:15;:20;;39698:1;;39679:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39710:13:0;;;;;;:9;:13;;;;;:18;;39727:1;;39710:13;:18;;39727:1;;39710:18;:::i;:::-;;;;-1:-1:-1;;39739:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39739:21:0;-1:-1:-1;;;;;39739:21:0;;;;;;;;;39778:27;;39739:16;;39778:27;;;;;;;39235:578;;;:::o;6762:98::-;6820:7;6847:5;6851:1;6847;:5;:::i;:::-;6840:12;6762:98;-1:-1:-1;;;6762:98:0:o;54298:545::-;54381:17;54367:10;:31;;;;;;-1:-1:-1;;;54367:31:0;;;;;;;;;;54363:476;;;53210:1;54414:14;;:38;;54406:68;;;;-1:-1:-1;;;54406:68:0;;6445:2:1;54406:68:0;;;6427:21:1;6484:2;6464:18;;;6457:30;-1:-1:-1;;;6503:18:1;;;6496:47;6560:18;;54406:68:0;6417:167:1;54406:68:0;54489:14;:16;;;:14;:16;;;:::i;:::-;;;;;;54511:26;54517:3;54522:14;;54511:5;:26::i;:::-;54363:476;;;54567:16;54553:10;:30;;;;;;-1:-1:-1;;;54553:30:0;;;;;;;;;;54549:290;;;53254:2;54599:13;;:36;;54591:65;;;;-1:-1:-1;;;54591:65:0;;8729:2:1;54591:65:0;;;8711:21:1;8768:2;8748:18;;;8741:30;-1:-1:-1;;;8787:18:1;;;8780:46;8843:18;;54591:65:0;8701:166:1;54591:65:0;54662:13;:15;;;:13;:15;;;:::i;:::-;;;;;;54683:25;54689:3;54694:13;;54683:5;:25::i;54549:290::-;53297:4;54734:11;;:32;;54726:59;;;;-1:-1:-1;;;54726:59:0;;12198:2:1;54726:59:0;;;12180:21:1;12237:2;12217:18;;;12210:30;-1:-1:-1;;;12256:18:1;;;12249:44;12310:18;;54726:59:0;12170:164:1;54726:59:0;54791:11;:13;;;:11;:13;;;:::i;:::-;;;;;;54810:23;54816:3;54821:11;;54810:5;:23::i;3044:173::-;3119:6;;;-1:-1:-1;;;;;3136:17:0;;;-1:-1:-1;;;;;;3136:17:0;;;;;;;3169:40;;3119:6;;;3136:17;3119:6;;3169:40;;3100:16;;3169:40;3044:173;;:::o;35321:315::-;35478:28;35488:4;35494:2;35498:7;35478:9;:28::i;:::-;35525:48;35548:4;35554:2;35558:7;35567:5;35525:22;:48::i;:::-;35517:111;;;;-1:-1:-1;;;35517:111:0;;;;;;;:::i;55258:415::-;55314:13;55338:10;55334:38;;-1:-1:-1;55356:10:0;;;;;;;;;;;;-1:-1:-1;;;55356:10:0;;;;;;55334:38;55391:5;55376:12;55420:54;55427:9;;55420:54;;55444:8;;;;:::i;:::-;;-1:-1:-1;55458:10:0;;-1:-1:-1;55466:2:0;55458:10;;:::i;:::-;;;55420:54;;;55478:19;55510:6;55500:17;;;;;;-1:-1:-1;;;55500:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55500:17:0;;55478:39;;55522:121;55529:10;;55522:121;;55547:11;55557:1;55547:11;;:::i;:::-;;-1:-1:-1;55607:10:0;55615:2;55607:5;:10;:::i;:::-;55594:24;;:2;:24;:::i;:::-;55581:39;;55564:6;55571;55564:14;;;;;;-1:-1:-1;;;55564:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;55564:56:0;;;;;;;;-1:-1:-1;55626:11:0;55635:2;55626:11;;:::i;:::-;;;55522:121;;45783:589;-1:-1:-1;;;;;45989:18:0;;45985:187;;46024:40;46056:7;47199:10;:17;;47172:24;;;;:15;:24;;;;;:44;;;47227:24;;;;;;;;;;;;47095:164;46024:40;45985:187;;;46094:2;-1:-1:-1;;;;;46086:10:0;:4;-1:-1:-1;;;;;46086:10:0;;46082:90;;46113:47;46146:4;46152:7;46113:32;:47::i;:::-;-1:-1:-1;;;;;46186:16:0;;46182:183;;46219:45;46256:7;46219:36;:45::i;:::-;46182:183;;;46292:4;-1:-1:-1;;;;;46286:10:0;:2;-1:-1:-1;;;;;46286:10:0;;46282:83;;46313:40;46341:2;46345:7;46313:27;:40::i;37927:382::-;-1:-1:-1;;;;;38007:16:0;;37999:61;;;;-1:-1:-1;;;37999:61:0;;11837:2:1;37999:61:0;;;11819:21:1;;;11856:18;;;11849:30;11915:34;11895:18;;;11888:62;11967:18;;37999:61:0;11809:182:1;37999:61:0;36014:4;36038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36038:16:0;:30;38071:58;;;;-1:-1:-1;;;38071:58:0;;8372:2:1;38071:58:0;;;8354:21:1;8411:2;8391:18;;;8384:30;8450;8430:18;;;8423:58;8498:18;;38071:58:0;8344:178:1;38071:58:0;38142:45;38171:1;38175:2;38179:7;38142:20;:45::i;:::-;-1:-1:-1;;;;;38200:13:0;;;;;;:9;:13;;;;;:18;;38217:1;;38200:13;:18;;38217:1;;38200:18;:::i;:::-;;;;-1:-1:-1;;38229:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38229:21:0;-1:-1:-1;;;;;38229:21:0;;;;;;;;38268:33;;38229:16;;;38268:33;;38229:16;;38268:33;37927:382;;:::o;40670:799::-;40825:4;-1:-1:-1;;;;;40846:13:0;;18659:20;18707:8;40842:620;;40882:72;;-1:-1:-1;;;40882:72:0;;-1:-1:-1;;;;;40882:36:0;;;;;:72;;806:10;;40933:4;;40939:7;;40948:5;;40882:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40882:72:0;;;;;;;;-1:-1:-1;;40882:72:0;;;;;;;;;;;;:::i;:::-;;;40878:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41124:13:0;;41120:272;;41167:60;;-1:-1:-1;;;41167:60:0;;;;;;;:::i;41120:272::-;41342:6;41336:13;41327:6;41323:2;41319:15;41312:38;40878:529;-1:-1:-1;;;;;;41005:51:0;-1:-1:-1;;;41005:51:0;;-1:-1:-1;40998:58:0;;40842:620;-1:-1:-1;41446:4:0;40670:799;;;;;;:::o;47886:988::-;48152:22;48202:1;48177:22;48194:4;48177:16;:22::i;:::-;:26;;;;:::i;:::-;48214:18;48235:26;;;:17;:26;;;;;;48152:51;;-1:-1:-1;48368:28:0;;;48364:328;;-1:-1:-1;;;;;48435:18:0;;48413:19;48435:18;;;:12;:18;;;;;;;;:34;;;;;;;;;48486:30;;;;;;:44;;;48603:30;;:17;:30;;;;;:43;;;48364:328;-1:-1:-1;48788:26:0;;;;:17;:26;;;;;;;;48781:33;;;-1:-1:-1;;;;;48832:18:0;;;;;:12;:18;;;;;:34;;;;;;;48825:41;47886:988::o;49169:1079::-;49447:10;:17;49422:22;;49447:21;;49467:1;;49447:21;:::i;:::-;49479:18;49500:24;;;:15;:24;;;;;;49873:10;:26;;49422:46;;-1:-1:-1;49500:24:0;;49422:46;;49873:26;;;;-1:-1:-1;;;49873:26:0;;;;;;;;;;;;;;;;;49851:48;;49937:11;49912:10;49923;49912:22;;;;;;-1:-1:-1;;;49912:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;50017:28;;;:15;:28;;;;;;;:41;;;50189:24;;;;;50182:31;50224:10;:16;;;;;-1:-1:-1;;;50224:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;49169:1079;;;;:::o;46673:221::-;46758:14;46775:20;46792:2;46775:16;:20::i;:::-;-1:-1:-1;;;;;46806:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;46851:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;46673:221:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;192:196;;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;;;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;;;;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:1025::-;;;;;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:2;1302:38;1336:2;1325:9;1321:18;1302:38;:::i;:::-;1292:48;;1387:2;1376:9;1372:18;1359:32;1349:42;;1442:2;1431:9;1427:18;1414:32;1465:18;1506:2;1498:6;1495:14;1492:2;;;1527:6;1519;1512:22;1492:2;1570:6;1559:9;1555:22;1545:32;;1615:7;1608:4;1604:2;1600:13;1596:27;1586:2;;1642:6;1634;1627:22;1586:2;1683;1670:16;1705:2;1701;1698:10;1695:2;;;1711:18;;:::i;:::-;1753:53;1796:2;1777:13;;-1:-1:-1;;1773:27:1;1769:36;;1753:53;:::i;:::-;1740:66;;1829:2;1822:5;1815:17;1869:7;1864:2;1859;1855;1851:11;1847:20;1844:33;1841:2;;;1895:6;1887;1880:22;1841:2;1955;1950;1946;1942:11;1937:2;1930:5;1926:14;1913:45;1978:14;;1974:23;;;1967:39;;;;1141:895;;;;-1:-1:-1;1141:895:1;;-1:-1:-1;;1141:895:1:o;2041:367::-;;;2167:2;2155:9;2146:7;2142:23;2138:32;2135:2;;;2188:6;2180;2173:22;2135:2;2216:29;2235:9;2216:29;:::i;:::-;2206:39;;2295:2;2284:9;2280:18;2267:32;2342:5;2335:13;2328:21;2321:5;2318:32;2308:2;;2369:6;2361;2354:22;2308:2;2397:5;2387:15;;;2125:283;;;;;:::o;2413:264::-;;;2542:2;2530:9;2521:7;2517:23;2513:32;2510:2;;;2563:6;2555;2548:22;2510:2;2591:29;2610:9;2591:29;:::i;:::-;2581:39;2667:2;2652:18;;;;2639:32;;-1:-1:-1;;;2500:177:1:o;2682:1009::-;;2797:2;2840;2828:9;2819:7;2815:23;2811:32;2808:2;;;2861:6;2853;2846:22;2808:2;2906:9;2893:23;2935:18;2976:2;2968:6;2965:14;2962:2;;;2997:6;2989;2982:22;2962:2;3040:6;3029:9;3025:22;3015:32;;3085:7;3078:4;3074:2;3070:13;3066:27;3056:2;;3112:6;3104;3097:22;3056:2;3153;3140:16;3175:2;3171;3168:10;3165:2;;;3181:18;;:::i;:::-;3228:2;3224;3220:11;3210:21;;3251:28;3275:2;3271;3267:11;3251:28;:::i;:::-;3313:15;;;3344:12;;;;3376:11;;;3406;;;3402:20;;3399:33;-1:-1:-1;3396:2:1;;;3450:6;3442;3435:22;3396:2;3477:6;3468:15;;3492:169;3506:2;3503:1;3500:9;3492:169;;;3563:23;3582:3;3563:23;:::i;:::-;3551:36;;3524:1;3517:9;;;;;3607:12;;;;3639;;3492:169;;;-1:-1:-1;3680:5:1;2777:914;-1:-1:-1;;;;;;;;2777:914:1:o;3696:255::-;;3807:2;3795:9;3786:7;3782:23;3778:32;3775:2;;;3828:6;3820;3813:22;3775:2;3872:9;3859:23;3891:30;3915:5;3891:30;:::i;3956:259::-;;4078:2;4066:9;4057:7;4053:23;4049:32;4046:2;;;4099:6;4091;4084:22;4046:2;4136:9;4130:16;4155:30;4179:5;4155:30;:::i;4220:190::-;;4332:2;4320:9;4311:7;4307:23;4303:32;4300:2;;;4353:6;4345;4338:22;4300:2;-1:-1:-1;4381:23:1;;4290:120;-1:-1:-1;4290:120:1:o;4415:257::-;;4494:5;4488:12;4521:6;4516:3;4509:19;4537:63;4593:6;4586:4;4581:3;4577:14;4570:4;4563:5;4559:16;4537:63;:::i;:::-;4654:2;4633:15;-1:-1:-1;;4629:29:1;4620:39;;;;4661:4;4616:50;;4464:208;-1:-1:-1;;4464:208:1:o;4677:444::-;;4939:27;4934:3;4927:40;4996:6;4990:13;5012:62;5067:6;5062:2;5057:3;5053:12;5046:4;5038:6;5034:17;5012:62;:::i;:::-;5094:16;;;;5112:2;5090:25;;4917:204;-1:-1:-1;;4917:204:1:o;5334:488::-;-1:-1:-1;;;;;5603:15:1;;;5585:34;;5655:15;;5650:2;5635:18;;5628:43;5702:2;5687:18;;5680:34;;;5750:3;5745:2;5730:18;;5723:31;;;5334:488;;5771:45;;5796:19;;5788:6;5771:45;:::i;:::-;5763:53;5537:285;-1:-1:-1;;;;;;5537:285:1:o;6019:219::-;;6168:2;6157:9;6150:21;6188:44;6228:2;6217:9;6213:18;6205:6;6188:44;:::i;7344:414::-;7546:2;7528:21;;;7585:2;7565:18;;;7558:30;7624:34;7619:2;7604:18;;7597:62;-1:-1:-1;;;7690:2:1;7675:18;;7668:48;7748:3;7733:19;;7518:240::o;12752:356::-;12954:2;12936:21;;;12973:18;;;12966:30;13032:34;13027:2;13012:18;;13005:62;13099:2;13084:18;;12926:182::o;14271:413::-;14473:2;14455:21;;;14512:2;14492:18;;;14485:30;14551:34;14546:2;14531:18;;14524:62;-1:-1:-1;;;14617:2:1;14602:18;;14595:47;14674:3;14659:19;;14445:239::o;15644:275::-;15715:2;15709:9;15780:2;15761:13;;-1:-1:-1;;15757:27:1;15745:40;;15815:18;15800:34;;15836:22;;;15797:62;15794:2;;;15862:18;;:::i;:::-;15898:2;15891:22;15689:230;;-1:-1:-1;15689:230:1:o;15924:128::-;;15995:1;15991:6;15988:1;15985:13;15982:2;;;16001:18;;:::i;:::-;-1:-1:-1;16037:9:1;;15972:80::o;16057:120::-;;16123:1;16113:2;;16128:18;;:::i;:::-;-1:-1:-1;16162:9:1;;16103:74::o;16182:168::-;;16288:1;16284;16280:6;16276:14;16273:1;16270:21;16265:1;16258:9;16251:17;16247:45;16244:2;;;16295:18;;:::i;:::-;-1:-1:-1;16335:9:1;;16234:116::o;16355:125::-;;16423:1;16420;16417:8;16414:2;;;16428:18;;:::i;:::-;-1:-1:-1;16465:9:1;;16404:76::o;16485:258::-;16557:1;16567:113;16581:6;16578:1;16575:13;16567:113;;;16657:11;;;16651:18;16638:11;;;16631:39;16603:2;16596:10;16567:113;;;16698:6;16695:1;16692:13;16689:2;;;-1:-1:-1;;16733:1:1;16715:16;;16708:27;16538:205::o;16748:380::-;16833:1;16823:12;;16880:1;16870:12;;;16891:2;;16945:4;16937:6;16933:17;16923:27;;16891:2;16998;16990:6;16987:14;16967:18;16964:38;16961:2;;;17044:10;17039:3;17035:20;17032:1;17025:31;17079:4;17076:1;17069:15;17107:4;17104:1;17097:15;16961:2;;16803:325;;;:::o;17133:135::-;;-1:-1:-1;;17193:17:1;;17190:2;;;17213:18;;:::i;:::-;-1:-1:-1;17260:1:1;17249:13;;17180:88::o;17273:112::-;;17331:1;17321:2;;17336:18;;:::i;:::-;-1:-1:-1;17370:9:1;;17311:74::o;17390:127::-;17451:10;17446:3;17442:20;17439:1;17432:31;17482:4;17479:1;17472:15;17506:4;17503:1;17496:15;17522:127;17583:10;17578:3;17574:20;17571:1;17564:31;17614:4;17611:1;17604:15;17638:4;17635:1;17628:15;17654:127;17715:10;17710:3;17706:20;17703:1;17696:31;17746:4;17743:1;17736:15;17770:4;17767:1;17760:15;17786:131;-1:-1:-1;;;;;;17860:32:1;;17850:43;;17840:2;;17907:1;17904;17897:12
Swarm Source
ipfs://8b10eb7251e5512f20624855d68c7ce743bd359d47642faf30460a5250b638bd
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.