ETH Price: $3,490.35 (+0.06%)
Gas: 2 Gwei

Token

Dream Babes (DREAM)
 

Overview

Max Total Supply

401 DREAM

Holders

198

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 DREAM
0x07bb01977655f49b04405effec0d6e030fb22218
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DreamMaker

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 2: DreamMaker.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./DreamUtil.sol";

/**
 * @title DreamMaker contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract DreamMaker is ERC721, Ownable
{
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

	/* CID 
	* Constant CID of the IPFS folder containing tokens. The art will be uploaded before the Contract is deployed.
	* This guarantees that the token order or contents cannot be changed afterwards.
	*/
	string public constant PROVENANCE_CID = "QmeXbJhw6Lp7g7FcV6yHzyvoSTcvKQxFVFdXZVQa8SQYvm";	

	/* PRICES */
	uint256 public PRICE_PASS 			= 200000000000000000;	// 0.20 ETH
	uint256 public PRICE_MINT_WITH_PASS =  80000000000000000;	// 0.08	ETH
	uint256 public PRICE_MINT_WITH_T1 	= 100000000000000000;	// 0.10 ETH 
	uint256 public PRICE_MINT_WITH_T2 	= 120000000000000000;	// 0.12 ETH
	uint256 public PRICE_MINT_GENERAL 	= 150000000000000000;	// 0.15 ETH
	
	/* LIMITS */ 
	uint256 public MAX_DREAMS 			= 10000; 
	uint256 public MINTS_PER_GENERAL 	= 1;
	uint256 public MAX_PASSES 			= 500;
	uint256 public MINTS_PER_PASS 		= 3;
	uint256 public MAX_T1 				= 1000;
	uint256 public MINTS_PER_T1 		= 2;
	uint256 public MAX_T2 				= 2000; 
	uint256 public MINTS_PER_T2 		= 1;
	uint256 public MAX_RESERVE 			= 250;
	
	/* TIMESTAMPS */ 
	uint256 public TIMESTAMP_T1 		= 1643112000;
	uint256 public TIMESTAMP_T2 		= 1643198400;
	uint256 public TIMESTAMP_GENERAL 	= 1643284800;
	uint256 public TIMESTAMP_REVEAL 	= 1643371200;
	
	/* LISTS */
	mapping(address => bool) public passList;
	mapping(address => uint256) public whiteList;
	mapping(address => uint256) public mintList;
	address[] public passOwners;
	
	/* URIS */ 
	string public _blindURI; 
	string public _tokenURI; 
	string public _contractURI; 
	
	/* TOGGLES */
	bool public saleIsActive = true;
	
	/* RESERVED */
	uint256 public reserved;
	address wallet1;
    address wallet2;
	address wallet3;
	address publisher;
	
	constructor() ERC721("Dream Babes", "DREAM") 
	{
		wallet1 = 0x6e6C4b1F09bDb69a0F7E63541F0cc849f1c59138;
		wallet2 = 0x04871659708aAC877AeF2181ef4f7cfF0CE69DDc;
		wallet3 = 0xd22B4DA311d97299652ac1a7a4C18C1487fb9a56;
		/* this will be set once, after the initial deployment */
		publisher = address(0);

		_blindURI = "https://dreambabes.mypinata.cloud/ipfs/QmZUbUqiUSyHogTGr4zveDXLAdXGm2hB2gWKcnDujPaUFj";
		_tokenURI = "https://dreambabes.mypinata.cloud/ipfs/QmQJ5iyee8aHAfhWtQiW31K1iM2BKBUKvGmhSNqvPYaQd3/";

		/* this will be set after the initial deployment, because OpenSea requires the address of this contract to send the royalties to it*/
		_contractURI = "";
	}

	/* SET TIMESTAMP_GENERAL 
	*/
	function setTimestampGeneral(uint256 value) external onlyOwner
	{
		TIMESTAMP_GENERAL = value;
	}

	/* SET TIMESTAMP_REVEAL 
	*/
	function setTimestampReveal(uint256 value) external onlyOwner
	{
		TIMESTAMP_REVEAL = value;
	}

	/* SET TIMESTAMP_T1 
	*/
	function setTimestampT1(uint256 value) external onlyOwner
	{
		TIMESTAMP_T1 = value;
	}

	/* SET TIMESTAMP_T2 
	*/
	function setTimestampT2(uint256 value) external onlyOwner
	{
		TIMESTAMP_T2 = value;
	}

	/* SET PUBLISHER ADDRESS 
	*/
	function setPublisher(address value) external onlyOwner
	{
		require(publisher == address(0), "Already set!");
		publisher = value;
	}

    /* RESERVE 
        - initial reserve for team members
    */
    function reserveDreams(address[] memory addresses, uint256 numberOfTokens) external onlyOwner 
	{
		require(reserved + numberOfTokens.mul(addresses.length) <= MAX_RESERVE);

		for (uint256 a = 0; a < addresses.length; a++)
		{
			require(addresses[a] != address(0), "0 address");

			uint256 supply = totalSupply();
			for (uint256 i = 0; i < numberOfTokens; i++) 
			{
				_safeMint(addresses[a], supply + i);
			}

			reserved += numberOfTokens;
		}
    }

	/* BURN ALL 
		- burn all 
	*/
	function burnDreams() external onlyOwner 
	{
        MAX_DREAMS = totalSupply();
        if (startingIndexBlock == 0)
		{
            startingIndexBlock = block.number;
        } 
    }
	
	/* PASS RESERVE 
        - initial reserve for supporters
    */
    function reservePasses(address[] memory addresses) external onlyOwner 
	{
        for (uint256 i = 0; i < addresses.length; i++)
		{
			passOwners.push(addresses[i]);
			passList[addresses[i]] = true; 
		}
    }

	function getPassList() view external returns (address[] memory)
	{
		return passOwners;
	}

	/* WHITELIST
		- set whitelist for an array of addresses
	*/
	function whitelist(address[] memory addresses, uint16 value) external onlyOwner 
	{
		require(value == 1 || value == 2, "Invalid whitelist");

		for (uint256 i = 0; i < addresses.length; i++)
		{
			require (addresses[i] != address(0));
			whiteList[addresses[i]] = value; 
		}
	}

	/* GET/SET CONTRACT URI 
		- sets the contract URI for Opensea integration
	*/
	function setContractURI(string memory value) external onlyOwner
	{
		_contractURI = value; 
	}
	function contractURI() public view returns (string memory) 
	{
        return _contractURI;
    }

	/* GET TOKEN URI 
	*/
	function tokenURI(uint256 tokenId) public view virtual override(ERC721) returns (string memory) 
	{
        require(_exists(tokenId), "Nonexistent token");

		if (block.timestamp < TIMESTAMP_REVEAL) 
        {
            return string(abi.encodePacked(_blindURI));
        } 
        else 
        {
			string memory sequenceId;
			sequenceId = uint2str((tokenId + startingIndex) % MAX_DREAMS);

        	return string(abi.encodePacked(_tokenURI, sequenceId));
		}
	}

	/* WITHDRAW 
		- withdraws funds
	*/ 
	function withdraw() external onlyOwner
	{	
		uint256 balance = address(this).balance;

		// Send shares to team
        uint256 baseShare = balance.mul(27).div(100);
        payable(wallet1).transfer(baseShare);
        payable(wallet2).transfer(baseShare);
		payable(wallet3).transfer(baseShare);

		// Send share to publisher
		if (publisher != address(0))
		{
			uint256 publisherShare = balance.mul(9).div(100);
			payable(publisher).transfer(publisherShare);
		}

		// Send an even split to all Mint Pass owners
		if (passOwners.length > 0)
		{
			uint256 passShare = balance.mul(10).div(100).div(passOwners.length);
			for(uint256 i = 0; i < passOwners.length; i++)
			{
				payable(passOwners[i]).transfer(passShare);
			}
		}
	}
	
	/* SET SALE STATE 
		- sets sale to active or inactive state
	*/
	function setSaleState(bool state) external onlyOwner
	{
		saleIsActive = state;
	}

	/* MINT PASS 
		- mints a pass to enable the user to mint before presale starts
	*/ 
	function mintPass() external payable 
	{
		require(msg.value >= PRICE_PASS, "Ether value incorrect");
        require(passList[msg.sender] == false, "Already bought");
		require(MAX_PASSES > 0, "No passes left");
		
		passList[msg.sender] = true;
		passOwners.push(msg.sender);
		MAX_PASSES--;
	}

	/* MINT DREAM 
		- mints a dream token 
	*/
	uint256 private startingIndex = 0;
	uint256 private startingIndexBlock = 0;
	function mintDreams(uint256 numberOfTokens) external payable 
	{
		require(saleIsActive == true, "Sale inactive");
		require(totalSupply().add(numberOfTokens) <= MAX_DREAMS, "Max reached");
		require(numberOfTokens > 0, "0 tokens");

		// Pass holders are privileged
		if (passList[msg.sender] == true)
		{
			require(PRICE_MINT_WITH_PASS.mul(numberOfTokens) <= msg.value, "P: value incorrect");
			require(mintList[msg.sender].add(numberOfTokens) <= MINTS_PER_PASS , "P: zero dreams");
		}
		// Whitelist T1 holders next
		else if (whiteList[msg.sender] == 1) 
		{
			require(block.timestamp >= TIMESTAMP_T1, "T1: not started ");
			require(PRICE_MINT_WITH_T1.mul(numberOfTokens) <= msg.value, "T1: value incorrect");
			require(mintList[msg.sender].add(numberOfTokens) <= MINTS_PER_T1 , "T1: zero dreams");
		}
		// Whitelist T2 holders next
		else if (whiteList[msg.sender] == 2) 
		{
			require(block.timestamp >= TIMESTAMP_T2, "T2: not started");
			require(PRICE_MINT_WITH_T2.mul(numberOfTokens) <= msg.value, "T2: value incorrect");
			require(mintList[msg.sender].add(numberOfTokens) <= MINTS_PER_T2 , "T2: zero dreams");
		}
		// General sale 
		else
		{
			require(block.timestamp >= TIMESTAMP_GENERAL, "G: not started");
			require(PRICE_MINT_GENERAL.mul(numberOfTokens) <= msg.value, "G: value incorrect");
			require(mintList[msg.sender].add(numberOfTokens) <= MINTS_PER_GENERAL , "G: zero dreams");
		}

        for(uint256 i = 0; i < numberOfTokens; i++) 
		{
            uint256 mintIndex = totalSupply();
			
            if (mintIndex < MAX_DREAMS) 
			{
                _safeMint(msg.sender, mintIndex);
            }
        }

        mintList[msg.sender] = mintList[msg.sender].add(numberOfTokens);

        if (startingIndexBlock == 0 && (totalSupply() == MAX_DREAMS || block.timestamp >= TIMESTAMP_REVEAL)) 
		{
            startingIndexBlock = block.number;
        } 
    }

	/* SET STARTING INDEX 
		- sets the startingIndex to a random position
		- makes sure the index is actually random for everyone, including us
		- this function can only be called once
	*/
	function setStartingIndex() public onlyOwner
	{
        require(startingIndex == 0, "SI set");
        require(startingIndexBlock != 0, "SIB not set");
        
        startingIndex = uint(blockhash(startingIndexBlock)) % MAX_DREAMS;
        if (block.number.sub(startingIndexBlock) > 255) 
		{
            startingIndex = uint(blockhash(block.number - 1)) % MAX_DREAMS;
        }

        if (startingIndex == 0) 
		{
            startingIndex = startingIndex.add(1);
        }
    }

	// never call this
	function emergencySetStartingIndexBlock() public onlyOwner 
	{
        require(startingIndex == 0, "SI set");
        
        startingIndexBlock = block.number;
    }
	
	/* TOKENS OF 
		- gets all tokens for a certain address
		- used for Dream Babe feature integration in Dream Babes and other games
	*/
	function tokensOfOwner(address _owner) external view returns(uint256[] memory) 
	{
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) 
		{
            return new uint256[](0);
        } 
		else 
		{
            uint256[] memory result = new uint256[](tokenCount);
            for (uint256 index; index < tokenCount; index++) 
			{
                result[index] = (tokenOfOwnerByIndex(_owner, index) + startingIndex) % MAX_DREAMS;
            }
            return result;
        }
    }

    /* STATUS OF 
		- returns the status of owner - 3 for Pass, 2 for T2, 1 for T1 and 0 for general user
	*/
    function statusOfOwner(address _owner) external view returns(uint256)
    {
        if (passList[_owner] == true)
        {
            return 3;
        }
        else 
        {
            return whiteList[_owner];   
        }
    }
}

File 2 of 2: DreamUtil.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// File: @openzeppelin/contracts/utils/Context.sol

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File: @openzeppelin/contracts/introspection/IERC165.sol

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


// File: @openzeppelin/contracts/token/ERC721/IERC721.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);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}


// File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.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);
}


// File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}


// File: @openzeppelin/contracts/introspection/ERC165.sol

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}


// File: @openzeppelin/contracts/math/SafeMath.sol

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}


// File: @openzeppelin/contracts/utils/Address.sol

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File: @openzeppelin/contracts/utils/EnumerableSet.sol

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}


// File: @openzeppelin/contracts/utils/EnumerableMap.sol

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}


// File: @openzeppelin/contracts/utils/Strings.sol

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}


