Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 148 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Authorized Trans... | 20891594 | 170 days ago | IN | 0 ETH | 0.00041611 | ||||
Authorized Trans... | 20746541 | 191 days ago | IN | 0 ETH | 0.00010666 | ||||
Authorized Trans... | 20639867 | 206 days ago | IN | 0 ETH | 0.0003459 | ||||
Authorized Trans... | 20639662 | 206 days ago | IN | 0 ETH | 0.00014034 | ||||
Safe Transfer Fr... | 20631222 | 207 days ago | IN | 0 ETH | 0.00014905 | ||||
Safe Transfer Fr... | 19973338 | 299 days ago | IN | 0 ETH | 0.00113724 | ||||
Safe Transfer Fr... | 19973338 | 299 days ago | IN | 0 ETH | 0.00090216 | ||||
Safe Transfer Fr... | 19971400 | 299 days ago | IN | 0 ETH | 0.00085474 | ||||
Safe Transfer Fr... | 19930128 | 305 days ago | IN | 0 ETH | 0.00059831 | ||||
Safe Transfer Fr... | 19930128 | 305 days ago | IN | 0 ETH | 0.00059831 | ||||
Safe Transfer Fr... | 19930127 | 305 days ago | IN | 0 ETH | 0.00052626 | ||||
Safe Transfer Fr... | 19930006 | 305 days ago | IN | 0 ETH | 0.00051284 | ||||
Safe Transfer Fr... | 19930005 | 305 days ago | IN | 0 ETH | 0.00045108 | ||||
Safe Transfer Fr... | 19930005 | 305 days ago | IN | 0 ETH | 0.00051284 | ||||
Safe Transfer Fr... | 19930005 | 305 days ago | IN | 0 ETH | 0.00045108 | ||||
Safe Transfer Fr... | 19930005 | 305 days ago | IN | 0 ETH | 0.00059831 | ||||
Safe Transfer Fr... | 19930005 | 305 days ago | IN | 0 ETH | 0.00059831 | ||||
Safe Transfer Fr... | 19929995 | 305 days ago | IN | 0 ETH | 0.00051284 | ||||
Safe Transfer Fr... | 19929995 | 305 days ago | IN | 0 ETH | 0.00051284 | ||||
Safe Transfer Fr... | 19929995 | 305 days ago | IN | 0 ETH | 0.00051284 | ||||
Safe Transfer Fr... | 19339231 | 388 days ago | IN | 0 ETH | 0.0039464 | ||||
Safe Transfer Fr... | 18840625 | 458 days ago | IN | 0 ETH | 0.00375926 | ||||
Safe Transfer Fr... | 18840625 | 458 days ago | IN | 0 ETH | 0.00377078 | ||||
Safe Transfer Fr... | 18840625 | 458 days ago | IN | 0 ETH | 0.00367177 | ||||
Safe Transfer Fr... | 18840625 | 458 days ago | IN | 0 ETH | 0.00372132 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
FeralfileExhibitionV3
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-26 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: github/bitmark-inc/feralfile-exhibition-smart-contract/contracts/Authorizable.sol pragma solidity >=0.4.22 <0.9.0; contract Authorizable is Ownable { mapping(address => bool) public trustees; constructor() {} modifier onlyAuthorized() { require(trustees[msg.sender] || msg.sender == owner()); _; } function addTrustee(address _trustee) public onlyOwner { trustees[_trustee] = true; } function removeTrustee(address _trustee) public onlyOwner { delete trustees[_trustee]; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @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 _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; 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/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File: github/bitmark-inc/feralfile-exhibition-smart-contract/contracts/FeralfileArtworkV3.sol pragma solidity ^0.8.0; contract FeralfileExhibitionV3 is ERC721Enumerable, Authorizable, IERC2981 { using Strings for uint256; // royalty payout address address public royaltyPayoutAddress; // the basis points of royalty payments for each secondary sales uint256 public immutable secondarySaleRoyaltyBPS; // the maximum basis points of royalty payments uint256 public constant MAX_ROYALITY_BPS = 100_00; // version code of contract string public constant codeVersion = "FeralfileExhibitionV3"; // burnable bool public isBurnable; // bridgeable bool public isBridgeable; // token base URI string internal _tokenBaseURI; // contract URI string private _contractURI; /// @notice A structure for Feral File artwork struct Artwork { string title; string artistName; string fingerprint; uint256 editionSize; uint256 AEAmount; uint256 PPAmount; } struct ArtworkEdition { uint256 editionID; string ipfsCID; } struct TransferArtworkParam { address from; address to; uint256 tokenID; uint256 expireTime; bytes32 r_; bytes32 s_; uint8 v_; } struct MintArtworkParam { uint256 artworkID; uint256 edition; address artist; address owner; string ipfsCID; } struct ArtworkEditionIndex { uint256 artworkID; uint256 index; } uint256[] private _allArtworks; mapping(uint256 => Artwork) public artworks; // artworkID => Artwork mapping(uint256 => ArtworkEdition) public artworkEditions; // artworkEditionID => ArtworkEdition mapping(uint256 => uint256[]) internal allArtworkEditions; // artworkID => []ArtworkEditionID mapping(string => bool) internal registeredIPFSCIDs; // ipfsCID => bool mapping(uint256 => ArtworkEditionIndex) internal allArtworkEditionsIndex; // editionID => ArtworkEditionIndex constructor( string memory name_, string memory symbol_, uint256 secondarySaleRoyaltyBPS_, address royaltyPayoutAddress_, string memory contractURI_, string memory tokenBaseURI_, bool isBurnable_, bool isBridgeable_ ) ERC721(name_, symbol_) { require( secondarySaleRoyaltyBPS_ <= MAX_ROYALITY_BPS, "royalty BPS for secondary sales can not be greater than the maximum royalty BPS" ); require( royaltyPayoutAddress_ != address(0), "invalid royalty payout address" ); secondarySaleRoyaltyBPS = secondarySaleRoyaltyBPS_; royaltyPayoutAddress = royaltyPayoutAddress_; _contractURI = contractURI_; _tokenBaseURI = tokenBaseURI_; isBurnable = isBurnable_; isBridgeable = isBridgeable_; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, IERC165) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /// @notice Call to create an artwork in the exhibition /// @param fingerprint - the fingerprint of an artwork /// @param title - the title of an artwork /// @param artistName - the artist of an artwork /// @param editionSize - the maximum edition size of an artwork function _createArtwork( string memory fingerprint, string memory title, string memory artistName, uint256 editionSize, uint256 aeAmount, uint256 ppAmount ) internal returns (uint256) { require(bytes(title).length != 0, "title can not be empty"); require(bytes(artistName).length != 0, "artist can not be empty"); require(bytes(fingerprint).length != 0, "fingerprint can not be empty"); require(editionSize > 0, "edition size needs to be at least 1"); uint256 artworkID = uint256(keccak256(abi.encode(fingerprint))); /// @notice make sure the artwork have not been registered require( bytes(artworks[artworkID].fingerprint).length == 0, "an artwork with the same fingerprint has already registered" ); Artwork memory artwork = Artwork( title = title, artistName = artistName, fingerprint = fingerprint, editionSize = editionSize, aeAmount = aeAmount, ppAmount = ppAmount ); _allArtworks.push(artworkID); artworks[artworkID] = artwork; emit NewArtwork(artworkID); return artworkID; } /// @notice createArtworks use for create list of artworks in a transaction /// @param artworks_ - the array of artwork function createArtworks(Artwork[] memory artworks_) external onlyAuthorized { for (uint256 i = 0; i < artworks_.length; i++) { _createArtwork( artworks_[i].fingerprint, artworks_[i].title, artworks_[i].artistName, artworks_[i].editionSize, artworks_[i].AEAmount, artworks_[i].PPAmount ); } } /// @notice Return a count of artworks registered in this exhibition function totalArtworks() public view virtual returns (uint256) { return _allArtworks.length; } /// @notice Return the token identifier for the `index`th artwork function getArtworkByIndex(uint256 index) public view virtual returns (uint256) { require( index < totalArtworks(), "artworks: global index out of bounds" ); return _allArtworks[index]; } /// @notice Update the IPFS cid of an edition to a new value function updateArtworkEditionIPFSCid(uint256 tokenId, string memory ipfsCID) external onlyAuthorized { require(_exists(tokenId), "artwork edition is not found"); require(!registeredIPFSCIDs[ipfsCID], "ipfs id has registered"); ArtworkEdition storage edition = artworkEditions[tokenId]; delete registeredIPFSCIDs[edition.ipfsCID]; registeredIPFSCIDs[ipfsCID] = true; edition.ipfsCID = ipfsCID; } /// @notice setRoyaltyPayoutAddress assigns a payout address so // that we can split the royalty. /// @param royaltyPayoutAddress_ - the new royalty payout address function setRoyaltyPayoutAddress(address royaltyPayoutAddress_) external onlyAuthorized { require( royaltyPayoutAddress_ != address(0), "invalid royalty payout address" ); royaltyPayoutAddress = royaltyPayoutAddress_; } /// @notice Return the edition counts for an artwork function totalEditionOfArtwork(uint256 artworkID) public view returns (uint256) { return allArtworkEditions[artworkID].length; } /// @notice Return the edition id of an artwork by index function getArtworkEditionByIndex(uint256 artworkID, uint256 index) public view returns (uint256) { require(index < totalEditionOfArtwork(artworkID)); return allArtworkEditions[artworkID][index]; } /// @notice A distinct Uniform Resource Identifier (URI) for a given asset. function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _tokenBaseURI; if (bytes(baseURI).length == 0) { baseURI = "ipfs://"; } return string(abi.encodePacked(baseURI, artworkEditions[tokenId].ipfsCID)); } /// @notice Update the base URI for all tokens function setTokenBaseURI(string memory baseURI_) external onlyAuthorized { _tokenBaseURI = baseURI_; } /// @notice A URL for the opensea storefront-level metadata function contractURI() public view returns (string memory) { return _contractURI; } /// @notice Called with the sale price to determine how much royalty // is owed and to whom. /// @param tokenId - the NFT asset queried for royalty information /// @param salePrice - the sale price of the NFT asset specified by tokenId /// @return receiver - address of who should be sent the royalty payment /// @return royaltyAmount - the royalty payment amount for salePrice function royaltyInfo(uint256 tokenId, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) { require( _exists(tokenId), "ERC2981: query royalty info for nonexistent token" ); receiver = royaltyPayoutAddress; royaltyAmount = (salePrice * secondarySaleRoyaltyBPS) / MAX_ROYALITY_BPS; } /// @notice isValidRequest validates a message by ecrecover to ensure // it is signed by owner of token. /// @param message_ - the raw message for signing /// @param owner_ - owner address of token /// @param r_ - part of signature for validating parameters integrity /// @param s_ - part of signature for validating parameters integrity /// @param v_ - part of signature for validating parameters integrity function isValidRequest( bytes32 message_, address owner_, bytes32 r_, bytes32 s_, uint8 v_ ) internal pure returns (bool) { address signer = ECDSA.recover( ECDSA.toEthSignedMessageHash(message_), v_, r_, s_ ); return signer == owner_; } /// @notice authorizedTransfer use for transfer list of items in a transaction /// @param transferParams_ - the array of transfer parameters function authorizedTransfer(TransferArtworkParam[] memory transferParams_) external onlyAuthorized { for (uint256 i = 0; i < transferParams_.length; i++) { _authorizedTransfer(transferParams_[i]); } } function _authorizedTransfer(TransferArtworkParam memory transferParam_) private { require( _exists(transferParam_.tokenID), "ERC721: artwork edition is not found" ); require( _isApprovedOrOwner(transferParam_.from, transferParam_.tokenID), "ERC721: caller is not token owner nor approved" ); require( block.timestamp <= transferParam_.expireTime, "FeralfileExhibitionV3: the transfer request is expired" ); bytes32 requestHash = keccak256( abi.encode( transferParam_.from, transferParam_.to, transferParam_.tokenID, transferParam_.expireTime ) ); require( isValidRequest( requestHash, transferParam_.from, transferParam_.r_, transferParam_.s_, transferParam_.v_ ), "FeralfileExhibitionV3: the transfer request is not authorized" ); _safeTransfer( transferParam_.from, transferParam_.to, transferParam_.tokenID, "" ); } /// @notice batchMint is function mint array of tokens /// @param mintParams_ - the array of transfer parameters function batchMint(MintArtworkParam[] memory mintParams_) external onlyAuthorized { for (uint256 i = 0; i < mintParams_.length; i++) { _mintArtwork( mintParams_[i].artworkID, mintParams_[i].edition, mintParams_[i].artist, mintParams_[i].owner, mintParams_[i].ipfsCID ); } } /// @notice mint artwork to ERC721 /// @param artworkID_ - the artwork id where the new edition is referenced to /// @param editionNumber_ - the edition number of the artwork edition /// @param artist_ - the artist address of the new minted token /// @param owner_ - the owner address of the new minted token /// @param ipfsCID_ - the IPFS cid for the new token function _mintArtwork( uint256 artworkID_, uint256 editionNumber_, address artist_, address owner_, string memory ipfsCID_ ) private { /// @notice the edition size is not set implies the artwork is not created require( artworks[artworkID_].editionSize > 0, "FeralfileExhibitionV3: artwork is not found" ); /// @notice The range of editionNumber should be between 0 to artwork.editionSize + artwork.AEAmount + artwork.PPAmount - 1 require( editionNumber_ < artworks[artworkID_].editionSize + artworks[artworkID_].AEAmount + artworks[artworkID_].PPAmount, "FeralfileExhibitionV3: edition number exceed the edition size of the artwork" ); require(artist_ != address(0), "invalid artist address"); require(owner_ != address(0), "invalid owner address"); require(!registeredIPFSCIDs[ipfsCID_], "ipfs id has registered"); uint256 editionID = artworkID_ + editionNumber_; require( artworkEditions[editionID].editionID == 0, "FeralfileExhibitionV3: the edition is existent" ); ArtworkEdition memory edition = ArtworkEdition(editionID, ipfsCID_); artworkEditions[editionID] = edition; allArtworkEditions[artworkID_].push(editionID); allArtworkEditionsIndex[editionID] = ArtworkEditionIndex( artworkID_, allArtworkEditions[artworkID_].length - 1 ); registeredIPFSCIDs[ipfsCID_] = true; _safeMint(artist_, editionID); if (artist_ != owner_) { _safeTransfer(artist_, owner_, editionID, ""); } emit NewArtworkEdition(owner_, artworkID_, editionID); } /// @notice remove an edition from allArtworkEditions /// @param editionID - the edition id where we are going to remove from allArtworkEditions function _removeEditionFromAllArtworkEditions(uint256 editionID) private { ArtworkEditionIndex memory artworkEditionIndex = allArtworkEditionsIndex[editionID]; require( artworkEditionIndex.artworkID > 0, "FeralfileExhibitionV3: artworkID is no found for the artworkEditionIndex" ); uint256[] storage artworkEditions_ = allArtworkEditions[ artworkEditionIndex.artworkID ]; require( artworkEditions_.length > 0, "FeralfileExhibitionV3: no editions in this artwork of allArtworkEditions" ); uint256 lastEditionIndex = artworkEditions_.length - 1; uint256 lastEditionID = artworkEditions_[artworkEditions_.length - 1]; // Swap between the last token and the to-delete token and pop up the last token artworkEditions_[artworkEditionIndex.index] = lastEditionID; artworkEditions_[lastEditionIndex] = artworkEditionIndex.index; artworkEditions_.pop(); delete allArtworkEditionsIndex[editionID]; } /// @notice burn editions /// @param editionIDs_ - the list of edition id will be burned function burnEditions(uint256[] memory editionIDs_) public { require(isBurnable, "FeralfileExhibitionV3: not allow burn edition"); for (uint256 i = 0; i < editionIDs_.length; i++) { require( _exists(editionIDs_[i]), "ERC721: artwork edition is not found" ); require( _isApprovedOrOwner(_msgSender(), editionIDs_[i]), "ERC721: caller is not token owner nor approved" ); ArtworkEdition memory edition = artworkEditions[editionIDs_[i]]; delete registeredIPFSCIDs[edition.ipfsCID]; delete artworkEditions[editionIDs_[i]]; _removeEditionFromAllArtworkEditions(editionIDs_[i]); _burn(editionIDs_[i]); emit BurnArtworkEdition(editionIDs_[i]); } } event NewArtwork(uint256 indexed artworkID); event NewArtworkEdition( address indexed owner, uint256 indexed artworkID, uint256 indexed editionID ); event BurnArtworkEdition(uint256 indexed editionID); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"secondarySaleRoyaltyBPS_","type":"uint256"},{"internalType":"address","name":"royaltyPayoutAddress_","type":"address"},{"internalType":"string","name":"contractURI_","type":"string"},{"internalType":"string","name":"tokenBaseURI_","type":"string"},{"internalType":"bool","name":"isBurnable_","type":"bool"},{"internalType":"bool","name":"isBridgeable_","type":"bool"}],"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":"uint256","name":"editionID","type":"uint256"}],"name":"BurnArtworkEdition","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"artworkID","type":"uint256"}],"name":"NewArtwork","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"artworkID","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"editionID","type":"uint256"}],"name":"NewArtworkEdition","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ROYALITY_BPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_trustee","type":"address"}],"name":"addTrustee","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":"uint256","name":"","type":"uint256"}],"name":"artworkEditions","outputs":[{"internalType":"uint256","name":"editionID","type":"uint256"},{"internalType":"string","name":"ipfsCID","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"artworks","outputs":[{"internalType":"string","name":"title","type":"string"},{"internalType":"string","name":"artistName","type":"string"},{"internalType":"string","name":"fingerprint","type":"string"},{"internalType":"uint256","name":"editionSize","type":"uint256"},{"internalType":"uint256","name":"AEAmount","type":"uint256"},{"internalType":"uint256","name":"PPAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"uint256","name":"expireTime","type":"uint256"},{"internalType":"bytes32","name":"r_","type":"bytes32"},{"internalType":"bytes32","name":"s_","type":"bytes32"},{"internalType":"uint8","name":"v_","type":"uint8"}],"internalType":"struct FeralfileExhibitionV3.TransferArtworkParam[]","name":"transferParams_","type":"tuple[]"}],"name":"authorizedTransfer","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":[{"components":[{"internalType":"uint256","name":"artworkID","type":"uint256"},{"internalType":"uint256","name":"edition","type":"uint256"},{"internalType":"address","name":"artist","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"string","name":"ipfsCID","type":"string"}],"internalType":"struct FeralfileExhibitionV3.MintArtworkParam[]","name":"mintParams_","type":"tuple[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"editionIDs_","type":"uint256[]"}],"name":"burnEditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"codeVersion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"title","type":"string"},{"internalType":"string","name":"artistName","type":"string"},{"internalType":"string","name":"fingerprint","type":"string"},{"internalType":"uint256","name":"editionSize","type":"uint256"},{"internalType":"uint256","name":"AEAmount","type":"uint256"},{"internalType":"uint256","name":"PPAmount","type":"uint256"}],"internalType":"struct FeralfileExhibitionV3.Artwork[]","name":"artworks_","type":"tuple[]"}],"name":"createArtworks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getArtworkByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"artworkID","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getArtworkEditionByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBridgeable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_trustee","type":"address"}],"name":"removeTrustee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyPayoutAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"secondarySaleRoyaltyBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"royaltyPayoutAddress_","type":"address"}],"name":"setRoyaltyPayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setTokenBaseURI","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":"totalArtworks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"artworkID","type":"uint256"}],"name":"totalEditionOfArtwork","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"trustees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"ipfsCID","type":"string"}],"name":"updateArtworkEditionIPFSCid","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b50604051620045ba380380620045ba833981016040819052620000349162000324565b87876000620000448382620004ae565b506001620000538282620004ae565b505050620000706200006a620001db60201b60201c565b620001df565b612710861115620001065760405162461bcd60e51b815260206004820152604f60248201527f726f79616c74792042505320666f72207365636f6e646172792073616c65732060448201527f63616e206e6f742062652067726561746572207468616e20746865206d61786960648201526e6d756d20726f79616c74792042505360881b608482015260a4015b60405180910390fd5b6001600160a01b0385166200015e5760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420726f79616c7479207061796f7574206164647265737300006044820152606401620000fd565b6080869052600c80546001600160a01b0319166001600160a01b038716179055600e6200018c8582620004ae565b50600d6200019b8482620004ae565b50600c805461ffff60a01b1916600160a01b9315159390930260ff60a81b191692909217600160a81b91151591909102179055506200057a945050505050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200025957600080fd5b81516001600160401b038082111562000276576200027662000231565b604051601f8301601f19908116603f01168101908282118183101715620002a157620002a162000231565b81604052838152602092508683858801011115620002be57600080fd5b600091505b83821015620002e25785820183015181830184015290820190620002c3565b600093810190920192909252949350505050565b80516001600160a01b03811681146200030e57600080fd5b919050565b805180151581146200030e57600080fd5b600080600080600080600080610100898b0312156200034257600080fd5b88516001600160401b03808211156200035a57600080fd5b620003688c838d0162000247565b995060208b01519150808211156200037f57600080fd5b6200038d8c838d0162000247565b985060408b01519750620003a460608c01620002f6565b965060808b0151915080821115620003bb57600080fd5b620003c98c838d0162000247565b955060a08b0151915080821115620003e057600080fd5b50620003ef8b828c0162000247565b9350506200040060c08a0162000313565b91506200041060e08a0162000313565b90509295985092959890939650565b600181811c908216806200043457607f821691505b6020821081036200045557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004a957600081815260208120601f850160051c81016020861015620004845750805b601f850160051c820191505b81811015620004a55782815560010162000490565b5050505b505050565b81516001600160401b03811115620004ca57620004ca62000231565b620004e281620004db84546200041f565b846200045b565b602080601f8311600181146200051a5760008415620005015750858301515b600019600386901b1c1916600185901b178555620004a5565b600085815260208120601f198616915b828110156200054b578886015182559484019460019091019084016200052a565b50858210156200056a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805161401d6200059d600039600081816105bf0152610b92015261401d6000f3fe608060405234801561001057600080fd5b50600436106102695760003560e01c806370a0823111610151578063c87b56dd116100c3578063ea211d7c11610087578063ea211d7c146105ba578063ec9cbb44146105e1578063eee608a4146105ea578063f2fde38b1461060d578063fc05ea6814610620578063fe2a3bf31461063357600080fd5b8063c87b56dd14610548578063dc78ac1c1461055b578063e4a233e11461056e578063e8a3d48514610576578063e985e9c51461057e57600080fd5b80638ef79e91116101155780638ef79e91146104e157806395d89b41146104f45780639fbf39cd146104fc578063a22cb4651461050f578063b488370314610522578063b88d4fde1461053557600080fd5b806370a082311461048d578063715018a6146104a05780637ca5ea89146104a8578063883356d9146104bc5780638da5cb5b146104d057600080fd5b80632f745c59116101ea5780634b602673116101ae5780634b602673146103da5780634f6ccce7146103ff57806362fe2131146104125780636352211e1461043357806363e6023014610446578063641b18e91461047a57600080fd5b80632f745c591461037b5780633f6805ba1461038e57806342842e0e146103a157806343deaf76146103b457806345aeefde146103c757600080fd5b80630cfcb5f1116102315780630cfcb5f1146102fe57806312d907b91461031157806318160ddd1461032457806323b872dd146103365780632a55205a1461034957600080fd5b806301ffc9a71461026e578063031205061461029657806306fdde03146102ab578063081812fc146102c0578063095ea7b3146102eb575b600080fd5b61028161027c3660046132c7565b610653565b60405190151581526020015b60405180910390f35b6102a96102a4366004613307565b61067e565b005b6102b36106a7565b60405161028d9190613372565b6102d36102ce366004613385565b610739565b6040516001600160a01b03909116815260200161028d565b6102a96102f936600461339e565b610760565b6102a961030c3660046134f1565b61087a565b6102a961031f36600461355a565b6109e8565b6008545b60405190815260200161028d565b6102a961034436600461367b565b610ad9565b61035c6103573660046136b7565b610b0a565b604080516001600160a01b03909316835260208301919091520161028d565b61032861038936600461339e565b610bca565b600c546102d3906001600160a01b031681565b6102a96103af36600461367b565b610c60565b6102a96103c23660046136d9565b610c7b565b6102a96103d5366004613307565b610d87565b6103ed6103e8366004613385565b610e30565b60405161028d96959493929190613825565b61032861040d366004613385565b610ffc565b610425610420366004613385565b61108f565b60405161028d92919061387d565b6102d3610441366004613385565b611134565b6102b360405180604001604052806015815260200174466572616c66696c6545786869626974696f6e563360581b81525081565b6103286104883660046136b7565b611194565b61032861049b366004613307565b6111e1565b6102a9611267565b600c5461028190600160a81b900460ff1681565b600c5461028190600160a01b900460ff1681565b600a546001600160a01b03166102d3565b6102a96104ef366004613896565b61127b565b6102b36112b8565b6102a961050a3660046138ca565b6112c7565b6102a961051d3660046139cd565b611338565b610328610530366004613385565b611343565b6102a9610543366004613a09565b6113bb565b6102b3610556366004613385565b6113ed565b6102a9610569366004613307565b611553565b600f54610328565b6102b361157f565b61028161058c366004613a84565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103287f000000000000000000000000000000000000000000000000000000000000000081565b61032861271081565b6102816105f8366004613307565b600b6020526000908152604090205460ff1681565b6102a961061b366004613307565b61158e565b6102a961062e366004613aae565b611607565b610328610641366004613385565b60009081526012602052604090205490565b60006001600160e01b0319821663780e9d6360e01b14806106785750610678826118e9565b92915050565b61068661190e565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b6060600080546106b690613b3e565b80601f01602080910402602001604051908101604052809291908181526020018280546106e290613b3e565b801561072f5780601f106107045761010080835404028352916020019161072f565b820191906000526020600020905b81548152906001019060200180831161071257829003601f168201915b5050505050905090565b600061074482611968565b506000908152600460205260409020546001600160a01b031690565b600061076b82611134565b9050806001600160a01b0316836001600160a01b0316036107dd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107f957506107f9813361058c565b61086b5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016107d4565b61087583836119b8565b505050565b336000908152600b602052604090205460ff16806108a25750600a546001600160a01b031633145b6108ab57600080fd5b6108b482611a26565b6109005760405162461bcd60e51b815260206004820152601c60248201527f617274776f726b2065646974696f6e206973206e6f7420666f756e640000000060448201526064016107d4565b6013816040516109109190613b78565b9081526040519081900360200190205460ff16156109695760405162461bcd60e51b81526020600482015260166024820152751a5c199cc81a59081a185cc81c9959da5cdd195c995960521b60448201526064016107d4565b60008281526011602052604090819020905160139061098c906001840190613c07565b908152604051908190036020018120805460ff191690556001906013906109b4908590613b78565b908152604051908190036020019020805491151560ff19909216919091179055600181016109e28382613c61565b50505050565b336000908152600b602052604090205460ff1680610a105750600a546001600160a01b031633145b610a1957600080fd5b60005b8151811015610ad557610ac3828281518110610a3a57610a3a613d20565b602002602001015160000151838381518110610a5857610a58613d20565b602002602001015160200151848481518110610a7657610a76613d20565b602002602001015160400151858581518110610a9457610a94613d20565b602002602001015160600151868681518110610ab257610ab2613d20565b602002602001015160800151611a43565b80610acd81613d4c565b915050610a1c565b5050565b610ae33382611e4f565b610aff5760405162461bcd60e51b81526004016107d490613d65565b610875838383611ece565b600080610b1684611a26565b610b7c5760405162461bcd60e51b815260206004820152603160248201527f455243323938313a20717565727920726f79616c747920696e666f20666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016107d4565b600c546001600160a01b03169150612710610bb77f000000000000000000000000000000000000000000000000000000000000000085613db2565b610bc19190613dc9565b90509250929050565b6000610bd5836111e1565b8210610c375760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107d4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610875838383604051806020016040528060008152506113bb565b336000908152600b602052604090205460ff1680610ca35750600a546001600160a01b031633145b610cac57600080fd5b60005b8151811015610ad557610d74828281518110610ccd57610ccd613d20565b602002602001015160400151838381518110610ceb57610ceb613d20565b602002602001015160000151848481518110610d0957610d09613d20565b602002602001015160200151858581518110610d2757610d27613d20565b602002602001015160600151868681518110610d4557610d45613d20565b602002602001015160800151878781518110610d6357610d63613d20565b602002602001015160a0015161203f565b5080610d7f81613d4c565b915050610caf565b336000908152600b602052604090205460ff1680610daf5750600a546001600160a01b031633145b610db857600080fd5b6001600160a01b038116610e0e5760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420726f79616c7479207061796f75742061646472657373000060448201526064016107d4565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b601060205260009081526040902080548190610e4b90613b3e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7790613b3e565b8015610ec45780601f10610e9957610100808354040283529160200191610ec4565b820191906000526020600020905b815481529060010190602001808311610ea757829003601f168201915b505050505090806001018054610ed990613b3e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0590613b3e565b8015610f525780601f10610f2757610100808354040283529160200191610f52565b820191906000526020600020905b815481529060010190602001808311610f3557829003601f168201915b505050505090806002018054610f6790613b3e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9390613b3e565b8015610fe05780601f10610fb557610100808354040283529160200191610fe0565b820191906000526020600020905b815481529060010190602001808311610fc357829003601f168201915b5050505050908060030154908060040154908060050154905086565b600061100760085490565b821061106a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107d4565b6008828154811061107d5761107d613d20565b90600052602060002001549050919050565b601160205260009081526040902080546001820180549192916110b190613b3e565b80601f01602080910402602001604051908101604052809291908181526020018280546110dd90613b3e565b801561112a5780601f106110ff5761010080835404028352916020019161112a565b820191906000526020600020905b81548152906001019060200180831161110d57829003601f168201915b5050505050905082565b6000818152600260205260408120546001600160a01b0316806106785760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016107d4565b60008281526012602052604081205482106111ae57600080fd5b60008381526012602052604090208054839081106111ce576111ce613d20565b9060005260206000200154905092915050565b60006001600160a01b03821661124b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016107d4565b506001600160a01b031660009081526003602052604090205490565b61126f61190e565b6112796000612348565b565b336000908152600b602052604090205460ff16806112a35750600a546001600160a01b031633145b6112ac57600080fd5b600d610ad58282613c61565b6060600180546106b690613b3e565b336000908152600b602052604090205460ff16806112ef5750600a546001600160a01b031633145b6112f857600080fd5b60005b8151811015610ad55761132682828151811061131957611319613d20565b602002602001015161239a565b8061133081613d4c565b9150506112fb565b610ad533838361257f565b600061134e600f5490565b82106113a85760405162461bcd60e51b8152602060048201526024808201527f617274776f726b733a20676c6f62616c20696e646578206f7574206f6620626f604482015263756e647360e01b60648201526084016107d4565b600f828154811061107d5761107d613d20565b6113c53383611e4f565b6113e15760405162461bcd60e51b81526004016107d490613d65565b6109e28484848461264d565b60606113f882611a26565b61145c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107d4565b6000600d805461146b90613b3e565b80601f016020809104026020016040519081016040528092919081815260200182805461149790613b3e565b80156114e45780601f106114b9576101008083540402835291602001916114e4565b820191906000526020600020905b8154815290600101906020018083116114c757829003601f168201915b5050505050905080516000036115145750604080518082019091526007815266697066733a2f2f60c81b60208201525b806011600085815260200190815260200160002060010160405160200161153c929190613deb565b604051602081830303815290604052915050919050565b61155b61190e565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b6060600e80546106b690613b3e565b61159661190e565b6001600160a01b0381166115fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d4565b61160481612348565b50565b600c54600160a01b900460ff166116765760405162461bcd60e51b815260206004820152602d60248201527f466572616c66696c6545786869626974696f6e56333a206e6f7420616c6c6f7760448201526c10313ab9371032b234ba34b7b760991b60648201526084016107d4565b60005b8151811015610ad5576116a482828151811061169757611697613d20565b6020026020010151611a26565b6116c05760405162461bcd60e51b81526004016107d490613e12565b6116e3338383815181106116d6576116d6613d20565b6020026020010151611e4f565b6116ff5760405162461bcd60e51b81526004016107d490613e56565b60006011600084848151811061171757611717613d20565b602002602001015181526020019081526020016000206040518060400160405290816000820154815260200160018201805461175290613b3e565b80601f016020809104026020016040519081016040528092919081815260200182805461177e90613b3e565b80156117cb5780601f106117a0576101008083540402835291602001916117cb565b820191906000526020600020905b8154815290600101906020018083116117ae57829003601f168201915b5050505050815250509050601381602001516040516117ea9190613b78565b908152604051908190036020019020805460ff19169055825160119060009085908590811061181b5761181b613d20565b6020026020010151815260200190815260200160002060008082016000905560018201600061184a9190613263565b505061186e83838151811061186157611861613d20565b6020026020010151612680565b61189083838151811061188357611883613d20565b6020026020010151612899565b8282815181106118a2576118a2613d20565b60200260200101517fa5a44c7ed36966786612323ee2cb0cb453d4a9282b90c6befe72cde41d83f48860405160405180910390a250806118e181613d4c565b915050611679565b60006001600160e01b0319821663780e9d6360e01b148061067857506106788261293c565b600a546001600160a01b031633146112795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d4565b61197181611a26565b6116045760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016107d4565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119ed82611134565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000908152600260205260409020546001600160a01b0316151590565b600085815260106020526040902060030154611ab55760405162461bcd60e51b815260206004820152602b60248201527f466572616c66696c6545786869626974696f6e56333a20617274776f726b206960448201526a1cc81b9bdd08199bdd5b9960aa1b60648201526084016107d4565b6000858152601060205260409020600581015460048201546003909201549091611ade91613ea4565b611ae89190613ea4565b8410611b715760405162461bcd60e51b815260206004820152604c60248201527f466572616c66696c6545786869626974696f6e56333a2065646974696f6e206e60448201527f756d62657220657863656564207468652065646974696f6e2073697a65206f6660648201526b2074686520617274776f726b60a01b608482015260a4016107d4565b6001600160a01b038316611bc05760405162461bcd60e51b8152602060048201526016602482015275696e76616c696420617274697374206164647265737360501b60448201526064016107d4565b6001600160a01b038216611c0e5760405162461bcd60e51b8152602060048201526015602482015274696e76616c6964206f776e6572206164647265737360581b60448201526064016107d4565b601381604051611c1e9190613b78565b9081526040519081900360200190205460ff1615611c775760405162461bcd60e51b81526020600482015260166024820152751a5c199cc81a59081a185cc81c9959da5cdd195c995960521b60448201526064016107d4565b6000611c838587613ea4565b60008181526011602052604090205490915015611cf95760405162461bcd60e51b815260206004820152602e60248201527f466572616c66696c6545786869626974696f6e56333a2074686520656469746960448201526d1bdb881a5cc8195e1a5cdd195b9d60921b60648201526084016107d4565b604080518082018252828152602080820185815260008581526011909252929020815181559151909182916001820190611d339082613c61565b505050600087815260126020818152604080842080546001818101835582875284872090910188905582518084019093528c8352948c90529282529154919290830191611d809190613eb7565b90526000838152601460209081526040918290208351815592015160019283015551601390611db0908690613b78565b908152604051908190036020019020805491151560ff19909216919091179055611dda858361298c565b836001600160a01b0316856001600160a01b031614611e0e57611e0e8585846040518060200160405280600081525061264d565b8187856001600160a01b03167f4f21e8cd53f1df1da42ec94ba03f881c1185607b26e4dcb81941535157d73dd460405160405180910390a450505050505050565b600080611e5b83611134565b9050806001600160a01b0316846001600160a01b03161480611ea257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611ec65750836001600160a01b0316611ebb84610739565b6001600160a01b0316145b949350505050565b826001600160a01b0316611ee182611134565b6001600160a01b031614611f075760405162461bcd60e51b81526004016107d490613eca565b6001600160a01b038216611f695760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107d4565b611f7683838360016129a6565b826001600160a01b0316611f8982611134565b6001600160a01b031614611faf5760405162461bcd60e51b81526004016107d490613eca565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000855160000361208b5760405162461bcd60e51b81526020600482015260166024820152757469746c652063616e206e6f7420626520656d70747960501b60448201526064016107d4565b84516000036120dc5760405162461bcd60e51b815260206004820152601760248201527f6172746973742063616e206e6f7420626520656d70747900000000000000000060448201526064016107d4565b865160000361212d5760405162461bcd60e51b815260206004820152601c60248201527f66696e6765727072696e742063616e206e6f7420626520656d7074790000000060448201526064016107d4565b600084116121895760405162461bcd60e51b815260206004820152602360248201527f65646974696f6e2073697a65206e6565647320746f206265206174206c65617360448201526274203160e81b60648201526084016107d4565b60008760405160200161219c9190613372565b60408051601f1981840301815291815281516020928301206000818152601090935291206002018054919250906121d290613b3e565b1590506122475760405162461bcd60e51b815260206004820152603b60248201527f616e20617274776f726b2077697468207468652073616d652066696e6765727060448201527f72696e742068617320616c72656164792072656769737465726564000000000060648201526084016107d4565b6040805160c08101825288815260208082018990528183018b9052606082018890526080820187905260a08201869052600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802018490556000848152601090915291909120815182919081906122c69082613c61565b50602082015160018201906122db9082613c61565b50604082015160028201906122f09082613c61565b50606082015160038201556080820151600482015560a09091015160059091015560405182907f22350b25f1b72bb3621199a79abefeb4fcd77bb1e65638cd09350666e4db089190600090a250979650505050505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6123a78160400151611a26565b6123c35760405162461bcd60e51b81526004016107d490613e12565b6123d581600001518260400151611e4f565b6123f15760405162461bcd60e51b81526004016107d490613e56565b80606001514211156124645760405162461bcd60e51b815260206004820152603660248201527f466572616c66696c6545786869626974696f6e56333a20746865207472616e7360448201527519995c881c995c5d595cdd081a5cc8195e1c1a5c995960521b60648201526084016107d4565b600081600001518260200151836040015184606001516040516020016124b194939291906001600160a01b0394851681529290931660208301526040820152606081019190915260800190565b6040516020818303038152906040528051906020012090506124e681836000015184608001518560a001518660c00151612ae6565b6125585760405162461bcd60e51b815260206004820152603d60248201527f466572616c66696c6545786869626974696f6e56333a20746865207472616e7360448201527f6665722072657175657374206973206e6f7420617574686f72697a656400000060648201526084016107d4565b610ad58260000151836020015184604001516040518060200160405280600081525061264d565b816001600160a01b0316836001600160a01b0316036125e05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107d4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612658848484611ece565b61266484848484612b66565b6109e25760405162461bcd60e51b81526004016107d490613f0f565b600081815260146020908152604091829020825180840190935280548084526001909101549183019190915261272f5760405162461bcd60e51b815260206004820152604860248201527f466572616c66696c6545786869626974696f6e56333a20617274776f726b494460448201527f206973206e6f20666f756e6420666f722074686520617274776f726b456469746064820152670d2dedc92dcc8caf60c31b608482015260a4016107d4565b8051600090815260126020526040902080546127c45760405162461bcd60e51b815260206004820152604860248201527f466572616c66696c6545786869626974696f6e56333a206e6f2065646974696f60448201527f6e7320696e207468697320617274776f726b206f6620616c6c417274776f726b60648201526745646974696f6e7360c01b608482015260a4016107d4565b80546000906127d590600190613eb7565b9050600082600184805490506127eb9190613eb7565b815481106127fb576127fb613d20565b90600052602060002001549050808385602001518154811061281f5761281f613d20565b9060005260206000200181905550836020015183838154811061284457612844613d20565b90600052602060002001819055508280548061286257612862613f61565b6000828152602080822083016000199081018390559092019092559581526014909552505060408320838155600101929092555050565b60006128a482611134565b90506128b48160008460016129a6565b6128bd82611134565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160e01b031982166380ac58cd60e01b148061296d57506001600160e01b03198216635b5e139f60e01b145b8061067857506301ffc9a760e01b6001600160e01b0319831614610678565b610ad5828260405180602001604052806000815250612c67565b6129b284848484612c9a565b6001811115612a215760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016107d4565b816001600160a01b038516612a7d57612a7881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612aa0565b836001600160a01b0316856001600160a01b031614612aa057612aa08582612d22565b6001600160a01b038416612abc57612ab781612dbf565b612adf565b846001600160a01b0316846001600160a01b031614612adf57612adf8482612e6e565b5050505050565b600080612b4b612b43886040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b848787612eb2565b6001600160a01b039081169087161491505095945050505050565b60006001600160a01b0384163b15612c5c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612baa903390899088908890600401613f77565b6020604051808303816000875af1925050508015612be5575060408051601f3d908101601f19168201909252612be291810190613fb4565b60015b612c42573d808015612c13576040519150601f19603f3d011682016040523d82523d6000602084013e612c18565b606091505b508051600003612c3a5760405162461bcd60e51b81526004016107d490613f0f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ec6565b506001949350505050565b612c718383612eda565b612c7e6000848484612b66565b6108755760405162461bcd60e51b81526004016107d490613f0f565b60018111156109e2576001600160a01b03841615612ce0576001600160a01b03841660009081526003602052604081208054839290612cda908490613eb7565b90915550505b6001600160a01b038316156109e2576001600160a01b03831660009081526003602052604081208054839290612d17908490613ea4565b909155505050505050565b60006001612d2f846111e1565b612d399190613eb7565b600083815260076020526040902054909150808214612d8c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612dd190600190613eb7565b60008381526009602052604081205460088054939450909284908110612df957612df9613d20565b906000526020600020015490508060088381548110612e1a57612e1a613d20565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612e5257612e52613f61565b6001900381819060005260206000200160009055905550505050565b6000612e79836111e1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000806000612ec387878787613055565b91509150612ed081613119565b5095945050505050565b6001600160a01b038216612f305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107d4565b612f3981611a26565b15612f865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107d4565b612f946000838360016129a6565b612f9d81611a26565b15612fea5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107d4565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561308c5750600090506003613110565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156130e0573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661310957600060019250925050613110565b9150600090505b94509492505050565b600081600481111561312d5761312d613fd1565b036131355750565b600181600481111561314957613149613fd1565b036131965760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016107d4565b60028160048111156131aa576131aa613fd1565b036131f75760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016107d4565b600381600481111561320b5761320b613fd1565b036116045760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016107d4565b50805461326f90613b3e565b6000825580601f1061327f575050565b601f01602090049060005260206000209081019061160491905b808211156132ad5760008155600101613299565b5090565b6001600160e01b03198116811461160457600080fd5b6000602082840312156132d957600080fd5b81356132e4816132b1565b9392505050565b80356001600160a01b038116811461330257600080fd5b919050565b60006020828403121561331957600080fd5b6132e4826132eb565b60005b8381101561333d578181015183820152602001613325565b50506000910152565b6000815180845261335e816020860160208601613322565b601f01601f19169290920160200192915050565b6020815260006132e46020830184613346565b60006020828403121561339757600080fd5b5035919050565b600080604083850312156133b157600080fd5b6133ba836132eb565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60405160a081016001600160401b0381118282101715613400576134006133c8565b60405290565b60405160c081016001600160401b0381118282101715613400576134006133c8565b60405160e081016001600160401b0381118282101715613400576134006133c8565b604051601f8201601f191681016001600160401b0381118282101715613472576134726133c8565b604052919050565b60006001600160401b03831115613493576134936133c8565b6134a6601f8401601f191660200161344a565b90508281528383830111156134ba57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126134e257600080fd5b6132e48383356020850161347a565b6000806040838503121561350457600080fd5b8235915060208301356001600160401b0381111561352157600080fd5b61352d858286016134d1565b9150509250929050565b60006001600160401b03821115613550576135506133c8565b5060051b60200190565b6000602080838503121561356d57600080fd5b82356001600160401b038082111561358457600080fd5b818501915085601f83011261359857600080fd5b81356135ab6135a682613537565b61344a565b81815260059190911b830184019084810190888311156135ca57600080fd5b8585015b8381101561366e578035858111156135e65760008081fd5b860160a0818c03601f19018113156135fe5760008081fd5b6136066133de565b8983013581526040808401358b83015260606136238186016132eb565b82840152608091506136368286016132eb565b9083015291830135918883111561364d5760008081fd5b61365b8e8c858701016134d1565b90820152855250509186019186016135ce565b5098975050505050505050565b60008060006060848603121561369057600080fd5b613699846132eb565b92506136a7602085016132eb565b9150604084013590509250925092565b600080604083850312156136ca57600080fd5b50508035926020909101359150565b600060208083850312156136ec57600080fd5b82356001600160401b038082111561370357600080fd5b818501915085601f83011261371757600080fd5b81356137256135a682613537565b81815260059190911b8301840190848101908883111561374457600080fd5b8585015b8381101561366e5780358581111561375f57600080fd5b860160c0818c03601f190112156137765760008081fd5b61377e613406565b88820135878111156137905760008081fd5b61379e8d8b838601016134d1565b825250604080830135888111156137b55760008081fd5b6137c38e8c838701016134d1565b8b84015250606080840135898111156137dc5760008081fd5b6137ea8f8d838801016134d1565b83850152506080915081840135818401525060a0808401358284015260c0840135818401525050808552505086830192508681019050613748565b60c08152600061383860c0830189613346565b828103602084015261384a8189613346565b9050828103604084015261385e8188613346565b60608401969096525050608081019290925260a0909101529392505050565b828152604060208201526000611ec66040830184613346565b6000602082840312156138a857600080fd5b81356001600160401b038111156138be57600080fd5b611ec6848285016134d1565b600060208083850312156138dd57600080fd5b82356001600160401b038111156138f357600080fd5b8301601f8101851361390457600080fd5b80356139126135a682613537565b81815260e0918202830184019184820191908884111561393157600080fd5b938501935b838510156139c15780858a03121561394e5760008081fd5b613956613428565b61395f866132eb565b815261396c8787016132eb565b8188015260408681013590820152606080870135908201526080808701359082015260a0808701359082015260c08087013560ff811681146139ae5760008081fd5b9082015283529384019391850191613936565b50979650505050505050565b600080604083850312156139e057600080fd5b6139e9836132eb565b9150602083013580151581146139fe57600080fd5b809150509250929050565b60008060008060808587031215613a1f57600080fd5b613a28856132eb565b9350613a36602086016132eb565b92506040850135915060608501356001600160401b03811115613a5857600080fd5b8501601f81018713613a6957600080fd5b613a788782356020840161347a565b91505092959194509250565b60008060408385031215613a9757600080fd5b613aa0836132eb565b9150610bc1602084016132eb565b60006020808385031215613ac157600080fd5b82356001600160401b03811115613ad757600080fd5b8301601f81018513613ae857600080fd5b8035613af66135a682613537565b81815260059190911b82018301908381019087831115613b1557600080fd5b928401925b82841015613b3357833582529284019290840190613b1a565b979650505050505050565b600181811c90821680613b5257607f821691505b602082108103613b7257634e487b7160e01b600052602260045260246000fd5b50919050565b60008251613b8a818460208701613322565b9190910192915050565b60008154613ba181613b3e565b60018281168015613bb95760018114613bce57613bfd565b60ff1984168752821515830287019450613bfd565b8560005260208060002060005b85811015613bf45781548a820152908401908201613bdb565b50505082870194505b5050505092915050565b60006132e48284613b94565b601f82111561087557600081815260208120601f850160051c81016020861015613c3a5750805b601f850160051c820191505b81811015613c5957828155600101613c46565b505050505050565b81516001600160401b03811115613c7a57613c7a6133c8565b613c8e81613c888454613b3e565b84613c13565b602080601f831160018114613cc35760008415613cab5750858301515b600019600386901b1c1916600185901b178555613c59565b600085815260208120601f198616915b82811015613cf257888601518255948401946001909101908401613cd3565b5085821015613d105787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201613d5e57613d5e613d36565b5060010190565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b808202811582820484141761067857610678613d36565b600082613de657634e487b7160e01b600052601260045260246000fd5b500490565b60008351613dfd818460208801613322565b613e0981840185613b94565b95945050505050565b60208082526024908201527f4552433732313a20617274776f726b2065646974696f6e206973206e6f7420666040820152631bdd5b9960e21b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b8082018082111561067857610678613d36565b8181038181111561067857610678613d36565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613faa90830184613346565b9695505050505050565b600060208284031215613fc657600080fd5b81516132e4816132b1565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220e05317e5c8db403094f65f29cbc4fb627e7719208d0c4e18c764580459ef475d64736f6c634300081100330000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000005dc000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd100000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000033466572616c2046696c6520e280942049204b4e4f5720e28093204f6e2074686520616573746865746963206f662074727574680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054646303236000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f516d6155436e3653336371695a6e366a577671423242316d5334796a537938487569664538557a5a5145684337450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f0000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102695760003560e01c806370a0823111610151578063c87b56dd116100c3578063ea211d7c11610087578063ea211d7c146105ba578063ec9cbb44146105e1578063eee608a4146105ea578063f2fde38b1461060d578063fc05ea6814610620578063fe2a3bf31461063357600080fd5b8063c87b56dd14610548578063dc78ac1c1461055b578063e4a233e11461056e578063e8a3d48514610576578063e985e9c51461057e57600080fd5b80638ef79e91116101155780638ef79e91146104e157806395d89b41146104f45780639fbf39cd146104fc578063a22cb4651461050f578063b488370314610522578063b88d4fde1461053557600080fd5b806370a082311461048d578063715018a6146104a05780637ca5ea89146104a8578063883356d9146104bc5780638da5cb5b146104d057600080fd5b80632f745c59116101ea5780634b602673116101ae5780634b602673146103da5780634f6ccce7146103ff57806362fe2131146104125780636352211e1461043357806363e6023014610446578063641b18e91461047a57600080fd5b80632f745c591461037b5780633f6805ba1461038e57806342842e0e146103a157806343deaf76146103b457806345aeefde146103c757600080fd5b80630cfcb5f1116102315780630cfcb5f1146102fe57806312d907b91461031157806318160ddd1461032457806323b872dd146103365780632a55205a1461034957600080fd5b806301ffc9a71461026e578063031205061461029657806306fdde03146102ab578063081812fc146102c0578063095ea7b3146102eb575b600080fd5b61028161027c3660046132c7565b610653565b60405190151581526020015b60405180910390f35b6102a96102a4366004613307565b61067e565b005b6102b36106a7565b60405161028d9190613372565b6102d36102ce366004613385565b610739565b6040516001600160a01b03909116815260200161028d565b6102a96102f936600461339e565b610760565b6102a961030c3660046134f1565b61087a565b6102a961031f36600461355a565b6109e8565b6008545b60405190815260200161028d565b6102a961034436600461367b565b610ad9565b61035c6103573660046136b7565b610b0a565b604080516001600160a01b03909316835260208301919091520161028d565b61032861038936600461339e565b610bca565b600c546102d3906001600160a01b031681565b6102a96103af36600461367b565b610c60565b6102a96103c23660046136d9565b610c7b565b6102a96103d5366004613307565b610d87565b6103ed6103e8366004613385565b610e30565b60405161028d96959493929190613825565b61032861040d366004613385565b610ffc565b610425610420366004613385565b61108f565b60405161028d92919061387d565b6102d3610441366004613385565b611134565b6102b360405180604001604052806015815260200174466572616c66696c6545786869626974696f6e563360581b81525081565b6103286104883660046136b7565b611194565b61032861049b366004613307565b6111e1565b6102a9611267565b600c5461028190600160a81b900460ff1681565b600c5461028190600160a01b900460ff1681565b600a546001600160a01b03166102d3565b6102a96104ef366004613896565b61127b565b6102b36112b8565b6102a961050a3660046138ca565b6112c7565b6102a961051d3660046139cd565b611338565b610328610530366004613385565b611343565b6102a9610543366004613a09565b6113bb565b6102b3610556366004613385565b6113ed565b6102a9610569366004613307565b611553565b600f54610328565b6102b361157f565b61028161058c366004613a84565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103287f00000000000000000000000000000000000000000000000000000000000005dc81565b61032861271081565b6102816105f8366004613307565b600b6020526000908152604090205460ff1681565b6102a961061b366004613307565b61158e565b6102a961062e366004613aae565b611607565b610328610641366004613385565b60009081526012602052604090205490565b60006001600160e01b0319821663780e9d6360e01b14806106785750610678826118e9565b92915050565b61068661190e565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b6060600080546106b690613b3e565b80601f01602080910402602001604051908101604052809291908181526020018280546106e290613b3e565b801561072f5780601f106107045761010080835404028352916020019161072f565b820191906000526020600020905b81548152906001019060200180831161071257829003601f168201915b5050505050905090565b600061074482611968565b506000908152600460205260409020546001600160a01b031690565b600061076b82611134565b9050806001600160a01b0316836001600160a01b0316036107dd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107f957506107f9813361058c565b61086b5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016107d4565b61087583836119b8565b505050565b336000908152600b602052604090205460ff16806108a25750600a546001600160a01b031633145b6108ab57600080fd5b6108b482611a26565b6109005760405162461bcd60e51b815260206004820152601c60248201527f617274776f726b2065646974696f6e206973206e6f7420666f756e640000000060448201526064016107d4565b6013816040516109109190613b78565b9081526040519081900360200190205460ff16156109695760405162461bcd60e51b81526020600482015260166024820152751a5c199cc81a59081a185cc81c9959da5cdd195c995960521b60448201526064016107d4565b60008281526011602052604090819020905160139061098c906001840190613c07565b908152604051908190036020018120805460ff191690556001906013906109b4908590613b78565b908152604051908190036020019020805491151560ff19909216919091179055600181016109e28382613c61565b50505050565b336000908152600b602052604090205460ff1680610a105750600a546001600160a01b031633145b610a1957600080fd5b60005b8151811015610ad557610ac3828281518110610a3a57610a3a613d20565b602002602001015160000151838381518110610a5857610a58613d20565b602002602001015160200151848481518110610a7657610a76613d20565b602002602001015160400151858581518110610a9457610a94613d20565b602002602001015160600151868681518110610ab257610ab2613d20565b602002602001015160800151611a43565b80610acd81613d4c565b915050610a1c565b5050565b610ae33382611e4f565b610aff5760405162461bcd60e51b81526004016107d490613d65565b610875838383611ece565b600080610b1684611a26565b610b7c5760405162461bcd60e51b815260206004820152603160248201527f455243323938313a20717565727920726f79616c747920696e666f20666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016107d4565b600c546001600160a01b03169150612710610bb77f00000000000000000000000000000000000000000000000000000000000005dc85613db2565b610bc19190613dc9565b90509250929050565b6000610bd5836111e1565b8210610c375760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107d4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610875838383604051806020016040528060008152506113bb565b336000908152600b602052604090205460ff1680610ca35750600a546001600160a01b031633145b610cac57600080fd5b60005b8151811015610ad557610d74828281518110610ccd57610ccd613d20565b602002602001015160400151838381518110610ceb57610ceb613d20565b602002602001015160000151848481518110610d0957610d09613d20565b602002602001015160200151858581518110610d2757610d27613d20565b602002602001015160600151868681518110610d4557610d45613d20565b602002602001015160800151878781518110610d6357610d63613d20565b602002602001015160a0015161203f565b5080610d7f81613d4c565b915050610caf565b336000908152600b602052604090205460ff1680610daf5750600a546001600160a01b031633145b610db857600080fd5b6001600160a01b038116610e0e5760405162461bcd60e51b815260206004820152601e60248201527f696e76616c696420726f79616c7479207061796f75742061646472657373000060448201526064016107d4565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b601060205260009081526040902080548190610e4b90613b3e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7790613b3e565b8015610ec45780601f10610e9957610100808354040283529160200191610ec4565b820191906000526020600020905b815481529060010190602001808311610ea757829003601f168201915b505050505090806001018054610ed990613b3e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0590613b3e565b8015610f525780601f10610f2757610100808354040283529160200191610f52565b820191906000526020600020905b815481529060010190602001808311610f3557829003601f168201915b505050505090806002018054610f6790613b3e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9390613b3e565b8015610fe05780601f10610fb557610100808354040283529160200191610fe0565b820191906000526020600020905b815481529060010190602001808311610fc357829003601f168201915b5050505050908060030154908060040154908060050154905086565b600061100760085490565b821061106a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107d4565b6008828154811061107d5761107d613d20565b90600052602060002001549050919050565b601160205260009081526040902080546001820180549192916110b190613b3e565b80601f01602080910402602001604051908101604052809291908181526020018280546110dd90613b3e565b801561112a5780601f106110ff5761010080835404028352916020019161112a565b820191906000526020600020905b81548152906001019060200180831161110d57829003601f168201915b5050505050905082565b6000818152600260205260408120546001600160a01b0316806106785760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016107d4565b60008281526012602052604081205482106111ae57600080fd5b60008381526012602052604090208054839081106111ce576111ce613d20565b9060005260206000200154905092915050565b60006001600160a01b03821661124b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016107d4565b506001600160a01b031660009081526003602052604090205490565b61126f61190e565b6112796000612348565b565b336000908152600b602052604090205460ff16806112a35750600a546001600160a01b031633145b6112ac57600080fd5b600d610ad58282613c61565b6060600180546106b690613b3e565b336000908152600b602052604090205460ff16806112ef5750600a546001600160a01b031633145b6112f857600080fd5b60005b8151811015610ad55761132682828151811061131957611319613d20565b602002602001015161239a565b8061133081613d4c565b9150506112fb565b610ad533838361257f565b600061134e600f5490565b82106113a85760405162461bcd60e51b8152602060048201526024808201527f617274776f726b733a20676c6f62616c20696e646578206f7574206f6620626f604482015263756e647360e01b60648201526084016107d4565b600f828154811061107d5761107d613d20565b6113c53383611e4f565b6113e15760405162461bcd60e51b81526004016107d490613d65565b6109e28484848461264d565b60606113f882611a26565b61145c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107d4565b6000600d805461146b90613b3e565b80601f016020809104026020016040519081016040528092919081815260200182805461149790613b3e565b80156114e45780601f106114b9576101008083540402835291602001916114e4565b820191906000526020600020905b8154815290600101906020018083116114c757829003601f168201915b5050505050905080516000036115145750604080518082019091526007815266697066733a2f2f60c81b60208201525b806011600085815260200190815260200160002060010160405160200161153c929190613deb565b604051602081830303815290604052915050919050565b61155b61190e565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b6060600e80546106b690613b3e565b61159661190e565b6001600160a01b0381166115fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d4565b61160481612348565b50565b600c54600160a01b900460ff166116765760405162461bcd60e51b815260206004820152602d60248201527f466572616c66696c6545786869626974696f6e56333a206e6f7420616c6c6f7760448201526c10313ab9371032b234ba34b7b760991b60648201526084016107d4565b60005b8151811015610ad5576116a482828151811061169757611697613d20565b6020026020010151611a26565b6116c05760405162461bcd60e51b81526004016107d490613e12565b6116e3338383815181106116d6576116d6613d20565b6020026020010151611e4f565b6116ff5760405162461bcd60e51b81526004016107d490613e56565b60006011600084848151811061171757611717613d20565b602002602001015181526020019081526020016000206040518060400160405290816000820154815260200160018201805461175290613b3e565b80601f016020809104026020016040519081016040528092919081815260200182805461177e90613b3e565b80156117cb5780601f106117a0576101008083540402835291602001916117cb565b820191906000526020600020905b8154815290600101906020018083116117ae57829003601f168201915b5050505050815250509050601381602001516040516117ea9190613b78565b908152604051908190036020019020805460ff19169055825160119060009085908590811061181b5761181b613d20565b6020026020010151815260200190815260200160002060008082016000905560018201600061184a9190613263565b505061186e83838151811061186157611861613d20565b6020026020010151612680565b61189083838151811061188357611883613d20565b6020026020010151612899565b8282815181106118a2576118a2613d20565b60200260200101517fa5a44c7ed36966786612323ee2cb0cb453d4a9282b90c6befe72cde41d83f48860405160405180910390a250806118e181613d4c565b915050611679565b60006001600160e01b0319821663780e9d6360e01b148061067857506106788261293c565b600a546001600160a01b031633146112795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d4565b61197181611a26565b6116045760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016107d4565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119ed82611134565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000908152600260205260409020546001600160a01b0316151590565b600085815260106020526040902060030154611ab55760405162461bcd60e51b815260206004820152602b60248201527f466572616c66696c6545786869626974696f6e56333a20617274776f726b206960448201526a1cc81b9bdd08199bdd5b9960aa1b60648201526084016107d4565b6000858152601060205260409020600581015460048201546003909201549091611ade91613ea4565b611ae89190613ea4565b8410611b715760405162461bcd60e51b815260206004820152604c60248201527f466572616c66696c6545786869626974696f6e56333a2065646974696f6e206e60448201527f756d62657220657863656564207468652065646974696f6e2073697a65206f6660648201526b2074686520617274776f726b60a01b608482015260a4016107d4565b6001600160a01b038316611bc05760405162461bcd60e51b8152602060048201526016602482015275696e76616c696420617274697374206164647265737360501b60448201526064016107d4565b6001600160a01b038216611c0e5760405162461bcd60e51b8152602060048201526015602482015274696e76616c6964206f776e6572206164647265737360581b60448201526064016107d4565b601381604051611c1e9190613b78565b9081526040519081900360200190205460ff1615611c775760405162461bcd60e51b81526020600482015260166024820152751a5c199cc81a59081a185cc81c9959da5cdd195c995960521b60448201526064016107d4565b6000611c838587613ea4565b60008181526011602052604090205490915015611cf95760405162461bcd60e51b815260206004820152602e60248201527f466572616c66696c6545786869626974696f6e56333a2074686520656469746960448201526d1bdb881a5cc8195e1a5cdd195b9d60921b60648201526084016107d4565b604080518082018252828152602080820185815260008581526011909252929020815181559151909182916001820190611d339082613c61565b505050600087815260126020818152604080842080546001818101835582875284872090910188905582518084019093528c8352948c90529282529154919290830191611d809190613eb7565b90526000838152601460209081526040918290208351815592015160019283015551601390611db0908690613b78565b908152604051908190036020019020805491151560ff19909216919091179055611dda858361298c565b836001600160a01b0316856001600160a01b031614611e0e57611e0e8585846040518060200160405280600081525061264d565b8187856001600160a01b03167f4f21e8cd53f1df1da42ec94ba03f881c1185607b26e4dcb81941535157d73dd460405160405180910390a450505050505050565b600080611e5b83611134565b9050806001600160a01b0316846001600160a01b03161480611ea257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611ec65750836001600160a01b0316611ebb84610739565b6001600160a01b0316145b949350505050565b826001600160a01b0316611ee182611134565b6001600160a01b031614611f075760405162461bcd60e51b81526004016107d490613eca565b6001600160a01b038216611f695760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107d4565b611f7683838360016129a6565b826001600160a01b0316611f8982611134565b6001600160a01b031614611faf5760405162461bcd60e51b81526004016107d490613eca565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000855160000361208b5760405162461bcd60e51b81526020600482015260166024820152757469746c652063616e206e6f7420626520656d70747960501b60448201526064016107d4565b84516000036120dc5760405162461bcd60e51b815260206004820152601760248201527f6172746973742063616e206e6f7420626520656d70747900000000000000000060448201526064016107d4565b865160000361212d5760405162461bcd60e51b815260206004820152601c60248201527f66696e6765727072696e742063616e206e6f7420626520656d7074790000000060448201526064016107d4565b600084116121895760405162461bcd60e51b815260206004820152602360248201527f65646974696f6e2073697a65206e6565647320746f206265206174206c65617360448201526274203160e81b60648201526084016107d4565b60008760405160200161219c9190613372565b60408051601f1981840301815291815281516020928301206000818152601090935291206002018054919250906121d290613b3e565b1590506122475760405162461bcd60e51b815260206004820152603b60248201527f616e20617274776f726b2077697468207468652073616d652066696e6765727060448201527f72696e742068617320616c72656164792072656769737465726564000000000060648201526084016107d4565b6040805160c08101825288815260208082018990528183018b9052606082018890526080820187905260a08201869052600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802018490556000848152601090915291909120815182919081906122c69082613c61565b50602082015160018201906122db9082613c61565b50604082015160028201906122f09082613c61565b50606082015160038201556080820151600482015560a09091015160059091015560405182907f22350b25f1b72bb3621199a79abefeb4fcd77bb1e65638cd09350666e4db089190600090a250979650505050505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6123a78160400151611a26565b6123c35760405162461bcd60e51b81526004016107d490613e12565b6123d581600001518260400151611e4f565b6123f15760405162461bcd60e51b81526004016107d490613e56565b80606001514211156124645760405162461bcd60e51b815260206004820152603660248201527f466572616c66696c6545786869626974696f6e56333a20746865207472616e7360448201527519995c881c995c5d595cdd081a5cc8195e1c1a5c995960521b60648201526084016107d4565b600081600001518260200151836040015184606001516040516020016124b194939291906001600160a01b0394851681529290931660208301526040820152606081019190915260800190565b6040516020818303038152906040528051906020012090506124e681836000015184608001518560a001518660c00151612ae6565b6125585760405162461bcd60e51b815260206004820152603d60248201527f466572616c66696c6545786869626974696f6e56333a20746865207472616e7360448201527f6665722072657175657374206973206e6f7420617574686f72697a656400000060648201526084016107d4565b610ad58260000151836020015184604001516040518060200160405280600081525061264d565b816001600160a01b0316836001600160a01b0316036125e05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107d4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612658848484611ece565b61266484848484612b66565b6109e25760405162461bcd60e51b81526004016107d490613f0f565b600081815260146020908152604091829020825180840190935280548084526001909101549183019190915261272f5760405162461bcd60e51b815260206004820152604860248201527f466572616c66696c6545786869626974696f6e56333a20617274776f726b494460448201527f206973206e6f20666f756e6420666f722074686520617274776f726b456469746064820152670d2dedc92dcc8caf60c31b608482015260a4016107d4565b8051600090815260126020526040902080546127c45760405162461bcd60e51b815260206004820152604860248201527f466572616c66696c6545786869626974696f6e56333a206e6f2065646974696f60448201527f6e7320696e207468697320617274776f726b206f6620616c6c417274776f726b60648201526745646974696f6e7360c01b608482015260a4016107d4565b80546000906127d590600190613eb7565b9050600082600184805490506127eb9190613eb7565b815481106127fb576127fb613d20565b90600052602060002001549050808385602001518154811061281f5761281f613d20565b9060005260206000200181905550836020015183838154811061284457612844613d20565b90600052602060002001819055508280548061286257612862613f61565b6000828152602080822083016000199081018390559092019092559581526014909552505060408320838155600101929092555050565b60006128a482611134565b90506128b48160008460016129a6565b6128bd82611134565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001600160e01b031982166380ac58cd60e01b148061296d57506001600160e01b03198216635b5e139f60e01b145b8061067857506301ffc9a760e01b6001600160e01b0319831614610678565b610ad5828260405180602001604052806000815250612c67565b6129b284848484612c9a565b6001811115612a215760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016107d4565b816001600160a01b038516612a7d57612a7881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612aa0565b836001600160a01b0316856001600160a01b031614612aa057612aa08582612d22565b6001600160a01b038416612abc57612ab781612dbf565b612adf565b846001600160a01b0316846001600160a01b031614612adf57612adf8482612e6e565b5050505050565b600080612b4b612b43886040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b848787612eb2565b6001600160a01b039081169087161491505095945050505050565b60006001600160a01b0384163b15612c5c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612baa903390899088908890600401613f77565b6020604051808303816000875af1925050508015612be5575060408051601f3d908101601f19168201909252612be291810190613fb4565b60015b612c42573d808015612c13576040519150601f19603f3d011682016040523d82523d6000602084013e612c18565b606091505b508051600003612c3a5760405162461bcd60e51b81526004016107d490613f0f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ec6565b506001949350505050565b612c718383612eda565b612c7e6000848484612b66565b6108755760405162461bcd60e51b81526004016107d490613f0f565b60018111156109e2576001600160a01b03841615612ce0576001600160a01b03841660009081526003602052604081208054839290612cda908490613eb7565b90915550505b6001600160a01b038316156109e2576001600160a01b03831660009081526003602052604081208054839290612d17908490613ea4565b909155505050505050565b60006001612d2f846111e1565b612d399190613eb7565b600083815260076020526040902054909150808214612d8c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612dd190600190613eb7565b60008381526009602052604081205460088054939450909284908110612df957612df9613d20565b906000526020600020015490508060088381548110612e1a57612e1a613d20565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612e5257612e52613f61565b6001900381819060005260206000200160009055905550505050565b6000612e79836111e1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000806000612ec387878787613055565b91509150612ed081613119565b5095945050505050565b6001600160a01b038216612f305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107d4565b612f3981611a26565b15612f865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107d4565b612f946000838360016129a6565b612f9d81611a26565b15612fea5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107d4565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561308c5750600090506003613110565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156130e0573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661310957600060019250925050613110565b9150600090505b94509492505050565b600081600481111561312d5761312d613fd1565b036131355750565b600181600481111561314957613149613fd1565b036131965760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016107d4565b60028160048111156131aa576131aa613fd1565b036131f75760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016107d4565b600381600481111561320b5761320b613fd1565b036116045760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016107d4565b50805461326f90613b3e565b6000825580601f1061327f575050565b601f01602090049060005260206000209081019061160491905b808211156132ad5760008155600101613299565b5090565b6001600160e01b03198116811461160457600080fd5b6000602082840312156132d957600080fd5b81356132e4816132b1565b9392505050565b80356001600160a01b038116811461330257600080fd5b919050565b60006020828403121561331957600080fd5b6132e4826132eb565b60005b8381101561333d578181015183820152602001613325565b50506000910152565b6000815180845261335e816020860160208601613322565b601f01601f19169290920160200192915050565b6020815260006132e46020830184613346565b60006020828403121561339757600080fd5b5035919050565b600080604083850312156133b157600080fd5b6133ba836132eb565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60405160a081016001600160401b0381118282101715613400576134006133c8565b60405290565b60405160c081016001600160401b0381118282101715613400576134006133c8565b60405160e081016001600160401b0381118282101715613400576134006133c8565b604051601f8201601f191681016001600160401b0381118282101715613472576134726133c8565b604052919050565b60006001600160401b03831115613493576134936133c8565b6134a6601f8401601f191660200161344a565b90508281528383830111156134ba57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126134e257600080fd5b6132e48383356020850161347a565b6000806040838503121561350457600080fd5b8235915060208301356001600160401b0381111561352157600080fd5b61352d858286016134d1565b9150509250929050565b60006001600160401b03821115613550576135506133c8565b5060051b60200190565b6000602080838503121561356d57600080fd5b82356001600160401b038082111561358457600080fd5b818501915085601f83011261359857600080fd5b81356135ab6135a682613537565b61344a565b81815260059190911b830184019084810190888311156135ca57600080fd5b8585015b8381101561366e578035858111156135e65760008081fd5b860160a0818c03601f19018113156135fe5760008081fd5b6136066133de565b8983013581526040808401358b83015260606136238186016132eb565b82840152608091506136368286016132eb565b9083015291830135918883111561364d5760008081fd5b61365b8e8c858701016134d1565b90820152855250509186019186016135ce565b5098975050505050505050565b60008060006060848603121561369057600080fd5b613699846132eb565b92506136a7602085016132eb565b9150604084013590509250925092565b600080604083850312156136ca57600080fd5b50508035926020909101359150565b600060208083850312156136ec57600080fd5b82356001600160401b038082111561370357600080fd5b818501915085601f83011261371757600080fd5b81356137256135a682613537565b81815260059190911b8301840190848101908883111561374457600080fd5b8585015b8381101561366e5780358581111561375f57600080fd5b860160c0818c03601f190112156137765760008081fd5b61377e613406565b88820135878111156137905760008081fd5b61379e8d8b838601016134d1565b825250604080830135888111156137b55760008081fd5b6137c38e8c838701016134d1565b8b84015250606080840135898111156137dc5760008081fd5b6137ea8f8d838801016134d1565b83850152506080915081840135818401525060a0808401358284015260c0840135818401525050808552505086830192508681019050613748565b60c08152600061383860c0830189613346565b828103602084015261384a8189613346565b9050828103604084015261385e8188613346565b60608401969096525050608081019290925260a0909101529392505050565b828152604060208201526000611ec66040830184613346565b6000602082840312156138a857600080fd5b81356001600160401b038111156138be57600080fd5b611ec6848285016134d1565b600060208083850312156138dd57600080fd5b82356001600160401b038111156138f357600080fd5b8301601f8101851361390457600080fd5b80356139126135a682613537565b81815260e0918202830184019184820191908884111561393157600080fd5b938501935b838510156139c15780858a03121561394e5760008081fd5b613956613428565b61395f866132eb565b815261396c8787016132eb565b8188015260408681013590820152606080870135908201526080808701359082015260a0808701359082015260c08087013560ff811681146139ae5760008081fd5b9082015283529384019391850191613936565b50979650505050505050565b600080604083850312156139e057600080fd5b6139e9836132eb565b9150602083013580151581146139fe57600080fd5b809150509250929050565b60008060008060808587031215613a1f57600080fd5b613a28856132eb565b9350613a36602086016132eb565b92506040850135915060608501356001600160401b03811115613a5857600080fd5b8501601f81018713613a6957600080fd5b613a788782356020840161347a565b91505092959194509250565b60008060408385031215613a9757600080fd5b613aa0836132eb565b9150610bc1602084016132eb565b60006020808385031215613ac157600080fd5b82356001600160401b03811115613ad757600080fd5b8301601f81018513613ae857600080fd5b8035613af66135a682613537565b81815260059190911b82018301908381019087831115613b1557600080fd5b928401925b82841015613b3357833582529284019290840190613b1a565b979650505050505050565b600181811c90821680613b5257607f821691505b602082108103613b7257634e487b7160e01b600052602260045260246000fd5b50919050565b60008251613b8a818460208701613322565b9190910192915050565b60008154613ba181613b3e565b60018281168015613bb95760018114613bce57613bfd565b60ff1984168752821515830287019450613bfd565b8560005260208060002060005b85811015613bf45781548a820152908401908201613bdb565b50505082870194505b5050505092915050565b60006132e48284613b94565b601f82111561087557600081815260208120601f850160051c81016020861015613c3a5750805b601f850160051c820191505b81811015613c5957828155600101613c46565b505050505050565b81516001600160401b03811115613c7a57613c7a6133c8565b613c8e81613c888454613b3e565b84613c13565b602080601f831160018114613cc35760008415613cab5750858301515b600019600386901b1c1916600185901b178555613c59565b600085815260208120601f198616915b82811015613cf257888601518255948401946001909101908401613cd3565b5085821015613d105787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201613d5e57613d5e613d36565b5060010190565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b808202811582820484141761067857610678613d36565b600082613de657634e487b7160e01b600052601260045260246000fd5b500490565b60008351613dfd818460208801613322565b613e0981840185613b94565b95945050505050565b60208082526024908201527f4552433732313a20617274776f726b2065646974696f6e206973206e6f7420666040820152631bdd5b9960e21b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b8082018082111561067857610678613d36565b8181038181111561067857610678613d36565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613faa90830184613346565b9695505050505050565b600060208284031215613fc657600080fd5b81516132e4816132b1565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220e05317e5c8db403094f65f29cbc4fb627e7719208d0c4e18c764580459ef475d64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000005dc000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd100000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000033466572616c2046696c6520e280942049204b4e4f5720e28093204f6e2074686520616573746865746963206f662074727574680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054646303236000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f516d6155436e3653336371695a6e366a577671423242316d5334796a537938487569664538557a5a5145684337450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f0000
-----Decoded View---------------
Arg [0] : name_ (string): Feral File — I KNOW – On the aesthetic of truth
Arg [1] : symbol_ (string): FF026
Arg [2] : secondarySaleRoyaltyBPS_ (uint256): 1500
Arg [3] : royaltyPayoutAddress_ (address): 0x080FEB125bA730D6D12789B6AAAB01f4E31D8Bd1
Arg [4] : contractURI_ (string): https://ipfs.bitmark.com/ipfs/QmaUCn6S3cqiZn6jWvqB2B1mS4yjSy8HuifE8UzZQEhC7E
Arg [5] : tokenBaseURI_ (string): https://ipfs.bitmark.com/ipfs/
Arg [6] : isBurnable_ (bool): False
Arg [7] : isBridgeable_ (bool): True
-----Encoded View---------------
19 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 00000000000000000000000000000000000000000000000000000000000005dc
Arg [3] : 000000000000000000000000080feb125ba730d6d12789b6aaab01f4e31d8bd1
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000033
Arg [9] : 466572616c2046696c6520e280942049204b4e4f5720e28093204f6e20746865
Arg [10] : 20616573746865746963206f6620747275746800000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [12] : 4646303236000000000000000000000000000000000000000000000000000000
Arg [13] : 000000000000000000000000000000000000000000000000000000000000004c
Arg [14] : 68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f516d
Arg [15] : 6155436e3653336371695a6e366a577671423242316d5334796a537938487569
Arg [16] : 664538557a5a5145684337450000000000000000000000000000000000000000
Arg [17] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [18] : 68747470733a2f2f697066732e6269746d61726b2e636f6d2f697066732f0000
Deployed Bytecode Sourcemap
72805:17383:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75779:310;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;75779:310:0;;;;;;;;4066:102;;;;;;:::i;:::-;;:::i;:::-;;42032:100;;;:::i;:::-;;;;;;;:::i;43544:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2066:32:1;;;2048:51;;2036:2;2021:18;43544:171:0;1902:203:1;43062:416:0;;;;;;:::i;:::-;;:::i;78909:478::-;;;;;;:::i;:::-;;:::i;84965:430::-;;;;;;:::i;:::-;;:::i;58610:113::-;58698:10;:17;58610:113;;;6925:25:1;;;6913:2;6898:18;58610:113:0;6779:177:1;44244:335:0;;;;;;:::i;:::-;;:::i;81813:460::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;7739:32:1;;;7721:51;;7803:2;7788:18;;7781:34;;;;7694:18;81813:460:0;7547:274:1;58278:256:0;;;;;;:::i;:::-;;:::i;72952:35::-;;;;;-1:-1:-1;;;;;72952:35:0;;;44650:185;;;;;;:::i;:::-;;:::i;77815:465::-;;;;;;:::i;:::-;;:::i;79583:300::-;;;;;;:::i;:::-;;:::i;74396:43::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;:::i;58800:233::-;;;;;;:::i;:::-;;:::i;74470:57::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;41742:223::-;;;;;;:::i;:::-;;:::i;73267:60::-;;;;;;;;;;;;;;;-1:-1:-1;;;73267:60:0;;;;;80193:252;;;;;;:::i;:::-;;:::i;41473:207::-;;;;;;:::i;:::-;;:::i;2776:103::-;;;:::i;73403:24::-;;;;;-1:-1:-1;;;73403:24:0;;;;;;73353:22;;;;;-1:-1:-1;;;73353:22:0;;;;;;2128:87;2201:6;;-1:-1:-1;;;;;2201:6:0;2128:87;;81102:116;;;;;;:::i;:::-;;:::i;42201:104::-;;;:::i;83263:259::-;;;;;;:::i;:::-;;:::i;43787:155::-;;;;;;:::i;:::-;;:::i;78549:286::-;;;;;;:::i;:::-;;:::i;44906:322::-;;;;;;:::i;:::-;;:::i;80534:508::-;;;;;;:::i;:::-;;:::i;3959:99::-;;;;;;:::i;:::-;;:::i;78362:108::-;78443:12;:19;78362:108;;81291:97;;;:::i;44013:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;44134:25:0;;;44110:4;44134:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44013:164;73066:48;;;;;73176:49;;73219:6;73176:49;;3767:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;3034:201;;;;;;:::i;:::-;;:::i;89055:879::-;;;;;;:::i;:::-;;:::i;79949:174::-;;;;;;:::i;:::-;80047:7;80079:29;;;:18;:29;;;;;:36;;79949:174;75779:310;75936:4;-1:-1:-1;;;;;;75978:50:0;;-1:-1:-1;;;75978:50:0;;:103;;;76045:36;76069:11;76045:23;:36::i;:::-;75958:123;75779:310;-1:-1:-1;;75779:310:0:o;4066:102::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;4142:18:0::1;;::::0;;;:8:::1;:18;::::0;;;;4135:25;;-1:-1:-1;;4135:25:0::1;::::0;;4066:102::o;42032:100::-;42086:13;42119:5;42112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42032:100;:::o;43544:171::-;43620:7;43640:23;43655:7;43640:14;:23::i;:::-;-1:-1:-1;43683:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43683:24:0;;43544:171::o;43062:416::-;43143:13;43159:23;43174:7;43159:14;:23::i;:::-;43143:39;;43207:5;-1:-1:-1;;;;;43201:11:0;:2;-1:-1:-1;;;;;43201:11:0;;43193:57;;;;-1:-1:-1;;;43193:57:0;;16257:2:1;43193:57:0;;;16239:21:1;16296:2;16276:18;;;16269:30;16335:34;16315:18;;;16308:62;-1:-1:-1;;;16386:18:1;;;16379:31;16427:19;;43193:57:0;;;;;;;;;759:10;-1:-1:-1;;;;;43285:21:0;;;;:62;;-1:-1:-1;43310:37:0;43327:5;759:10;44013:164;:::i;43310:37::-;43263:173;;;;-1:-1:-1;;;43263:173:0;;16659:2:1;43263:173:0;;;16641:21:1;16698:2;16678:18;;;16671:30;16737:34;16717:18;;;16710:62;16808:31;16788:18;;;16781:59;16857:19;;43263:173:0;16457:425:1;43263:173:0;43449:21;43458:2;43462:7;43449:8;:21::i;:::-;43132:346;43062:416;;:::o;78909:478::-;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;2201:6:0;3909:10;:21;3885:45;3877:54;;;;;;79052:16:::1;79060:7;79052;:16::i;:::-;79044:57;;;::::0;-1:-1:-1;;;79044:57:0;;17089:2:1;79044:57:0::1;::::0;::::1;17071:21:1::0;17128:2;17108:18;;;17101:30;17167;17147:18;;;17140:58;17215:18;;79044:57:0::1;16887:352:1::0;79044:57:0::1;79121:18;79140:7;79121:27;;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;;::::1;;79120:28;79112:63;;;::::0;-1:-1:-1;;;79112:63:0;;17740:2:1;79112:63:0::1;::::0;::::1;17722:21:1::0;17779:2;17759:18;;;17752:30;-1:-1:-1;;;17798:18:1;;;17791:52;17860:18;;79112:63:0::1;17538:346:1::0;79112:63:0::1;79188:30;79221:24:::0;;;:15:::1;:24;::::0;;;;;;79263:35;;:18:::1;::::0;:35:::1;::::0;79282:15:::1;::::0;::::1;::::0;79263:35:::1;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;79256:42;;-1:-1:-1;;79256:42:0::1;::::0;;;;79309:18:::1;::::0;:27:::1;::::0;79328:7;;79309:27:::1;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:34;;;::::1;;-1:-1:-1::0;;79309:34:0;;::::1;::::0;;;::::1;::::0;;;79354:15;::::1;:25;79372:7:::0;79354:15;:25:::1;:::i;:::-;;79033:354;78909:478:::0;;:::o;84965:430::-;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;2201:6:0;3909:10;:21;3885:45;3877:54;;;;;;85086:9:::1;85081:307;85105:11;:18;85101:1;:22;85081:307;;;85145:231;85176:11;85188:1;85176:14;;;;;;;;:::i;:::-;;;;;;;:24;;;85219:11;85231:1;85219:14;;;;;;;;:::i;:::-;;;;;;;:22;;;85260:11;85272:1;85260:14;;;;;;;;:::i;:::-;;;;;;;:21;;;85300:11;85312:1;85300:14;;;;;;;;:::i;:::-;;;;;;;:20;;;85339:11;85351:1;85339:14;;;;;;;;:::i;:::-;;;;;;;:22;;;85145:12;:231::i;:::-;85125:3:::0;::::1;::::0;::::1;:::i;:::-;;;;85081:307;;;;84965:430:::0;:::o;44244:335::-;44439:41;759:10;44472:7;44439:18;:41::i;:::-;44431:99;;;;-1:-1:-1;;;44431:99:0;;;;;;;:::i;:::-;44543:28;44553:4;44559:2;44563:7;44543:9;:28::i;81813:460::-;81938:16;81956:21;82017:16;82025:7;82017;:16::i;:::-;81995:115;;;;-1:-1:-1;;;81995:115:0;;22042:2:1;81995:115:0;;;22024:21:1;22081:2;22061:18;;;22054:30;22120:34;22100:18;;;22093:62;-1:-1:-1;;;22171:18:1;;;22164:47;22228:19;;81995:115:0;21840:413:1;81995:115:0;82134:20;;-1:-1:-1;;;;;82134:20:0;;-1:-1:-1;73219:6:0;82197:35;82209:23;82197:9;:35;:::i;:::-;82196:69;;;;:::i;:::-;82167:98;;81813:460;;;;;:::o;58278:256::-;58375:7;58411:23;58428:5;58411:16;:23::i;:::-;58403:5;:31;58395:87;;;;-1:-1:-1;;;58395:87:0;;22855:2:1;58395:87:0;;;22837:21:1;22894:2;22874:18;;;22867:30;22933:34;22913:18;;;22906:62;-1:-1:-1;;;22984:18:1;;;22977:41;23035:19;;58395:87:0;22653:407:1;58395:87:0;-1:-1:-1;;;;;;58500:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;58278:256::o;44650:185::-;44788:39;44805:4;44811:2;44815:7;44788:39;;;;;;;;;;;;:16;:39::i;77815:465::-;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;2201:6:0;3909:10;:21;3885:45;3877:54;;;;;;77930:9:::1;77925:348;77949:9;:16;77945:1;:20;77925:348;;;77987:274;78020:9;78030:1;78020:12;;;;;;;;:::i;:::-;;;;;;;:24;;;78063:9;78073:1;78063:12;;;;;;;;:::i;:::-;;;;;;;:18;;;78100:9;78110:1;78100:12;;;;;;;;:::i;:::-;;;;;;;:23;;;78142:9;78152:1;78142:12;;;;;;;;:::i;:::-;;;;;;;:24;;;78185:9;78195:1;78185:12;;;;;;;;:::i;:::-;;;;;;;:21;;;78225:9;78235:1;78225:12;;;;;;;;:::i;:::-;;;;;;;:21;;;77987:14;:274::i;:::-;-1:-1:-1::0;77967:3:0;::::1;::::0;::::1;:::i;:::-;;;;77925:348;;79583:300:::0;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;2201:6:0;3909:10;:21;3885:45;3877:54;;;;;;-1:-1:-1;;;;;79727:35:0;::::1;79705:115;;;::::0;-1:-1:-1;;;79705:115:0;;23267:2:1;79705:115:0::1;::::0;::::1;23249:21:1::0;23306:2;23286:18;;;23279:30;23345:32;23325:18;;;23318:60;23395:18;;79705:115:0::1;23065:354:1::0;79705:115:0::1;79831:20;:44:::0;;-1:-1:-1;;;;;;79831:44:0::1;-1:-1:-1::0;;;;;79831:44:0;;;::::1;::::0;;;::::1;::::0;;79583:300::o;74396:43::-;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58800:233::-;58875:7;58911:30;58698:10;:17;;58610:113;58911:30;58903:5;:38;58895:95;;;;-1:-1:-1;;;58895:95:0;;23626:2:1;58895:95:0;;;23608:21:1;23665:2;23645:18;;;23638:30;23704:34;23684:18;;;23677:62;-1:-1:-1;;;23755:18:1;;;23748:42;23807:19;;58895:95:0;23424:408:1;58895:95:0;59008:10;59019:5;59008:17;;;;;;;;:::i;:::-;;;;;;;;;59001:24;;58800:233;;;:::o;74470:57::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41742:223::-;41814:7;46629:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46629:16:0;;41878:56;;;;-1:-1:-1;;;41878:56:0;;24039:2:1;41878:56:0;;;24021:21:1;24078:2;24058:18;;;24051:30;-1:-1:-1;;;24097:18:1;;;24090:54;24161:18;;41878:56:0;23837:348:1;80193:252:0;80309:7;80079:29;;;:18;:29;;;;;:36;80342:5;:40;80334:49;;;;;;80401:29;;;;:18;:29;;;;;:36;;80431:5;;80401:36;;;;;;:::i;:::-;;;;;;;;;80394:43;;80193:252;;;;:::o;41473:207::-;41545:7;-1:-1:-1;;;;;41573:19:0;;41565:73;;;;-1:-1:-1;;;41565:73:0;;24392:2:1;41565:73:0;;;24374:21:1;24431:2;24411:18;;;24404:30;24470:34;24450:18;;;24443:62;-1:-1:-1;;;24521:18:1;;;24514:39;24570:19;;41565:73:0;24190:405:1;41565:73:0;-1:-1:-1;;;;;;41656:16:0;;;;;:9;:16;;;;;;;41473:207::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;81102:116::-;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;2201:6:0;3909:10;:21;3885:45;3877:54;;;;;;81186:13:::1;:24;81202:8:::0;81186:13;:24:::1;:::i;42201:104::-:0;42257:13;42290:7;42283:14;;;;;:::i;83263:259::-;3894:10;3885:20;;;;:8;:20;;;;;;;;;:45;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;2201:6:0;3909:10;:21;3885:45;3877:54;;;;;;83401:9:::1;83396:119;83420:15;:22;83416:1;:26;83396:119;;;83464:39;83484:15;83500:1;83484:18;;;;;;;;:::i;:::-;;;;;;;83464:19;:39::i;:::-;83444:3:::0;::::1;::::0;::::1;:::i;:::-;;;;83396:119;;43787:155:::0;43882:52;759:10;43915:8;43925;43882:18;:52::i;78549:286::-;78656:7;78711:15;78443:12;:19;;78362:108;78711:15;78703:5;:23;78681:109;;;;-1:-1:-1;;;78681:109:0;;24802:2:1;78681:109:0;;;24784:21:1;24841:2;24821:18;;;24814:30;24880:34;24860:18;;;24853:62;-1:-1:-1;;;24931:18:1;;;24924:34;24975:19;;78681:109:0;24600:400:1;78681:109:0;78808:12;78821:5;78808:19;;;;;;;;:::i;44906:322::-;45080:41;759:10;45113:7;45080:18;:41::i;:::-;45072:99;;;;-1:-1:-1;;;45072:99:0;;;;;;;:::i;:::-;45182:38;45196:4;45202:2;45206:7;45215:4;45182:13;:38::i;80534:508::-;80652:13;80705:16;80713:7;80705;:16::i;:::-;80683:113;;;;-1:-1:-1;;;80683:113:0;;25207:2:1;80683:113:0;;;25189:21:1;25246:2;25226:18;;;25219:30;25285:34;25265:18;;;25258:62;-1:-1:-1;;;25336:18:1;;;25329:45;25391:19;;80683:113:0;25005:411:1;80683:113:0;80809:21;80833:13;80809:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80867:7;80861:21;80886:1;80861:26;80857:78;;-1:-1:-1;80904:19:0;;;;;;;;;;;;-1:-1:-1;;;80904:19:0;;;;80857:78;80991:7;81000:15;:24;81016:7;81000:24;;;;;;;;;;;:32;;80974:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80947:87;;;80534:508;;;:::o;3959:99::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;4025:18:0::1;;::::0;;;:8:::1;:18;::::0;;;;:25;;-1:-1:-1;;4025:25:0::1;4046:4;4025:25;::::0;;3959:99::o;81291:97::-;81335:13;81368:12;81361:19;;;;;:::i;3034:201::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3123:22:0;::::1;3115:73;;;::::0;-1:-1:-1;;;3115:73:0;;25997:2:1;3115:73:0::1;::::0;::::1;25979:21:1::0;26036:2;26016:18;;;26009:30;26075:34;26055:18;;;26048:62;-1:-1:-1;;;26126:18:1;;;26119:36;26172:19;;3115:73:0::1;25795:402:1::0;3115:73:0::1;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;89055:879::-;89133:10;;-1:-1:-1;;;89133:10:0;;;;89125:68;;;;-1:-1:-1;;;89125:68:0;;26404:2:1;89125:68:0;;;26386:21:1;26443:2;26423:18;;;26416:30;26482:34;26462:18;;;26455:62;-1:-1:-1;;;26533:18:1;;;26526:43;26586:19;;89125:68:0;26202:409:1;89125:68:0;89211:9;89206:721;89230:11;:18;89226:1;:22;89206:721;;;89296:23;89304:11;89316:1;89304:14;;;;;;;;:::i;:::-;;;;;;;89296:7;:23::i;:::-;89270:121;;;;-1:-1:-1;;;89270:121:0;;;;;;;:::i;:::-;89432:48;759:10;89465:11;89477:1;89465:14;;;;;;;;:::i;:::-;;;;;;;89432:18;:48::i;:::-;89406:156;;;;-1:-1:-1;;;89406:156:0;;;;;;;:::i;:::-;89577:29;89609:15;:31;89625:11;89637:1;89625:14;;;;;;;;:::i;:::-;;;;;;;89609:31;;;;;;;;;;;89577:63;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89664:18;89683:7;:15;;;89664:35;;;;;;:::i;:::-;;;;;;;;;;;;;;89657:42;;-1:-1:-1;;89657:42:0;;;89737:14;;89721:15;;89664:35;;89737:11;;89749:1;;89737:14;;;;;;:::i;:::-;;;;;;;89721:31;;;;;;;;;;;;89714:38;;;;;;;;;;;;;;:::i;:::-;;;89769:52;89806:11;89818:1;89806:14;;;;;;;;:::i;:::-;;;;;;;89769:36;:52::i;:::-;89838:21;89844:11;89856:1;89844:14;;;;;;;;:::i;:::-;;;;;;;89838:5;:21::i;:::-;89900:11;89912:1;89900:14;;;;;;;;:::i;:::-;;;;;;;89881:34;;;;;;;;;;-1:-1:-1;89250:3:0;;;;:::i;:::-;;;;89206:721;;57970:224;58072:4;-1:-1:-1;;;;;;58096:50:0;;-1:-1:-1;;;58096:50:0;;:90;;;58150:36;58174:11;58150:23;:36::i;2293:132::-;2201:6;;-1:-1:-1;;;;;2201:6:0;759:10;2357:23;2349:68;;;;-1:-1:-1;;;2349:68:0;;27638:2:1;2349:68:0;;;27620:21:1;;;27657:18;;;27650:30;27716:34;27696:18;;;27689:62;27768:18;;2349:68:0;27436:356:1;53363:135:0;53445:16;53453:7;53445;:16::i;:::-;53437:53;;;;-1:-1:-1;;;53437:53:0;;24039:2:1;53437:53:0;;;24021:21:1;24078:2;24058:18;;;24051:30;-1:-1:-1;;;24097:18:1;;;24090:54;24161:18;;53437:53:0;23837:348:1;52642:174:0;52717:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;52717:29:0;-1:-1:-1;;;;;52717:29:0;;;;;;;;:24;;52771:23;52717:24;52771:14;:23::i;:::-;-1:-1:-1;;;;;52762:46:0;;;;;;;;;;;52642:174;;:::o;46966:128::-;47031:4;46629:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46629:16:0;47055:31;;;46966:128::o;85795:1880::-;86130:1;86095:20;;;:8;:20;;;;;:32;;;86073:129;;;;-1:-1:-1;;;86073:129:0;;27999:2:1;86073:129:0;;;27981:21:1;28038:2;28018:18;;;28011:30;28077:34;28057:18;;;28050:62;-1:-1:-1;;;28128:18:1;;;28121:41;28179:19;;86073:129:0;27797:407:1;86073:129:0;86511:20;;;;:8;:20;;;;;:29;;;;86458;;;;86402:32;;;;;86511:29;;86402:85;;;:::i;:::-;:138;;;;:::i;:::-;86368:14;:172;86346:298;;;;-1:-1:-1;;;86346:298:0;;28541:2:1;86346:298:0;;;28523:21:1;28580:2;28560:18;;;28553:30;28619:34;28599:18;;;28592:62;28690:34;28670:18;;;28663:62;-1:-1:-1;;;28741:19:1;;;28734:43;28794:19;;86346:298:0;28339:480:1;86346:298:0;-1:-1:-1;;;;;86663:21:0;;86655:56;;;;-1:-1:-1;;;86655:56:0;;29026:2:1;86655:56:0;;;29008:21:1;29065:2;29045:18;;;29038:30;-1:-1:-1;;;29084:18:1;;;29077:52;29146:18;;86655:56:0;28824:346:1;86655:56:0;-1:-1:-1;;;;;86730:20:0;;86722:54;;;;-1:-1:-1;;;86722:54:0;;29377:2:1;86722:54:0;;;29359:21:1;29416:2;29396:18;;;29389:30;-1:-1:-1;;;29435:18:1;;;29428:51;29496:18;;86722:54:0;29175:345:1;86722:54:0;86796:18;86815:8;86796:28;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;86795:29;86787:64;;;;-1:-1:-1;;;86787:64:0;;17740:2:1;86787:64:0;;;17722:21:1;17779:2;17759:18;;;17752:30;-1:-1:-1;;;17798:18:1;;;17791:52;17860:18;;86787:64:0;17538:346:1;86787:64:0;86864:17;86884:27;86897:14;86884:10;:27;:::i;:::-;86944:26;;;;:15;:26;;;;;:36;86864:47;;-1:-1:-1;86944:41:0;86922:137;;;;-1:-1:-1;;;86922:137:0;;29727:2:1;86922:137:0;;;29709:21:1;29766:2;29746:18;;;29739:30;29805:34;29785:18;;;29778:62;-1:-1:-1;;;29856:18:1;;;29849:44;29910:19;;86922:137:0;29525:410:1;86922:137:0;87104:35;;;;;;;;;;;;;;;;;;87072:29;87152:26;;;:15;:26;;;;;;:36;;;;;;87104:35;;;;87152:36;;;;;;;;:::i;:::-;-1:-1:-1;;;87199:30:0;;;;:18;:30;;;;;;;;:46;;;;;;;;;;;;;;;;;;;;87293:111;;;;;;;;;;;87352:30;;;;;;;:37;;87293:111;;;;;;87352:41;;87199:46;87352:41;:::i;:::-;87293:111;;87256:34;;;;:23;:34;;;;;;;;;:148;;;;;;;;;;;;87417:28;:18;;:28;;87436:8;;87417:28;:::i;:::-;;;;;;;;;;;;;;:35;;;;;-1:-1:-1;;87417:35:0;;;;;;;;;87465:29;87475:7;87484:9;87465;:29::i;:::-;87522:6;-1:-1:-1;;;;;87511:17:0;:7;-1:-1:-1;;;;;87511:17:0;;87507:95;;87545:45;87559:7;87568:6;87576:9;87545:45;;;;;;;;;;;;:13;:45::i;:::-;87657:9;87645:10;87637:6;-1:-1:-1;;;;;87619:48:0;;;;;;;;;;;85978:1697;;85795:1880;;;;;:::o;47261:264::-;47354:4;47371:13;47387:23;47402:7;47387:14;:23::i;:::-;47371:39;;47440:5;-1:-1:-1;;;;;47429:16:0;:7;-1:-1:-1;;;;;47429:16:0;;:52;;;-1:-1:-1;;;;;;44134:25:0;;;44110:4;44134:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;47449:32;47429:87;;;;47509:7;-1:-1:-1;;;;;47485:31:0;:20;47497:7;47485:11;:20::i;:::-;-1:-1:-1;;;;;47485:31:0;;47429:87;47421:96;47261:264;-1:-1:-1;;;;47261:264:0:o;51260:1263::-;51419:4;-1:-1:-1;;;;;51392:31:0;:23;51407:7;51392:14;:23::i;:::-;-1:-1:-1;;;;;51392:31:0;;51384:81;;;;-1:-1:-1;;;51384:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51484:16:0;;51476:65;;;;-1:-1:-1;;;51476:65:0;;30681:2:1;51476:65:0;;;30663:21:1;30720:2;30700:18;;;30693:30;30759:34;30739:18;;;30732:62;-1:-1:-1;;;30810:18:1;;;30803:34;30854:19;;51476:65:0;30479:400:1;51476:65:0;51554:42;51575:4;51581:2;51585:7;51594:1;51554:20;:42::i;:::-;51726:4;-1:-1:-1;;;;;51699:31:0;:23;51714:7;51699:14;:23::i;:::-;-1:-1:-1;;;;;51699:31:0;;51691:81;;;;-1:-1:-1;;;51691:81:0;;;;;;;:::i;:::-;51844:24;;;;:15;:24;;;;;;;;51837:31;;-1:-1:-1;;;;;;51837:31:0;;;;;;-1:-1:-1;;;;;52320:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;52320:20:0;;;52355:13;;;;;;;;;:18;;51837:31;52355:18;;;52395:16;;;:7;:16;;;;;;:21;;;;;;;;;;52434:27;;51860:7;;52434:27;;;43132:346;43062:416;;:::o;76389:1288::-;76623:7;76657:5;76651:19;76674:1;76651:24;76643:59;;;;-1:-1:-1;;;76643:59:0;;31086:2:1;76643:59:0;;;31068:21:1;31125:2;31105:18;;;31098:30;-1:-1:-1;;;31144:18:1;;;31137:52;31206:18;;76643:59:0;30884:346:1;76643:59:0;76727:10;76721:24;76749:1;76721:29;76713:65;;;;-1:-1:-1;;;76713:65:0;;31437:2:1;76713:65:0;;;31419:21:1;31476:2;31456:18;;;31449:30;31515:25;31495:18;;;31488:53;31558:18;;76713:65:0;31235:347:1;76713:65:0;76803:11;76797:25;76826:1;76797:30;76789:71;;;;-1:-1:-1;;;76789:71:0;;31789:2:1;76789:71:0;;;31771:21:1;31828:2;31808:18;;;31801:30;31867;31847:18;;;31840:58;31915:18;;76789:71:0;31587:352:1;76789:71:0;76893:1;76879:11;:15;76871:63;;;;-1:-1:-1;;;76871:63:0;;32146:2:1;76871:63:0;;;32128:21:1;32185:2;32165:18;;;32158:30;32224:34;32204:18;;;32197:62;-1:-1:-1;;;32275:18:1;;;32268:33;32318:19;;76871:63:0;31944:399:1;76871:63:0;76947:17;76996:11;76985:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;76985:23:0;;;;;;;;;76975:34;;76985:23;76975:34;;;;76967:43;77119:19;;;:8;:19;;;;;:31;;77113:45;;76975:34;;-1:-1:-1;77119:31:0;77113:45;;;:::i;:::-;:50;;-1:-1:-1;77091:159:0;;;;-1:-1:-1;;;77091:159:0;;32550:2:1;77091:159:0;;;32532:21:1;32589:2;32569:18;;;32562:30;32628:34;32608:18;;;32601:62;32699:29;32679:18;;;32672:57;32746:19;;77091:159:0;32348:423:1;77091:159:0;77288:232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77533:12;:28;;;;;;;;;;;;;77263:22;77572:19;;;:8;:19;;;;;;;:29;;77288:232;;77572:19;;;:29;;:19;:29;:::i;:::-;-1:-1:-1;77572:29:0;;;;;;;;;;;;:::i;:::-;-1:-1:-1;77572:29:0;;;;;;;;;;;;:::i;:::-;-1:-1:-1;77572:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;77619:21;;77630:9;;77619:21;;-1:-1:-1;;77619:21:0;-1:-1:-1;77660:9:0;76389:1288;-1:-1:-1;;;;;;;76389:1288:0:o;3395:191::-;3488:6;;;-1:-1:-1;;;;;3505:17:0;;;-1:-1:-1;;;;;;3505:17:0;;;;;;;3538:40;;3488:6;;;3505:17;3488:6;;3538:40;;3469:16;;3538:40;3458:128;3395:191;:::o;83530:1304::-;83658:31;83666:14;:22;;;83658:7;:31::i;:::-;83636:117;;;;-1:-1:-1;;;83636:117:0;;;;;;;:::i;:::-;83788:63;83807:14;:19;;;83828:14;:22;;;83788:18;:63::i;:::-;83766:159;;;;-1:-1:-1;;;83766:159:0;;;;;;;:::i;:::-;83979:14;:25;;;83960:15;:44;;83938:148;;;;-1:-1:-1;;;83938:148:0;;32978:2:1;83938:148:0;;;32960:21:1;33017:2;32997:18;;;32990:30;33056:34;33036:18;;;33029:62;-1:-1:-1;;;33107:18:1;;;33100:52;33169:19;;83938:148:0;32776:418:1;83938:148:0;84099:19;84174:14;:19;;;84212:14;:17;;;84248:14;:22;;;84289:14;:25;;;84145:184;;;;;;;;;;-1:-1:-1;;;;;33486:15:1;;;33468:34;;33538:15;;;;33533:2;33518:18;;33511:43;33585:2;33570:18;;33563:34;33628:2;33613:18;;33606:34;;;;33417:3;33402:19;;33199:447;84145:184:0;;;;;;;;;;;;;84121:219;;;;;;84099:241;;84375:205;84408:11;84438:14;:19;;;84476:14;:17;;;84512:14;:17;;;84548:14;:17;;;84375:14;:205::i;:::-;84353:316;;;;-1:-1:-1;;;84353:316:0;;33853:2:1;84353:316:0;;;33835:21:1;33892:2;33872:18;;;33865:30;33931:34;33911:18;;;33904:62;34002:31;33982:18;;;33975:59;34051:19;;84353:316:0;33651:425:1;84353:316:0;84682:144;84710:14;:19;;;84744:14;:17;;;84776:14;:22;;;84682:144;;;;;;;;;;;;:13;:144::i;52959:315::-;53114:8;-1:-1:-1;;;;;53105:17:0;:5;-1:-1:-1;;;;;53105:17:0;;53097:55;;;;-1:-1:-1;;;53097:55:0;;34283:2:1;53097:55:0;;;34265:21:1;34322:2;34302:18;;;34295:30;34361:27;34341:18;;;34334:55;34406:18;;53097:55:0;34081:349:1;53097:55:0;-1:-1:-1;;;;;53163:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;53163:46:0;;;;;;;;;;53225:41;;540::1;;;53225::0;;513:18:1;53225:41:0;;;;;;;52959:315;;;:::o;46109:313::-;46265:28;46275:4;46281:2;46285:7;46265:9;:28::i;:::-;46312:47;46335:4;46341:2;46345:7;46354:4;46312:22;:47::i;:::-;46304:110;;;;-1:-1:-1;;;46304:110:0;;;;;;;:::i;87838:1110::-;87922:59;87984:34;;;:23;:34;;;;;;;;;87922:96;;;;;;;;;;;;;;;;;;;;;;;;;88031:155;;;;-1:-1:-1;;;88031:155:0;;35056:2:1;88031:155:0;;;35038:21:1;35095:2;35075:18;;;35068:30;35134:34;35114:18;;;35107:62;35205:34;35185:18;;;35178:62;-1:-1:-1;;;35256:19:1;;;35249:39;35305:19;;88031:155:0;34854:476:1;88031:155:0;88269:29;;88199:34;88236:73;;;:18;:73;;;;;88344:23;;88322:149;;;;-1:-1:-1;;;88322:149:0;;35537:2:1;88322:149:0;;;35519:21:1;35576:2;35556:18;;;35549:30;35615:34;35595:18;;;35588:62;35686:34;35666:18;;;35659:62;-1:-1:-1;;;35737:19:1;;;35730:39;35786:19;;88322:149:0;35335:476:1;88322:149:0;88511:23;;88484:24;;88511:27;;88537:1;;88511:27;:::i;:::-;88484:54;;88549:21;88573:16;88616:1;88590:16;:23;;;;:27;;;;:::i;:::-;88573:45;;;;;;;;:::i;:::-;;;;;;;;;88549:69;;88767:13;88721:16;88738:19;:25;;;88721:43;;;;;;;;:::i;:::-;;;;;;;;:59;;;;88828:19;:25;;;88791:16;88808;88791:34;;;;;;;;:::i;:::-;;;;;;;;:62;;;;88864:16;:22;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;88864:22:0;;;;;;;;;;;;88906:34;;;:23;:34;;;-1:-1:-1;;88906:34:0;;;88899:41;;;88864:22;88899:41;;;;;-1:-1:-1;;87838:1110:0:o;50140:783::-;50200:13;50216:23;50231:7;50216:14;:23::i;:::-;50200:39;;50252:51;50273:5;50288:1;50292:7;50301:1;50252:20;:51::i;:::-;50416:23;50431:7;50416:14;:23::i;:::-;50487:24;;;;:15;:24;;;;;;;;50480:31;;-1:-1:-1;;;;;;50480:31:0;;;;;;-1:-1:-1;;;;;50732:16:0;;;;;:9;:16;;;;;:21;;-1:-1:-1;;50732:21:0;;;50782:16;;;:7;:16;;;;;;50775:23;;;;;;;50816:36;50408:31;;-1:-1:-1;50503:7:0;;50816:36;;50487:24;;50816:36;85081:307:::1;84965:430:::0;:::o;41104:305::-;41206:4;-1:-1:-1;;;;;;41243:40:0;;-1:-1:-1;;;41243:40:0;;:105;;-1:-1:-1;;;;;;;41300:48:0;;-1:-1:-1;;;41300:48:0;41243:105;:158;;;-1:-1:-1;;;;;;;;;;17446:40:0;;;41365:36;17337:157;47867:110;47943:26;47953:2;47957:7;47943:26;;;;;;;;;;;;:9;:26::i;59107:915::-;59284:61;59311:4;59317:2;59321:12;59335:9;59284:26;:61::i;:::-;59374:1;59362:9;:13;59358:222;;;59505:63;;-1:-1:-1;;;59505:63:0;;36150:2:1;59505:63:0;;;36132:21:1;36189:2;36169:18;;;36162:30;36228:34;36208:18;;;36201:62;-1:-1:-1;;;36279:18:1;;;36272:51;36340:19;;59505:63:0;35948:417:1;59358:222:0;59610:12;-1:-1:-1;;;;;59639:18:0;;59635:187;;59674:40;59706:7;60849:10;:17;;60822:24;;;;:15;:24;;;;;:44;;;60877:24;;;;;;;;;;;;60745:164;59674:40;59635:187;;;59744:2;-1:-1:-1;;;;;59736:10:0;:4;-1:-1:-1;;;;;59736:10:0;;59732:90;;59763:47;59796:4;59802:7;59763:32;:47::i;:::-;-1:-1:-1;;;;;59836:16:0;;59832:183;;59869:45;59906:7;59869:36;:45::i;:::-;59832:183;;;59942:4;-1:-1:-1;;;;;59936:10:0;:2;-1:-1:-1;;;;;59936:10:0;;59932:83;;59963:40;59991:2;59995:7;59963:27;:40::i;:::-;59273:749;59107:915;;;;:::o;82733:371::-;82900:4;82917:14;82934:128;82962:38;82991:8;71553:58;;37360:66:1;71553:58:0;;;37348:79:1;37443:12;;;37436:28;;;71420:7:0;;37480:12:1;;71553:58:0;;;;;;;;;;;;71543:69;;;;;;71536:76;;71351:269;;;;82962:38;83015:2;83032;83049;82934:13;:128::i;:::-;-1:-1:-1;;;;;83080:16:0;;;;;;;;-1:-1:-1;;82733:371:0;;;;;;;:::o;54062:853::-;54216:4;-1:-1:-1;;;;;54237:13:0;;5703:19;:23;54233:675;;54273:71;;-1:-1:-1;;;54273:71:0;;-1:-1:-1;;;;;54273:36:0;;;;;:71;;759:10;;54324:4;;54330:7;;54339:4;;54273:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54273:71:0;;;;;;;;-1:-1:-1;;54273:71:0;;;;;;;;;;;;:::i;:::-;;;54269:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54514:6;:13;54531:1;54514:18;54510:328;;54557:60;;-1:-1:-1;;;54557:60:0;;;;;;;:::i;54510:328::-;54788:6;54782:13;54773:6;54769:2;54765:15;54758:38;54269:584;-1:-1:-1;;;;;;54395:51:0;-1:-1:-1;;;54395:51:0;;-1:-1:-1;54388:58:0;;54233:675;-1:-1:-1;54892:4:0;54062:853;;;;;;:::o;48204:319::-;48333:18;48339:2;48343:7;48333:5;:18::i;:::-;48384:53;48415:1;48419:2;48423:7;48432:4;48384:22;:53::i;:::-;48362:153;;;;-1:-1:-1;;;48362:153:0;;;;;;;:::i;55647:410::-;55837:1;55825:9;:13;55821:229;;;-1:-1:-1;;;;;55859:18:0;;;55855:87;;-1:-1:-1;;;;;55898:15:0;;;;;;:9;:15;;;;;:28;;55917:9;;55898:15;:28;;55917:9;;55898:28;:::i;:::-;;;;-1:-1:-1;;55855:87:0;-1:-1:-1;;;;;55960:16:0;;;55956:83;;-1:-1:-1;;;;;55997:13:0;;;;;;:9;:13;;;;;:26;;56014:9;;55997:13;:26;;56014:9;;55997:26;:::i;:::-;;;;-1:-1:-1;;55647:410:0;;;;:::o;61536:988::-;61802:22;61852:1;61827:22;61844:4;61827:16;:22::i;:::-;:26;;;;:::i;:::-;61864:18;61885:26;;;:17;:26;;;;;;61802:51;;-1:-1:-1;62018:28:0;;;62014:328;;-1:-1:-1;;;;;62085:18:0;;62063:19;62085:18;;;:12;:18;;;;;;;;:34;;;;;;;;;62136:30;;;;;;:44;;;62253:30;;:17;:30;;;;;:43;;;62014:328;-1:-1:-1;62438:26:0;;;;:17;:26;;;;;;;;62431:33;;;-1:-1:-1;;;;;62482:18:0;;;;;:12;:18;;;;;:34;;;;;;;62475:41;61536:988::o;62819:1079::-;63097:10;:17;63072:22;;63097:21;;63117:1;;63097:21;:::i;:::-;63129:18;63150:24;;;:15;:24;;;;;;63523:10;:26;;63072:46;;-1:-1:-1;63150:24:0;;63072:46;;63523:26;;;;;;:::i;:::-;;;;;;;;;63501:48;;63587:11;63562:10;63573;63562:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;63667:28;;;:15;:28;;;;;;;:41;;;63839:24;;;;;63832:31;63874:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;62890:1008;;;62819:1079;:::o;60323:221::-;60408:14;60425:20;60442:2;60425:16;:20::i;:::-;-1:-1:-1;;;;;60456:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;60501:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;60323:221:0:o;70772:279::-;70900:7;70921:17;70940:18;70962:25;70973:4;70979:1;70982;70985;70962:10;:25::i;:::-;70920:67;;;;70998:18;71010:5;70998:11;:18::i;:::-;-1:-1:-1;71034:9:0;70772:279;-1:-1:-1;;;;;70772:279:0:o;48859:942::-;-1:-1:-1;;;;;48939:16:0;;48931:61;;;;-1:-1:-1;;;48931:61:0;;37705:2:1;48931:61:0;;;37687:21:1;;;37724:18;;;37717:30;37783:34;37763:18;;;37756:62;37835:18;;48931:61:0;37503:356:1;48931:61:0;49012:16;49020:7;49012;:16::i;:::-;49011:17;49003:58;;;;-1:-1:-1;;;49003:58:0;;38066:2:1;49003:58:0;;;38048:21:1;38105:2;38085:18;;;38078:30;38144;38124:18;;;38117:58;38192:18;;49003:58:0;37864:352:1;49003:58:0;49074:48;49103:1;49107:2;49111:7;49120:1;49074:20;:48::i;:::-;49221:16;49229:7;49221;:16::i;:::-;49220:17;49212:58;;;;-1:-1:-1;;;49212:58:0;;38066:2:1;49212:58:0;;;38048:21:1;38105:2;38085:18;;;38078:30;38144;38124:18;;;38117:58;38192:18;;49212:58:0;37864:352:1;49212:58:0;-1:-1:-1;;;;;49619:13:0;;;;;;:9;:13;;;;;;;;:18;;49636:1;49619:18;;;49661:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;49661:21:0;;;;;49700:33;49669:7;;49619:13;;49700:33;;49619:13;;49700:33;85081:307:::1;84965:430:::0;:::o;69113:1520::-;69244:7;;70178:66;70165:79;;70161:163;;;-1:-1:-1;70277:1:0;;-1:-1:-1;70281:30:0;70261:51;;70161:163;70438:24;;;70421:14;70438:24;;;;;;;;;38448:25:1;;;38521:4;38509:17;;38489:18;;;38482:45;;;;38543:18;;;38536:34;;;38586:18;;;38579:34;;;70438:24:0;;38420:19:1;;70438:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;70438:24:0;;-1:-1:-1;;70438:24:0;;;-1:-1:-1;;;;;;;70477:20:0;;70473:103;;70530:1;70534:29;70514:50;;;;;;;70473:103;70596:6;-1:-1:-1;70604:20:0;;-1:-1:-1;69113:1520:0;;;;;;;;:::o;64505:521::-;64583:20;64574:5;:29;;;;;;;;:::i;:::-;;64570:449;;64505:521;:::o;64570:449::-;64681:29;64672:5;:38;;;;;;;;:::i;:::-;;64668:351;;64727:34;;-1:-1:-1;;;64727:34:0;;38958:2:1;64727:34:0;;;38940:21:1;38997:2;38977:18;;;38970:30;39036:26;39016:18;;;39009:54;39080:18;;64727:34:0;38756:348:1;64668:351:0;64792:35;64783:5;:44;;;;;;;;:::i;:::-;;64779:240;;64844:41;;-1:-1:-1;;;64844:41:0;;39311:2:1;64844:41:0;;;39293:21:1;39350:2;39330:18;;;39323:30;39389:33;39369:18;;;39362:61;39440:18;;64844:41:0;39109:355:1;64779:240:0;64916:30;64907:5;:39;;;;;;;;:::i;:::-;;64903:116;;64963:44;;-1:-1:-1;;;64963:44:0;;39671:2:1;64963:44:0;;;39653:21:1;39710:2;39690:18;;;39683:30;39749:34;39729:18;;;39722:62;-1:-1:-1;;;39800:18:1;;;39793:32;39842:19;;64963:44:0;39469:398:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:186::-;829:6;882:2;870:9;861:7;857:23;853:32;850:52;;;898:1;895;888:12;850:52;921:29;940:9;921:29;:::i;961:250::-;1046:1;1056:113;1070:6;1067:1;1064:13;1056:113;;;1146:11;;;1140:18;1127:11;;;1120:39;1092:2;1085:10;1056:113;;;-1:-1:-1;;1203:1:1;1185:16;;1178:27;961:250::o;1216:271::-;1258:3;1296:5;1290:12;1323:6;1318:3;1311:19;1339:76;1408:6;1401:4;1396:3;1392:14;1385:4;1378:5;1374:16;1339:76;:::i;:::-;1469:2;1448:15;-1:-1:-1;;1444:29:1;1435:39;;;;1476:4;1431:50;;1216:271;-1:-1:-1;;1216:271:1:o;1492:220::-;1641:2;1630:9;1623:21;1604:4;1661:45;1702:2;1691:9;1687:18;1679:6;1661:45;:::i;1717:180::-;1776:6;1829:2;1817:9;1808:7;1804:23;1800:32;1797:52;;;1845:1;1842;1835:12;1797:52;-1:-1:-1;1868:23:1;;1717:180;-1:-1:-1;1717:180:1:o;2110:254::-;2178:6;2186;2239:2;2227:9;2218:7;2214:23;2210:32;2207:52;;;2255:1;2252;2245:12;2207:52;2278:29;2297:9;2278:29;:::i;:::-;2268:39;2354:2;2339:18;;;;2326:32;;-1:-1:-1;;;2110:254:1:o;2369:127::-;2430:10;2425:3;2421:20;2418:1;2411:31;2461:4;2458:1;2451:15;2485:4;2482:1;2475:15;2501:253;2573:2;2567:9;2615:4;2603:17;;-1:-1:-1;;;;;2635:34:1;;2671:22;;;2632:62;2629:88;;;2697:18;;:::i;:::-;2733:2;2726:22;2501:253;:::o;2759:::-;2831:2;2825:9;2873:4;2861:17;;-1:-1:-1;;;;;2893:34:1;;2929:22;;;2890:62;2887:88;;;2955:18;;:::i;3017:253::-;3089:2;3083:9;3131:4;3119:17;;-1:-1:-1;;;;;3151:34:1;;3187:22;;;3148:62;3145:88;;;3213:18;;:::i;3275:275::-;3346:2;3340:9;3411:2;3392:13;;-1:-1:-1;;3388:27:1;3376:40;;-1:-1:-1;;;;;3431:34:1;;3467:22;;;3428:62;3425:88;;;3493:18;;:::i;:::-;3529:2;3522:22;3275:275;;-1:-1:-1;3275:275:1:o;3555:407::-;3620:5;-1:-1:-1;;;;;3646:6:1;3643:30;3640:56;;;3676:18;;:::i;:::-;3714:57;3759:2;3738:15;;-1:-1:-1;;3734:29:1;3765:4;3730:40;3714:57;:::i;:::-;3705:66;;3794:6;3787:5;3780:21;3834:3;3825:6;3820:3;3816:16;3813:25;3810:45;;;3851:1;3848;3841:12;3810:45;3900:6;3895:3;3888:4;3881:5;3877:16;3864:43;3954:1;3947:4;3938:6;3931:5;3927:18;3923:29;3916:40;3555:407;;;;;:::o;3967:222::-;4010:5;4063:3;4056:4;4048:6;4044:17;4040:27;4030:55;;4081:1;4078;4071:12;4030:55;4103:80;4179:3;4170:6;4157:20;4150:4;4142:6;4138:17;4103:80;:::i;4194:390::-;4272:6;4280;4333:2;4321:9;4312:7;4308:23;4304:32;4301:52;;;4349:1;4346;4339:12;4301:52;4385:9;4372:23;4362:33;;4446:2;4435:9;4431:18;4418:32;-1:-1:-1;;;;;4465:6:1;4462:30;4459:50;;;4505:1;4502;4495:12;4459:50;4528;4570:7;4561:6;4550:9;4546:22;4528:50;:::i;:::-;4518:60;;;4194:390;;;;;:::o;4589:199::-;4665:4;-1:-1:-1;;;;;4690:6:1;4687:30;4684:56;;;4720:18;;:::i;:::-;-1:-1:-1;4765:1:1;4761:14;4777:4;4757:25;;4589:199::o;4793:1981::-;4911:6;4942:2;4985;4973:9;4964:7;4960:23;4956:32;4953:52;;;5001:1;4998;4991:12;4953:52;5041:9;5028:23;-1:-1:-1;;;;;5111:2:1;5103:6;5100:14;5097:34;;;5127:1;5124;5117:12;5097:34;5165:6;5154:9;5150:22;5140:32;;5210:7;5203:4;5199:2;5195:13;5191:27;5181:55;;5232:1;5229;5222:12;5181:55;5268:2;5255:16;5291:76;5307:59;5363:2;5307:59;:::i;:::-;5291:76;:::i;:::-;5401:15;;;5483:1;5479:10;;;;5471:19;;5467:28;;;5432:12;;;;5507:19;;;5504:39;;;5539:1;5536;5529:12;5504:39;5571:2;5567;5563:11;5583:1161;5599:6;5594:3;5591:15;5583:1161;;;5685:3;5672:17;5721:2;5708:11;5705:19;5702:109;;;5765:1;5794:2;5790;5783:14;5702:109;5834:20;;5877:4;5905:16;;;-1:-1:-1;;5901:30:1;5897:39;-1:-1:-1;5894:129:1;;;5977:1;6006:2;6002;5995:14;5894:129;6049:22;;:::i;:::-;6119:2;6115;6111:11;6098:25;6091:5;6084:40;6147:2;6206;6202;6198:11;6185:25;6180:2;6173:5;6169:14;6162:49;6235:2;6273:32;6300:3;6296:2;6292:12;6273:32;:::i;:::-;6268:2;6261:5;6257:14;6250:56;6330:3;6319:14;;6370:32;6397:3;6393:2;6389:12;6370:32;:::i;:::-;6353:15;;;6346:57;6445:11;;;6432:25;;6473:16;;;6470:109;;;6531:1;6561:3;6556;6549:16;6470:109;6616:54;6662:7;6657:2;6646:8;6642:2;6638:17;6634:26;6616:54;:::i;:::-;6599:15;;;6592:79;6684:18;;-1:-1:-1;;6722:12:1;;;;5616;;5583:1161;;;-1:-1:-1;6763:5:1;4793:1981;-1:-1:-1;;;;;;;;4793:1981:1:o;6961:328::-;7038:6;7046;7054;7107:2;7095:9;7086:7;7082:23;7078:32;7075:52;;;7123:1;7120;7113:12;7075:52;7146:29;7165:9;7146:29;:::i;:::-;7136:39;;7194:38;7228:2;7217:9;7213:18;7194:38;:::i;:::-;7184:48;;7279:2;7268:9;7264:18;7251:32;7241:42;;6961:328;;;;;:::o;7294:248::-;7362:6;7370;7423:2;7411:9;7402:7;7398:23;7394:32;7391:52;;;7439:1;7436;7429:12;7391:52;-1:-1:-1;;7462:23:1;;;7532:2;7517:18;;;7504:32;;-1:-1:-1;7294:248:1:o;7826:2362::-;7935:6;7966:2;8009;7997:9;7988:7;7984:23;7980:32;7977:52;;;8025:1;8022;8015:12;7977:52;8065:9;8052:23;-1:-1:-1;;;;;8135:2:1;8127:6;8124:14;8121:34;;;8151:1;8148;8141:12;8121:34;8189:6;8178:9;8174:22;8164:32;;8234:7;8227:4;8223:2;8219:13;8215:27;8205:55;;8256:1;8253;8246:12;8205:55;8292:2;8279:16;8315:76;8331:59;8387:2;8331:59;:::i;8315:76::-;8425:15;;;8507:1;8503:10;;;;8495:19;;8491:28;;;8456:12;;;;8531:19;;;8528:39;;;8563:1;8560;8553:12;8528:39;8595:2;8591;8587:11;8607:1551;8623:6;8618:3;8615:15;8607:1551;;;8709:3;8696:17;8745:2;8732:11;8729:19;8726:39;;;8761:1;8758;8751:12;8726:39;8788:20;;8860:4;8832:16;;;-1:-1:-1;;8828:30:1;8824:41;8821:131;;;8906:1;8935:2;8931;8924:14;8821:131;8978:22;;:::i;:::-;9050:2;9046;9042:11;9029:25;9083:2;9073:8;9070:16;9067:106;;;9127:1;9156:2;9152;9145:14;9067:106;9200:54;9246:7;9241:2;9230:8;9226:2;9222:17;9218:26;9200:54;:::i;:::-;9193:5;9186:69;;9278:2;9330;9326;9322:11;9309:25;9363:2;9353:8;9350:16;9347:106;;;9407:1;9436:2;9432;9425:14;9347:106;9489:54;9535:7;9530:2;9519:8;9515:2;9511:17;9507:26;9489:54;:::i;:::-;9484:2;9477:5;9473:14;9466:78;;9568:2;9620:3;9616:2;9612:12;9599:26;9654:2;9644:8;9641:16;9638:109;;;9699:1;9729:3;9724;9717:16;9638:109;9783:54;9829:7;9824:2;9813:8;9809:2;9805:17;9801:26;9783:54;:::i;:::-;9778:2;9771:5;9767:14;9760:78;;9862:3;9851:14;;9923:3;9919:2;9915:12;9902:26;9896:3;9889:5;9885:15;9878:51;;9953:3;10014;10010:2;10006:12;9993:26;9987:3;9980:5;9976:15;9969:51;10078:4;10074:2;10070:13;10057:27;10051:3;10044:5;10040:15;10033:52;;;10110:5;10105:3;10098:18;;;10145:2;10140:3;10136:12;10129:19;;8649:2;8644:3;8640:12;8633:19;;8607:1551;;10193:763;10522:3;10511:9;10504:22;10485:4;10549:46;10590:3;10579:9;10575:19;10567:6;10549:46;:::i;:::-;10643:9;10635:6;10631:22;10626:2;10615:9;10611:18;10604:50;10677:33;10703:6;10695;10677:33;:::i;:::-;10663:47;;10758:9;10750:6;10746:22;10741:2;10730:9;10726:18;10719:50;10786:33;10812:6;10804;10786:33;:::i;:::-;10850:2;10835:18;;10828:34;;;;-1:-1:-1;;10893:3:1;10878:19;;10871:35;;;;10937:3;10922:19;;;10915:35;10778:41;10193:763;-1:-1:-1;;;10193:763:1:o;10961:291::-;11138:6;11127:9;11120:25;11181:2;11176;11165:9;11161:18;11154:30;11101:4;11201:45;11242:2;11231:9;11227:18;11219:6;11201:45;:::i;11257:322::-;11326:6;11379:2;11367:9;11358:7;11354:23;11350:32;11347:52;;;11395:1;11392;11385:12;11347:52;11435:9;11422:23;-1:-1:-1;;;;;11460:6:1;11457:30;11454:50;;;11500:1;11497;11490:12;11454:50;11523;11565:7;11556:6;11545:9;11541:22;11523:50;:::i;11584:1880::-;11706:6;11737:2;11780;11768:9;11759:7;11755:23;11751:32;11748:52;;;11796:1;11793;11786:12;11748:52;11836:9;11823:23;-1:-1:-1;;;;;11861:6:1;11858:30;11855:50;;;11901:1;11898;11891:12;11855:50;11924:22;;11977:4;11969:13;;11965:27;-1:-1:-1;11955:55:1;;12006:1;12003;11996:12;11955:55;12042:2;12029:16;12065:76;12081:59;12137:2;12081:59;:::i;12065:76::-;12175:15;;;12237:4;12276:11;;;12268:20;;12264:29;;;12206:12;;;;12163:3;12305:19;;;12302:39;;;12337:1;12334;12327:12;12302:39;12361:11;;;;12381:1053;12397:6;12392:3;12389:15;12381:1053;;;12477:2;12471:3;12462:7;12458:17;12454:26;12451:116;;;12521:1;12550:2;12546;12539:14;12451:116;12593:22;;:::i;:::-;12642:23;12661:3;12642:23;:::i;:::-;12635:5;12628:38;12702:32;12730:2;12725:3;12721:12;12702:32;:::i;:::-;12686:14;;;12679:56;12758:2;12809:12;;;12796:26;12780:14;;;12773:50;12846:2;12897:12;;;12884:26;12868:14;;;12861:50;12934:3;12986:12;;;12973:26;12957:14;;;12950:50;13023:3;13075:12;;;13062:26;13046:14;;;13039:50;13113:3;13157:13;;;13144:27;13219:4;13206:18;;13194:31;;13184:132;;13268:1;13298:3;13293;13286:16;13184:132;13336:15;;;13329:32;13374:18;;12414:12;;;;13412;;;;12381:1053;;;-1:-1:-1;13453:5:1;11584:1880;-1:-1:-1;;;;;;;11584:1880:1:o;13469:347::-;13534:6;13542;13595:2;13583:9;13574:7;13570:23;13566:32;13563:52;;;13611:1;13608;13601:12;13563:52;13634:29;13653:9;13634:29;:::i;:::-;13624:39;;13713:2;13702:9;13698:18;13685:32;13760:5;13753:13;13746:21;13739:5;13736:32;13726:60;;13782:1;13779;13772:12;13726:60;13805:5;13795:15;;;13469:347;;;;;:::o;13821:667::-;13916:6;13924;13932;13940;13993:3;13981:9;13972:7;13968:23;13964:33;13961:53;;;14010:1;14007;14000:12;13961:53;14033:29;14052:9;14033:29;:::i;:::-;14023:39;;14081:38;14115:2;14104:9;14100:18;14081:38;:::i;:::-;14071:48;;14166:2;14155:9;14151:18;14138:32;14128:42;;14221:2;14210:9;14206:18;14193:32;-1:-1:-1;;;;;14240:6:1;14237:30;14234:50;;;14280:1;14277;14270:12;14234:50;14303:22;;14356:4;14348:13;;14344:27;-1:-1:-1;14334:55:1;;14385:1;14382;14375:12;14334:55;14408:74;14474:7;14469:2;14456:16;14451:2;14447;14443:11;14408:74;:::i;:::-;14398:84;;;13821:667;;;;;;;:::o;14493:260::-;14561:6;14569;14622:2;14610:9;14601:7;14597:23;14593:32;14590:52;;;14638:1;14635;14628:12;14590:52;14661:29;14680:9;14661:29;:::i;:::-;14651:39;;14709:38;14743:2;14732:9;14728:18;14709:38;:::i;14758:907::-;14842:6;14873:2;14916;14904:9;14895:7;14891:23;14887:32;14884:52;;;14932:1;14929;14922:12;14884:52;14972:9;14959:23;-1:-1:-1;;;;;14997:6:1;14994:30;14991:50;;;15037:1;15034;15027:12;14991:50;15060:22;;15113:4;15105:13;;15101:27;-1:-1:-1;15091:55:1;;15142:1;15139;15132:12;15091:55;15178:2;15165:16;15201:76;15217:59;15273:2;15217:59;:::i;15201:76::-;15311:15;;;15393:1;15389:10;;;;15381:19;;15377:28;;;15342:12;;;;15417:19;;;15414:39;;;15449:1;15446;15439:12;15414:39;15473:11;;;;15493:142;15509:6;15504:3;15501:15;15493:142;;;15575:17;;15563:30;;15526:12;;;;15613;;;;15493:142;;;15654:5;14758:907;-1:-1:-1;;;;;;;14758:907:1:o;15670:380::-;15749:1;15745:12;;;;15792;;;15813:61;;15867:4;15859:6;15855:17;15845:27;;15813:61;15920:2;15912:6;15909:14;15889:18;15886:38;15883:161;;15966:10;15961:3;15957:20;15954:1;15947:31;16001:4;15998:1;15991:15;16029:4;16026:1;16019:15;15883:161;;15670:380;;;:::o;17244:289::-;17375:3;17413:6;17407:13;17429:66;17488:6;17483:3;17476:4;17468:6;17464:17;17429:66;:::i;:::-;17511:16;;;;;17244:289;-1:-1:-1;;17244:289:1:o;18015:722::-;18065:3;18106:5;18100:12;18135:36;18161:9;18135:36;:::i;:::-;18190:1;18207:18;;;18234:133;;;;18381:1;18376:355;;;;18200:531;;18234:133;-1:-1:-1;;18267:24:1;;18255:37;;18340:14;;18333:22;18321:35;;18312:45;;;-1:-1:-1;18234:133:1;;18376:355;18407:5;18404:1;18397:16;18436:4;18481:2;18478:1;18468:16;18506:1;18520:165;18534:6;18531:1;18528:13;18520:165;;;18612:14;;18599:11;;;18592:35;18655:16;;;;18549:10;;18520:165;;;18524:3;;;18714:6;18709:3;18705:16;18698:23;;18200:531;;;;;18015:722;;;;:::o;18742:197::-;18870:3;18895:38;18929:3;18921:6;18895:38;:::i;18944:545::-;19046:2;19041:3;19038:11;19035:448;;;19082:1;19107:5;19103:2;19096:17;19152:4;19148:2;19138:19;19222:2;19210:10;19206:19;19203:1;19199:27;19193:4;19189:38;19258:4;19246:10;19243:20;19240:47;;;-1:-1:-1;19281:4:1;19240:47;19336:2;19331:3;19327:12;19324:1;19320:20;19314:4;19310:31;19300:41;;19391:82;19409:2;19402:5;19399:13;19391:82;;;19454:17;;;19435:1;19424:13;19391:82;;;19395:3;;;18944:545;;;:::o;19665:1352::-;19791:3;19785:10;-1:-1:-1;;;;;19810:6:1;19807:30;19804:56;;;19840:18;;:::i;:::-;19869:97;19959:6;19919:38;19951:4;19945:11;19919:38;:::i;:::-;19913:4;19869:97;:::i;:::-;20021:4;;20085:2;20074:14;;20102:1;20097:663;;;;20804:1;20821:6;20818:89;;;-1:-1:-1;20873:19:1;;;20867:26;20818:89;-1:-1:-1;;19622:1:1;19618:11;;;19614:24;19610:29;19600:40;19646:1;19642:11;;;19597:57;20920:81;;20067:944;;20097:663;17962:1;17955:14;;;17999:4;17986:18;;-1:-1:-1;;20133:20:1;;;20251:236;20265:7;20262:1;20259:14;20251:236;;;20354:19;;;20348:26;20333:42;;20446:27;;;;20414:1;20402:14;;;;20281:19;;20251:236;;;20255:3;20515:6;20506:7;20503:19;20500:201;;;20576:19;;;20570:26;-1:-1:-1;;20659:1:1;20655:14;;;20671:3;20651:24;20647:37;20643:42;20628:58;20613:74;;20500:201;-1:-1:-1;;;;;20747:1:1;20731:14;;;20727:22;20714:36;;-1:-1:-1;19665:1352:1:o;21022:127::-;21083:10;21078:3;21074:20;21071:1;21064:31;21114:4;21111:1;21104:15;21138:4;21135:1;21128:15;21154:127;21215:10;21210:3;21206:20;21203:1;21196:31;21246:4;21243:1;21236:15;21270:4;21267:1;21260:15;21286:135;21325:3;21346:17;;;21343:43;;21366:18;;:::i;:::-;-1:-1:-1;21413:1:1;21402:13;;21286:135::o;21426:409::-;21628:2;21610:21;;;21667:2;21647:18;;;21640:30;21706:34;21701:2;21686:18;;21679:62;-1:-1:-1;;;21772:2:1;21757:18;;21750:43;21825:3;21810:19;;21426:409::o;22258:168::-;22331:9;;;22362;;22379:15;;;22373:22;;22359:37;22349:71;;22400:18;;:::i;22431:217::-;22471:1;22497;22487:132;;22541:10;22536:3;22532:20;22529:1;22522:31;22576:4;22573:1;22566:15;22604:4;22601:1;22594:15;22487:132;-1:-1:-1;22633:9:1;;22431:217::o;25421:369::-;25597:3;25635:6;25629:13;25651:66;25710:6;25705:3;25698:4;25690:6;25686:17;25651:66;:::i;:::-;25733:51;25776:6;25771:3;25767:16;25759:6;25733:51;:::i;:::-;25726:58;25421:369;-1:-1:-1;;;;;25421:369:1:o;26616:400::-;26818:2;26800:21;;;26857:2;26837:18;;;26830:30;26896:34;26891:2;26876:18;;26869:62;-1:-1:-1;;;26962:2:1;26947:18;;26940:34;27006:3;26991:19;;26616:400::o;27021:410::-;27223:2;27205:21;;;27262:2;27242:18;;;27235:30;27301:34;27296:2;27281:18;;27274:62;-1:-1:-1;;;27367:2:1;27352:18;;27345:44;27421:3;27406:19;;27021:410::o;28209:125::-;28274:9;;;28295:10;;;28292:36;;;28308:18;;:::i;29940:128::-;30007:9;;;30028:11;;;30025:37;;;30042:18;;:::i;30073:401::-;30275:2;30257:21;;;30314:2;30294:18;;;30287:30;30353:34;30348:2;30333:18;;30326:62;-1:-1:-1;;;30419:2:1;30404:18;;30397:35;30464:3;30449:19;;30073:401::o;34435:414::-;34637:2;34619:21;;;34676:2;34656:18;;;34649:30;34715:34;34710:2;34695:18;;34688:62;-1:-1:-1;;;34781:2:1;34766:18;;34759:48;34839:3;34824:19;;34435:414::o;35816:127::-;35877:10;35872:3;35868:20;35865:1;35858:31;35908:4;35905:1;35898:15;35932:4;35929:1;35922:15;36370:489;-1:-1:-1;;;;;36639:15:1;;;36621:34;;36691:15;;36686:2;36671:18;;36664:43;36738:2;36723:18;;36716:34;;;36786:3;36781:2;36766:18;;36759:31;;;36564:4;;36807:46;;36833:19;;36825:6;36807:46;:::i;:::-;36799:54;36370:489;-1:-1:-1;;;;;;36370:489:1:o;36864:249::-;36933:6;36986:2;36974:9;36965:7;36961:23;36957:32;36954:52;;;37002:1;36999;36992:12;36954:52;37034:9;37028:16;37053:30;37077:5;37053:30;:::i;38624:127::-;38685:10;38680:3;38676:20;38673:1;38666:31;38716:4;38713:1;38706:15;38740:4;38737:1;38730:15
Swarm Source
ipfs://e05317e5c8db403094f65f29cbc4fb627e7719208d0c4e18c764580459ef475d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.