Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- ReservoirErc721
- Optimization enabled
- true
- Compiler version
- v0.8.17+commit.8df45f5f
- Optimization runs
- 200
- EVM Version
- default
- Verified at
- 2024-05-14T14:51:51.252116Z
Constructor Arguments
0x000000000000000000000000f3d63166f0ca56c3c1a3508fce03ff0cf3fb691e00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000f3d63166f0ca56c3c1a3508fce03ff0cf3fb691e00000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000003368747470733a2f2f746573742d746f6b656e732d6d657461646174612e76657263656c2e6170702f6170692f6572633732312f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000003b68747470733a2f2f746573742d746f6b656e732d6d657461646174612e76657263656c2e6170702f6170692f6572633732312f636f6e74726163740000000000
Arg [0] (address) : 0xf3d63166f0ca56c3c1a3508fce03ff0cf3fb691e
Arg [1] (string) : https://test-tokens-metadata.vercel.app/api/erc721/
Arg [2] (string) : https://test-tokens-metadata.vercel.app/api/erc721/contract
Arg [3] (address) : 0xf3d63166f0ca56c3c1a3508fce03ff0cf3fb691e
Arg [4] (uint256) : 1000
contracts/tokens/ReservoirErc721.sol
// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "@openzeppelin/contracts/access/Ownable.sol";import "@openzeppelin/contracts/token/ERC721/ERC721.sol";contract ReservoirErc721 is ERC721, Ownable {// Fieldsuint256 private nextTokenId;string private baseTokenURI;address private royaltyRecipient;uint256 private royaltyBps;string public contractURI;// Constructorconstructor(address _owner,string memory _baseTokenURI,string memory _contractURI,address _royaltyRecipient,uint256 _royaltyBps) ERC721("Reservoir", "RSV") {baseTokenURI = _baseTokenURI;contractURI = _contractURI;royaltyRecipient = _royaltyRecipient;royaltyBps = _royaltyBps;_transferOwnership(_owner);}// Public methodsfunction mint() external {_mint(msg.sender, nextTokenId++);}// Owner methods
@openzeppelin/contracts/access/Ownable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @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.
@openzeppelin/contracts/token/ERC721/ERC721.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol)pragma solidity ^0.8.0;import "./IERC721.sol";import "./IERC721Receiver.sol";import "./extensions/IERC721Metadata.sol";import "../../utils/Address.sol";import "../../utils/Context.sol";import "../../utils/Strings.sol";import "../../utils/introspection/ERC165.sol";/*** @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 namestring private _name;// Token symbolstring private _symbol;// Mapping from token ID to owner addressmapping(uint256 => address) private _owners;// Mapping owner address to token countmapping(address => uint256) private _balances;// Mapping from token ID to approved addressmapping(uint256 => address) private _tokenApprovals;// Mapping from owner to operator approvalsmapping(address => mapping(address => bool)) private _operatorApprovals;/**
@openzeppelin/contracts/token/ERC721/IERC721.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)pragma solidity ^0.8.0;import "../../utils/introspection/IERC165.sol";/*** @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);/**
@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// SPDX-License-Identifier: MIT// 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);}
@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @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);}
@openzeppelin/contracts/utils/Address.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.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** Furthermore, `isContract` will also return true if the target contract within* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,* which only has an effect at the end of a transaction.* ====** [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
@openzeppelin/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.4) (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;}function _contextSuffixLength() internal view virtual returns (uint256) {return 0;}}
@openzeppelin/contracts/utils/Strings.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)pragma solidity ^0.8.0;import "./math/Math.sol";import "./math/SignedMath.sol";/*** @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-assemblyassembly {ptr := add(buffer, add(32, length))}while (true) {ptr--;/// @solidity memory-safe-assemblyassembly {mstore8(ptr, byte(mod(value, 10), _SYMBOLS))}value /= 10;if (value == 0) break;}return buffer;}}/**
@openzeppelin/contracts/utils/introspection/ERC165.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)pragma solidity ^0.8.0;import "./IERC165.sol";/*** @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;}}
@openzeppelin/contracts/utils/introspection/IERC165.sol
// SPDX-License-Identifier: MIT// 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);}
@openzeppelin/contracts/utils/math/Math.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.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 infinityUp, // Toward infinityZero // 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.*
@openzeppelin/contracts/utils/math/SignedMath.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)pragma solidity ^0.8.0;/*** @dev Standard signed math utilities missing in the Solidity language.*/library SignedMath {/*** @dev Returns the largest of two signed numbers.*/function max(int256 a, int256 b) internal pure returns (int256) {return a > b ? a : b;}/*** @dev Returns the smallest of two signed numbers.*/function min(int256 a, int256 b) internal pure returns (int256) {return a < b ? a : b;}/*** @dev Returns the average of two signed numbers without overflow.* The result is rounded towards zero.*/function average(int256 a, int256 b) internal pure returns (int256) {// Formula from the book "Hacker's Delight"int256 x = (a & b) + ((a ^ b) >> 1);return x + (int256(uint256(x) >> 255) & (a ^ b));}/*** @dev Returns the absolute unsigned value of a signed value.*/function abs(int256 n) internal pure returns (uint256) {unchecked {// must be unchecked in order to support `n = type(int256).min`return uint256(n >= 0 ? n : -n);}
Compiler Settings
{"viaIR":true,"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers"]}},"optimizer":{"runs":200,"enabled":true},"libraries":{}}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_owner","internalType":"address"},{"type":"string","name":"_baseTokenURI","internalType":"string"},{"type":"string","name":"_contractURI","internalType":"string"},{"type":"address","name":"_royaltyRecipient","internalType":"address"},{"type":"uint256","name":"_royaltyBps","internalType":"uint256"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"approved","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"ApprovalForAll","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"operator","internalType":"address","indexed":true},{"type":"bool","name":"approved","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"approve","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"contractURI","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getApproved","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isApprovedForAll","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"operator","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"ownerOf","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"receiver","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}],"name":"royaltyInfo","inputs":[{"type":"uint256","name":"","internalType":"uint256"},{"type":"uint256","name":"price","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setApprovalForAll","inputs":[{"type":"address","name":"operator","internalType":"address"},{"type":"bool","name":"approved","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"tokenURI","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateBaseTokenURI","inputs":[{"type":"string","name":"_baseTokenURI","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateContractURI","inputs":[{"type":"string","name":"_contractURI","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateRoyalty","inputs":[{"type":"address","name":"_royaltyRecipient","internalType":"address"},{"type":"uint256","name":"_royaltyBps","internalType":"uint256"}]}]
Contract Creation Code
0x608060405234620006d65762002087803803806200001d81620006fb565b928339810160a082820312620006d657620000388262000721565b60208301519091906001600160401b038111620006d657816200005d91850162000736565b604084015190916001600160401b038211620006d6576200008091850162000736565b926080620000916060830162000721565b910151916200009f620006db565b60098152682932b9b2b93b37b4b960b91b6020820152620000bf620006db565b60038152622929ab60e91b6020820152815190916001600160401b038211620003e45760005490600182811c92168015620006cb575b6020831014620003c35781601f84931162000668575b50602090601f8311600114620005f057600092620005e4575b50508160011b916000199060031b1c1916176000555b8051906001600160401b038211620003e45760015490600182811c92168015620005d9575b6020831014620003c35781601f84931162000575575b50602090601f8311600114620004fb57600092620004ef575b50508160011b916000199060031b1c1916176001555b620001af33620007a8565b8051906001600160401b038211620003e45760085490600182811c92168015620004e4575b6020831014620003c35781601f84931162000480575b50602090601f83116001146200040657600092620003fa575b50508160011b916000199060031b1c1916176008555b83516001600160401b038111620003e457600b54600181811c91168015620003d9575b6020821014620003c357601f811162000359575b506020601f8211600114620002ca578190620002ae96600092620002be575b50508160011b916000199060031b1c191617600b555b600980546001600160a01b0319166001600160a01b0392909216919091179055600a55620007a8565b6040516118359081620007f28239f35b0151905038806200026f565b600b60009081527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db99690601f198416905b81811062000340575091620002ae979184600195941062000326575b505050811b01600b5562000285565b015160001960f88460031b161c1916905538808062000317565b83830151895560019098019760209384019301620002fb565b600b6000527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9601f830160051c81019160208410620003b8575b601f0160051c01905b818110620003ab575062000250565b600081556001016200039c565b909150819062000393565b634e487b7160e01b600052602260045260246000fd5b90607f16906200023c565b634e487b7160e01b600052604160045260246000fd5b01519050388062000203565b60086000908152600080516020620020478339815191529350601f198516905b8181106200046757509084600195949392106200044d575b505050811b0160085562000219565b015160001960f88460031b161c191690553880806200043e565b9293602060018192878601518155019501930162000426565b600860005290915060008051602062002047833981519152601f840160051c81019160208510620004d9575b90601f859493920160051c01905b818110620004c95750620001ea565b60008155849350600101620004ba565b9091508190620004ac565b91607f1691620001d4565b0151905038806200018e565b60016000908152600080516020620020678339815191529350601f198516905b8181106200055c575090846001959493921062000542575b505050811b01600155620001a4565b015160001960f88460031b161c1916905538808062000533565b929360206001819287860151815501950193016200051b565b600160005290915060008051602062002067833981519152601f840160051c81019160208510620005ce575b90601f859493920160051c01905b818110620005be575062000175565b60008155849350600101620005af565b9091508190620005a1565b91607f16916200015f565b01519050388062000124565b6000808052600080516020620020278339815191529350601f198516905b8181106200064f575090846001959493921062000635575b505050811b016000556200013a565b015160001960f88460031b161c1916905538808062000626565b929360206001819287860151815501950193016200060e565b6000805290915060008051602062002027833981519152601f840160051c81019160208510620006c0575b90601f859493920160051c01905b818110620006b057506200010b565b60008155849350600101620006a1565b909150819062000693565b91607f1691620000f5565b600080fd5b60408051919082016001600160401b03811183821017620003e457604052565b6040519190601f01601f191682016001600160401b03811183821017620003e457604052565b51906001600160a01b0382168203620006d657565b919080601f84011215620006d65782516001600160401b038111620003e4576020906200076c601f8201601f19168301620006fb565b92818452828287010111620006d65760005b8181106200079457508260009394955001015290565b85810183015184820184015282016200077e565b600680546001600160a01b039283166001600160a01b0319821681179092559091167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a356fe608060408181526004918236101561001657600080fd5b600092833560e01c91826301ffc9a7146110805750816306fdde0314610fd8578163081812fc14610fb8578163095ea7b314610e4a5781631249c58b14610d2857816323b872dd14610cfe5781632a55205a14610c9f57816342842e0e14610c515781636352211e14610c20578163655391c914610ac057816370a0823114610a2a578163715018a6146109cd5781637e5b1e241461085a5781638da5cb5b1461083157816395d89b4114610789578163a22cb465146106bd578163b88d4fde14610655578163c87b56dd14610363578163e8a3d4851461027a578163e985e9c51461022c578163f2fde38b14610161575063fe70aaea1461011757600080fd5b3461015d5736600319011261015a5761012e61114d565b6101366112b7565b60018060a01b03166001600160601b0360a01b6009541617600955602435600a5580f35b80fd5b5080fd5b9050346102285760203660031901126102285761017c61114d565b906101856112b7565b6001600160a01b039182169283156101d6575050600654826001600160601b0360a01b821617600655167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b50503461015d578060031936011261015d5760ff8160209361024c61114d565b610254611168565b6001600160a01b0391821683526005875283832091168252855220549151911615158152f35b50503461015d578160031936011261015d5780519082600b5461029c8161127d565b8085529160019180831690811561033b57506001146102de575b5050506102c8826102da9403836111b3565b51918291602083526020830190611128565b0390f35b9450600b85527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db95b828610610323575050506102c88260206102da95820101946102b6565b80546020878701810191909152909501948101610306565b6102da9750869350602092506102c894915060ff191682840152151560051b820101946102b6565b8391503461015d576020918260031936011261015a57813560008181526002602052604090205461039e906001600160a01b0316151561130f565b84519282916008546103af8161127d565b80875286888101956001938a858216918260001461063a5750506001146105df575b6103dd925003876111b3565b85511561059c578694938893909291829186907a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000848181101561058f575b5050886d04ee2d6d415b85acef810000000080871015610580575b5050662386f26fc1000080861015610571575b506305f5e10080861015610562575b5061271080861015610556575b50506064841015610548575b60219082600a80961015610541575b939291906104a283820161049a610491826111eb565b9a519a8b6111b3565b808a526111eb565b888b019990601f1901368b3750870101905b61050b575b50505050936104fa926104df94926104ee6102da978a5197889551809288880190611105565b84019151809386840190611105565b010380845201826111b3565b925b51928284938452830190611128565b600019019083906f181899199a1a9b1b9c1cb0b131b232b360811b8282061a83530491821561053c579190826104b4565b6104b9565b018261047b565b60649093049260020161046c565b90940493018b80610460565b6008919295049401908c610453565b6010919295049401908c610444565b9091929504940190888d610431565b0494508691508c80610416565b5050949392505082519082820182811067ffffffffffffffff8211176105cc57845281529250906102da906104fc565b634e487b7160e01b825260418652602482fd5b505060088652868887847ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee35b8583106106215750506103dd93508201016103d1565b80919294505483858d0101520191018990848a9361060b565b60ff191689526103dd94151560051b84010191506103d19050565b83903461015d57608036600319011261015d5761067061114d565b610678611168565b9060643567ffffffffffffffff81116106b957366023820112156106b9576106b6938160246106ac93369301359101611207565b916044359161141e565b80f35b8480fd5b919050346102285780600319360112610228576106d861114d565b90602435918215158093036106b9576001600160a01b0316923384146107475750338452600560205280842083855260205280842060ff1981541660ff8416179055519081527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160203392a380f35b6020606492519162461bcd60e51b8352820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152fd5b50503461015d578160031936011261015d578051908260018054916107ad8361127d565b8086529282811690811561033b57506001146107d5575050506102c8826102da9403836111b3565b94508085527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b828610610819575050506102c88260206102da95820101946102b6565b805460208787018101919091529095019481016107fc565b50503461015d578160031936011261015d5760065490516001600160a01b039091168152602090f35b833461015a576108693661123e565b916108726112b7565b82519067ffffffffffffffff82116109ba5750610890600b5461127d565b601f8111610957575b50602080601f83116001146108d6575082938293926108cb575b50508160011b916000199060031b1c191617600b5580f35b0151905083806108b3565b600b8452601f198316947f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9929185905b87821061093f575050836001959610610926575b505050811b01600b5580f35b015160001960f88460031b161c1916905583808061091a565b80600185968294968601518155019501930190610906565b600b83527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9601f830160051c810191602084106109b0575b601f0160051c01905b8181106109a55750610899565b838155600101610998565b909150819061098f565b634e487b7160e01b835260419052602482fd5b833461015a578060031936011261015a576109e66112b7565b600680546001600160a01b0319811690915581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b8391503461015d57602036600319011261015d576001600160a01b03610a4e61114d565b16908115610a6b5760208480858581526003845220549051908152f35b608490602085519162461bcd60e51b8352820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152fd5b833461015a57610acf3661123e565b91610ad86112b7565b82519067ffffffffffffffff82116109ba5750610af660085461127d565b601f8111610bbd575b50602080601f8311600114610b3c57508293829392610b31575b50508160011b916000199060031b1c19161760085580f35b015190508380610b19565b60088452601f198316947ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3929185905b878210610ba5575050836001959610610b8c575b505050811b0160085580f35b015160001960f88460031b161c19169055838080610b80565b80600185968294968601518155019501930190610b6c565b600883527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3601f830160051c81019160208410610c16575b601f0160051c01905b818110610c0b5750610aff565b838155600101610bfe565b9091508190610bf5565b82843461015a57602036600319011261015a5750610c406020923561135b565b90516001600160a01b039091168152f35b83833461015d57610c613661117e565b91835193602085019085821067ffffffffffffffff831117610c8c576106b69697505285845261141e565b634e487b7160e01b875260418852602487fd5b9050823461015a578260031936011261015a57600954600a546001600160a01b039091169260243580830293928185041490151715610ceb575050612710908351928352046020820152f35b634e487b7160e01b825260119052602490fd5b833461015a576106b6610d103661117e565b91610d23610d1e84336114b9565b6113bc565b611581565b91905034610228578260031936011261022857600754916000198314610e3757600183016007553315610df55750600082815260026020526040902054610d7b906001600160a01b031615155b156117b3565b600082815260026020526040902054610d9e906001600160a01b03161515610d75565b33835260036020528083206001815401905581835260026020528220336001600160601b0360a01b82541617905533827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a480f35b6020606492519162461bcd60e51b8352820152602060248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152fd5b634e487b7160e01b845260119052602483fd5b905034610228578160031936011261022857610e6461114d565b6024359290916001600160a01b0391908280610e7f8761135b565b16941693808514610f6b57803314908115610f4c575b5015610ee457848652602052842080546001600160a01b03191683179055610ebc8361135b565b167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258480a480f35b6020608492519162461bcd60e51b8352820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152fd5b90508652600560205281862033875260205260ff828720541638610e95565b506020608492519162461bcd60e51b8352820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152fd5b82843461015a57602036600319011261015a5750610c406020923561137e565b50503461015d578160031936011261015d57805190828054610ff98161127d565b8085529160019180831690811561033b5750600114611024575050506102c8826102da9403836111b3565b80809650527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5635b828610611068575050506102c88260206102da95820101946102b6565b8054602087870181019190915290950194810161104b565b849134610228576020366003190112610228573563ffffffff60e01b8116809103610228576020925063152a902d60e11b81149081156110c2575b5015158152f35b6380ac58cd60e01b8114915081156110f4575b81156110e3575b50836110bb565b6301ffc9a760e01b149050836110dc565b635b5e139f60e01b811491506110d5565b60005b8381106111185750506000910152565b8181015183820152602001611108565b9060209161114181518092818552858086019101611105565b601f01601f1916010190565b600435906001600160a01b038216820361116357565b600080fd5b602435906001600160a01b038216820361116357565b6060906003190112611163576001600160a01b0390600435828116810361116357916024359081168103611163579060443590565b90601f8019910116810190811067ffffffffffffffff8211176111d557604052565b634e487b7160e01b600052604160045260246000fd5b67ffffffffffffffff81116111d557601f01601f191660200190565b929192611213826111eb565b9161122160405193846111b3565b829481845281830111611163578281602093846000960137010152565b6020600319820112611163576004359067ffffffffffffffff821161116357806023830112156111635781602461127a93600401359101611207565b90565b90600182811c921680156112ad575b602083101461129757565b634e487b7160e01b600052602260045260246000fd5b91607f169161128c565b6006546001600160a01b031633036112cb57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b1561131657565b60405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606490fd5b6000908152600260205260409020546001600160a01b031661127a81151561130f565b6000818152600260205260409020546113a1906001600160a01b0316151561130f565b6000908152600460205260409020546001600160a01b031690565b156113c357565b60405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608490fd5b90611442939291611432610d1e84336114b9565b61143d838383611581565b611692565b1561144957565b60405162461bcd60e51b81528061146260048201611466565b0390fd5b60809060208152603260208201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60608201520190565b906001600160a01b0380806114cd8461135b565b16931691838314938415611500575b5083156114ea575b50505090565b6114f69192935061137e565b16143880806114e4565b909350600052600560205260406000208260005260205260ff6040600020541692386114dc565b1561152e57565b60405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608490fd5b906115a99161158f8461135b565b6001600160a01b0393918416928492909183168414611527565b1691821561164157816115c6916115bf8661135b565b1614611527565b7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60008481526004602052604081206001600160601b0360a01b9081815416905583825260036020526040822060001981540190558482526040822060018154019055858252600260205284604083209182541617905580a4565b60405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b9293600093909291803b156117a8579484916116ec9660405180948193630a85bd0160e11b9788845233600485015260018060a01b0380921660248501526044840152608060648401528260209b8c976084830190611128565b0393165af1849181611768575b50611757575050503d60001461174f573d611713816111eb565b9061172160405192836111b3565b81528091833d92013e5b8051918261174c5760405162461bcd60e51b81528061146260048201611466565b01fd5b50606061172b565b6001600160e01b0319161492509050565b9091508581813d83116117a1575b61178081836111b3565b810103126106b957516001600160e01b0319811681036106b95790386116f9565b503d611776565b505050915050600190565b156117ba57565b60405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606490fdfea264697066735822122051f4ba8011832b7ad9b7b2b0324646385935e69cec9c6f77715b4f0a6a48678864736f6c63430008110033290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563f3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6000000000000000000000000f3d63166f0ca56c3c1a3508fce03ff0cf3fb691e00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000f3d63166f0ca56c3c1a3508fce03ff0cf3fb691e00000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000003368747470733a2f2f746573742d746f6b656e732d6d657461646174612e76657263656c2e6170702f6170692f6572633732312f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000003b68747470733a2f2f746573742d746f6b656e732d6d657461646174612e76657263656c2e6170702f6170692f6572633732312f636f6e74726163740000000000
Deployed ByteCode
0x608060408181526004918236101561001657600080fd5b600092833560e01c91826301ffc9a7146110805750816306fdde0314610fd8578163081812fc14610fb8578163095ea7b314610e4a5781631249c58b14610d2857816323b872dd14610cfe5781632a55205a14610c9f57816342842e0e14610c515781636352211e14610c20578163655391c914610ac057816370a0823114610a2a578163715018a6146109cd5781637e5b1e241461085a5781638da5cb5b1461083157816395d89b4114610789578163a22cb465146106bd578163b88d4fde14610655578163c87b56dd14610363578163e8a3d4851461027a578163e985e9c51461022c578163f2fde38b14610161575063fe70aaea1461011757600080fd5b3461015d5736600319011261015a5761012e61114d565b6101366112b7565b60018060a01b03166001600160601b0360a01b6009541617600955602435600a5580f35b80fd5b5080fd5b9050346102285760203660031901126102285761017c61114d565b906101856112b7565b6001600160a01b039182169283156101d6575050600654826001600160601b0360a01b821617600655167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b50503461015d578060031936011261015d5760ff8160209361024c61114d565b610254611168565b6001600160a01b0391821683526005875283832091168252855220549151911615158152f35b50503461015d578160031936011261015d5780519082600b5461029c8161127d565b8085529160019180831690811561033b57506001146102de575b5050506102c8826102da9403836111b3565b51918291602083526020830190611128565b0390f35b9450600b85527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db95b828610610323575050506102c88260206102da95820101946102b6565b80546020878701810191909152909501948101610306565b6102da9750869350602092506102c894915060ff191682840152151560051b820101946102b6565b8391503461015d576020918260031936011261015a57813560008181526002602052604090205461039e906001600160a01b0316151561130f565b84519282916008546103af8161127d565b80875286888101956001938a858216918260001461063a5750506001146105df575b6103dd925003876111b3565b85511561059c578694938893909291829186907a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000848181101561058f575b5050886d04ee2d6d415b85acef810000000080871015610580575b5050662386f26fc1000080861015610571575b506305f5e10080861015610562575b5061271080861015610556575b50506064841015610548575b60219082600a80961015610541575b939291906104a283820161049a610491826111eb565b9a519a8b6111b3565b808a526111eb565b888b019990601f1901368b3750870101905b61050b575b50505050936104fa926104df94926104ee6102da978a5197889551809288880190611105565b84019151809386840190611105565b010380845201826111b3565b925b51928284938452830190611128565b600019019083906f181899199a1a9b1b9c1cb0b131b232b360811b8282061a83530491821561053c579190826104b4565b6104b9565b018261047b565b60649093049260020161046c565b90940493018b80610460565b6008919295049401908c610453565b6010919295049401908c610444565b9091929504940190888d610431565b0494508691508c80610416565b5050949392505082519082820182811067ffffffffffffffff8211176105cc57845281529250906102da906104fc565b634e487b7160e01b825260418652602482fd5b505060088652868887847ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee35b8583106106215750506103dd93508201016103d1565b80919294505483858d0101520191018990848a9361060b565b60ff191689526103dd94151560051b84010191506103d19050565b83903461015d57608036600319011261015d5761067061114d565b610678611168565b9060643567ffffffffffffffff81116106b957366023820112156106b9576106b6938160246106ac93369301359101611207565b916044359161141e565b80f35b8480fd5b919050346102285780600319360112610228576106d861114d565b90602435918215158093036106b9576001600160a01b0316923384146107475750338452600560205280842083855260205280842060ff1981541660ff8416179055519081527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160203392a380f35b6020606492519162461bcd60e51b8352820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152fd5b50503461015d578160031936011261015d578051908260018054916107ad8361127d565b8086529282811690811561033b57506001146107d5575050506102c8826102da9403836111b3565b94508085527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b828610610819575050506102c88260206102da95820101946102b6565b805460208787018101919091529095019481016107fc565b50503461015d578160031936011261015d5760065490516001600160a01b039091168152602090f35b833461015a576108693661123e565b916108726112b7565b82519067ffffffffffffffff82116109ba5750610890600b5461127d565b601f8111610957575b50602080601f83116001146108d6575082938293926108cb575b50508160011b916000199060031b1c191617600b5580f35b0151905083806108b3565b600b8452601f198316947f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9929185905b87821061093f575050836001959610610926575b505050811b01600b5580f35b015160001960f88460031b161c1916905583808061091a565b80600185968294968601518155019501930190610906565b600b83527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9601f830160051c810191602084106109b0575b601f0160051c01905b8181106109a55750610899565b838155600101610998565b909150819061098f565b634e487b7160e01b835260419052602482fd5b833461015a578060031936011261015a576109e66112b7565b600680546001600160a01b0319811690915581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b8391503461015d57602036600319011261015d576001600160a01b03610a4e61114d565b16908115610a6b5760208480858581526003845220549051908152f35b608490602085519162461bcd60e51b8352820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152fd5b833461015a57610acf3661123e565b91610ad86112b7565b82519067ffffffffffffffff82116109ba5750610af660085461127d565b601f8111610bbd575b50602080601f8311600114610b3c57508293829392610b31575b50508160011b916000199060031b1c19161760085580f35b015190508380610b19565b60088452601f198316947ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3929185905b878210610ba5575050836001959610610b8c575b505050811b0160085580f35b015160001960f88460031b161c19169055838080610b80565b80600185968294968601518155019501930190610b6c565b600883527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3601f830160051c81019160208410610c16575b601f0160051c01905b818110610c0b5750610aff565b838155600101610bfe565b9091508190610bf5565b82843461015a57602036600319011261015a5750610c406020923561135b565b90516001600160a01b039091168152f35b83833461015d57610c613661117e565b91835193602085019085821067ffffffffffffffff831117610c8c576106b69697505285845261141e565b634e487b7160e01b875260418852602487fd5b9050823461015a578260031936011261015a57600954600a546001600160a01b039091169260243580830293928185041490151715610ceb575050612710908351928352046020820152f35b634e487b7160e01b825260119052602490fd5b833461015a576106b6610d103661117e565b91610d23610d1e84336114b9565b6113bc565b611581565b91905034610228578260031936011261022857600754916000198314610e3757600183016007553315610df55750600082815260026020526040902054610d7b906001600160a01b031615155b156117b3565b600082815260026020526040902054610d9e906001600160a01b03161515610d75565b33835260036020528083206001815401905581835260026020528220336001600160601b0360a01b82541617905533827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a480f35b6020606492519162461bcd60e51b8352820152602060248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152fd5b634e487b7160e01b845260119052602483fd5b905034610228578160031936011261022857610e6461114d565b6024359290916001600160a01b0391908280610e7f8761135b565b16941693808514610f6b57803314908115610f4c575b5015610ee457848652602052842080546001600160a01b03191683179055610ebc8361135b565b167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258480a480f35b6020608492519162461bcd60e51b8352820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152fd5b90508652600560205281862033875260205260ff828720541638610e95565b506020608492519162461bcd60e51b8352820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152fd5b82843461015a57602036600319011261015a5750610c406020923561137e565b50503461015d578160031936011261015d57805190828054610ff98161127d565b8085529160019180831690811561033b5750600114611024575050506102c8826102da9403836111b3565b80809650527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5635b828610611068575050506102c88260206102da95820101946102b6565b8054602087870181019190915290950194810161104b565b849134610228576020366003190112610228573563ffffffff60e01b8116809103610228576020925063152a902d60e11b81149081156110c2575b5015158152f35b6380ac58cd60e01b8114915081156110f4575b81156110e3575b50836110bb565b6301ffc9a760e01b149050836110dc565b635b5e139f60e01b811491506110d5565b60005b8381106111185750506000910152565b8181015183820152602001611108565b9060209161114181518092818552858086019101611105565b601f01601f1916010190565b600435906001600160a01b038216820361116357565b600080fd5b602435906001600160a01b038216820361116357565b6060906003190112611163576001600160a01b0390600435828116810361116357916024359081168103611163579060443590565b90601f8019910116810190811067ffffffffffffffff8211176111d557604052565b634e487b7160e01b600052604160045260246000fd5b67ffffffffffffffff81116111d557601f01601f191660200190565b929192611213826111eb565b9161122160405193846111b3565b829481845281830111611163578281602093846000960137010152565b6020600319820112611163576004359067ffffffffffffffff821161116357806023830112156111635781602461127a93600401359101611207565b90565b90600182811c921680156112ad575b602083101461129757565b634e487b7160e01b600052602260045260246000fd5b91607f169161128c565b6006546001600160a01b031633036112cb57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b1561131657565b60405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606490fd5b6000908152600260205260409020546001600160a01b031661127a81151561130f565b6000818152600260205260409020546113a1906001600160a01b0316151561130f565b6000908152600460205260409020546001600160a01b031690565b156113c357565b60405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608490fd5b90611442939291611432610d1e84336114b9565b61143d838383611581565b611692565b1561144957565b60405162461bcd60e51b81528061146260048201611466565b0390fd5b60809060208152603260208201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60608201520190565b906001600160a01b0380806114cd8461135b565b16931691838314938415611500575b5083156114ea575b50505090565b6114f69192935061137e565b16143880806114e4565b909350600052600560205260406000208260005260205260ff6040600020541692386114dc565b1561152e57565b60405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608490fd5b906115a99161158f8461135b565b6001600160a01b0393918416928492909183168414611527565b1691821561164157816115c6916115bf8661135b565b1614611527565b7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60008481526004602052604081206001600160601b0360a01b9081815416905583825260036020526040822060001981540190558482526040822060018154019055858252600260205284604083209182541617905580a4565b60405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b9293600093909291803b156117a8579484916116ec9660405180948193630a85bd0160e11b9788845233600485015260018060a01b0380921660248501526044840152608060648401528260209b8c976084830190611128565b0393165af1849181611768575b50611757575050503d60001461174f573d611713816111eb565b9061172160405192836111b3565b81528091833d92013e5b8051918261174c5760405162461bcd60e51b81528061146260048201611466565b01fd5b50606061172b565b6001600160e01b0319161492509050565b9091508581813d83116117a1575b61178081836111b3565b810103126106b957516001600160e01b0319811681036106b95790386116f9565b503d611776565b505050915050600190565b156117ba57565b60405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606490fdfea264697066735822122051f4ba8011832b7ad9b7b2b0324646385935e69cec9c6f77715b4f0a6a48678864736f6c63430008110033