// File: @openzeppelin/contracts/token/ERC721/ERC721.sol

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

    // 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;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @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_;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 || ERC721.isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _tokenOwners.contains(tokenId);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId); // internal owner

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

    /**
     * @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); // internal owner
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}


// File: @openzeppelin/contracts/access/Ownable.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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    
    function uint2str(uint _i) internal pure returns (string memory _uintAsString) 
    {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_DREAMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PASSES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_T1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_T2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTS_PER_GENERAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTS_PER_PASS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTS_PER_T1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTS_PER_T2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_MINT_GENERAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_MINT_WITH_PASS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_MINT_WITH_T1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_MINT_WITH_T2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PASS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_CID","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TIMESTAMP_GENERAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TIMESTAMP_REVEAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TIMESTAMP_T1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TIMESTAMP_T2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_blindURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnDreams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","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":[],"name":"getPassList","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintDreams","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPass","outputs":[],"stateMutability":"payable","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":"","type":"address"}],"name":"passList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"passOwners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveDreams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"reservePasses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","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":"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":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"string","name":"value","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"value","type":"address"}],"name":"setPublisher","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setTimestampGeneral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setTimestampReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setTimestampT1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setTimestampT2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"statusOfOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint16","name":"value","type":"uint16"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526702c68af0bb140000600b5567011c37937e080000600c5567016345785d8a0000600d556701aa535d3d0c0000600e55670214e8348c4f0000600f55612710601055600160118190556101f460125560036013556103e860145560026015556107d0601655601781905560fa6018556361efe6406019556361f137c0601a556361f28940601b556361f3dac0601c556024805460ff191690911790556000602a819055602b55348015620000b757600080fd5b50604080518082018252600b81526a447265616d20426162657360a81b60208083019190915282518084019093526005835264445245414d60d81b9083015290620001096301ffc9a760e01b620002a6565b81516200011e9060069060208501906200032a565b508051620001349060079060208401906200032a565b50620001476380ac58cd60e01b620002a6565b62000159635b5e139f60e01b620002a6565b6200016b63780e9d6360e01b620002a6565b5050600a80546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350602680546001600160a01b0319908116736e6c4b1f09bdb69a0f7e63541f0cc849f1c59138179091556027805482167304871659708aac877aef2181ef4f7cff0ce69ddc17905560288054821673d22b4da311d97299652ac1a7a4c18c1487fb9a561790556029805490911690556040805160808101909152605580825262003f6c602083013980516200024d916021916020909101906200032a565b5060405180608001604052806056815260200162003fc16056913980516200027e916022916020909101906200032a565b506040805160208101918290526000908190526200029f916023916200032a565b506200040d565b6001600160e01b03198082161415620003055760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015260640160405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b8280546200033890620003d0565b90600052602060002090601f0160209004810192826200035c5760008555620003a7565b82601f106200037757805160ff1916838001178555620003a7565b82800160010185558215620003a7579182015b82811115620003a75782518255916020019190600101906200038a565b50620003b5929150620003b9565b5090565b5b80821115620003b55760008155600101620003ba565b600181811c90821680620003e557607f821691505b602082108114156200040757634e487b7160e01b600052602260045260246000fd5b50919050565b613b4f806200041d6000396000f3fe6080604052600436106103ef5760003560e01c80638da5cb5b11610208578063c4e3709511610118578063e8a3d485116100ab578063ee71faff1161007a578063ee71faff14610b33578063ee81153c14610b53578063eff31e9e14610b69578063f2fde38b14610b7f578063fe60d12c14610b9f57600080fd5b8063e8a3d48514610aa6578063e985e9c514610abb578063e986655014610b04578063eb8d244414610b1957600080fd5b8063c9eeceb1116100e7578063c9eeceb114610a20578063cab6366114610a36578063d90eb6c714610a56578063e55be77b14610a7657600080fd5b8063c4e37095146109b4578063c6a3fba1146109d4578063c7954546146109ea578063c87b56dd14610a0057600080fd5b8063a284fbbc1161019b578063b4e7fd841161016a578063b4e7fd8414610929578063b54f29641461093c578063b88d4fde14610952578063bef432c614610972578063c0e727401461099f57600080fd5b8063a284fbbc146108d2578063ae3a51e7146108e8578063b1e68022146108fe578063b4ce37d21461091457600080fd5b8063943f156b116101d7578063943f156b1461087157806395d89b41146108875780639aea65bf1461089c578063a22cb465146108b257600080fd5b80638da5cb5b146107fe5780638f60a63b1461081c57806391c311a314610831578063938e3d7b1461085157600080fd5b806342842e0e116103035780636cfd54fa11610296578063749679c311610265578063749679c3146107885780637d17fcbe146107905780638462151c146107a5578063858b4490146107d25780638726b068146107e857600080fd5b80636cfd54fa1461071157806370a0823114610731578063715018a614610751578063740bcf951461076657600080fd5b80635def2d7c116102d25780635def2d7c146106b05780636352211e146106c6578063636da150146106e65780636c0360eb146106fc57600080fd5b806342842e0e1461063a5780634f6ccce71461065a578063507dfbda1461067a57806353f4ec5b1461069057600080fd5b80632485993c116103865780633b0a9b2b116103555780633b0a9b2b146105af5780633ccfd60b146105cf5780633e6769a2146105e45780633f61165e1461060457806341957a271461062457600080fd5b80632485993c146105375780632eb9d0de1461054c5780632f745c5914610562578063372c12b11461058257600080fd5b806315bb6fa4116103c257806315bb6fa4146104bf57806318160ddd146104df57806323b872dd14610502578063243ef5561461052257600080fd5b806301ffc9a7146103f457806306fdde0314610443578063081812fc14610465578063095ea7b31461049d575b600080fd5b34801561040057600080fd5b5061042e61040f366004613551565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561044f57600080fd5b50610458610bb5565b60405161043a91906137c2565b34801561047157600080fd5b506104856104803660046135d4565b610c47565b6040516001600160a01b03909116815260200161043a565b3480156104a957600080fd5b506104bd6104b8366004613439565b610cd4565b005b3480156104cb57600080fd5b506104bd6104da3660046134f1565b610dea565b3480156104eb57600080fd5b506104f4610f34565b60405190815260200161043a565b34801561050e57600080fd5b506104bd61051d366004613357565b610f45565b34801561052e57600080fd5b50610458610f76565b34801561054357600080fd5b506104bd611004565b34801561055857600080fd5b506104f4600f5481565b34801561056e57600080fd5b506104f461057d366004613439565b611047565b34801561058e57600080fd5b506104f461059d366004613309565b601e6020526000908152604090205481565b3480156105bb57600080fd5b506104856105ca3660046135d4565b611072565b3480156105db57600080fd5b506104bd61109c565b3480156105f057600080fd5b506104bd6105ff3660046135d4565b61128e565b34801561061057600080fd5b506104bd61061f3660046135d4565b6112bd565b34801561063057600080fd5b506104f460135481565b34801561064657600080fd5b506104bd610655366004613357565b6112ec565b34801561066657600080fd5b506104f46106753660046135d4565b611307565b34801561068657600080fd5b506104f4600e5481565b34801561069c57600080fd5b506104bd6106ab366004613498565b61131d565b3480156106bc57600080fd5b506104f460125481565b3480156106d257600080fd5b506104856106e13660046135d4565b61143d565b3480156106f257600080fd5b506104f4600b5481565b34801561070857600080fd5b50610458611465565b34801561071d57600080fd5b506104bd61072c3660046135d4565b611474565b34801561073d57600080fd5b506104f461074c366004613309565b6114a3565b34801561075d57600080fd5b506104bd61152f565b34801561077257600080fd5b5061077b6115a3565b60405161043a919061373d565b6104bd611604565b34801561079c57600080fd5b506104bd611754565b3480156107b157600080fd5b506107c56107c0366004613309565b6117bd565b60405161043a919061378a565b3480156107de57600080fd5b506104f460165481565b3480156107f457600080fd5b506104f4600c5481565b34801561080a57600080fd5b50600a546001600160a01b0316610485565b34801561082857600080fd5b50610458611892565b34801561083d57600080fd5b506104f461084c366004613309565b6118ae565b34801561085d57600080fd5b506104bd61086c36600461358b565b6118fd565b34801561087d57600080fd5b506104f460115481565b34801561089357600080fd5b5061045861193a565b3480156108a857600080fd5b506104f4601b5481565b3480156108be57600080fd5b506104bd6108cd36600461340f565b611949565b3480156108de57600080fd5b506104f4601c5481565b3480156108f457600080fd5b506104f460195481565b34801561090a57600080fd5b506104f460175481565b34801561092057600080fd5b50610458611a0e565b6104bd6109373660046135d4565b611a1b565b34801561094857600080fd5b506104f4600d5481565b34801561095e57600080fd5b506104bd61096d366004613393565b611f62565b34801561097e57600080fd5b506104f461098d366004613309565b601f6020526000908152604090205481565b3480156109ab57600080fd5b50610458611f94565b3480156109c057600080fd5b506104bd6109cf366004613536565b611fa1565b3480156109e057600080fd5b506104f4601a5481565b3480156109f657600080fd5b506104f460105481565b348015610a0c57600080fd5b50610458610a1b3660046135d4565b611fde565b348015610a2c57600080fd5b506104f460155481565b348015610a4257600080fd5b506104bd610a51366004613309565b6120ad565b348015610a6257600080fd5b506104bd610a71366004613463565b612141565b348015610a8257600080fd5b5061042e610a91366004613309565b601d6020526000908152604090205460ff1681565b348015610ab257600080fd5b50610458612223565b348015610ac757600080fd5b5061042e610ad6366004613324565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b1057600080fd5b506104bd612232565b348015610b2557600080fd5b5060245461042e9060ff1681565b348015610b3f57600080fd5b506104bd610b4e3660046135d4565b612334565b348015610b5f57600080fd5b506104f460145481565b348015610b7557600080fd5b506104f460185481565b348015610b8b57600080fd5b506104bd610b9a366004613309565b612363565b348015610bab57600080fd5b506104f460255481565b606060068054610bc4906139a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf0906139a8565b8015610c3d5780601f10610c1257610100808354040283529160200191610c3d565b820191906000526020600020905b815481529060010190602001808311610c2057829003601f168201915b5050505050905090565b6000610c528261244e565b610cb85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610cdf8261143d565b9050806001600160a01b0316836001600160a01b03161415610d4d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610caf565b336001600160a01b0382161480610d695750610d698133610ad6565b610ddb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610caf565b610de5838361245b565b505050565b600a546001600160a01b03163314610e145760405162461bcd60e51b8152600401610caf90613827565b6018548251610e249083906124c9565b602554610e3191906138de565b1115610e3c57600080fd5b60005b8251811015610de55760006001600160a01b0316838281518110610e6557610e65613a4e565b60200260200101516001600160a01b03161415610eb05760405162461bcd60e51b815260206004820152600960248201526830206164647265737360b81b6044820152606401610caf565b6000610eba610f34565b905060005b83811015610f0757610ef5858481518110610edc57610edc613a4e565b60200260200101518284610ef091906138de565b612548565b80610eff816139dd565b915050610ebf565b508260256000828254610f1a91906138de565b90915550829150610f2c9050816139dd565b915050610e3f565b6000610f406002612562565b905090565b610f4f338261256c565b610f6b5760405162461bcd60e51b8152600401610caf9061385c565b610de5838383612656565b60218054610f83906139a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610faf906139a8565b8015610ffc5780601f10610fd157610100808354040283529160200191610ffc565b820191906000526020600020905b815481529060010190602001808311610fdf57829003601f168201915b505050505081565b600a546001600160a01b0316331461102e5760405162461bcd60e51b8152600401610caf90613827565b611036610f34565b601055602b546110455743602b555b565b6001600160a01b038216600090815260016020526040812061106990836127d7565b90505b92915050565b6020818154811061108257600080fd5b6000918252602090912001546001600160a01b0316905081565b600a546001600160a01b031633146110c65760405162461bcd60e51b8152600401610caf90613827565b4760006110df60646110d984601b6124c9565b906127e3565b6026546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505015801561111a573d6000803e3d6000fd5b506027546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611155573d6000803e3d6000fd5b506028546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611190573d6000803e3d6000fd5b506029546001600160a01b0316156111f25760006111b460646110d98560096124c9565b6029546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156111ef573d6000803e3d6000fd5b50505b6020541561128a57602054600090611212906110d960648187600a6124c9565b905060005b602054811015611287576020818154811061123457611234613a4e565b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f19350505050158015611274573d6000803e3d6000fd5b508061127f816139dd565b915050611217565b50505b5050565b600a546001600160a01b031633146112b85760405162461bcd60e51b8152600401610caf90613827565b601a55565b600a546001600160a01b031633146112e75760405162461bcd60e51b8152600401610caf90613827565b601c55565b610de583838360405180602001604052806000815250611f62565b60008061131560028461283e565b509392505050565b600a546001600160a01b031633146113475760405162461bcd60e51b8152600401610caf90613827565b8061ffff166001148061135e57508061ffff166002145b61139e5760405162461bcd60e51b8152602060048201526011602482015270125b9d985b1a59081dda1a5d195b1a5cdd607a1b6044820152606401610caf565b60005b8251811015610de55760006001600160a01b03168382815181106113c7576113c7613a4e565b60200260200101516001600160a01b031614156113e357600080fd5b8161ffff16601e60008584815181106113fe576113fe613a4e565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611435906139dd565b9150506113a1565b600061106c82604051806060016040528060298152602001613af1602991396002919061285a565b606060098054610bc4906139a8565b600a546001600160a01b0316331461149e5760405162461bcd60e51b8152600401610caf90613827565b601955565b60006001600160a01b03821661150e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610caf565b6001600160a01b038216600090815260016020526040902061106c90612562565b600a546001600160a01b031633146115595760405162461bcd60e51b8152600401610caf90613827565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60606020805480602002602001604051908101604052809291908181526020018280548015610c3d57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116115dd575050505050905090565b600b5434101561164e5760405162461bcd60e51b8152602060048201526015602482015274115d1a195c881d985b1d59481a5b98dbdc9c9958dd605a1b6044820152606401610caf565b336000908152601d602052604090205460ff161561169f5760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e48189bdd59da1d60921b6044820152606401610caf565b6000601254116116e25760405162461bcd60e51b815260206004820152600e60248201526d139bc81c185cdcd95cc81b19599d60921b6044820152606401610caf565b336000818152601d602090815260408220805460ff19166001908117909155815490810182559082527fc97bfaf2f8ee708c303a06d134f5ecd8389ae0432af62dc132a24118292866bb0180546001600160a01b031916909217909155601280549161174d83613991565b9190505550565b600a546001600160a01b0316331461177e5760405162461bcd60e51b8152600401610caf90613827565b602a54156117b75760405162461bcd60e51b815260206004820152600660248201526514d2481cd95d60d21b6044820152606401610caf565b43602b55565b606060006117ca836114a3565b9050806117e7576040805160008082526020820190925290611315565b60008167ffffffffffffffff81111561180257611802613a64565b60405190808252806020026020018201604052801561182b578160200160208202803683370190505b50905060005b8281101561131557601054602a546118498784611047565b61185391906138de565b61185d91906139f8565b82828151811061186f5761186f613a4e565b602090810291909101015280611884816139dd565b915050611831565b50919050565b6040518060600160405280602e8152602001613a91602e913981565b6001600160a01b0381166000908152601d602052604081205460ff161515600114156118dc57506003919050565b506001600160a01b03166000908152601e602052604090205490565b919050565b600a546001600160a01b031633146119275760405162461bcd60e51b8152600401610caf90613827565b805161128a906023906020840190613164565b606060078054610bc4906139a8565b6001600160a01b0382163314156119a25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610caf565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60228054610f83906139a8565b60245460ff161515600114611a625760405162461bcd60e51b815260206004820152600d60248201526c53616c6520696e61637469766560981b6044820152606401610caf565b601054611a7782611a71610f34565b90612871565b1115611ab35760405162461bcd60e51b815260206004820152600b60248201526a13585e081c995858da195960aa1b6044820152606401610caf565b60008111611aee5760405162461bcd60e51b81526020600482015260086024820152673020746f6b656e7360c01b6044820152606401610caf565b336000908152601d602052604090205460ff16151560011415611bbe57600c543490611b1a90836124c9565b1115611b5d5760405162461bcd60e51b8152602060048201526012602482015271140e881d985b1d59481a5b98dbdc9c9958dd60721b6044820152606401610caf565b601354336000908152601f6020526040902054611b7a9083612871565b1115611bb95760405162461bcd60e51b815260206004820152600e60248201526d503a207a65726f20647265616d7360901b6044820152606401610caf565b611ec8565b336000908152601e602052604090205460011415611ccb57601954421015611c1b5760405162461bcd60e51b815260206004820152601060248201526f02a189d103737ba1039ba30b93a32b2160851b6044820152606401610caf565b600d543490611c2a90836124c9565b1115611c6e5760405162461bcd60e51b8152602060048201526013602482015272150c4e881d985b1d59481a5b98dbdc9c9958dd606a1b6044820152606401610caf565b601554336000908152601f6020526040902054611c8b9083612871565b1115611bb95760405162461bcd60e51b815260206004820152600f60248201526e54313a207a65726f20647265616d7360881b6044820152606401610caf565b336000908152601e602052604090205460021415611dd757601a54421015611d275760405162461bcd60e51b815260206004820152600f60248201526e150c8e881b9bdd081cdd185c9d1959608a1b6044820152606401610caf565b600e543490611d3690836124c9565b1115611d7a5760405162461bcd60e51b8152602060048201526013602482015272150c8e881d985b1d59481a5b98dbdc9c9958dd606a1b6044820152606401610caf565b601754336000908152601f6020526040902054611d979083612871565b1115611bb95760405162461bcd60e51b815260206004820152600f60248201526e54323a207a65726f20647265616d7360881b6044820152606401610caf565b601b54421015611e1a5760405162461bcd60e51b815260206004820152600e60248201526d11ce881b9bdd081cdd185c9d195960921b6044820152606401610caf565b600f543490611e2990836124c9565b1115611e6c5760405162461bcd60e51b815260206004820152601260248201527111ce881d985b1d59481a5b98dbdc9c9958dd60721b6044820152606401610caf565b601154336000908152601f6020526040902054611e899083612871565b1115611ec85760405162461bcd60e51b815260206004820152600e60248201526d473a207a65726f20647265616d7360901b6044820152606401610caf565b60005b81811015611f06576000611edd610f34565b9050601054811015611ef357611ef33382612548565b5080611efe816139dd565b915050611ecb565b50336000908152601f6020526040902054611f219082612871565b336000908152601f6020526040902055602b54158015611f555750601054611f47610f34565b1480611f555750601c544210155b15611f5f5743602b555b50565b611f6c338361256c565b611f885760405162461bcd60e51b8152600401610caf9061385c565b611287848484846128d0565b60238054610f83906139a8565b600a546001600160a01b03163314611fcb5760405162461bcd60e51b8152600401610caf90613827565b6024805460ff1916911515919091179055565b6060611fe98261244e565b6120295760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610caf565b601c5442101561205b57602160405160200161204591906136cf565b6040516020818303038152906040529050919050565b6060612080601054602a548561207191906138de565b61207b91906139f8565b612903565b90506022816040516020016120969291906136db565b604051602081830303815290604052915050919050565b600a546001600160a01b031633146120d75760405162461bcd60e51b8152600401610caf90613827565b6029546001600160a01b03161561211f5760405162461bcd60e51b815260206004820152600c60248201526b416c7265616479207365742160a01b6044820152606401610caf565b602980546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b0316331461216b5760405162461bcd60e51b8152600401610caf90613827565b60005b815181101561128a57602082828151811061218b5761218b613a4e565b60209081029190910181015182546001808201855560009485529284200180546001600160a01b0319166001600160a01b0390921691909117905583519091601d918590859081106121df576121df613a4e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061221b816139dd565b91505061216e565b606060238054610bc4906139a8565b600a546001600160a01b0316331461225c5760405162461bcd60e51b8152600401610caf90613827565b602a54156122955760405162461bcd60e51b815260206004820152600660248201526514d2481cd95d60d21b6044820152606401610caf565b602b546122d25760405162461bcd60e51b815260206004820152600b60248201526a14d250881b9bdd081cd95d60aa1b6044820152606401610caf565b601054602b546122e39190406139f8565b602a55602b5460ff906122f7904390612a2c565b111561231a5760105461230b60014361394e565b6123169190406139f8565b602a555b602a5461104557602a5461232f906001612871565b602a55565b600a546001600160a01b0316331461235e5760405162461bcd60e51b8152600401610caf90613827565b601b55565b600a546001600160a01b0316331461238d5760405162461bcd60e51b8152600401610caf90613827565b6001600160a01b0381166123f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610caf565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600061106c600283612a88565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906124908261143d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000826124d85750600061106c565b60006124e4838561392f565b9050826124f1858361391b565b146110695760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610caf565b61128a828260405180602001604052806000815250612aa0565b600061106c825490565b60006125778261244e565b6125d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610caf565b60006125e38361143d565b9050806001600160a01b0316846001600160a01b0316148061261e5750836001600160a01b031661261384610c47565b6001600160a01b0316145b8061264e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166126698261143d565b6001600160a01b0316146126d15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610caf565b6001600160a01b0382166127335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610caf565b61273e60008261245b565b6001600160a01b03831660009081526001602052604090206127609082612ad3565b506001600160a01b03821660009081526001602052604090206127839082612adf565b5061279060028284612aeb565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006110698383612b01565b60008082116128345760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610caf565b611069828461391b565b600080808061284d8686612b87565b9097909650945050505050565b6000612867848484612c24565b90505b9392505050565b60008061287e83856138de565b9050838110156110695760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610caf565b6128db848484612656565b6128e784848484612c8d565b6112875760405162461bcd60e51b8152600401610caf906137d5565b6060816129275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612951578061293b816139dd565b915061294a9050600a8361391b565b915061292b565b60008167ffffffffffffffff81111561296c5761296c613a64565b6040519080825280601f01601f191660200182016040528015612996576020820181803683370190505b509050815b8515612a23576129ac60018261394e565b905060006129bb600a8861391b565b6129c690600a61392f565b6129d0908861394e565b6129db9060306138f6565b905060008160f81b9050808484815181106129f8576129f8613a4e565b60200101906001600160f81b031916908160001a905350612a1a600a8961391b565b9750505061299b565b50949350505050565b600082821115612a7e5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610caf565b611069828461394e565b60008181526001830160205260408120541515611069565b612aaa8383612d5e565b612ab76000848484612c8d565b610de55760405162461bcd60e51b8152600401610caf906137d5565b60006110698383612e76565b60006110698383612f69565b600061286784846001600160a01b038516612fb8565b81546000908210612b5f5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610caf565b826000018281548110612b7457612b74613a4e565b9060005260206000200154905092915050565b815460009081908310612be75760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610caf565b6000846000018481548110612bfe57612bfe613a4e565b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281612c545760405162461bcd60e51b8152600401610caf91906137c2565b5084612c6160018361394e565b81548110612c7157612c71613a4e565b9060005260206000209060020201600101549150509392505050565b60006001600160a01b0384163b612ca65750600161264e565b6000612d27630a85bd0160e11b33888787604051602401612cca9493929190613700565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613abf603291396001600160a01b0388169190613059565b9050600081806020019051810190612d3f919061356e565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6001600160a01b038216612db45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610caf565b612dbd8161244e565b15612e0a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610caf565b6001600160a01b0382166000908152600160205260409020612e2c9082612adf565b50612e3960028284612aeb565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008181526001830160205260408120548015612f5f576000612e9a60018361394e565b8554909150600090612eae9060019061394e565b90506000866000018281548110612ec757612ec7613a4e565b9060005260206000200154905080876000018481548110612eea57612eea613a4e565b600091825260209091200155612f018360016138de565b60008281526001890160205260409020558654879080612f2357612f23613a38565b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061106c565b600091505061106c565b6000818152600183016020526040812054612fb05750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561106c565b50600061106c565b60008281526001840160205260408120548061301d57505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561286a565b828561302a60018461394e565b8154811061303a5761303a613a4e565b906000526020600020906002020160010181905550600091505061286a565b6060612867848460008585843b6130b25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610caf565b600080866001600160a01b031685876040516130ce91906136b3565b60006040518083038185875af1925050503d806000811461310b576040519150601f19603f3d011682016040523d82523d6000602084013e613110565b606091505b509150915061312082828661312b565b979650505050505050565b6060831561313a57508161286a565b82511561314a5782518084602001fd5b8160405162461bcd60e51b8152600401610caf91906137c2565b828054613170906139a8565b90600052602060002090601f01602090048101928261319257600085556131d8565b82601f106131ab57805160ff19168380011785556131d8565b828001600101855582156131d8579182015b828111156131d85782518255916020019190600101906131bd565b506131e49291506131e8565b5090565b5b808211156131e457600081556001016131e9565b600067ffffffffffffffff83111561321757613217613a64565b61322a601f8401601f19166020016138ad565b905082815283838301111561323e57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146118f857600080fd5b600082601f83011261327d57600080fd5b8135602067ffffffffffffffff82111561329957613299613a64565b8160051b6132a88282016138ad565b8381528281019086840183880185018910156132c357600080fd5b600093505b858410156132ed576132d981613255565b8352600193909301929184019184016132c8565b50979650505050505050565b803580151581146118f857600080fd5b60006020828403121561331b57600080fd5b61106982613255565b6000806040838503121561333757600080fd5b61334083613255565b915061334e60208401613255565b90509250929050565b60008060006060848603121561336c57600080fd5b61337584613255565b925061338360208501613255565b9150604084013590509250925092565b600080600080608085870312156133a957600080fd5b6133b285613255565b93506133c060208601613255565b925060408501359150606085013567ffffffffffffffff8111156133e357600080fd5b8501601f810187136133f457600080fd5b613403878235602084016131fd565b91505092959194509250565b6000806040838503121561342257600080fd5b61342b83613255565b915061334e602084016132f9565b6000806040838503121561344c57600080fd5b61345583613255565b946020939093013593505050565b60006020828403121561347557600080fd5b813567ffffffffffffffff81111561348c57600080fd5b61264e8482850161326c565b600080604083850312156134ab57600080fd5b823567ffffffffffffffff8111156134c257600080fd5b6134ce8582860161326c565b925050602083013561ffff811681146134e657600080fd5b809150509250929050565b6000806040838503121561350457600080fd5b823567ffffffffffffffff81111561351b57600080fd5b6135278582860161326c565b95602094909401359450505050565b60006020828403121561354857600080fd5b611069826132f9565b60006020828403121561356357600080fd5b813561106981613a7a565b60006020828403121561358057600080fd5b815161106981613a7a565b60006020828403121561359d57600080fd5b813567ffffffffffffffff8111156135b457600080fd5b8201601f810184136135c557600080fd5b61264e848235602084016131fd565b6000602082840312156135e657600080fd5b5035919050565b60008151808452613605816020860160208601613965565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061363357607f831692505b602080841082141561365557634e487b7160e01b600052602260045260246000fd5b818015613669576001811461367a576136a7565b60ff198616895284890196506136a7565b60008881526020902060005b8681101561369f5781548b820152908501908301613686565b505084890196505b50505050505092915050565b600082516136c5818460208701613965565b9190910192915050565b60006110698284613619565b60006136e78285613619565b83516136f7818360208801613965565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613733908301846135ed565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561377e5783516001600160a01b031683529284019291840191600101613759565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561377e578351835292840192918401916001016137a6565b60208152600061106960208301846135ed565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156138d6576138d6613a64565b604052919050565b600082198211156138f1576138f1613a0c565b500190565b600060ff821660ff84168060ff0382111561391357613913613a0c565b019392505050565b60008261392a5761392a613a22565b500490565b600081600019048311821515161561394957613949613a0c565b500290565b60008282101561396057613960613a0c565b500390565b60005b83811015613980578181015183820152602001613968565b838111156112875750506000910152565b6000816139a0576139a0613a0c565b506000190190565b600181811c908216806139bc57607f821691505b6020821081141561188c57634e487b7160e01b600052602260045260246000fd5b60006000198214156139f1576139f1613a0c565b5060010190565b600082613a0757613a07613a22565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611f5f57600080fdfe516d6558624a6877364c703767374663563679487a79766f535463764b517846564664585a56516138535159766d4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122000806915d3980a945f2544d25a5e00951fc92a3da08b14917c9193f3cf6d3fcf64736f6c6343000807003368747470733a2f2f647265616d62616265732e6d7970696e6174612e636c6f75642f697066732f516d5a5562557169555379486f67544772347a766544584c416458476d3268423267574b636e44756a506155466a68747470733a2f2f647265616d62616265732e6d7970696e6174612e636c6f75642f697066732f516d514a3569796565386148416668577451695733314b31694d32424b42554b76476d68534e71765059615164332f

Deployed Bytecode

0x6080604052600436106103ef5760003560e01c80638da5cb5b11610208578063c4e3709511610118578063e8a3d485116100ab578063ee71faff1161007a578063ee71faff14610b33578063ee81153c14610b53578063eff31e9e14610b69578063f2fde38b14610b7f578063fe60d12c14610b9f57600080fd5b8063e8a3d48514610aa6578063e985e9c514610abb578063e986655014610b04578063eb8d244414610b1957600080fd5b8063c9eeceb1116100e7578063c9eeceb114610a20578063cab6366114610a36578063d90eb6c714610a56578063e55be77b14610a7657600080fd5b8063c4e37095146109b4578063c6a3fba1146109d4578063c7954546146109ea578063c87b56dd14610a0057600080fd5b8063a284fbbc1161019b578063b4e7fd841161016a578063b4e7fd8414610929578063b54f29641461093c578063b88d4fde14610952578063bef432c614610972578063c0e727401461099f57600080fd5b8063a284fbbc146108d2578063ae3a51e7146108e8578063b1e68022146108fe578063b4ce37d21461091457600080fd5b8063943f156b116101d7578063943f156b1461087157806395d89b41146108875780639aea65bf1461089c578063a22cb465146108b257600080fd5b80638da5cb5b146107fe5780638f60a63b1461081c57806391c311a314610831578063938e3d7b1461085157600080fd5b806342842e0e116103035780636cfd54fa11610296578063749679c311610265578063749679c3146107885780637d17fcbe146107905780638462151c146107a5578063858b4490146107d25780638726b068146107e857600080fd5b80636cfd54fa1461071157806370a0823114610731578063715018a614610751578063740bcf951461076657600080fd5b80635def2d7c116102d25780635def2d7c146106b05780636352211e146106c6578063636da150146106e65780636c0360eb146106fc57600080fd5b806342842e0e1461063a5780634f6ccce71461065a578063507dfbda1461067a57806353f4ec5b1461069057600080fd5b80632485993c116103865780633b0a9b2b116103555780633b0a9b2b146105af5780633ccfd60b146105cf5780633e6769a2146105e45780633f61165e1461060457806341957a271461062457600080fd5b80632485993c146105375780632eb9d0de1461054c5780632f745c5914610562578063372c12b11461058257600080fd5b806315bb6fa4116103c257806315bb6fa4146104bf57806318160ddd146104df57806323b872dd14610502578063243ef5561461052257600080fd5b806301ffc9a7146103f457806306fdde0314610443578063081812fc14610465578063095ea7b31461049d575b600080fd5b34801561040057600080fd5b5061042e61040f366004613551565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561044f57600080fd5b50610458610bb5565b60405161043a91906137c2565b34801561047157600080fd5b506104856104803660046135d4565b610c47565b6040516001600160a01b03909116815260200161043a565b3480156104a957600080fd5b506104bd6104b8366004613439565b610cd4565b005b3480156104cb57600080fd5b506104bd6104da3660046134f1565b610dea565b3480156104eb57600080fd5b506104f4610f34565b60405190815260200161043a565b34801561050e57600080fd5b506104bd61051d366004613357565b610f45565b34801561052e57600080fd5b50610458610f76565b34801561054357600080fd5b506104bd611004565b34801561055857600080fd5b506104f4600f5481565b34801561056e57600080fd5b506104f461057d366004613439565b611047565b34801561058e57600080fd5b506104f461059d366004613309565b601e6020526000908152604090205481565b3480156105bb57600080fd5b506104856105ca3660046135d4565b611072565b3480156105db57600080fd5b506104bd61109c565b3480156105f057600080fd5b506104bd6105ff3660046135d4565b61128e565b34801561061057600080fd5b506104bd61061f3660046135d4565b6112bd565b34801561063057600080fd5b506104f460135481565b34801561064657600080fd5b506104bd610655366004613357565b6112ec565b34801561066657600080fd5b506104f46106753660046135d4565b611307565b34801561068657600080fd5b506104f4600e5481565b34801561069c57600080fd5b506104bd6106ab366004613498565b61131d565b3480156106bc57600080fd5b506104f460125481565b3480156106d257600080fd5b506104856106e13660046135d4565b61143d565b3480156106f257600080fd5b506104f4600b5481565b34801561070857600080fd5b50610458611465565b34801561071d57600080fd5b506104bd61072c3660046135d4565b611474565b34801561073d57600080fd5b506104f461074c366004613309565b6114a3565b34801561075d57600080fd5b506104bd61152f565b34801561077257600080fd5b5061077b6115a3565b60405161043a919061373d565b6104bd611604565b34801561079c57600080fd5b506104bd611754565b3480156107b157600080fd5b506107c56107c0366004613309565b6117bd565b60405161043a919061378a565b3480156107de57600080fd5b506104f460165481565b3480156107f457600080fd5b506104f4600c5481565b34801561080a57600080fd5b50600a546001600160a01b0316610485565b34801561082857600080fd5b50610458611892565b34801561083d57600080fd5b506104f461084c366004613309565b6118ae565b34801561085d57600080fd5b506104bd61086c36600461358b565b6118fd565b34801561087d57600080fd5b506104f460115481565b34801561089357600080fd5b5061045861193a565b3480156108a857600080fd5b506104f4601b5481565b3480156108be57600080fd5b506104bd6108cd36600461340f565b611949565b3480156108de57600080fd5b506104f4601c5481565b3480156108f457600080fd5b506104f460195481565b34801561090a57600080fd5b506104f460175481565b34801561092057600080fd5b50610458611a0e565b6104bd6109373660046135d4565b611a1b565b34801561094857600080fd5b506104f4600d5481565b34801561095e57600080fd5b506104bd61096d366004613393565b611f62565b34801561097e57600080fd5b506104f461098d366004613309565b601f6020526000908152604090205481565b3480156109ab57600080fd5b50610458611f94565b3480156109c057600080fd5b506104bd6109cf366004613536565b611fa1565b3480156109e057600080fd5b506104f4601a5481565b3480156109f657600080fd5b506104f460105481565b348015610a0c57600080fd5b50610458610a1b3660046135d4565b611fde565b348015610a2c57600080fd5b506104f460155481565b348015610a4257600080fd5b506104bd610a51366004613309565b6120ad565b348015610a6257600080fd5b506104bd610a71366004613463565b612141565b348015610a8257600080fd5b5061042e610a91366004613309565b601d6020526000908152604090205460ff1681565b348015610ab257600080fd5b50610458612223565b348015610ac757600080fd5b5061042e610ad6366004613324565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b1057600080fd5b506104bd612232565b348015610b2557600080fd5b5060245461042e9060ff1681565b348015610b3f57600080fd5b506104bd610b4e3660046135d4565b612334565b348015610b5f57600080fd5b506104f460145481565b348015610b7557600080fd5b506104f460185481565b348015610b8b57600080fd5b506104bd610b9a366004613309565b612363565b348015610bab57600080fd5b506104f460255481565b606060068054610bc4906139a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf0906139a8565b8015610c3d5780601f10610c1257610100808354040283529160200191610c3d565b820191906000526020600020905b815481529060010190602001808311610c2057829003601f168201915b5050505050905090565b6000610c528261244e565b610cb85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610cdf8261143d565b9050806001600160a01b0316836001600160a01b03161415610d4d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610caf565b336001600160a01b0382161480610d695750610d698133610ad6565b610ddb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610caf565b610de5838361245b565b505050565b600a546001600160a01b03163314610e145760405162461bcd60e51b8152600401610caf90613827565b6018548251610e249083906124c9565b602554610e3191906138de565b1115610e3c57600080fd5b60005b8251811015610de55760006001600160a01b0316838281518110610e6557610e65613a4e565b60200260200101516001600160a01b03161415610eb05760405162461bcd60e51b815260206004820152600960248201526830206164647265737360b81b6044820152606401610caf565b6000610eba610f34565b905060005b83811015610f0757610ef5858481518110610edc57610edc613a4e565b60200260200101518284610ef091906138de565b612548565b80610eff816139dd565b915050610ebf565b508260256000828254610f1a91906138de565b90915550829150610f2c9050816139dd565b915050610e3f565b6000610f406002612562565b905090565b610f4f338261256c565b610f6b5760405162461bcd60e51b8152600401610caf9061385c565b610de5838383612656565b60218054610f83906139a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610faf906139a8565b8015610ffc5780601f10610fd157610100808354040283529160200191610ffc565b820191906000526020600020905b815481529060010190602001808311610fdf57829003601f168201915b505050505081565b600a546001600160a01b0316331461102e5760405162461bcd60e51b8152600401610caf90613827565b611036610f34565b601055602b546110455743602b555b565b6001600160a01b038216600090815260016020526040812061106990836127d7565b90505b92915050565b6020818154811061108257600080fd5b6000918252602090912001546001600160a01b0316905081565b600a546001600160a01b031633146110c65760405162461bcd60e51b8152600401610caf90613827565b4760006110df60646110d984601b6124c9565b906127e3565b6026546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505015801561111a573d6000803e3d6000fd5b506027546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611155573d6000803e3d6000fd5b506028546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611190573d6000803e3d6000fd5b506029546001600160a01b0316156111f25760006111b460646110d98560096124c9565b6029546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156111ef573d6000803e3d6000fd5b50505b6020541561128a57602054600090611212906110d960648187600a6124c9565b905060005b602054811015611287576020818154811061123457611234613a4e565b60009182526020822001546040516001600160a01b039091169184156108fc02918591818181858888f19350505050158015611274573d6000803e3d6000fd5b508061127f816139dd565b915050611217565b50505b5050565b600a546001600160a01b031633146112b85760405162461bcd60e51b8152600401610caf90613827565b601a55565b600a546001600160a01b031633146112e75760405162461bcd60e51b8152600401610caf90613827565b601c55565b610de583838360405180602001604052806000815250611f62565b60008061131560028461283e565b509392505050565b600a546001600160a01b031633146113475760405162461bcd60e51b8152600401610caf90613827565b8061ffff166001148061135e57508061ffff166002145b61139e5760405162461bcd60e51b8152602060048201526011602482015270125b9d985b1a59081dda1a5d195b1a5cdd607a1b6044820152606401610caf565b60005b8251811015610de55760006001600160a01b03168382815181106113c7576113c7613a4e565b60200260200101516001600160a01b031614156113e357600080fd5b8161ffff16601e60008584815181106113fe576113fe613a4e565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611435906139dd565b9150506113a1565b600061106c82604051806060016040528060298152602001613af1602991396002919061285a565b606060098054610bc4906139a8565b600a546001600160a01b0316331461149e5760405162461bcd60e51b8152600401610caf90613827565b601955565b60006001600160a01b03821661150e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610caf565b6001600160a01b038216600090815260016020526040902061106c90612562565b600a546001600160a01b031633146115595760405162461bcd60e51b8152600401610caf90613827565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60606020805480602002602001604051908101604052809291908181526020018280548015610c3d57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116115dd575050505050905090565b600b5434101561164e5760405162461bcd60e51b8152602060048201526015602482015274115d1a195c881d985b1d59481a5b98dbdc9c9958dd605a1b6044820152606401610caf565b336000908152601d602052604090205460ff161561169f5760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e48189bdd59da1d60921b6044820152606401610caf565b6000601254116116e25760405162461bcd60e51b815260206004820152600e60248201526d139bc81c185cdcd95cc81b19599d60921b6044820152606401610caf565b336000818152601d602090815260408220805460ff19166001908117909155815490810182559082527fc97bfaf2f8ee708c303a06d134f5ecd8389ae0432af62dc132a24118292866bb0180546001600160a01b031916909217909155601280549161174d83613991565b9190505550565b600a546001600160a01b0316331461177e5760405162461bcd60e51b8152600401610caf90613827565b602a54156117b75760405162461bcd60e51b815260206004820152600660248201526514d2481cd95d60d21b6044820152606401610caf565b43602b55565b606060006117ca836114a3565b9050806117e7576040805160008082526020820190925290611315565b60008167ffffffffffffffff81111561180257611802613a64565b60405190808252806020026020018201604052801561182b578160200160208202803683370190505b50905060005b8281101561131557601054602a546118498784611047565b61185391906138de565b61185d91906139f8565b82828151811061186f5761186f613a4e565b602090810291909101015280611884816139dd565b915050611831565b50919050565b6040518060600160405280602e8152602001613a91602e913981565b6001600160a01b0381166000908152601d602052604081205460ff161515600114156118dc57506003919050565b506001600160a01b03166000908152601e602052604090205490565b919050565b600a546001600160a01b031633146119275760405162461bcd60e51b8152600401610caf90613827565b805161128a906023906020840190613164565b606060078054610bc4906139a8565b6001600160a01b0382163314156119a25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610caf565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60228054610f83906139a8565b60245460ff161515600114611a625760405162461bcd60e51b815260206004820152600d60248201526c53616c6520696e61637469766560981b6044820152606401610caf565b601054611a7782611a71610f34565b90612871565b1115611ab35760405162461bcd60e51b815260206004820152600b60248201526a13585e081c995858da195960aa1b6044820152606401610caf565b60008111611aee5760405162461bcd60e51b81526020600482015260086024820152673020746f6b656e7360c01b6044820152606401610caf565b336000908152601d602052604090205460ff16151560011415611bbe57600c543490611b1a90836124c9565b1115611b5d5760405162461bcd60e51b8152602060048201526012602482015271140e881d985b1d59481a5b98dbdc9c9958dd60721b6044820152606401610caf565b601354336000908152601f6020526040902054611b7a9083612871565b1115611bb95760405162461bcd60e51b815260206004820152600e60248201526d503a207a65726f20647265616d7360901b6044820152606401610caf565b611ec8565b336000908152601e602052604090205460011415611ccb57601954421015611c1b5760405162461bcd60e51b815260206004820152601060248201526f02a189d103737ba1039ba30b93a32b2160851b6044820152606401610caf565b600d543490611c2a90836124c9565b1115611c6e5760405162461bcd60e51b8152602060048201526013602482015272150c4e881d985b1d59481a5b98dbdc9c9958dd606a1b6044820152606401610caf565b601554336000908152601f6020526040902054611c8b9083612871565b1115611bb95760405162461bcd60e51b815260206004820152600f60248201526e54313a207a65726f20647265616d7360881b6044820152606401610caf565b336000908152601e602052604090205460021415611dd757601a54421015611d275760405162461bcd60e51b815260206004820152600f60248201526e150c8e881b9bdd081cdd185c9d1959608a1b6044820152606401610caf565b600e543490611d3690836124c9565b1115611d7a5760405162461bcd60e51b8152602060048201526013602482015272150c8e881d985b1d59481a5b98dbdc9c9958dd606a1b6044820152606401610caf565b601754336000908152601f6020526040902054611d979083612871565b1115611bb95760405162461bcd60e51b815260206004820152600f60248201526e54323a207a65726f20647265616d7360881b6044820152606401610caf565b601b54421015611e1a5760405162461bcd60e51b815260206004820152600e60248201526d11ce881b9bdd081cdd185c9d195960921b6044820152606401610caf565b600f543490611e2990836124c9565b1115611e6c5760405162461bcd60e51b815260206004820152601260248201527111ce881d985b1d59481a5b98dbdc9c9958dd60721b6044820152606401610caf565b601154336000908152601f6020526040902054611e899083612871565b1115611ec85760405162461bcd60e51b815260206004820152600e60248201526d473a207a65726f20647265616d7360901b6044820152606401610caf565b60005b81811015611f06576000611edd610f34565b9050601054811015611ef357611ef33382612548565b5080611efe816139dd565b915050611ecb565b50336000908152601f6020526040902054611f219082612871565b336000908152601f6020526040902055602b54158015611f555750601054611f47610f34565b1480611f555750601c544210155b15611f5f5743602b555b50565b611f6c338361256c565b611f885760405162461bcd60e51b8152600401610caf9061385c565b611287848484846128d0565b60238054610f83906139a8565b600a546001600160a01b03163314611fcb5760405162461bcd60e51b8152600401610caf90613827565b6024805460ff1916911515919091179055565b6060611fe98261244e565b6120295760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610caf565b601c5442101561205b57602160405160200161204591906136cf565b6040516020818303038152906040529050919050565b6060612080601054602a548561207191906138de565b61207b91906139f8565b612903565b90506022816040516020016120969291906136db565b604051602081830303815290604052915050919050565b600a546001600160a01b031633146120d75760405162461bcd60e51b8152600401610caf90613827565b6029546001600160a01b03161561211f5760405162461bcd60e51b815260206004820152600c60248201526b416c7265616479207365742160a01b6044820152606401610caf565b602980546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b0316331461216b5760405162461bcd60e51b8152600401610caf90613827565b60005b815181101561128a57602082828151811061218b5761218b613a4e565b60209081029190910181015182546001808201855560009485529284200180546001600160a01b0319166001600160a01b0390921691909117905583519091601d918590859081106121df576121df613a4e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061221b816139dd565b91505061216e565b606060238054610bc4906139a8565b600a546001600160a01b0316331461225c5760405162461bcd60e51b8152600401610caf90613827565b602a54156122955760405162461bcd60e51b815260206004820152600660248201526514d2481cd95d60d21b6044820152606401610caf565b602b546122d25760405162461bcd60e51b815260206004820152600b60248201526a14d250881b9bdd081cd95d60aa1b6044820152606401610caf565b601054602b546122e39190406139f8565b602a55602b5460ff906122f7904390612a2c565b111561231a5760105461230b60014361394e565b6123169190406139f8565b602a555b602a5461104557602a5461232f906001612871565b602a55565b600a546001600160a01b0316331461235e5760405162461bcd60e51b8152600401610caf90613827565b601b55565b600a546001600160a01b0316331461238d5760405162461bcd60e51b8152600401610caf90613827565b6001600160a01b0381166123f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610caf565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600061106c600283612a88565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906124908261143d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000826124d85750600061106c565b60006124e4838561392f565b9050826124f1858361391b565b146110695760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610caf565b61128a828260405180602001604052806000815250612aa0565b600061106c825490565b60006125778261244e565b6125d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610caf565b60006125e38361143d565b9050806001600160a01b0316846001600160a01b0316148061261e5750836001600160a01b031661261384610c47565b6001600160a01b0316145b8061264e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166126698261143d565b6001600160a01b0316146126d15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610caf565b6001600160a01b0382166127335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610caf565b61273e60008261245b565b6001600160a01b03831660009081526001602052604090206127609082612ad3565b506001600160a01b03821660009081526001602052604090206127839082612adf565b5061279060028284612aeb565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006110698383612b01565b60008082116128345760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610caf565b611069828461391b565b600080808061284d8686612b87565b9097909650945050505050565b6000612867848484612c24565b90505b9392505050565b60008061287e83856138de565b9050838110156110695760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610caf565b6128db848484612656565b6128e784848484612c8d565b6112875760405162461bcd60e51b8152600401610caf906137d5565b6060816129275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612951578061293b816139dd565b915061294a9050600a8361391b565b915061292b565b60008167ffffffffffffffff81111561296c5761296c613a64565b6040519080825280601f01601f191660200182016040528015612996576020820181803683370190505b509050815b8515612a23576129ac60018261394e565b905060006129bb600a8861391b565b6129c690600a61392f565b6129d0908861394e565b6129db9060306138f6565b905060008160f81b9050808484815181106129f8576129f8613a4e565b60200101906001600160f81b031916908160001a905350612a1a600a8961391b565b9750505061299b565b50949350505050565b600082821115612a7e5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610caf565b611069828461394e565b60008181526001830160205260408120541515611069565b612aaa8383612d5e565b612ab76000848484612c8d565b610de55760405162461bcd60e51b8152600401610caf906137d5565b60006110698383612e76565b60006110698383612f69565b600061286784846001600160a01b038516612fb8565b81546000908210612b5f5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610caf565b826000018281548110612b7457612b74613a4e565b9060005260206000200154905092915050565b815460009081908310612be75760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610caf565b6000846000018481548110612bfe57612bfe613a4e565b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281612c545760405162461bcd60e51b8152600401610caf91906137c2565b5084612c6160018361394e565b81548110612c7157612c71613a4e565b9060005260206000209060020201600101549150509392505050565b60006001600160a01b0384163b612ca65750600161264e565b6000612d27630a85bd0160e11b33888787604051602401612cca9493929190613700565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613abf603291396001600160a01b0388169190613059565b9050600081806020019051810190612d3f919061356e565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6001600160a01b038216612db45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610caf565b612dbd8161244e565b15612e0a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610caf565b6001600160a01b0382166000908152600160205260409020612e2c9082612adf565b50612e3960028284612aeb565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008181526001830160205260408120548015612f5f576000612e9a60018361394e565b8554909150600090612eae9060019061394e565b90506000866000018281548110612ec757612ec7613a4e565b9060005260206000200154905080876000018481548110612eea57612eea613a4e565b600091825260209091200155612f018360016138de565b60008281526001890160205260409020558654879080612f2357612f23613a38565b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061106c565b600091505061106c565b6000818152600183016020526040812054612fb05750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561106c565b50600061106c565b60008281526001840160205260408120548061301d57505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561286a565b828561302a60018461394e565b8154811061303a5761303a613a4e565b906000526020600020906002020160010181905550600091505061286a565b6060612867848460008585843b6130b25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610caf565b600080866001600160a01b031685876040516130ce91906136b3565b60006040518083038185875af1925050503d806000811461310b576040519150601f19603f3d011682016040523d82523d6000602084013e613110565b606091505b509150915061312082828661312b565b979650505050505050565b6060831561313a57508161286a565b82511561314a5782518084602001fd5b8160405162461bcd60e51b8152600401610caf91906137c2565b828054613170906139a8565b90600052602060002090601f01602090048101928261319257600085556131d8565b82601f106131ab57805160ff19168380011785556131d8565b828001600101855582156131d8579182015b828111156131d85782518255916020019190600101906131bd565b506131e49291506131e8565b5090565b5b808211156131e457600081556001016131e9565b600067ffffffffffffffff83111561321757613217613a64565b61322a601f8401601f19166020016138ad565b905082815283838301111561323e57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146118f857600080fd5b600082601f83011261327d57600080fd5b8135602067ffffffffffffffff82111561329957613299613a64565b8160051b6132a88282016138ad565b8381528281019086840183880185018910156132c357600080fd5b600093505b858410156132ed576132d981613255565b8352600193909301929184019184016132c8565b50979650505050505050565b803580151581146118f857600080fd5b60006020828403121561331b57600080fd5b61106982613255565b6000806040838503121561333757600080fd5b61334083613255565b915061334e60208401613255565b90509250929050565b60008060006060848603121561336c57600080fd5b61337584613255565b925061338360208501613255565b9150604084013590509250925092565b600080600080608085870312156133a957600080fd5b6133b285613255565b93506133c060208601613255565b925060408501359150606085013567ffffffffffffffff8111156133e357600080fd5b8501601f810187136133f457600080fd5b613403878235602084016131fd565b91505092959194509250565b6000806040838503121561342257600080fd5b61342b83613255565b915061334e602084016132f9565b6000806040838503121561344c57600080fd5b61345583613255565b946020939093013593505050565b60006020828403121561347557600080fd5b813567ffffffffffffffff81111561348c57600080fd5b61264e8482850161326c565b600080604083850312156134ab57600080fd5b823567ffffffffffffffff8111156134c257600080fd5b6134ce8582860161326c565b925050602083013561ffff811681146134e657600080fd5b809150509250929050565b6000806040838503121561350457600080fd5b823567ffffffffffffffff81111561351b57600080fd5b6135278582860161326c565b95602094909401359450505050565b60006020828403121561354857600080fd5b611069826132f9565b60006020828403121561356357600080fd5b813561106981613a7a565b60006020828403121561358057600080fd5b815161106981613a7a565b60006020828403121561359d57600080fd5b813567ffffffffffffffff8111156135b457600080fd5b8201601f810184136135c557600080fd5b61264e848235602084016131fd565b6000602082840312156135e657600080fd5b5035919050565b60008151808452613605816020860160208601613965565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061363357607f831692505b602080841082141561365557634e487b7160e01b600052602260045260246000fd5b818015613669576001811461367a576136a7565b60ff198616895284890196506136a7565b60008881526020902060005b8681101561369f5781548b820152908501908301613686565b505084890196505b50505050505092915050565b600082516136c5818460208701613965565b9190910192915050565b60006110698284613619565b60006136e78285613619565b83516136f7818360208801613965565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613733908301846135ed565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561377e5783516001600160a01b031683529284019291840191600101613759565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561377e578351835292840192918401916001016137a6565b60208152600061106960208301846135ed565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156138d6576138d6613a64565b604052919050565b600082198211156138f1576138f1613a0c565b500190565b600060ff821660ff84168060ff0382111561391357613913613a0c565b019392505050565b60008261392a5761392a613a22565b500490565b600081600019048311821515161561394957613949613a0c565b500290565b60008282101561396057613960613a0c565b500390565b60005b83811015613980578181015183820152602001613968565b838111156112875750506000910152565b6000816139a0576139a0613a0c565b506000190190565b600181811c908216806139bc57607f821691505b6020821081141561188c57634e487b7160e01b600052602260045260246000fd5b60006000198214156139f1576139f1613a0c565b5060010190565b600082613a0757613a07613a22565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611f5f57600080fdfe516d6558624a6877364c703767374663563679487a79766f535463764b517846564664585a56516138535159766d4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea264697066735822122000806915d3980a945f2544d25a5e00951fc92a3da08b14917c9193f3cf6d3fcf64736f6c63430008070033

Deployed Bytecode Sourcemap

203:11086:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9972:150:1;;;;;;;;;;-1:-1:-1;9972:150:1;;;;;:::i;:::-;-1:-1:-1;;;;;;10081:33:1;10057:4;10081:33;;;;;;;;;;;;;;9972:150;;;;10364:14:2;;10357:22;10339:41;;10327:2;10312:18;9972:150:1;;;;;;;;51023:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;53809:221::-;;;;;;;;;;-1:-1:-1;53809:221:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8362:32:2;;;8344:51;;8332:2;8317:18;53809:221:1;8198:203:2;53339:404:1;;;;;;;;;;-1:-1:-1;53339:404:1;;;;;:::i;:::-;;:::i;:::-;;3641:473:0;;;;;;;;;;-1:-1:-1;3641:473:0;;;;;:::i;:::-;;:::i;52817:211:1:-;;;;;;;;;;;;;:::i;:::-;;;27254:25:2;;;27242:2;27227:18;52817:211:1;27108:177:2;54699:305:1;;;;;;;;;;-1:-1:-1;54699:305:1;;;;;:::i;:::-;;:::i;1913:23:0:-;;;;;;;;;;;;;:::i;4154:192::-;;;;;;;;;;;;;:::i;1060:55::-;;;;;;;;;;;;;;;;52579:162:1;;;;;;;;;;-1:-1:-1;52579:162:1;;;;;:::i;:::-;;:::i;1770:44:0:-;;;;;;;;;;-1:-1:-1;1770:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;1865:27;;;;;;;;;;-1:-1:-1;1865:27:0;;;;;:::i;:::-;;:::i;5947:762::-;;;;;;;;;;;;;:::i;3298:90::-;;;;;;;;;;-1:-1:-1;3298:90:0;;;;;:::i;:::-;;:::i;3044:98::-;;;;;;;;;;-1:-1:-1;3044:98:0;;;;;:::i;:::-;;:::i;1270:35::-;;;;;;;;;;;;;;;;55075:151:1;;;;;;;;;;-1:-1:-1;55075:151:1;;;;;:::i;:::-;;:::i;53105:172::-;;;;;;;;;;-1:-1:-1;53105:172:1;;;;;:::i;:::-;;:::i;989:55:0:-;;;;;;;;;;;;;;;;4810:289;;;;;;;;;;-1:-1:-1;4810:289:0;;;;;:::i;:::-;;:::i;1232:34::-;;;;;;;;;;;;;;;;50779:177:1;;;;;;;;;;-1:-1:-1;50779:177:1;;;;;:::i;:::-;;:::i;780:49:0:-;;;;;;;;;;;;;;;;52398:97:1;;;;;;;;;;;;;:::i;3175:90:0:-;;;;;;;;;;-1:-1:-1;3175:90:0;;;;;:::i;:::-;;:::i;50496:221:1:-;;;;;;;;;;-1:-1:-1;50496:221:1;;;;;:::i;:::-;;:::i;65688:148::-;;;;;;;;;;;;;:::i;4647:93:0:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6963:305::-;;;:::i;10073:172::-;;;;;;;;;;;;;:::i;10391:528::-;;;;;;;;;;-1:-1:-1;10391:528:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1382:32::-;;;;;;;;;;;;;;;;845:56;;;;;;;;;;;;;;;;65037:87:1;;;;;;;;;;-1:-1:-1;65110:6:1;;-1:-1:-1;;;;;65110:6:1;65037:87;;670:88:0;;;;;;;;;;;;;:::i;11040:246::-;;;;;;;;;;-1:-1:-1;11040:246:0;;;;;:::i;:::-;;:::i;5187:97::-;;;;;;;;;;-1:-1:-1;5187:97:0;;;;;:::i;:::-;;:::i;1191:37::-;;;;;;;;;;;;;;;;51192:104:1;;;;;;;;;;;;;:::i;1610:46:0:-;;;;;;;;;;;;;;;;54102:295:1;;;;;;;;;;-1:-1:-1;54102:295:1;;;;;:::i;:::-;;:::i;1660:45:0:-;;;;;;;;;;;;;;;;1518:42;;;;;;;;;;;;;;;;1419:33;;;;;;;;;;;;;;;;1941:23;;;;;;;;;;;;;:::i;7400:1948::-;;;;;;:::i;:::-;;:::i;917:55::-;;;;;;;;;;;;;;;;55297:285:1;;;;;;;;;;-1:-1:-1;55297:285:1;;;;;:::i;:::-;;:::i;1818:43:0:-;;;;;;;;;;-1:-1:-1;1818:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;1969:26;;;;;;;;;;;;;:::i;6784:85::-;;;;;;;;;;-1:-1:-1;6784:85:0;;;;;:::i;:::-;;:::i;1564:42::-;;;;;;;;;;;;;;;;1150:36;;;;;;;;;;;;;;;;5417:483;;;;;;;;;;-1:-1:-1;5417:483:0;;;;;:::i;:::-;;:::i;1345:33::-;;;;;;;;;;;;;;;;3426:138;;;;;;;;;;-1:-1:-1;3426:138:0;;;;;:::i;:::-;;:::i;4424:218::-;;;;;;;;;;-1:-1:-1;4424:218:0;;;;;:::i;:::-;;:::i;1726:40::-;;;;;;;;;;-1:-1:-1;1726:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;5287:100;;;;;;;;;;;;;:::i;54468:164:1:-;;;;;;;;;;-1:-1:-1;54468:164:1;;;;;:::i;:::-;-1:-1:-1;;;;;54589:25:1;;;54565:4;54589:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;54468:164;9547:500:0;;;;;;;;;;;;;:::i;2019:31::-;;;;;;;;;;-1:-1:-1;2019:31:0;;;;;;;;2907:100;;;;;;;;;;-1:-1:-1;2907:100:0;;;;;:::i;:::-;;:::i;1309:32::-;;;;;;;;;;;;;;;;1456:35;;;;;;;;;;;;;;;;65991:244:1;;;;;;;;;;-1:-1:-1;65991:244:1;;;;;:::i;:::-;;:::i;2074:23:0:-;;;;;;;;;;;;;;;;51023:100:1;51077:13;51110:5;51103:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51023:100;:::o;53809:221::-;53885:7;53913:16;53921:7;53913;:16::i;:::-;53905:73;;;;-1:-1:-1;;;53905:73:1;;21167:2:2;53905:73:1;;;21149:21:2;21206:2;21186:18;;;21179:30;21245:34;21225:18;;;21218:62;-1:-1:-1;;;21296:18:2;;;21289:42;21348:19;;53905:73:1;;;;;;;;;-1:-1:-1;53998:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;53998:24:1;;53809:221::o;53339:404::-;53420:13;53436:23;53451:7;53436:14;:23::i;:::-;53420:39;;53484:5;-1:-1:-1;;;;;53478:11:1;:2;-1:-1:-1;;;;;53478:11:1;;;53470:57;;;;-1:-1:-1;;;53470:57:1;;23724:2:2;53470:57:1;;;23706:21:2;23763:2;23743:18;;;23736:30;23802:34;23782:18;;;23775:62;-1:-1:-1;;;23853:18:2;;;23846:31;23894:19;;53470:57:1;23522:397:2;53470:57:1;733:10;-1:-1:-1;;;;;53548:21:1;;;;:69;;-1:-1:-1;53573:44:1;53597:5;733:10;54468:164;:::i;53573:44::-;53540:161;;;;-1:-1:-1;;;53540:161:1;;17791:2:2;53540:161:1;;;17773:21:2;17830:2;17810:18;;;17803:30;17869:34;17849:18;;;17842:62;17940:26;17920:18;;;17913:54;17984:19;;53540:161:1;17589:420:2;53540:161:1;53714:21;53723:2;53727:7;53714:8;:21::i;:::-;53409:334;53339:404;;:::o;3641:473:0:-;65110:6:1;;-1:-1:-1;;;;;65110:6:1;733:10;65257:23;65249:68;;;;-1:-1:-1;;;65249:68:1;;;;;;;:::i;:::-;3802:11:0::1;::::0;3781:16;;3762:36:::1;::::0;:14;;:18:::1;:36::i;:::-;3751:8;;:47;;;;:::i;:::-;:62;;3743:71;;;::::0;::::1;;3826:9;3821:286;3845:9;:16;3841:1;:20;3821:286;;;3909:1;-1:-1:-1::0;;;;;3885:26:0::1;:9;3895:1;3885:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;3885:26:0::1;;;3877:48;;;::::0;-1:-1:-1;;;3877:48:0;;18973:2:2;3877:48:0::1;::::0;::::1;18955:21:2::0;19012:1;18992:18;;;18985:29;-1:-1:-1;;;19030:18:2;;;19023:39;19079:18;;3877:48:0::1;18771:332:2::0;3877:48:0::1;3933:14;3950:13;:11;:13::i;:::-;3933:30;;3974:9;3969:99;3993:14;3989:1;:18;3969:99;;;4026:35;4036:9;4046:1;4036:12;;;;;;;;:::i;:::-;;;;;;;4059:1;4050:6;:10;;;;:::i;:::-;4026:9;:35::i;:::-;4009:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3969:99;;;;4087:14;4075:8;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;3863:3:0;;-1:-1:-1;3863:3:0::1;::::0;-1:-1:-1;3863:3:0;::::1;:::i;:::-;;;;3821:286;;52817:211:1::0;52878:7;52999:21;:12;:19;:21::i;:::-;52992:28;;52817:211;:::o;54699:305::-;54860:41;733:10;54893:7;54860:18;:41::i;:::-;54852:103;;;;-1:-1:-1;;;54852:103:1;;;;;;;:::i;:::-;54968:28;54978:4;54984:2;54988:7;54968:9;:28::i;1913:23:0:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4154:192::-;65110:6:1;;-1:-1:-1;;;;;65110:6:1;733:10;65257:23;65249:68;;;;-1:-1:-1;;;65249:68:1;;;;;;;:::i;:::-;4222:13:0::1;:11;:13::i;:::-;4209:10;:26:::0;4250:18:::1;::::0;4246:92:::1;;4314:12;4293:18;:33:::0;4246:92:::1;4154:192::o:0;52579:162:1:-;-1:-1:-1;;;;;52703:20:1;;52676:7;52703:20;;;:13;:20;;;;;:30;;52727:5;52703:23;:30::i;:::-;52696:37;;52579:162;;;;;:::o;1865:27:0:-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1865:27:0;;-1:-1:-1;1865:27:0;:::o;5947:762::-;65110:6:1;;-1:-1:-1;;;;;65110:6:1;733:10;65257:23;65249:68;;;;-1:-1:-1;;;65249:68:1;;;;;;;:::i;:::-;6012:21:0::1;5994:15;6092:24;6112:3;6092:15;6012:21:::0;6104:2:::1;6092:11;:15::i;:::-;:19:::0;::::1;:24::i;:::-;6135:7;::::0;6127:36:::1;::::0;6072:44;;-1:-1:-1;;;;;;6135:7:0::1;::::0;6127:36;::::1;;;::::0;6072:44;;6135:7:::1;6127:36:::0;6135:7;6127:36;6072:44;6135:7;6127:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;6182:7:0::1;::::0;6174:36:::1;::::0;-1:-1:-1;;;;;6182:7:0;;::::1;::::0;6174:36;::::1;;;::::0;6200:9;;6182:7:::1;6174:36:::0;6182:7;6174:36;6200:9;6182:7;6174:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;6223:7:0::1;::::0;6215:36:::1;::::0;-1:-1:-1;;;;;6223:7:0;;::::1;::::0;6215:36;::::1;;;::::0;6241:9;;6223:7:::1;6215:36:::0;6223:7;6215:36;6241:9;6223:7;6215:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;6292:9:0::1;::::0;-1:-1:-1;;;;;6292:9:0::1;:23:::0;6288:141:::1;;6326:22;6351:23;6370:3;6351:14;:7:::0;6363:1:::1;6351:11;:14::i;:23::-;6388:9;::::0;6380:43:::1;::::0;6326:48;;-1:-1:-1;;;;;;6388:9:0::1;::::0;6380:43;::::1;;;::::0;6326:48;;6388:9:::1;6380:43:::0;6388:9;6380:43;6326:48;6388:9;6380:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;6320:109;6288:141;6488:10;:17:::0;:21;6484:221:::1;;6569:10;:17:::0;6520::::1;::::0;6540:47:::1;::::0;:24:::1;6560:3;6540:24:::0;:7;6552:2:::1;6540:11;:15::i;:47::-;6520:67;;6597:9;6593:107;6616:10;:17:::0;6612:21;::::1;6593:107;;;6659:10;6670:1;6659:13;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;::::1;::::0;6651:42:::1;::::0;-1:-1:-1;;;;;6659:13:0;;::::1;::::0;6651:42;::::1;;;::::0;6683:9;;6651:42;6659:13;6651:42;6683:9;6659:13;6651:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;6635:3:0;::::1;::::0;::::1;:::i;:::-;;;;6593:107;;;;6514:191;6484:221;5988:721;;5947:762::o:0;3298:90::-;65110:6:1;;-1:-1:-1;;;;;65110:6:1;733:10;65257:23;65249:68;;;;-1:-1:-1;;;65249:68:1;;;;;;;:::i;:::-;3363:12:0::1;:20:::0;3298:90::o;3044:98::-;65110:6:1;;-1:-1:-1;;;;;65110:6:1;733:10;65257:23;65249:68;;;;-1:-1:-1;;;65249:68:1;;;;;;;:::i;:::-;3113:16:0::1;:24:::0;3044:98::o;55075:151:1:-;55179:39;55196:4;55202:2;55206:7;55179:39;;;;;;;;;;;;:16;:39::i;53105:172::-;53180:7;;53222:22;:12;53238:5;53222:15;:22::i;:::-;-1:-1:-1;53200:44:1;53105:172;-1:-1:-1;;;53105:172:1:o;4810:289:0:-;65110:6:1;;-1:-1:-1;;;;;65110:6:1;733:10;65257:23;65249:68;;;;-1:-1:-1;;;65249:68:1;;;;;;;:::i;:::-;4906:5:0::1;:10;;4915:1;4906:10;:24;;;;4920:5;:10;;4929:1;4920:10;4906:24;4898:54;;;::::0;-1:-1:-1;;;4898:54:0;;26278:2:2;4898:54:0::1;::::0;::::1;26260:21:2::0;26317:2;26297:18;;;26290:30;-1:-1:-1;;;26336:18:2;;;26329:47;26393:18;;4898:54:0::1;26076:341:2::0;4898:54:0::1;4964:9;4959:136;4983:9;:16;4979:1;:20;4959:136;;;5048:1;-1:-1:-1::0;;;;;5024:26:0::1;:9;5034:1;5024:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;5024:26:0::1;;;5015:36;;;::::0;::::1;;5083:5;5057:31;;:9;:23;5067:9;5077:1;5067:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;5057:23:0::1;-1:-1:-1::0;;;;;5057:23:0::1;;;;;;;;;;;;:31;;;;5001:3;;;;;:::i;:::-;;;;4959:136;;50779:177:1::0;50851:7;50878:70;50895:7;50878:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;52398:97::-;52446:13;52479:8;52472:15;;;;;:::i;3175:90:0:-;65110:6:1;;-1:-1:-1;;;;;65110:6:1;733:10;65257:23;65249:68;;;;-1:-1:-1;;;65249:68:1;;;;;;;:::i;:::-;3240:12:0::1;:20:::0;3175:90::o;50496:221:1:-;50568:7;-1:-1:-1;;;;;50596:19:1;;50588:74;;;;-1:-1:-1;;;50588:74:1;;18562:2:2;50588:74:1;;;18544:21:2;18601:2;18581:18;;;18574:30;18640:34;18620:18;;;18613:62;-1:-1:-1;;;18691:18:2;;;18684:40;18741:19;;50588:74:1;18360:406:2;50588:74:1;-1:-1:-1;;;;;50680:20:1;;;;;;:13;:20;;;;;:29;;:27;:29::i;65688:148::-;65110:6;;-1:-1:-1;;;;;65110:6:1;733:10;65257:23;65249:68;;;;-1:-1:-1;;;65249:68:1;;;;;;;:::i;:::-;65779:6:::1;::::0;65758:40:::1;::::0;65795:1:::1;::::0;-1:-1:-1;;;;;65779:6:1::1;::::0;65758:40:::1;::::0;65795:1;;65758:40:::1;65809:6;:19:::0;;-1:-1:-1;;;;;;65809:19:1::1;::::0;;65688:148::o;4647:93:0:-;4693:16;4725:10;4718:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4718:17:0;;;;;;;;;;;;;;;;;;;;;;4647:93;:::o;6963:305::-;7029:10;;7016:9;:23;;7008:57;;;;-1:-1:-1;;;7008:57:0;;26960:2:2;7008:57:0;;;26942:21:2;26999:2;26979:18;;;26972:30;-1:-1:-1;;;27018:18:2;;;27011:51;27079:18;;7008:57:0;26758:345:2;7008:57:0;7093:10;7084:20;;;;:8;:20;;;;;;;;:29;7076:56;;;;-1:-1:-1;;;7076:56:0;;11567:2:2;7076:56:0;;;11549:21:2;11606:2;11586:18;;;11579:30;-1:-1:-1;;;11625:18:2;;;11618:44;11679:18;;7076:56:0;11365:338:2;7076:56:0;7158:1;7145:10;;:14;7137:41;;;;-1:-1:-1;;;7137:41:0;;14130:2:2;7137:41:0;;;14112:21:2;14169:2;14149:18;;;14142:30;-1:-1:-1;;;14188:18:2;;;14181:44;14242:18;;7137:41:0;13928:338:2;7137:41:0;7196:10;7187:20;;;;:8;:20;;;;;;;:27;;-1:-1:-1;;7187:27:0;7210:4;7187:27;;;;;;7219;;;;;;;;;;;;;;-1:-1:-1;;;;;;7219:27:0;;;;;;;7251:10;:12;;;;;;:::i;:::-;;;;;;6963:305::o;10073:172::-;65110:6:1;;-1:-1:-1;;;;;65110:6:1;733:10;65257:23;65249:68;;;;-1:-1:-1;;;65249:68:1;;;;;;;:::i;:::-;10154:13:0::1;::::0;:18;10146:37:::1;;;::::0;-1:-1:-1;;;10146:37:0;;13796:2:2;10146:37:0::1;::::0;::::1;13778:21:2::0;13835:1;13815:18;;;13808:29;-1:-1:-1;;;13853:18:2;;;13846:36;13899:18;;10146:37:0::1;13594:329:2::0;10146:37:0::1;10225:12;10204:18;:33:::0;10073:172::o;10391:528::-;10452:16;10484:18;10505:17;10515:6;10505:9;:17::i;:::-;10484:38;-1:-1:-1;10537:15:0;10533:379;;10580:16;;;10594:1;10580:16;;;;;;;;;;;;10533:379;10637:23;10677:10;10663:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10663:25:0;;10637:51;;10708:13;10703:170;10731:10;10723:5;:18;10703:170;;;10847:10;;10830:13;;10793:34;10813:6;10821:5;10793:19;:34::i;:::-;:50;;;;:::i;:::-;10792:65;;;;:::i;:::-;10776:6;10783:5;10776:13;;;;;;;;:::i;:::-;;;;;;;;;;:81;10743:7;;;;:::i;:::-;;;;10703:170;;10533:379;10473:446;10391:528;;;:::o;670:88::-;;;;;;;;;;;;;;;;;;;:::o;11040:246::-;-1:-1:-1;;;;;11130:16:0;;11101:7;11130:16;;;:8;:16;;;;;;;;:24;;:16;:24;11126:153;;;-1:-1:-1;11187:1:0;;11040:246;-1:-1:-1;11040:246:0:o;11126:153::-;-1:-1:-1;;;;;;11247:17:0;;;;;:9;:17;;;;;;;11040:246::o;11126:153::-;11040:246;;;:::o;5187:97::-;65110:6:1;;-1:-1:-1;;;;;65110:6:1;733:10;65257:23;65249:68;;;;-1:-1:-1;;;65249:68:1;;;;;;;:::i;:::-;5258:20:0;;::::1;::::0;:12:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;51192:104:1:-:0;51248:13;51281:7;51274:14;;;;;:::i;54102:295::-;-1:-1:-1;;;;;54205:24:1;;733:10;54205:24;;54197:62;;;;-1:-1:-1;;;54197:62:1;;14878:2:2;54197:62:1;;;14860:21:2;14917:2;14897:18;;;14890:30;14956:27;14936:18;;;14929:55;15001:18;;54197:62:1;14676:349:2;54197:62:1;733:10;54272:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;54272:42:1;;;;;;;;;;;;:53;;-1:-1:-1;;54272:53:1;;;;;;;;;;54341:48;;10339:41:2;;;54272:42:1;;733:10;54341:48;;10312:18:2;54341:48:1;;;;;;;54102:295;;:::o;1941:23:0:-;;;;;;;:::i;7400:1948::-;7477:12;;;;:20;;:12;:20;7469:46;;;;-1:-1:-1;;;7469:46:0;;15232:2:2;7469:46:0;;;15214:21:2;15271:2;15251:18;;;15244:30;-1:-1:-1;;;15290:18:2;;;15283:43;15343:18;;7469:46:0;15030:337:2;7469:46:0;7565:10;;7528:33;7546:14;7528:13;:11;:13::i;:::-;:17;;:33::i;:::-;:47;;7520:71;;;;-1:-1:-1;;;7520:71:0;;21580:2:2;7520:71:0;;;21562:21:2;21619:2;21599:18;;;21592:30;-1:-1:-1;;;21638:18:2;;;21631:41;21689:18;;7520:71:0;21378:335:2;7520:71:0;7621:1;7604:14;:18;7596:39;;;;-1:-1:-1;;;7596:39:0;;26624:2:2;7596:39:0;;;26606:21:2;26663:1;26643:18;;;26636:29;-1:-1:-1;;;26681:18:2;;;26674:38;26729:18;;7596:39:0;26422:331:2;7596:39:0;7689:10;7680:20;;;;:8;:20;;;;;;;;:28;;:20;:28;7676:1172;;;7727:20;;7771:9;;7727:40;;7752:14;7727:24;:40::i;:::-;:53;;7719:84;;;;-1:-1:-1;;;7719:84:0;;11220:2:2;7719:84:0;;;11202:21:2;11259:2;11239:18;;;11232:30;-1:-1:-1;;;11278:18:2;;;11271:48;11336:18;;7719:84:0;11018:342:2;7719:84:0;7861:14;;7826:10;7817:20;;;;:8;:20;;;;;;:40;;7842:14;7817:24;:40::i;:::-;:58;;7809:86;;;;-1:-1:-1;;;7809:86:0;;19310:2:2;7809:86:0;;;19292:21:2;19349:2;19329:18;;;19322:30;-1:-1:-1;;;19368:18:2;;;19361:44;19422:18;;7809:86:0;19108:338:2;7809:86:0;7676:1172;;;7956:10;7946:21;;;;:9;:21;;;;;;7971:1;7946:26;7942:906;;;8011:12;;7992:15;:31;;7984:60;;;;-1:-1:-1;;;7984:60:0;;22625:2:2;7984:60:0;;;22607:21:2;22664:2;22644:18;;;22637:30;-1:-1:-1;;;22683:18:2;;;22676:46;22739:18;;7984:60:0;22423:340:2;7984:60:0;8058:18;;8100:9;;8058:38;;8081:14;8058:22;:38::i;:::-;:51;;8050:83;;;;-1:-1:-1;;;8050:83:0;;25930:2:2;8050:83:0;;;25912:21:2;25969:2;25949:18;;;25942:30;-1:-1:-1;;;25988:18:2;;;25981:49;26047:18;;8050:83:0;25728:343:2;8050:83:0;8191:12;;8156:10;8147:20;;;;:8;:20;;;;;;:40;;8172:14;8147:24;:40::i;:::-;:56;;8139:85;;;;-1:-1:-1;;;8139:85:0;;23380:2:2;8139:85:0;;;23362:21:2;23419:2;23399:18;;;23392:30;-1:-1:-1;;;23438:18:2;;;23431:45;23493:18;;8139:85:0;23178:339:2;7942:906:0;8285:10;8275:21;;;;:9;:21;;;;;;8300:1;8275:26;8271:577;;;8340:12;;8321:15;:31;;8313:59;;;;-1:-1:-1;;;8313:59:0;;24469:2:2;8313:59:0;;;24451:21:2;24508:2;24488:18;;;24481:30;-1:-1:-1;;;24527:18:2;;;24520:45;24582:18;;8313:59:0;24267:339:2;8313:59:0;8386:18;;8428:9;;8386:38;;8409:14;8386:22;:38::i;:::-;:51;;8378:83;;;;-1:-1:-1;;;8378:83:0;;19653:2:2;8378:83:0;;;19635:21:2;19692:2;19672:18;;;19665:30;-1:-1:-1;;;19711:18:2;;;19704:49;19770:18;;8378:83:0;19451:343:2;8378:83:0;8519:12;;8484:10;8475:20;;;;:8;:20;;;;;;:40;;8500:14;8475:24;:40::i;:::-;:56;;8467:85;;;;-1:-1:-1;;;8467:85:0;;22281:2:2;8467:85:0;;;22263:21:2;22320:2;22300:18;;;22293:30;-1:-1:-1;;;22339:18:2;;;22332:45;22394:18;;8467:85:0;22079:339:2;8271:577:0;8623:17;;8604:15;:36;;8596:63;;;;-1:-1:-1;;;8596:63:0;;24126:2:2;8596:63:0;;;24108:21:2;24165:2;24145:18;;;24138:30;-1:-1:-1;;;24184:18:2;;;24177:44;24238:18;;8596:63:0;23924:338:2;8596:63:0;8673:18;;8715:9;;8673:38;;8696:14;8673:22;:38::i;:::-;:51;;8665:82;;;;-1:-1:-1;;;8665:82:0;;13449:2:2;8665:82:0;;;13431:21:2;13488:2;13468:18;;;13461:30;-1:-1:-1;;;13507:18:2;;;13500:48;13565:18;;8665:82:0;13247:342:2;8665:82:0;8805:17;;8770:10;8761:20;;;;:8;:20;;;;;;:40;;8786:14;8761:24;:40::i;:::-;:61;;8753:89;;;;-1:-1:-1;;;8753:89:0;;15574:2:2;8753:89:0;;;15556:21:2;15613:2;15593:18;;;15586:30;-1:-1:-1;;;15632:18:2;;;15625:44;15686:18;;8753:89:0;15372:338:2;8753:89:0;8864:9;8860:227;8883:14;8879:1;:18;8860:227;;;8923:17;8943:13;:11;:13::i;:::-;8923:33;;8992:10;;8980:9;:22;8976:100;;;9028:32;9038:10;9050:9;9028;:32::i;:::-;-1:-1:-1;8899:3:0;;;;:::i;:::-;;;;8860:227;;;-1:-1:-1;9131:10:0;9122:20;;;;:8;:20;;;;;;:40;;9147:14;9122:24;:40::i;:::-;9108:10;9099:20;;;;:8;:20;;;;;:63;9179:18;;:23;:95;;;;;9224:10;;9207:13;:11;:13::i;:::-;:27;:66;;;;9257:16;;9238:15;:35;;9207:66;9175:165;;;9316:12;9295:18;:33;9175:165;7400:1948;:::o;55297:285:1:-;55429:41;733:10;55462:7;55429:18;:41::i;:::-;55421:103;;;;-1:-1:-1;;;55421:103:1;;;;;;;:::i;:::-;55535:39;55549:4;55555:2;55559:7;55568:5;55535:13;:39::i;1969:26:0:-;;;;;;;:::i;6784:85::-;65110:6:1;;-1:-1:-1;;;;;65110:6:1;733:10;65257:23;65249:68;;;;-1:-1:-1;;;65249:68:1;;;;;;;:::i;:::-;6844:12:0::1;:20:::0;;-1:-1:-1;;6844:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;6784:85::o;5417:483::-;5498:13;5535:16;5543:7;5535;:16::i;:::-;5527:46;;;;-1:-1:-1;;;5527:46:0;;18216:2:2;5527:46:0;;;18198:21:2;18255:2;18235:18;;;18228:30;-1:-1:-1;;;18274:18:2;;;18267:47;18331:18;;5527:46:0;18014:341:2;5527:46:0;5602:16;;5584:15;:34;5580:316;;;5676:9;5659:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;5645:42;;5417:483;;;:::o;5580:316::-;5731:24;5774:48;5811:10;;5794:13;;5784:7;:23;;;;:::i;:::-;5783:38;;;;:::i;:::-;5774:8;:48::i;:::-;5761:61;;5867:9;5878:10;5850:39;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5836:54;;;5417:483;;;:::o;3426:138::-;65110:6:1;;-1:-1:-1;;;;;65110:6:1;733:10;65257:23;65249:68;;;;-1:-1:-1;;;65249:68:1;;;;;;;:::i;:::-;3497:9:0::1;::::0;-1:-1:-1;;;;;3497:9:0::1;:23:::0;3489:48:::1;;;::::0;-1:-1:-1;;;3489:48:0;;25589:2:2;3489:48:0::1;::::0;::::1;25571:21:2::0;25628:2;25608:18;;;25601:30;-1:-1:-1;;;25647:18:2;;;25640:42;25699:18;;3489:48:0::1;25387:336:2::0;3489:48:0::1;3542:9;:17:::0;;-1:-1:-1;;;;;;3542:17:0::1;-1:-1:-1::0;;;;;3542:17:0;;;::::1;::::0;;;::::1;::::0;;3426:138::o;4424:218::-;65110:6:1;;-1:-1:-1;;;;;65110:6:1;733:10;65257:23;65249:68;;;;-1:-1:-1;;;65249:68:1;;;;;;;:::i;:::-;4513:9:0::1;4508:127;4532:9;:16;4528:1;:20;4508:127;;;4564:10;4580:9;4590:1;4580:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;4564:29;;::::1;::::0;;::::1;::::0;;-1:-1:-1;4564:29:0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;4564:29:0::1;-1:-1:-1::0;;;;;4564:29:0;;::::1;::::0;;;::::1;::::0;;4608:12;;4564:29;;4599:8:::1;::::0;4608:12;;4618:1;;4608:12;::::1;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;4599:22:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;4599:22:0;:29;;-1:-1:-1;;4599:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;4550:3;::::1;::::0;::::1;:::i;:::-;;;;4508:127;;5287:100:::0;5331:13;5367:12;5360:19;;;;;:::i;9547:500::-;65110:6:1;;-1:-1:-1;;;;;65110:6:1;733:10;65257:23;65249:68;;;;-1:-1:-1;;;65249:68:1;;;;;;;:::i;:::-;9613:13:0::1;::::0;:18;9605:37:::1;;;::::0;-1:-1:-1;;;9605:37:0;;13796:2:2;9605:37:0::1;::::0;::::1;13778:21:2::0;13835:1;13815:18;;;13808:29;-1:-1:-1;;;13853:18:2;;;13846:36;13899:18;;9605:37:0::1;13594:329:2::0;9605:37:0::1;9661:18;::::0;9653:47:::1;;;::::0;-1:-1:-1;;;9653:47:0;;17451:2:2;9653:47:0::1;::::0;::::1;17433:21:2::0;17490:2;17470:18;;;17463:30;-1:-1:-1;;;17509:18:2;;;17502:41;17560:18;;9653:47:0::1;17249:335:2::0;9653:47:0::1;9775:10;::::0;9752:18:::1;::::0;9737:48:::1;::::0;9775:10;9742:29:::1;9737:48;:::i;:::-;9721:13;:64:::0;9817:18:::1;::::0;9839:3:::1;::::0;9800:36:::1;::::0;:12:::1;::::0;:16:::1;:36::i;:::-;:42;9796:141;;;9915:10;::::0;9894:16:::1;9909:1;9894:12;:16;:::i;:::-;9879:46;::::0;;9884:27:::1;9879:46;:::i;:::-;9863:13;:62:::0;9796:141:::1;9953:13;::::0;9949:91:::1;;10008:13;::::0;:20:::1;::::0;10026:1:::1;10008:17;:20::i;:::-;9992:13;:36:::0;9547:500::o;2907:100::-;65110:6:1;;-1:-1:-1;;;;;65110:6:1;733:10;65257:23;65249:68;;;;-1:-1:-1;;;65249:68:1;;;;;;;:::i;:::-;2977:17:0::1;:25:::0;2907:100::o;65991:244:1:-;65110:6;;-1:-1:-1;;;;;65110:6:1;733:10;65257:23;65249:68;;;;-1:-1:-1;;;65249:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;66080:22:1;::::1;66072:73;;;::::0;-1:-1:-1;;;66072:73:1;;12329:2:2;66072:73:1::1;::::0;::::1;12311:21:2::0;12368:2;12348:18;;;12341:30;12407:34;12387:18;;;12380:62;-1:-1:-1;;;12458:18:2;;;12451:36;12504:19;;66072:73:1::1;12127:402:2::0;66072:73:1::1;66182:6;::::0;66161:38:::1;::::0;-1:-1:-1;;;;;66161:38:1;;::::1;::::0;66182:6:::1;::::0;66161:38:::1;::::0;66182:6:::1;::::0;66161:38:::1;66210:6;:17:::0;;-1:-1:-1;;;;;;66210:17:1::1;-1:-1:-1::0;;;;;66210:17:1;;;::::1;::::0;;;::::1;::::0;;65991:244::o;57049:127::-;57114:4;57138:30;:12;57160:7;57138:21;:30::i;63067:192::-;63142:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;63142:29:1;-1:-1:-1;;;;;63142:29:1;;;;;;;;:24;;63196:23;63142:24;63196:14;:23::i;:::-;-1:-1:-1;;;;;63187:46:1;;;;;;;;;;;63067:192;;:::o;14376:220::-;14434:7;14458:6;14454:20;;-1:-1:-1;14473:1:1;14466:8;;14454:20;14485:9;14497:5;14501:1;14497;:5;:::i;:::-;14485:17;-1:-1:-1;14530:1:1;14521:5;14525:1;14485:17;14521:5;:::i;:::-;:10;14513:56;;;;-1:-1:-1;;;14513:56:1;;20765:2:2;14513:56:1;;;20747:21:2;20804:2;20784:18;;;20777:30;20843:34;20823:18;;;20816:62;-1:-1:-1;;;20894:18:2;;;20887:31;20935:19;;14513:56:1;20563:397:2;58041:110:1;58117:26;58127:2;58131:7;58117:26;;;;;;;;;;;;:9;:26::i;43865:123::-;43934:7;43961:19;43969:3;40527:19;;40444:110;57343:355;57436:4;57461:16;57469:7;57461;:16::i;:::-;57453:73;;;;-1:-1:-1;;;57453:73:1;;16683:2:2;57453:73:1;;;16665:21:2;16722:2;16702:18;;;16695:30;16761:34;16741:18;;;16734:62;-1:-1:-1;;;16812:18:2;;;16805:42;16864:19;;57453:73:1;16481:408:2;57453:73:1;57537:13;57553:23;57568:7;57553:14;:23::i;:::-;57537:39;;57606:5;-1:-1:-1;;;;;57595:16:1;:7;-1:-1:-1;;;;;57595:16:1;;:51;;;;57639:7;-1:-1:-1;;;;;57615:31:1;:20;57627:7;57615:11;:20::i;:::-;-1:-1:-1;;;;;57615:31:1;;57595:51;:94;;;-1:-1:-1;;;;;;54589:25:1;;;54565:4;54589:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;57650:39;57587:103;57343:355;-1:-1:-1;;;;57343:355:1:o;60479:599::-;60604:4;-1:-1:-1;;;;;60577:31:1;:23;60592:7;60577:14;:23::i;:::-;-1:-1:-1;;;;;60577:31:1;;60569:85;;;;-1:-1:-1;;;60569:85:1;;22970:2:2;60569:85:1;;;22952:21:2;23009:2;22989:18;;;22982:30;23048:34;23028:18;;;23021:62;-1:-1:-1;;;23099:18:2;;;23092:39;23148:19;;60569:85:1;22768:405:2;60569:85:1;-1:-1:-1;;;;;60691:16:1;;60683:65;;;;-1:-1:-1;;;60683:65:1;;14473:2:2;60683:65:1;;;14455:21:2;14512:2;14492:18;;;14485:30;14551:34;14531:18;;;14524:62;-1:-1:-1;;;14602:18:2;;;14595:34;14646:19;;60683:65:1;14271:400:2;60683:65:1;60865:29;60882:1;60886:7;60865:8;:29::i;:::-;-1:-1:-1;;;;;60907:19:1;;;;;;:13;:19;;;;;:35;;60934:7;60907:26;:35::i;:::-;-1:-1:-1;;;;;;60953:17:1;;;;;;:13;:17;;;;;:30;;60975:7;60953:21;:30::i;:::-;-1:-1:-1;60996:29:1;:12;61013:7;61022:2;60996:16;:29::i;:::-;;61062:7;61058:2;-1:-1:-1;;;;;61043:27:1;61052:4;-1:-1:-1;;;;;61043:27:1;;;;;;;;;;;60479:599;;;:::o;35693:137::-;35764:7;35799:22;35803:3;35815:5;35799:3;:22::i;15074:153::-;15132:7;15164:1;15160;:5;15152:44;;;;-1:-1:-1;;;15152:44:1;;17096:2:2;15152:44:1;;;17078:21:2;17135:2;17115:18;;;17108:30;17174:28;17154:18;;;17147:56;17220:18;;15152:44:1;16894:350:2;15152:44:1;15214:5;15218:1;15214;:5;:::i;44327:236::-;44407:7;;;;44467:22;44471:3;44483:5;44467:3;:22::i;:::-;44436:53;;;;-1:-1:-1;44327:236:1;-1:-1:-1;;;;;44327:236:1:o;45613:213::-;45720:7;45771:44;45776:3;45796;45802:12;45771:4;:44::i;:::-;45763:53;-1:-1:-1;45613:213:1;;;;;;:::o;13497:179::-;13555:7;;13587:5;13591:1;13587;:5;:::i;:::-;13575:17;;13616:1;13611;:6;;13603:46;;;;-1:-1:-1;;;13603:46:1;;13093:2:2;13603:46:1;;;13075:21:2;13132:2;13112:18;;;13105:30;13171:29;13151:18;;;13144:57;13218:18;;13603:46:1;12891:351:2;56464:272:1;56578:28;56588:4;56594:2;56598:7;56578:9;:28::i;:::-;56625:48;56648:4;56654:2;56658:7;56667:5;56625:22;:48::i;:::-;56617:111;;;;-1:-1:-1;;;56617:111:1;;;;;;;:::i;66249:579::-;66299:27;66349:7;66345:50;;-1:-1:-1;;66373:10:1;;;;;;;;;;;;-1:-1:-1;;;66373:10:1;;;;;66249:579::o;66345:50::-;66414:2;66405:6;66446:69;66453:6;;66446:69;;66476:5;;;;:::i;:::-;;-1:-1:-1;66496:7:1;;-1:-1:-1;66501:2:1;66496:7;;:::i;:::-;;;66446:69;;;66525:17;66555:3;66545:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66545:14:1;-1:-1:-1;66525:34:1;-1:-1:-1;66579:3:1;66593:198;66600:7;;66593:198;;66628:3;66630:1;66628;:3;:::i;:::-;66624:7;-1:-1:-1;66646:10:1;66676:7;66681:2;66676;:7;:::i;:::-;:12;;66686:2;66676:12;:::i;:::-;66671:17;;:2;:17;:::i;:::-;66660:29;;:2;:29;:::i;:::-;66646:44;;66705:9;66724:4;66717:12;;66705:24;;66754:2;66744:4;66749:1;66744:7;;;;;;;;:::i;:::-;;;;:12;-1:-1:-1;;;;;66744:12:1;;;;;;;;-1:-1:-1;66771:8:1;66777:2;66771:8;;:::i;:::-;;;66609:182;;66593:198;;;-1:-1:-1;66815:4:1;66249:579;-1:-1:-1;;;;66249:579:1:o;13959:158::-;14017:7;14050:1;14045;:6;;14037:49;;;;-1:-1:-1;;;14037:49:1;;15917:2:2;14037:49:1;;;15899:21:2;15956:2;15936:18;;;15929:30;15995:32;15975:18;;;15968:60;16045:18;;14037:49:1;15715:354:2;14037:49:1;14104:5;14108:1;14104;:5;:::i;43626:151::-;43710:4;40319:17;;;:12;;;:17;;;;;;:22;;43734:35;40224:125;58378:250;58474:18;58480:2;58484:7;58474:5;:18::i;:::-;58511:54;58542:1;58546:2;58550:7;58559:5;58511:22;:54::i;:::-;58503:117;;;;-1:-1:-1;;;58503:117:1;;;;;;;:::i;34780:137::-;34850:4;34874:35;34882:3;34902:5;34874:7;:35::i;34473:131::-;34540:4;34564:32;34569:3;34589:5;34564:4;:32::i;43049:185::-;43138:4;43162:64;43167:3;43187;-1:-1:-1;;;;;43201:23:1;;43162:4;:64::i;30733:204::-;30828:18;;30800:7;;30828:26;-1:-1:-1;30820:73:1;;;;-1:-1:-1;;;30820:73:1;;10817:2:2;30820:73:1;;;10799:21:2;10856:2;10836:18;;;10829:30;10895:34;10875:18;;;10868:62;-1:-1:-1;;;10946:18:2;;;10939:32;10988:19;;30820:73:1;10615:398:2;30820:73:1;30911:3;:11;;30923:5;30911:18;;;;;;;;:::i;:::-;;;;;;;;;30904:25;;30733:204;;;;:::o;40909:279::-;41013:19;;40976:7;;;;41013:27;-1:-1:-1;41005:74:1;;;;-1:-1:-1;;;41005:74:1;;20001:2:2;41005:74:1;;;19983:21:2;20040:2;20020:18;;;20013:30;20079:34;20059:18;;;20052:62;-1:-1:-1;;;20130:18:2;;;20123:32;20172:19;;41005:74:1;19799:398:2;41005:74:1;41092:22;41117:3;:12;;41130:5;41117:19;;;;;;;;:::i;:::-;;;;;;;;;;;41092:44;;41155:5;:10;;;41167:5;:12;;;41147:33;;;;;40909:279;;;;;:::o;42406:319::-;42500:7;42539:17;;;:12;;;:17;;;;;;42590:12;42575:13;42567:36;;;;-1:-1:-1;;;42567:36:1;;;;;;;;:::i;:::-;-1:-1:-1;42657:3:1;42670:12;42681:1;42670:8;:12;:::i;:::-;42657:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;42650:40;;;42406:319;;;;;:::o;62344:604::-;62465:4;-1:-1:-1;;;;;62492:13:1;;19268:20;62487:60;;-1:-1:-1;62531:4:1;62524:11;;62487:60;62557:23;62583:252;-1:-1:-1;;;733:10:1;62723:4;62742:7;62764:5;62599:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;62599:181:1;;;;;;;-1:-1:-1;;;;;62599:181:1;;;;;;;;;;;62583:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62583:15:1;;;:252;:15;:252::i;:::-;62557:278;;62846:13;62873:10;62862:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;62913:26:1;-1:-1:-1;;;62913:26:1;;-1:-1:-1;;;62344:604:1;;;;;;:::o;58964:404::-;-1:-1:-1;;;;;59044:16:1;;59036:61;;;;-1:-1:-1;;;59036:61:1;;20404:2:2;59036:61:1;;;20386:21:2;;;20423:18;;;20416:30;20482:34;20462:18;;;20455:62;20534:18;;59036:61:1;20202:356:2;59036:61:1;59117:16;59125:7;59117;:16::i;:::-;59116:17;59108:58;;;;-1:-1:-1;;;59108:58:1;;12736:2:2;59108:58:1;;;12718:21:2;12775:2;12755:18;;;12748:30;12814;12794:18;;;12787:58;12862:18;;59108:58:1;12534:352:2;59108:58:1;-1:-1:-1;;;;;59237:17:1;;;;;;:13;:17;;;;;:30;;59259:7;59237:21;:30::i;:::-;-1:-1:-1;59280:29:1;:12;59297:7;59306:2;59280:16;:29::i;:::-;-1:-1:-1;59327:33:1;;59352:7;;-1:-1:-1;;;;;59327:33:1;;;59344:1;;59327:33;;59344:1;;59327:33;58964:404;;:::o;28435:1544::-;28501:4;28640:19;;;:12;;;:19;;;;;;28676:15;;28672:1300;;29038:21;29062:14;29075:1;29062:10;:14;:::i;:::-;29111:18;;29038:38;;-1:-1:-1;29091:17:1;;29111:22;;29132:1;;29111:22;:::i;:::-;29091:42;;29378:17;29398:3;:11;;29410:9;29398:22;;;;;;;;:::i;:::-;;;;;;;;;29378:42;;29544:9;29515:3;:11;;29527:13;29515:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;29647:17;:13;29663:1;29647:17;:::i;:::-;29621:23;;;;:12;;;:23;;;;;:43;29773:17;;29621:3;;29773:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29868:3;:12;;:19;29881:5;29868:19;;;;;;;;;;;29861:26;;;29911:4;29904:11;;;;;;;;28672:1300;29955:5;29948:12;;;;;27845:414;27908:4;40319:17;;;:12;;;:17;;;;;;27925:327;;-1:-1:-1;27968:23:1;;;;;;;;:11;:23;;;;;;;;;;;;;28151:18;;28129:19;;;:12;;;:19;;;;;;:40;;;;28184:11;;27925:327;-1:-1:-1;28235:5:1;28228:12;;37724:692;37800:4;37935:17;;;:12;;;:17;;;;;;37969:13;37965:444;;-1:-1:-1;;38054:38:1;;;;;;;;;;;;;;;;;;38036:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;38251:19;;38231:17;;;:12;;;:17;;;;;;;:39;38285:11;;37965:444;38365:5;38329:3;38342:12;38353:1;38342:8;:12;:::i;:::-;38329:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;:41;;;;38392:5;38385:12;;;;;21819:195;21922:12;21954:52;21976:6;21984:4;21990:1;21993:12;21922;19268:20;;23115:60;;;;-1:-1:-1;;;23115:60:1;;25231:2:2;23115:60:1;;;25213:21:2;25270:2;25250:18;;;25243:30;25309:31;25289:18;;;25282:59;25358:18;;23115:60:1;25029:353:2;23115:60:1;23249:12;23263:23;23290:6;-1:-1:-1;;;;;23290:11:1;23310:5;23318:4;23290:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23248:75;;;;23341:52;23359:7;23368:10;23380:12;23341:17;:52::i;:::-;23334:59;22871:530;-1:-1:-1;;;;;;;22871:530:1:o;25411:742::-;25526:12;25555:7;25551:595;;;-1:-1:-1;25586:10:1;25579:17;;25551:595;25700:17;;:21;25696:439;;25963:10;25957:17;26024:15;26011:10;26007:2;26003:19;25996:44;25696:439;26106:12;26099:20;;-1:-1:-1;;;26099:20:1;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:2;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:2;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:2;;532:42;;522:70;;588:1;585;578:12;603:729;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;813:18;809:2;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:2;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:169;1148:2;1145:1;1142:9;1134:169;;;1205:23;1224:3;1205:23;:::i;:::-;1193:36;;1166:1;1159:9;;;;;1249:12;;;;1281;;1134:169;;;-1:-1:-1;1321:5:2;603:729;-1:-1:-1;;;;;;;603:729:2:o;1337:160::-;1402:20;;1458:13;;1451:21;1441:32;;1431:60;;1487:1;1484;1477:12;1502:186;1561:6;1614:2;1602:9;1593:7;1589:23;1585:32;1582:52;;;1630:1;1627;1620:12;1582:52;1653:29;1672:9;1653:29;:::i;1693:260::-;1761:6;1769;1822:2;1810:9;1801:7;1797:23;1793:32;1790:52;;;1838:1;1835;1828:12;1790:52;1861:29;1880:9;1861:29;:::i;:::-;1851:39;;1909:38;1943:2;1932:9;1928:18;1909:38;:::i;:::-;1899:48;;1693:260;;;;;:::o;1958:328::-;2035:6;2043;2051;2104:2;2092:9;2083:7;2079:23;2075:32;2072:52;;;2120:1;2117;2110:12;2072:52;2143:29;2162:9;2143:29;:::i;:::-;2133:39;;2191:38;2225:2;2214:9;2210:18;2191:38;:::i;:::-;2181:48;;2276:2;2265:9;2261:18;2248:32;2238:42;;1958:328;;;;;:::o;2291:666::-;2386:6;2394;2402;2410;2463:3;2451:9;2442:7;2438:23;2434:33;2431:53;;;2480:1;2477;2470:12;2431:53;2503:29;2522:9;2503:29;:::i;:::-;2493:39;;2551:38;2585:2;2574:9;2570:18;2551:38;:::i;:::-;2541:48;;2636:2;2625:9;2621:18;2608:32;2598:42;;2691:2;2680:9;2676:18;2663:32;2718:18;2710:6;2707:30;2704:50;;;2750:1;2747;2740:12;2704:50;2773:22;;2826:4;2818:13;;2814:27;-1:-1:-1;2804:55:2;;2855:1;2852;2845:12;2804:55;2878:73;2943:7;2938:2;2925:16;2920:2;2916;2912:11;2878:73;:::i;:::-;2868:83;;;2291:666;;;;;;;:::o;2962:254::-;3027:6;3035;3088:2;3076:9;3067:7;3063:23;3059:32;3056:52;;;3104:1;3101;3094:12;3056:52;3127:29;3146:9;3127:29;:::i;:::-;3117:39;;3175:35;3206:2;3195:9;3191:18;3175:35;:::i;3221:254::-;3289:6;3297;3350:2;3338:9;3329:7;3325:23;3321:32;3318:52;;;3366:1;3363;3356:12;3318:52;3389:29;3408:9;3389:29;:::i;:::-;3379:39;3465:2;3450:18;;;;3437:32;;-1:-1:-1;;;3221:254:2:o;3480:348::-;3564:6;3617:2;3605:9;3596:7;3592:23;3588:32;3585:52;;;3633:1;3630;3623:12;3585:52;3673:9;3660:23;3706:18;3698:6;3695:30;3692:50;;;3738:1;3735;3728:12;3692:50;3761:61;3814:7;3805:6;3794:9;3790:22;3761:61;:::i;3833:508::-;3925:6;3933;3986:2;3974:9;3965:7;3961:23;3957:32;3954:52;;;4002:1;3999;3992:12;3954:52;4042:9;4029:23;4075:18;4067:6;4064:30;4061:50;;;4107:1;4104;4097:12;4061:50;4130:61;4183:7;4174:6;4163:9;4159:22;4130:61;:::i;:::-;4120:71;;;4241:2;4230:9;4226:18;4213:32;4285:6;4278:5;4274:18;4267:5;4264:29;4254:57;;4307:1;4304;4297:12;4254:57;4330:5;4320:15;;;3833:508;;;;;:::o;4346:416::-;4439:6;4447;4500:2;4488:9;4479:7;4475:23;4471:32;4468:52;;;4516:1;4513;4506:12;4468:52;4556:9;4543:23;4589:18;4581:6;4578:30;4575:50;;;4621:1;4618;4611:12;4575:50;4644:61;4697:7;4688:6;4677:9;4673:22;4644:61;:::i;:::-;4634:71;4752:2;4737:18;;;;4724:32;;-1:-1:-1;;;;4346:416:2:o;4767:180::-;4823:6;4876:2;4864:9;4855:7;4851:23;4847:32;4844:52;;;4892:1;4889;4882:12;4844:52;4915:26;4931:9;4915:26;:::i;4952:245::-;5010:6;5063:2;5051:9;5042:7;5038:23;5034:32;5031:52;;;5079:1;5076;5069:12;5031:52;5118:9;5105:23;5137:30;5161:5;5137:30;:::i;5202:249::-;5271:6;5324:2;5312:9;5303:7;5299:23;5295:32;5292:52;;;5340:1;5337;5330:12;5292:52;5372:9;5366:16;5391:30;5415:5;5391:30;:::i;5456:450::-;5525:6;5578:2;5566:9;5557:7;5553:23;5549:32;5546:52;;;5594:1;5591;5584:12;5546:52;5634:9;5621:23;5667:18;5659:6;5656:30;5653:50;;;5699:1;5696;5689:12;5653:50;5722:22;;5775:4;5767:13;;5763:27;-1:-1:-1;5753:55:2;;5804:1;5801;5794:12;5753:55;5827:73;5892:7;5887:2;5874:16;5869:2;5865;5861:11;5827:73;:::i;5911:180::-;5970:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:52;;;6039:1;6036;6029:12;5991:52;-1:-1:-1;6062:23:2;;5911:180;-1:-1:-1;5911:180:2:o;6096:257::-;6137:3;6175:5;6169:12;6202:6;6197:3;6190:19;6218:63;6274:6;6267:4;6262:3;6258:14;6251:4;6244:5;6240:16;6218:63;:::i;:::-;6335:2;6314:15;-1:-1:-1;;6310:29:2;6301:39;;;;6342:4;6297:50;;6096:257;-1:-1:-1;;6096:257:2:o;6358:973::-;6443:12;;6408:3;;6498:1;6518:18;;;;6571;;;;6598:61;;6652:4;6644:6;6640:17;6630:27;;6598:61;6678:2;6726;6718:6;6715:14;6695:18;6692:38;6689:161;;;6772:10;6767:3;6763:20;6760:1;6753:31;6807:4;6804:1;6797:15;6835:4;6832:1;6825:15;6689:161;6866:18;6893:104;;;;7011:1;7006:319;;;;6859:466;;6893:104;-1:-1:-1;;6926:24:2;;6914:37;;6971:16;;;;-1:-1:-1;6893:104:2;;7006:319;27643:1;27636:14;;;27680:4;27667:18;;7100:1;7114:165;7128:6;7125:1;7122:13;7114:165;;;7206:14;;7193:11;;;7186:35;7249:16;;;;7143:10;;7114:165;;;7118:3;;7308:6;7303:3;7299:16;7292:23;;6859:466;;;;;;;6358:973;;;;:::o;7336:274::-;7465:3;7503:6;7497:13;7519:53;7565:6;7560:3;7553:4;7545:6;7541:17;7519:53;:::i;:::-;7588:16;;;;;7336:274;-1:-1:-1;;7336:274:2:o;7615:197::-;7743:3;7768:38;7802:3;7794:6;7768:38;:::i;7817:376::-;7993:3;8021:38;8055:3;8047:6;8021:38;:::i;:::-;8088:6;8082:13;8104:52;8149:6;8145:2;8138:4;8130:6;8126:17;8104:52;:::i;:::-;8172:15;;7817:376;-1:-1:-1;;;;7817:376:2:o;8406:488::-;-1:-1:-1;;;;;8675:15:2;;;8657:34;;8727:15;;8722:2;8707:18;;8700:43;8774:2;8759:18;;8752:34;;;8822:3;8817:2;8802:18;;8795:31;;;8600:4;;8843:45;;8868:19;;8860:6;8843:45;:::i;:::-;8835:53;8406:488;-1:-1:-1;;;;;;8406:488:2:o;8899:658::-;9070:2;9122:21;;;9192:13;;9095:18;;;9214:22;;;9041:4;;9070:2;9293:15;;;;9267:2;9252:18;;;9041:4;9336:195;9350:6;9347:1;9344:13;9336:195;;;9415:13;;-1:-1:-1;;;;;9411:39:2;9399:52;;9506:15;;;;9471:12;;;;9447:1;9365:9;9336:195;;;-1:-1:-1;9548:3:2;;8899:658;-1:-1:-1;;;;;;8899:658:2:o;9562:632::-;9733:2;9785:21;;;9855:13;;9758:18;;;9877:22;;;9704:4;;9733:2;9956:15;;;;9930:2;9915:18;;;9704:4;9999:169;10013:6;10010:1;10007:13;9999:169;;;10074:13;;10062:26;;10143:15;;;;10108:12;;;;10035:1;10028:9;9999:169;;10391:219;10540:2;10529:9;10522:21;10503:4;10560:44;10600:2;10589:9;10585:18;10577:6;10560:44;:::i;11708:414::-;11910:2;11892:21;;;11949:2;11929:18;;;11922:30;11988:34;11983:2;11968:18;;11961:62;-1:-1:-1;;;12054:2:2;12039:18;;12032:48;12112:3;12097:19;;11708:414::o;21718:356::-;21920:2;21902:21;;;21939:18;;;21932:30;21998:34;21993:2;21978:18;;21971:62;22065:2;22050:18;;21718:356::o;24611:413::-;24813:2;24795:21;;;24852:2;24832:18;;;24825:30;24891:34;24886:2;24871:18;;24864:62;-1:-1:-1;;;24957:2:2;24942:18;;24935:47;25014:3;24999:19;;24611:413::o;27290:275::-;27361:2;27355:9;27426:2;27407:13;;-1:-1:-1;;27403:27:2;27391:40;;27461:18;27446:34;;27482:22;;;27443:62;27440:88;;;27508:18;;:::i;:::-;27544:2;27537:22;27290:275;;-1:-1:-1;27290:275:2:o;27696:128::-;27736:3;27767:1;27763:6;27760:1;27757:13;27754:39;;;27773:18;;:::i;:::-;-1:-1:-1;27809:9:2;;27696:128::o;27829:204::-;27867:3;27903:4;27900:1;27896:12;27935:4;27932:1;27928:12;27970:3;27964:4;27960:14;27955:3;27952:23;27949:49;;;27978:18;;:::i;:::-;28014:13;;27829:204;-1:-1:-1;;;27829:204:2:o;28038:120::-;28078:1;28104;28094:35;;28109:18;;:::i;:::-;-1:-1:-1;28143:9:2;;28038:120::o;28163:168::-;28203:7;28269:1;28265;28261:6;28257:14;28254:1;28251:21;28246:1;28239:9;28232:17;28228:45;28225:71;;;28276:18;;:::i;:::-;-1:-1:-1;28316:9:2;;28163:168::o;28336:125::-;28376:4;28404:1;28401;28398:8;28395:34;;;28409:18;;:::i;:::-;-1:-1:-1;28446:9:2;;28336:125::o;28466:258::-;28538:1;28548:113;28562:6;28559:1;28556:13;28548:113;;;28638:11;;;28632:18;28619:11;;;28612:39;28584:2;28577:10;28548:113;;;28679:6;28676:1;28673:13;28670:48;;;-1:-1:-1;;28714:1:2;28696:16;;28689:27;28466:258::o;28729:136::-;28768:3;28796:5;28786:39;;28805:18;;:::i;:::-;-1:-1:-1;;;28841:18:2;;28729:136::o;28870:380::-;28949:1;28945:12;;;;28992;;;29013:61;;29067:4;29059:6;29055:17;29045:27;;29013:61;29120:2;29112:6;29109:14;29089:18;29086:38;29083:161;;;29166:10;29161:3;29157:20;29154:1;29147:31;29201:4;29198:1;29191:15;29229:4;29226:1;29219:15;29255:135;29294:3;-1:-1:-1;;29315:17:2;;29312:43;;;29335:18;;:::i;:::-;-1:-1:-1;29382:1:2;29371:13;;29255:135::o;29395:112::-;29427:1;29453;29443:35;;29458:18;;:::i;:::-;-1:-1:-1;29492:9:2;;29395:112::o;29512:127::-;29573:10;29568:3;29564:20;29561:1;29554:31;29604:4;29601:1;29594:15;29628:4;29625:1;29618:15;29644:127;29705:10;29700:3;29696:20;29693:1;29686:31;29736:4;29733:1;29726:15;29760:4;29757:1;29750:15;29776:127;29837:10;29832:3;29828:20;29825:1;29818:31;29868:4;29865:1;29858:15;29892:4;29889:1;29882:15;29908:127;29969:10;29964:3;29960:20;29957:1;29950:31;30000:4;29997:1;29990:15;30024:4;30021:1;30014:15;30040:127;30101:10;30096:3;30092:20;30089:1;30082:31;30132:4;30129:1;30122:15;30156:4;30153:1;30146:15;30172:131;-1:-1:-1;;;;;;30246:32:2;;30236:43;;30226:71;;30293:1;30290;30283:12

Swarm Source

ipfs://00806915d3980a945f2544d25a5e00951fc92a3da08b14917c9193f3cf6d3fcf
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.