ERC-20
Overview
Max Total Supply
1,000,000 THURSDAY
Holders
30
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 THURSDAYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ThursdayCoin
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-20 */ // Telegram : https://t.me/thursdaycoin //SPDX-License-Identifier:UNLICENSE pragma solidity 0.8.4; /** * @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); } pragma solidity 0.8.4; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } pragma solidity 0.8.4; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } pragma solidity 0.8.4; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } pragma solidity 0.8.4; interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); } pragma solidity 0.8.4; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } pragma solidity 0.8.4; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } pragma solidity 0.8.4; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } pragma solidity 0.8.4; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } pragma solidity 0.8.4; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } pragma solidity 0.8.4; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) internal _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } 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; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } pragma solidity 0.8.4; contract ThursdayCoin is ERC20, AccessControl { using SafeMath for uint256; mapping(address => bool) public Limtcheck; IUniswapV2Router02 public uniswapV2Router; bytes32 private constant PAIR_HASH = keccak256("PAIR_CONTRACT_NAME_HASH"); bytes32 private constant DEFAULT_OWNER = keccak256("OWNABLE_NAME_HASH"); bytes32 private constant EXCLUDED_HASH = keccak256("EXCLUDED_NAME_HASH"); address public ownedBy; uint constant DENOMINATOR = 10000; uint public sellerFee = 500; uint public buyerFee = 500; uint public txFee = 0; uint public maxWallet=30000e18; bool public inSwapAndLiquify = false; address public uniswapV2Pair; address private marketting_address=0x31dBC1a459254fDAa2f80f9Be91E0c1b523eB06e; event SwapTokensForETH( uint256 amountIn, address[] path ); constructor() ERC20("Thursday Coin", "THURSDAY") { _mint(_msgSender(), 1000000 * 10 ** decimals()); _setRoleAdmin(DEFAULT_ADMIN_ROLE,DEFAULT_OWNER); _setupRole(DEFAULT_OWNER,_msgSender()); _setupRole(EXCLUDED_HASH,_msgSender()); _setupRole(EXCLUDED_HASH,address(this)); ownedBy = _msgSender(); _createPair(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); Limtcheck[marketting_address]=true; Limtcheck[address(this)]=true; Limtcheck[_msgSender()]=true; } receive() external payable { } modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } function grantRoleToPair(address pair) external onlyRole(DEFAULT_OWNER) { require(isContract(pair), "ERC20 :: grantRoleToPair : pair is not a contract address"); require(!hasRole(PAIR_HASH, pair), "ERC20 :: grantRoleToPair : already has pair role"); _setupRole(PAIR_HASH,pair); } function excludeFrom(address account) external onlyRole(DEFAULT_OWNER) { require(!hasRole(EXCLUDED_HASH, account), "ERC20 :: excludeFrom : already has pair role"); _setupRole(EXCLUDED_HASH,account); } function UpdateLimitcheck(address _addr,bool _status) external onlyRole(DEFAULT_OWNER) { Limtcheck[_addr]=_status; } function revokePairRole(address pair) external onlyRole(DEFAULT_OWNER) { require(hasRole(PAIR_HASH, pair), "ERC20 :: revokePairRole : has no pair role"); _revokeRole(PAIR_HASH,pair); } /** * @dev include to tax deduction */ function includeTo(address account) external onlyRole(DEFAULT_OWNER) { require(hasRole(EXCLUDED_HASH, account), "ERC20 :: includeTo : has no pair role"); _revokeRole(EXCLUDED_HASH,account); } /** * @dev transfers ownership - grant owner role for newOwner */ function transferOwnership(address newOwner) external onlyRole(DEFAULT_OWNER) { require(newOwner != address(0), "ERC20 :: transferOwnership : newOwner != address(0)"); require(!hasRole(DEFAULT_OWNER, newOwner), "ERC20 :: transferOwnership : newOwner has owner role"); _revokeRole(DEFAULT_OWNER,_msgSender()); _setupRole(DEFAULT_OWNER,newOwner); ownedBy = newOwner; } function renounceOwnership() external onlyRole(DEFAULT_OWNER) { require(!hasRole(DEFAULT_OWNER, address(0)), "ERC20 :: transferOwnership : newOwner has owner role"); _revokeRole(DEFAULT_OWNER,_msgSender()); _setupRole(DEFAULT_OWNER,address(0)); ownedBy = address(0); } /** * @dev change address of the router. */ function changeRouter(address _router) external onlyRole(DEFAULT_OWNER) { uniswapV2Router = IUniswapV2Router02(_router); } /** * @dev owner collects the tax amount by manual */ function Manualswap() external onlyRole(DEFAULT_OWNER) { uint amount = balanceOf(address(this)); require(amount > 0); _swapCollectedTokensToETH(amount); } function UpdateMaxWallet(uint256 _amount) external onlyRole(DEFAULT_OWNER) { maxWallet = _amount; } /** * @dev overrids transfer function */ function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(!Limtcheck[to]) { require(maxWallet >= balanceOf(to).add(amount), "ERC20: maxWallet >= amount"); } _beforeTokenTransfer(from, to, amount); uint256[3] memory _amounts; _amounts[0] = _balances[from]; bool[2] memory status; status[0] = (!hasRole(DEFAULT_OWNER, from)) && (!hasRole(DEFAULT_OWNER, to)) && (!hasRole(DEFAULT_OWNER, _msgSender())); status[1] = (hasRole(EXCLUDED_HASH, from)) || (hasRole(EXCLUDED_HASH, to)); require(_amounts[0] >= amount, "ERC20: transfer amount exceeds balance"); if(hasRole(PAIR_HASH, to) && !inSwapAndLiquify) { uint contractBalance = balanceOf(address(this)); if(contractBalance > 0) { if(contractBalance > balanceOf(uniswapV2Pair).mul(2).div(100)) { contractBalance = balanceOf(uniswapV2Pair).mul(2).div(100); } _swapCollectedTokensToETH(contractBalance); } } if(status[0] && !status[1] && !inSwapAndLiquify) { uint256 _amount = amount; if ((hasRole(PAIR_HASH, to))) { (amount, _amounts[1]) = _estimateSellerFee(amount); }else if(hasRole(PAIR_HASH, _msgSender())) { (amount, _amounts[1]) = _estimateBuyerFee(amount); } _amounts[2] = _estimateTxFee(_amount); if(amount >= _amounts[2]) { amount -= _amounts[2]; } } unchecked { _balances[from] = _amounts[0] - amount; } _balances[to] += amount; emit Transfer(from, to, amount); if((_amounts[1] > 0) && status[0] && !status[1] && !inSwapAndLiquify) { _payFee(from, _amounts[1]); } if((_amounts[2] > 0) && status[0] && !status[1] && !inSwapAndLiquify) { _burn(from, _amounts[2]); } _afterTokenTransfer(from, to, amount); } function _burn(address account, uint256 amount) internal override { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _balances[address(0)] += amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } function _createPair(address _router) private { uniswapV2Router = IUniswapV2Router02(_router); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); _setupRole(PAIR_HASH,uniswapV2Pair); Limtcheck[uniswapV2Pair]=true; Limtcheck[address(uniswapV2Router)]=true; } function _payFee(address _from, uint256 _amount) private { if(_amount > 0) { super._transfer(_from, address(this), _amount); } } function _swapCollectedTokensToETH(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, marketting_address, block.timestamp ); emit SwapTokensForETH( tokenAmount, path ); } function isContract(address account) private view returns (bool) { return account.code.length > 0; } function _estimateSellerFee(uint _value) private view returns (uint _transferAmount, uint _burnAmount) { _transferAmount = _value * (DENOMINATOR - sellerFee) / DENOMINATOR; _burnAmount = _value * sellerFee / DENOMINATOR; } function _estimateBuyerFee(uint _value) private view returns (uint _transferAmount, uint _taxAmount) { _transferAmount = _value * (DENOMINATOR - buyerFee) / DENOMINATOR; _taxAmount = _value * buyerFee / DENOMINATOR; } function _estimateTxFee(uint _value) private view returns (uint _txFee) { _txFee = _value * txFee / DENOMINATOR; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Limtcheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"UpdateLimitcheck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"UpdateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"changeRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"grantRoleToPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inSwapAndLiquify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownedBy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"revokePairRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellerFee","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526101f46009819055600a556000600b5569065a4da25d3016c00000600c55600d805460ff19169055600e80546001600160a01b0319167331dbc1a459254fdaa2f80f9be91e0c1b523eb06e1790553480156200005f57600080fd5b50604080518082018252600d81526c2a343ab939b230bc9021b7b4b760991b602080830191825283518085019094526008845267544855525344415960c01b908401528151919291620000b5916003916200065d565b508051620000cb9060049060208401906200065d565b50505062000105620000e26200021660201b60201c565b620000f06012600a62000797565b620000ff90620f424062000856565b6200021a565b62000121600060008051602062002d2e83398151915262000303565b6200013c60008051602062002d2e833981519152336200034e565b6200015760008051602062002d0e833981519152336200034e565b6200017260008051602062002d0e833981519152306200034e565b600880546001600160a01b03191633179055620001a3737a250d5630b4cf539739df2c5dacb4c659f2488d6200035a565b600e546001600160a01b031660009081526006602081905260408083208054600160ff1991821681179092553085529184208054909216811790915591620001e83390565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620008cb565b3390565b6001600160a01b038216620002755760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000289919062000733565b90915550506001600160a01b03821660009081526020819052604081208054839290620002b890849062000733565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b600082815260056020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b620002ff8282620005a6565b600780546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015620003af57600080fd5b505afa158015620003c4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ea919062000703565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200044857600080fd5b505afa1580156200045d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000483919062000703565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620004cc57600080fd5b505af1158015620004e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000507919062000703565b600d8054610100600160a81b0319166101006001600160a01b039384168102919091179182905562000560927fd2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5d9291909104166200034e565b50600d5461010090046001600160a01b039081166000908152600660205260408082208054600160ff199182168117909255600754909416835291208054909216179055565b620005b2828262000630565b620002ff5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620005ec3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b8280546200066b9062000878565b90600052602060002090601f0160209004810192826200068f5760008555620006da565b82601f10620006aa57805160ff1916838001178555620006da565b82800160010185558215620006da579182015b82811115620006da578251825591602001919060010190620006bd565b50620006e8929150620006ec565b5090565b5b80821115620006e85760008155600101620006ed565b60006020828403121562000715578081fd5b81516001600160a01b03811681146200072c578182fd5b9392505050565b60008219821115620007495762000749620008b5565b500190565b600181815b808511156200078f578160001904821115620007735762000773620008b5565b808516156200078157918102915b93841c939080029062000753565b509250929050565b60006200072c60ff841683600082620007b35750600162000657565b81620007c25750600062000657565b8160018114620007db5760028114620007e65762000806565b600191505062000657565b60ff841115620007fa57620007fa620008b5565b50506001821b62000657565b5060208310610133831016604e8410600b84101617156200082b575081810a62000657565b6200083783836200074e565b80600019048211156200084e576200084e620008b5565b029392505050565b6000816000190483118215151615620008735762000873620008b5565b500290565b600181811c908216806200088d57607f821691505b60208210811415620008af57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61243380620008db6000396000f3fe6080604052600436106102085760003560e01c8063715018a611610118578063cf820461116100a0578063dd4ef0511161006f578063dd4ef051146105f5578063dd62ed3e14610615578063e1f3d55a14610635578063f2fde38b1461064b578063f8b45b051461066b57600080fd5b8063cf8204611461058a578063cfc1e570146105a0578063d096cd08146105b5578063da830336146105d557600080fd5b8063a217fddf116100e7578063a217fddf146104f5578063a457c2d71461050a578063a9059cbb1461052a578063addcf55f1461054a578063b6dd04921461056a57600080fd5b8063715018a61461047b57806372b7685d1461049057806391d14854146104c057806395d89b41146104e057600080fd5b8063313ce5671161019b578063395093511161016a57806339509351146103ca57806347061add146103ea57806349bd5a5e1461040a5780635de6c42f1461042f57806370a082311461044557600080fd5b8063313ce5671461034c578063340ac20f146103685780633515b1af1461038a57806336568abe146103aa57600080fd5b806318160ddd116101d757806318160ddd146102c3578063220f6696146102e257806323b872dd146102fc578063248a9ca31461031c57600080fd5b806301ffc9a71461021457806306fdde0314610249578063095ea7b31461026b5780631694505e1461028b57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061023461022f366004611ff4565b610681565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106b8565b60405161024091906120d4565b34801561027757600080fd5b50610234610286366004611f8d565b61074a565b34801561029757600080fd5b506007546102ab906001600160a01b031681565b6040516001600160a01b039091168152602001610240565b3480156102cf57600080fd5b506002545b604051908152602001610240565b3480156102ee57600080fd5b50600d546102349060ff1681565b34801561030857600080fd5b50610234610317366004611f1c565b610762565b34801561032857600080fd5b506102d4610337366004611fb8565b60009081526005602052604090206001015490565b34801561035857600080fd5b5060405160128152602001610240565b34801561037457600080fd5b50610388610383366004611eac565b610786565b005b34801561039657600080fd5b506103886103a5366004611eac565b6107c1565b3480156103b657600080fd5b506103886103c5366004611fd0565b610871565b3480156103d657600080fd5b506102346103e5366004611f8d565b6108eb565b3480156103f657600080fd5b50610388610405366004611eac565b61090d565b34801561041657600080fd5b50600d546102ab9061010090046001600160a01b031681565b34801561043b57600080fd5b506102d4600a5481565b34801561045157600080fd5b506102d4610460366004611eac565b6001600160a01b031660009081526020819052604090205490565b34801561048757600080fd5b50610388610a38565b34801561049c57600080fd5b506102346104ab366004611eac565b60066020526000908152604090205460ff1681565b3480156104cc57600080fd5b506102346104db366004611fd0565b610aca565b3480156104ec57600080fd5b5061025e610af5565b34801561050157600080fd5b506102d4600081565b34801561051657600080fd5b50610234610525366004611f8d565b610b04565b34801561053657600080fd5b50610234610545366004611f8d565b610b7f565b34801561055657600080fd5b506008546102ab906001600160a01b031681565b34801561057657600080fd5b50610388610585366004611eac565b610b8d565b34801561059657600080fd5b506102d4600b5481565b3480156105ac57600080fd5b50610388610c2f565b3480156105c157600080fd5b506103886105d0366004611eac565b610c6a565b3480156105e157600080fd5b506103886105f0366004611f5c565b610d14565b34801561060157600080fd5b50610388610610366004611fb8565b610d58565b34801561062157600080fd5b506102d4610630366004611ee4565b610d76565b34801561064157600080fd5b506102d460095481565b34801561065757600080fd5b50610388610666366004611eac565b610da1565b34801561067757600080fd5b506102d4600c5481565b60006001600160e01b0319821663830d5e4960e01b14806106b257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546106c790612337565b80601f01602080910402602001604051908101604052809291908181526020018280546106f390612337565b80156107405780601f1061071557610100808354040283529160200191610740565b820191906000526020600020905b81548152906001019060200180831161072357829003601f168201915b5050505050905090565b600033610758818585610eb3565b5060019392505050565b600033610770858285610fd7565b61077b858585611051565b506001949350505050565b6000805160206123be83398151915261079e816114b1565b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206123be8339815191526107d9816114b1565b6107f16000805160206123de83398151915283610aca565b6108555760405162461bcd60e51b815260206004820152602a60248201527f4552433230203a3a207265766f6b6550616972526f6c65203a20686173206e6f604482015269207061697220726f6c6560b01b60648201526084015b60405180910390fd5b61086d6000805160206123de833981519152836114be565b5050565b6001600160a01b03811633146108e15760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161084c565b61086d82826114be565b6000336107588185856108fe8383610d76565b6109089190612286565b610eb3565b6000805160206123be833981519152610925816114b1565b6001600160a01b0382163b6109a25760405162461bcd60e51b815260206004820152603960248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20706169722060448201527f6973206e6f74206120636f6e7472616374206164647265737300000000000000606482015260840161084c565b6109ba6000805160206123de83398151915283610aca565b15610a205760405162461bcd60e51b815260206004820152603060248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20616c72656160448201526f647920686173207061697220726f6c6560801b606482015260840161084c565b61086d6000805160206123de83398151915283611525565b6000805160206123be833981519152610a50816114b1565b610a696000805160206123be8339815191526000610aca565b15610a865760405162461bcd60e51b815260040161084c90612190565b610a9e6000805160206123be833981519152336114be565b610ab76000805160206123be8339815191526000611525565b50600880546001600160a01b0319169055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546106c790612337565b60003381610b128286610d76565b905083811015610b725760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161084c565b61077b8286868403610eb3565b600033610758818585611051565b6000805160206123be833981519152610ba5816114b1565b610bbd60008051602061239e83398151915283610aca565b610c175760405162461bcd60e51b815260206004820152602560248201527f4552433230203a3a20696e636c756465546f203a20686173206e6f207061697260448201526420726f6c6560d81b606482015260840161084c565b61086d60008051602061239e833981519152836114be565b6000805160206123be833981519152610c47816114b1565b3060009081526020819052604090205480610c6157600080fd5b61086d8161152f565b6000805160206123be833981519152610c82816114b1565b610c9a60008051602061239e83398151915283610aca565b15610cfc5760405162461bcd60e51b815260206004820152602c60248201527f4552433230203a3a206578636c75646546726f6d203a20616c7265616479206860448201526b6173207061697220726f6c6560a01b606482015260840161084c565b61086d60008051602061239e83398151915283611525565b6000805160206123be833981519152610d2c816114b1565b506001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000805160206123be833981519152610d70816114b1565b50600c55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000805160206123be833981519152610db9816114b1565b6001600160a01b038216610e2b5760405162461bcd60e51b815260206004820152603360248201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776044820152724f776e657220213d206164647265737328302960681b606482015260840161084c565b610e436000805160206123be83398151915283610aca565b15610e605760405162461bcd60e51b815260040161084c90612190565b610e786000805160206123be833981519152336114be565b610e906000805160206123be83398151915283611525565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610f155760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084c565b6001600160a01b038216610f765760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610fe38484610d76565b9050600019811461104b578181101561103e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161084c565b61104b8484848403610eb3565b50505050565b6001600160a01b0383166110775760405162461bcd60e51b815260040161084c906121e4565b6001600160a01b03821661109d5760405162461bcd60e51b815260040161084c90612107565b6001600160a01b03821660009081526006602052604090205460ff16611137576110e6816110e0846001600160a01b031660009081526020819052604090205490565b90611708565b600c5410156111375760405162461bcd60e51b815260206004820152601a60248201527f45524332303a206d617857616c6c6574203e3d20616d6f756e74000000000000604482015260640161084c565b61113f611e70565b6001600160a01b0384166000908152602081905260409020548152611162611e8e565b61117a6000805160206123be83398151915286610aca565b15801561119c575061119a6000805160206123be83398151915285610aca565b155b80156111bd57506111bb6000805160206123be83398151915233610aca565b155b151581526111d960008051602061239e83398151915286610aca565b806111f757506111f760008051602061239e83398151915285610aca565b15156020820152815183111561121f5760405162461bcd60e51b815260040161084c9061214a565b6112376000805160206123de83398151915285610aca565b80156112465750600d5460ff16155b156112e4573060009081526020819052604090205480156112e257600d5461010090046001600160a01b031660009081526020819052604090205461129c90606490611296906002905b9061176e565b906117ed565b8111156112d957600d5461010090046001600160a01b03166000908152602081905260409020546112d69060649061129690600290611290565b90505b6112e28161152f565b505b805180156112f457506020810151155b80156113035750600d5460ff16155b1561139357826113216000805160206123de83398151915286610aca565b1561133b5761132f8461182f565b60208501529350611369565b6113536000805160206123de83398151915233610aca565b15611369576113618461187d565b602085015293505b611372816118ba565b60408401819052841061139157604083015161138e90856122dd565b93505b505b81516001600160a01b0386811660009081526020819052604080822093879003909355908616815290812080548592906113ce908490612286565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161141a91815260200190565b60405180910390a3602082015115801590611433575080515b801561144157506020810151155b80156114505750600d5460ff16155b15611466576114668583600160200201516118d7565b604082015115801590611477575080515b801561148557506020810151155b80156114945750600d5460ff16155b156114aa576114aa8583600260200201516118e8565b5050505050565b6114bb8133611a58565b50565b6114c88282610aca565b1561086d5760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b61086d8282611abc565b600d805460ff19166001179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061157f57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156115d357600080fd5b505afa1580156115e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160b9190611ec8565b8160018151811061162c57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526007546116529130911684610eb3565b600754600e5460405163791ac94760e01b81526001600160a01b039283169263791ac9479261168f9287926000928892911690429060040161224a565b600060405180830381600087803b1580156116a957600080fd5b505af11580156116bd573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a782826040516116f2929190612229565b60405180910390a15050600d805460ff19169055565b6000806117158385612286565b9050838110156117675760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161084c565b9392505050565b60008261177d575060006106b2565b600061178983856122be565b905082611796858361229e565b146117675760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161084c565b600061176783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b42565b60008061271060095461271061184591906122dd565b61184f90856122be565b611859919061229e565b91506127106009548461186c91906122be565b611876919061229e565b9050915091565b600080612710600a5461271061189391906122dd565b61189d90856122be565b6118a7919061229e565b9150612710600a548461186c91906122be565b6000612710600b54836118cd91906122be565b6106b2919061229e565b801561086d5761086d823083611b79565b6001600160a01b0382166119485760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161084c565b6001600160a01b038216600090815260208190526040902054818110156119bc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161084c565b6001600160a01b038316600090815260208190526040812083830390558080527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb58054849290611a0d908490612286565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b611a628282610aca565b61086d57611a7a816001600160a01b03166014611c8e565b611a85836020611c8e565b604051602001611a9692919061205f565b60408051601f198184030181529082905262461bcd60e51b825261084c916004016120d4565b611ac68282610aca565b61086d5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611afe3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008183611b635760405162461bcd60e51b815260040161084c91906120d4565b506000611b70848661229e565b95945050505050565b6001600160a01b038316611b9f5760405162461bcd60e51b815260040161084c906121e4565b6001600160a01b038216611bc55760405162461bcd60e51b815260040161084c90612107565b6001600160a01b03831660009081526020819052604090205481811015611bfe5760405162461bcd60e51b815260040161084c9061214a565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c35908490612286565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c8191815260200190565b60405180910390a361104b565b60606000611c9d8360026122be565b611ca8906002612286565b67ffffffffffffffff811115611cce57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611cf8576020820181803683370190505b509050600360fc1b81600081518110611d2157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d5e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611d828460026122be565b611d8d906001612286565b90505b6001811115611e21576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611dcf57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611df357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611e1a81612320565b9050611d90565b5083156117675760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161084c565b60405180606001604052806003906020820280368337509192915050565b60405180604001604052806002906020820280368337509192915050565b600060208284031215611ebd578081fd5b813561176781612388565b600060208284031215611ed9578081fd5b815161176781612388565b60008060408385031215611ef6578081fd5b8235611f0181612388565b91506020830135611f1181612388565b809150509250929050565b600080600060608486031215611f30578081fd5b8335611f3b81612388565b92506020840135611f4b81612388565b929592945050506040919091013590565b60008060408385031215611f6e578182fd5b8235611f7981612388565b915060208301358015158114611f11578182fd5b60008060408385031215611f9f578182fd5b8235611faa81612388565b946020939093013593505050565b600060208284031215611fc9578081fd5b5035919050565b60008060408385031215611fe2578182fd5b823591506020830135611f1181612388565b600060208284031215612005578081fd5b81356001600160e01b031981168114611767578182fd5b6000815180845260208085019450808401835b838110156120545781516001600160a01b03168752958201959082019060010161202f565b509495945050505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516120978160178501602088016122f4565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516120c88160288401602088016122f4565b01602801949350505050565b60208152600082518060208401526120f38160408501602087016122f4565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526034908201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776040820152734f776e657220686173206f776e657220726f6c6560601b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b828152604060208201526000612242604083018461201c565b949350505050565b85815284602082015260a06040820152600061226960a083018661201c565b6001600160a01b0394909416606083015250608001529392505050565b6000821982111561229957612299612372565b500190565b6000826122b957634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156122d8576122d8612372565b500290565b6000828210156122ef576122ef612372565b500390565b60005b8381101561230f5781810151838201526020016122f7565b8381111561104b5750506000910152565b60008161232f5761232f612372565b506000190190565b600181811c9082168061234b57607f821691505b6020821081141561236c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146114bb57600080fdfe270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3d2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5da264697066735822122008bd250ba2ea0ee0d1d6333a4dd57889993efaf004d5ddf6acd6051ba62815ce64736f6c63430008040033270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3
Deployed Bytecode
0x6080604052600436106102085760003560e01c8063715018a611610118578063cf820461116100a0578063dd4ef0511161006f578063dd4ef051146105f5578063dd62ed3e14610615578063e1f3d55a14610635578063f2fde38b1461064b578063f8b45b051461066b57600080fd5b8063cf8204611461058a578063cfc1e570146105a0578063d096cd08146105b5578063da830336146105d557600080fd5b8063a217fddf116100e7578063a217fddf146104f5578063a457c2d71461050a578063a9059cbb1461052a578063addcf55f1461054a578063b6dd04921461056a57600080fd5b8063715018a61461047b57806372b7685d1461049057806391d14854146104c057806395d89b41146104e057600080fd5b8063313ce5671161019b578063395093511161016a57806339509351146103ca57806347061add146103ea57806349bd5a5e1461040a5780635de6c42f1461042f57806370a082311461044557600080fd5b8063313ce5671461034c578063340ac20f146103685780633515b1af1461038a57806336568abe146103aa57600080fd5b806318160ddd116101d757806318160ddd146102c3578063220f6696146102e257806323b872dd146102fc578063248a9ca31461031c57600080fd5b806301ffc9a71461021457806306fdde0314610249578063095ea7b31461026b5780631694505e1461028b57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061023461022f366004611ff4565b610681565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106b8565b60405161024091906120d4565b34801561027757600080fd5b50610234610286366004611f8d565b61074a565b34801561029757600080fd5b506007546102ab906001600160a01b031681565b6040516001600160a01b039091168152602001610240565b3480156102cf57600080fd5b506002545b604051908152602001610240565b3480156102ee57600080fd5b50600d546102349060ff1681565b34801561030857600080fd5b50610234610317366004611f1c565b610762565b34801561032857600080fd5b506102d4610337366004611fb8565b60009081526005602052604090206001015490565b34801561035857600080fd5b5060405160128152602001610240565b34801561037457600080fd5b50610388610383366004611eac565b610786565b005b34801561039657600080fd5b506103886103a5366004611eac565b6107c1565b3480156103b657600080fd5b506103886103c5366004611fd0565b610871565b3480156103d657600080fd5b506102346103e5366004611f8d565b6108eb565b3480156103f657600080fd5b50610388610405366004611eac565b61090d565b34801561041657600080fd5b50600d546102ab9061010090046001600160a01b031681565b34801561043b57600080fd5b506102d4600a5481565b34801561045157600080fd5b506102d4610460366004611eac565b6001600160a01b031660009081526020819052604090205490565b34801561048757600080fd5b50610388610a38565b34801561049c57600080fd5b506102346104ab366004611eac565b60066020526000908152604090205460ff1681565b3480156104cc57600080fd5b506102346104db366004611fd0565b610aca565b3480156104ec57600080fd5b5061025e610af5565b34801561050157600080fd5b506102d4600081565b34801561051657600080fd5b50610234610525366004611f8d565b610b04565b34801561053657600080fd5b50610234610545366004611f8d565b610b7f565b34801561055657600080fd5b506008546102ab906001600160a01b031681565b34801561057657600080fd5b50610388610585366004611eac565b610b8d565b34801561059657600080fd5b506102d4600b5481565b3480156105ac57600080fd5b50610388610c2f565b3480156105c157600080fd5b506103886105d0366004611eac565b610c6a565b3480156105e157600080fd5b506103886105f0366004611f5c565b610d14565b34801561060157600080fd5b50610388610610366004611fb8565b610d58565b34801561062157600080fd5b506102d4610630366004611ee4565b610d76565b34801561064157600080fd5b506102d460095481565b34801561065757600080fd5b50610388610666366004611eac565b610da1565b34801561067757600080fd5b506102d4600c5481565b60006001600160e01b0319821663830d5e4960e01b14806106b257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546106c790612337565b80601f01602080910402602001604051908101604052809291908181526020018280546106f390612337565b80156107405780601f1061071557610100808354040283529160200191610740565b820191906000526020600020905b81548152906001019060200180831161072357829003601f168201915b5050505050905090565b600033610758818585610eb3565b5060019392505050565b600033610770858285610fd7565b61077b858585611051565b506001949350505050565b6000805160206123be83398151915261079e816114b1565b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206123be8339815191526107d9816114b1565b6107f16000805160206123de83398151915283610aca565b6108555760405162461bcd60e51b815260206004820152602a60248201527f4552433230203a3a207265766f6b6550616972526f6c65203a20686173206e6f604482015269207061697220726f6c6560b01b60648201526084015b60405180910390fd5b61086d6000805160206123de833981519152836114be565b5050565b6001600160a01b03811633146108e15760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161084c565b61086d82826114be565b6000336107588185856108fe8383610d76565b6109089190612286565b610eb3565b6000805160206123be833981519152610925816114b1565b6001600160a01b0382163b6109a25760405162461bcd60e51b815260206004820152603960248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20706169722060448201527f6973206e6f74206120636f6e7472616374206164647265737300000000000000606482015260840161084c565b6109ba6000805160206123de83398151915283610aca565b15610a205760405162461bcd60e51b815260206004820152603060248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20616c72656160448201526f647920686173207061697220726f6c6560801b606482015260840161084c565b61086d6000805160206123de83398151915283611525565b6000805160206123be833981519152610a50816114b1565b610a696000805160206123be8339815191526000610aca565b15610a865760405162461bcd60e51b815260040161084c90612190565b610a9e6000805160206123be833981519152336114be565b610ab76000805160206123be8339815191526000611525565b50600880546001600160a01b0319169055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600480546106c790612337565b60003381610b128286610d76565b905083811015610b725760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161084c565b61077b8286868403610eb3565b600033610758818585611051565b6000805160206123be833981519152610ba5816114b1565b610bbd60008051602061239e83398151915283610aca565b610c175760405162461bcd60e51b815260206004820152602560248201527f4552433230203a3a20696e636c756465546f203a20686173206e6f207061697260448201526420726f6c6560d81b606482015260840161084c565b61086d60008051602061239e833981519152836114be565b6000805160206123be833981519152610c47816114b1565b3060009081526020819052604090205480610c6157600080fd5b61086d8161152f565b6000805160206123be833981519152610c82816114b1565b610c9a60008051602061239e83398151915283610aca565b15610cfc5760405162461bcd60e51b815260206004820152602c60248201527f4552433230203a3a206578636c75646546726f6d203a20616c7265616479206860448201526b6173207061697220726f6c6560a01b606482015260840161084c565b61086d60008051602061239e83398151915283611525565b6000805160206123be833981519152610d2c816114b1565b506001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000805160206123be833981519152610d70816114b1565b50600c55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000805160206123be833981519152610db9816114b1565b6001600160a01b038216610e2b5760405162461bcd60e51b815260206004820152603360248201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776044820152724f776e657220213d206164647265737328302960681b606482015260840161084c565b610e436000805160206123be83398151915283610aca565b15610e605760405162461bcd60e51b815260040161084c90612190565b610e786000805160206123be833981519152336114be565b610e906000805160206123be83398151915283611525565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610f155760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161084c565b6001600160a01b038216610f765760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161084c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610fe38484610d76565b9050600019811461104b578181101561103e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161084c565b61104b8484848403610eb3565b50505050565b6001600160a01b0383166110775760405162461bcd60e51b815260040161084c906121e4565b6001600160a01b03821661109d5760405162461bcd60e51b815260040161084c90612107565b6001600160a01b03821660009081526006602052604090205460ff16611137576110e6816110e0846001600160a01b031660009081526020819052604090205490565b90611708565b600c5410156111375760405162461bcd60e51b815260206004820152601a60248201527f45524332303a206d617857616c6c6574203e3d20616d6f756e74000000000000604482015260640161084c565b61113f611e70565b6001600160a01b0384166000908152602081905260409020548152611162611e8e565b61117a6000805160206123be83398151915286610aca565b15801561119c575061119a6000805160206123be83398151915285610aca565b155b80156111bd57506111bb6000805160206123be83398151915233610aca565b155b151581526111d960008051602061239e83398151915286610aca565b806111f757506111f760008051602061239e83398151915285610aca565b15156020820152815183111561121f5760405162461bcd60e51b815260040161084c9061214a565b6112376000805160206123de83398151915285610aca565b80156112465750600d5460ff16155b156112e4573060009081526020819052604090205480156112e257600d5461010090046001600160a01b031660009081526020819052604090205461129c90606490611296906002905b9061176e565b906117ed565b8111156112d957600d5461010090046001600160a01b03166000908152602081905260409020546112d69060649061129690600290611290565b90505b6112e28161152f565b505b805180156112f457506020810151155b80156113035750600d5460ff16155b1561139357826113216000805160206123de83398151915286610aca565b1561133b5761132f8461182f565b60208501529350611369565b6113536000805160206123de83398151915233610aca565b15611369576113618461187d565b602085015293505b611372816118ba565b60408401819052841061139157604083015161138e90856122dd565b93505b505b81516001600160a01b0386811660009081526020819052604080822093879003909355908616815290812080548592906113ce908490612286565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161141a91815260200190565b60405180910390a3602082015115801590611433575080515b801561144157506020810151155b80156114505750600d5460ff16155b15611466576114668583600160200201516118d7565b604082015115801590611477575080515b801561148557506020810151155b80156114945750600d5460ff16155b156114aa576114aa8583600260200201516118e8565b5050505050565b6114bb8133611a58565b50565b6114c88282610aca565b1561086d5760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b61086d8282611abc565b600d805460ff19166001179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061157f57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156115d357600080fd5b505afa1580156115e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160b9190611ec8565b8160018151811061162c57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526007546116529130911684610eb3565b600754600e5460405163791ac94760e01b81526001600160a01b039283169263791ac9479261168f9287926000928892911690429060040161224a565b600060405180830381600087803b1580156116a957600080fd5b505af11580156116bd573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a782826040516116f2929190612229565b60405180910390a15050600d805460ff19169055565b6000806117158385612286565b9050838110156117675760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161084c565b9392505050565b60008261177d575060006106b2565b600061178983856122be565b905082611796858361229e565b146117675760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161084c565b600061176783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b42565b60008061271060095461271061184591906122dd565b61184f90856122be565b611859919061229e565b91506127106009548461186c91906122be565b611876919061229e565b9050915091565b600080612710600a5461271061189391906122dd565b61189d90856122be565b6118a7919061229e565b9150612710600a548461186c91906122be565b6000612710600b54836118cd91906122be565b6106b2919061229e565b801561086d5761086d823083611b79565b6001600160a01b0382166119485760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161084c565b6001600160a01b038216600090815260208190526040902054818110156119bc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161084c565b6001600160a01b038316600090815260208190526040812083830390558080527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb58054849290611a0d908490612286565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b611a628282610aca565b61086d57611a7a816001600160a01b03166014611c8e565b611a85836020611c8e565b604051602001611a9692919061205f565b60408051601f198184030181529082905262461bcd60e51b825261084c916004016120d4565b611ac68282610aca565b61086d5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611afe3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008183611b635760405162461bcd60e51b815260040161084c91906120d4565b506000611b70848661229e565b95945050505050565b6001600160a01b038316611b9f5760405162461bcd60e51b815260040161084c906121e4565b6001600160a01b038216611bc55760405162461bcd60e51b815260040161084c90612107565b6001600160a01b03831660009081526020819052604090205481811015611bfe5760405162461bcd60e51b815260040161084c9061214a565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c35908490612286565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c8191815260200190565b60405180910390a361104b565b60606000611c9d8360026122be565b611ca8906002612286565b67ffffffffffffffff811115611cce57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611cf8576020820181803683370190505b509050600360fc1b81600081518110611d2157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d5e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611d828460026122be565b611d8d906001612286565b90505b6001811115611e21576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611dcf57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611df357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611e1a81612320565b9050611d90565b5083156117675760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161084c565b60405180606001604052806003906020820280368337509192915050565b60405180604001604052806002906020820280368337509192915050565b600060208284031215611ebd578081fd5b813561176781612388565b600060208284031215611ed9578081fd5b815161176781612388565b60008060408385031215611ef6578081fd5b8235611f0181612388565b91506020830135611f1181612388565b809150509250929050565b600080600060608486031215611f30578081fd5b8335611f3b81612388565b92506020840135611f4b81612388565b929592945050506040919091013590565b60008060408385031215611f6e578182fd5b8235611f7981612388565b915060208301358015158114611f11578182fd5b60008060408385031215611f9f578182fd5b8235611faa81612388565b946020939093013593505050565b600060208284031215611fc9578081fd5b5035919050565b60008060408385031215611fe2578182fd5b823591506020830135611f1181612388565b600060208284031215612005578081fd5b81356001600160e01b031981168114611767578182fd5b6000815180845260208085019450808401835b838110156120545781516001600160a01b03168752958201959082019060010161202f565b509495945050505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516120978160178501602088016122f4565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516120c88160288401602088016122f4565b01602801949350505050565b60208152600082518060208401526120f38160408501602087016122f4565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526034908201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776040820152734f776e657220686173206f776e657220726f6c6560601b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b828152604060208201526000612242604083018461201c565b949350505050565b85815284602082015260a06040820152600061226960a083018661201c565b6001600160a01b0394909416606083015250608001529392505050565b6000821982111561229957612299612372565b500190565b6000826122b957634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156122d8576122d8612372565b500290565b6000828210156122ef576122ef612372565b500390565b60005b8381101561230f5781810151838201526020016122f7565b8381111561104b5750506000910152565b60008161232f5761232f612372565b506000190190565b600181811c9082168061234b57607f821691505b6020821081141561236c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146114bb57600080fdfe270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3d2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5da264697066735822122008bd250ba2ea0ee0d1d6333a4dd57889993efaf004d5ddf6acd6051ba62815ce64736f6c63430008040033
Deployed Bytecode Sourcemap
32261:9237:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10704:204;;;;;;;;;;-1:-1:-1;10704:204:0;;;;;:::i;:::-;;:::i;:::-;;;4850:14:1;;4843:22;4825:41;;4813:2;4798:18;10704:204:0;;;;;;;;19884:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22235:201::-;;;;;;;;;;-1:-1:-1;22235:201:0;;;;;:::i;:::-;;:::i;32399:41::-;;;;;;;;;;-1:-1:-1;32399:41:0;;;;-1:-1:-1;;;;;32399:41:0;;;;;;-1:-1:-1;;;;;4641:32:1;;;4623:51;;4611:2;4596:18;32399:41:0;4578:102:1;21004:108:0;;;;;;;;;;-1:-1:-1;21092:12:0;;21004:108;;;5023:25:1;;;5011:2;4996:18;21004:108:0;4978:76:1;32895:36:0;;;;;;;;;;-1:-1:-1;32895:36:0;;;;;;;;23016:295;;;;;;;;;;-1:-1:-1;23016:295:0;;;;;:::i;:::-;;:::i;12540:131::-;;;;;;;;;;-1:-1:-1;12540:131:0;;;;;:::i;:::-;12614:7;12641:12;;;:6;:12;;;;;:22;;;;12540:131;20846:93;;;;;;;;;;-1:-1:-1;20846:93:0;;20929:2;15327:36:1;;15315:2;15300:18;20846:93:0;15282:87:1;35958:136:0;;;;;;;;;;-1:-1:-1;35958:136:0;;;;;:::i;:::-;;:::i;:::-;;34575:207;;;;;;;;;;-1:-1:-1;34575:207:0;;;;;:::i;:::-;;:::i;13178:218::-;;;;;;;;;;-1:-1:-1;13178:218:0;;;;;:::i;:::-;;:::i;23720:238::-;;;;;;;;;;-1:-1:-1;23720:238:0;;;;;:::i;:::-;;:::i;33879:311::-;;;;;;;;;;-1:-1:-1;33879:311:0;;;;;:::i;:::-;;:::i;32940:28::-;;;;;;;;;;-1:-1:-1;32940:28:0;;;;;;;-1:-1:-1;;;;;32940:28:0;;;32796:26;;;;;;;;;;;;;;;;21175:127;;;;;;;;;;-1:-1:-1;21175:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;21276:18:0;21249:7;21276:18;;;;;;;;;;;;21175:127;35574:309;;;;;;;;;;;;;:::i;32349:41::-;;;;;;;;;;-1:-1:-1;32349:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;11000:147;;;;;;;;;;-1:-1:-1;11000:147:0;;;;;:::i;:::-;;:::i;20103:104::-;;;;;;;;;;;;;:::i;10105:49::-;;;;;;;;;;-1:-1:-1;10105:49:0;10150:4;10105:49;;24461:436;;;;;;;;;;-1:-1:-1;24461:436:0;;;;;:::i;:::-;;:::i;21508:193::-;;;;;;;;;;-1:-1:-1;21508:193:0;;;;;:::i;:::-;;:::i;32692:22::-;;;;;;;;;;-1:-1:-1;32692:22:0;;;;-1:-1:-1;;;;;32692:22:0;;;34846:212;;;;;;;;;;-1:-1:-1;34846:212:0;;;;;:::i;:::-;;:::i;32829:21::-;;;;;;;;;;;;;;;;36173:186;;;;;;;;;;;;;:::i;34201:223::-;;;;;;;;;;-1:-1:-1;34201:223:0;;;;;:::i;:::-;;:::i;34432:130::-;;;;;;;;;;-1:-1:-1;34432:130:0;;;;;:::i;:::-;;:::i;36368:112::-;;;;;;;;;;-1:-1:-1;36368:112:0;;;;;:::i;:::-;;:::i;21764:151::-;;;;;;;;;;-1:-1:-1;21764:151:0;;;;;:::i;:::-;;:::i;32761:27::-;;;;;;;;;;;;;;;;35149:416;;;;;;;;;;-1:-1:-1;35149:416:0;;;;;:::i;:::-;;:::i;32857:30::-;;;;;;;;;;;;;;;;10704:204;10789:4;-1:-1:-1;;;;;;10813:47:0;;-1:-1:-1;;;10813:47:0;;:87;;-1:-1:-1;;;;;;;;;;8222:40:0;;;10864:36;10806:94;10704:204;-1:-1:-1;;10704:204:0:o;19884:100::-;19938:13;19971:5;19964:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19884:100;:::o;22235:201::-;22318:4;7255:10;22374:32;7255:10;22390:7;22399:6;22374:8;:32::i;:::-;-1:-1:-1;22424:4:0;;22235:201;-1:-1:-1;;;22235:201:0:o;23016:295::-;23147:4;7255:10;23205:38;23221:4;7255:10;23236:6;23205:15;:38::i;:::-;23254:27;23264:4;23270:2;23274:6;23254:9;:27::i;:::-;-1:-1:-1;23299:4:0;;23016:295;-1:-1:-1;;;;23016:295:0:o;35958:136::-;-1:-1:-1;;;;;;;;;;;10596:16:0;10607:4;10596:10;:16::i;:::-;-1:-1:-1;36041:15:0::1;:45:::0;;-1:-1:-1;;;;;;36041:45:0::1;-1:-1:-1::0;;;;;36041:45:0;;;::::1;::::0;;;::::1;::::0;;35958:136::o;34575:207::-;-1:-1:-1;;;;;;;;;;;10596:16:0;10607:4;10596:10;:16::i;:::-;34665:24:::1;-1:-1:-1::0;;;;;;;;;;;34684:4:0::1;34665:7;:24::i;:::-;34657:79;;;::::0;-1:-1:-1;;;34657:79:0;;13048:2:1;34657:79:0::1;::::0;::::1;13030:21:1::0;13087:2;13067:18;;;13060:30;13126:34;13106:18;;;13099:62;-1:-1:-1;;;13177:18:1;;;13170:40;13227:19;;34657:79:0::1;;;;;;;;;34747:27;-1:-1:-1::0;;;;;;;;;;;34769:4:0::1;34747:11;:27::i;:::-;34575:207:::0;;:::o;13178:218::-;-1:-1:-1;;;;;13274:23:0;;7255:10;13274:23;13266:83;;;;-1:-1:-1;;;13266:83:0;;13865:2:1;13266:83:0;;;13847:21:1;13904:2;13884:18;;;13877:30;13943:34;13923:18;;;13916:62;-1:-1:-1;;;13994:18:1;;;13987:45;14049:19;;13266:83:0;13837:237:1;13266:83:0;13362:26;13374:4;13380:7;13362:11;:26::i;23720:238::-;23808:4;7255:10;23864:64;7255:10;23880:7;23917:10;23889:25;7255:10;23880:7;23889:9;:25::i;:::-;:38;;;;:::i;:::-;23864:8;:64::i;33879:311::-;-1:-1:-1;;;;;;;;;;;10596:16:0;10607:4;10596:10;:16::i;:::-;-1:-1:-1;;;;;40808:19:0;;;33962:86:::1;;;::::0;-1:-1:-1;;;33962:86:0;;7051:2:1;33962:86:0::1;::::0;::::1;7033:21:1::0;7090:2;7070:18;;;7063:30;7129:34;7109:18;;;7102:62;7200:27;7180:18;;;7173:55;7245:19;;33962:86:0::1;7023:247:1::0;33962:86:0::1;34068:24;-1:-1:-1::0;;;;;;;;;;;34087:4:0::1;34068:7;:24::i;:::-;34067:25;34059:86;;;::::0;-1:-1:-1;;;34059:86:0;;10595:2:1;34059:86:0::1;::::0;::::1;10577:21:1::0;10634:2;10614:18;;;10607:30;10673:34;10653:18;;;10646:62;-1:-1:-1;;;10724:18:1;;;10717:46;10780:19;;34059:86:0::1;10567:238:1::0;34059:86:0::1;34156:26;-1:-1:-1::0;;;;;;;;;;;34177:4:0::1;34156:10;:26::i;35574:309::-:0;-1:-1:-1;;;;;;;;;;;10596:16:0;10607:4;10596:10;:16::i;:::-;35656:34:::1;-1:-1:-1::0;;;;;;;;;;;35687:1:0::1;35656:7;:34::i;:::-;35655:35;35647:100;;;;-1:-1:-1::0;;;35647:100:0::1;;;;;;;:::i;:::-;35758:39;-1:-1:-1::0;;;;;;;;;;;7255:10:0;35758:11:::1;:39::i;:::-;35808:36;-1:-1:-1::0;;;;;;;;;;;35841:1:0::1;35808:10;:36::i;:::-;-1:-1:-1::0;35855:7:0::1;:20:::0;;-1:-1:-1;;;;;;35855:20:0::1;::::0;;35574:309::o;11000:147::-;11086:4;11110:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;11110:29:0;;;;;;;;;;;;;;;11000:147::o;20103:104::-;20159:13;20192:7;20185:14;;;;;:::i;24461:436::-;24554:4;7255:10;24554:4;24637:25;7255:10;24654:7;24637:9;:25::i;:::-;24610:52;;24701:15;24681:16;:35;;24673:85;;;;-1:-1:-1;;;24673:85:0;;13459:2:1;24673:85:0;;;13441:21:1;13498:2;13478:18;;;13471:30;13537:34;13517:18;;;13510:62;-1:-1:-1;;;13588:18:1;;;13581:35;13633:19;;24673:85:0;13431:227:1;24673:85:0;24794:60;24803:5;24810:7;24838:15;24819:16;:34;24794:8;:60::i;21508:193::-;21587:4;7255:10;21643:28;7255:10;21660:2;21664:6;21643:9;:28::i;34846:212::-;-1:-1:-1;;;;;;;;;;;10596:16:0;10607:4;10596:10;:16::i;:::-;34933:31:::1;-1:-1:-1::0;;;;;;;;;;;34956:7:0::1;34933;:31::i;:::-;34925:81;;;::::0;-1:-1:-1;;;34925:81:0;;9369:2:1;34925:81:0::1;::::0;::::1;9351:21:1::0;9408:2;9388:18;;;9381:30;9447:34;9427:18;;;9420:62;-1:-1:-1;;;9498:18:1;;;9491:35;9543:19;;34925:81:0::1;9341:227:1::0;34925:81:0::1;35016:34;-1:-1:-1::0;;;;;;;;;;;35042:7:0::1;35016:11;:34::i;36173:186::-:0;-1:-1:-1;;;;;;;;;;;10596:16:0;10607:4;10596:10;:16::i;:::-;36271:4:::1;36239:11;21276:18:::0;;;;;;;;;;;36296:10;36288:19:::1;;;::::0;::::1;;36318:33;36344:6;36318:25;:33::i;34201:223::-:0;-1:-1:-1;;;;;;;;;;;10596:16:0;10607:4;10596:10;:16::i;:::-;34292:31:::1;-1:-1:-1::0;;;;;;;;;;;34315:7:0::1;34292;:31::i;:::-;34291:32;34283:89;;;::::0;-1:-1:-1;;;34283:89:0;;10182:2:1;34283:89:0::1;::::0;::::1;10164:21:1::0;10221:2;10201:18;;;10194:30;10260:34;10240:18;;;10233:62;-1:-1:-1;;;10311:18:1;;;10304:42;10363:19;;34283:89:0::1;10154:234:1::0;34283:89:0::1;34383:33;-1:-1:-1::0;;;;;;;;;;;34408:7:0::1;34383:10;:33::i;34432:130::-:0;-1:-1:-1;;;;;;;;;;;10596:16:0;10607:4;10596:10;:16::i;:::-;-1:-1:-1;;;;;;34530:16:0;;;::::1;;::::0;;;:9:::1;:16;::::0;;;;:24;;-1:-1:-1;;34530:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34432:130::o;36368:112::-;-1:-1:-1;;;;;;;;;;;10596:16:0;10607:4;10596:10;:16::i;:::-;-1:-1:-1;36453:9:0::1;:19:::0;36368:112::o;21764:151::-;-1:-1:-1;;;;;21880:18:0;;;21853:7;21880:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21764:151::o;35149:416::-;-1:-1:-1;;;;;;;;;;;10596:16:0;10607:4;10596:10;:16::i;:::-;-1:-1:-1;;;;;35246:22:0;::::1;35238:86;;;::::0;-1:-1:-1;;;35238:86:0;;8949:2:1;35238:86:0::1;::::0;::::1;8931:21:1::0;8988:2;8968:18;;;8961:30;9027:34;9007:18;;;9000:62;-1:-1:-1;;;9078:18:1;;;9071:49;9137:19;;35238:86:0::1;8921:241:1::0;35238:86:0::1;35344:32;-1:-1:-1::0;;;;;;;;;;;35367:8:0::1;35344:7;:32::i;:::-;35343:33;35335:98;;;;-1:-1:-1::0;;;35335:98:0::1;;;;;;;:::i;:::-;35444:39;-1:-1:-1::0;;;;;;;;;;;7255:10:0;35758:11:::1;:39::i;35444:::-;35494:34;-1:-1:-1::0;;;;;;;;;;;35519:8:0::1;35494:10;:34::i;:::-;-1:-1:-1::0;35539:7:0::1;:18:::0;;-1:-1:-1;;;;;;35539:18:0::1;-1:-1:-1::0;;;;;35539:18:0;;;::::1;::::0;;;::::1;::::0;;35149:416::o;28095:380::-;-1:-1:-1;;;;;28231:19:0;;28223:68;;;;-1:-1:-1;;;28223:68:0;;12643:2:1;28223:68:0;;;12625:21:1;12682:2;12662:18;;;12655:30;12721:34;12701:18;;;12694:62;-1:-1:-1;;;12772:18:1;;;12765:34;12816:19;;28223:68:0;12615:226:1;28223:68:0;-1:-1:-1;;;;;28310:21:0;;28302:68;;;;-1:-1:-1;;;28302:68:0;;7477:2:1;28302:68:0;;;7459:21:1;7516:2;7496:18;;;7489:30;7555:34;7535:18;;;7528:62;-1:-1:-1;;;7606:18:1;;;7599:32;7648:19;;28302:68:0;7449:224:1;28302:68:0;-1:-1:-1;;;;;28383:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28435:32;;5023:25:1;;;28435:32:0;;4996:18:1;28435:32:0;;;;;;;28095:380;;;:::o;28766:453::-;28901:24;28928:25;28938:5;28945:7;28928:9;:25::i;:::-;28901:52;;-1:-1:-1;;28968:16:0;:37;28964:248;;29050:6;29030:16;:26;;29022:68;;;;-1:-1:-1;;;29022:68:0;;8591:2:1;29022:68:0;;;8573:21:1;8630:2;8610:18;;;8603:30;8669:31;8649:18;;;8642:59;8718:18;;29022:68:0;8563:179:1;29022:68:0;29134:51;29143:5;29150:7;29178:6;29159:16;:25;29134:8;:51::i;:::-;28766:453;;;;:::o;36551:2358::-;-1:-1:-1;;;;;36683:18:0;;36675:68;;;;-1:-1:-1;;;36675:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36762:16:0;;36754:64;;;;-1:-1:-1;;;36754:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36835:13:0;;;;;;:9;:13;;;;;;;;36831:124;;36887:25;36905:6;36887:13;36897:2;-1:-1:-1;;;;;21276:18:0;21249:7;21276:18;;;;;;;;;;;;21175:127;36887:13;:17;;:25::i;:::-;36873:9;;:39;;36865:78;;;;-1:-1:-1;;;36865:78:0;;7880:2:1;36865:78:0;;;7862:21:1;7919:2;7899:18;;;7892:30;7958:28;7938:18;;;7931:56;8004:18;;36865:78:0;7852:176:1;36865:78:0;37026:26;;:::i;:::-;-1:-1:-1;;;;;37077:15:0;;:9;:15;;;;;;;;;;;37063:29;;37105:21;;:::i;:::-;37152:28;-1:-1:-1;;;;;;;;;;;37175:4:0;37152:7;:28::i;:::-;37151:29;37150:64;;;;;37187:26;-1:-1:-1;;;;;;;;;;;37210:2:0;37187:7;:26::i;:::-;37186:27;37150:64;:107;;;;-1:-1:-1;37220:36:0;-1:-1:-1;;;;;;;;;;;7255:10:0;11000:147;:::i;37220:36::-;37219:37;37150:107;37138:119;;;;37281:28;-1:-1:-1;;;;;;;;;;;37304:4:0;37281:7;:28::i;:::-;37280:62;;;;37315:26;-1:-1:-1;;;;;;;;;;;37338:2:0;37315:7;:26::i;:::-;37268:74;;:9;;;:74;37371:11;;:21;-1:-1:-1;37371:21:0;37363:72;;;;-1:-1:-1;;;37363:72:0;;;;;;;:::i;:::-;37459:22;-1:-1:-1;;;;;;;;;;;37478:2:0;37459:7;:22::i;:::-;:43;;;;-1:-1:-1;37486:16:0;;;;37485:17;37459:43;37456:421;;;37560:4;37519:20;21276:18;;;;;;;;;;;37584:19;;37581:285;;37657:13;;;;;-1:-1:-1;;;;;37657:13:0;21249:7;21276:18;;;;;;;;;;;37647:40;;37683:3;;37647:31;;37676:1;;37647:24;:28;;:31::i;:::-;:35;;:40::i;:::-;37629:15;:58;37626:164;;;37740:13;;;;;-1:-1:-1;;;;;37740:13:0;21249:7;21276:18;;;;;;;;;;;37730:40;;37766:3;;37730:31;;37759:1;;37730:24;21175:127;37730:40;37712:58;;37626:164;37808:42;37834:15;37808:25;:42::i;:::-;37456:421;;37892:9;;:23;;;;-1:-1:-1;37906:9:0;;;;37905:10;37892:23;:44;;;;-1:-1:-1;37920:16:0;;;;37919:17;37892:44;37889:521;;;37971:6;37997:22;-1:-1:-1;;;;;;;;;;;38016:2:0;37997:7;:22::i;:::-;37992:254;;;38078:26;38097:6;38078:18;:26::i;:::-;38063:11;;;38054:50;;-1:-1:-1;37992:254:0;;;38128:32;-1:-1:-1;;;;;;;;;;;7255:10:0;11000:147;:::i;38128:32::-;38125:121;;;38205:25;38223:6;38205:17;:25::i;:::-;38190:11;;;38181:49;;-1:-1:-1;38125:121:0;38277:23;38292:7;38277:14;:23::i;:::-;38263:11;;;:37;;;38320:21;;38317:82;;38372:11;;;;38362:21;;;;:::i;:::-;;;38317:82;37889:521;;38465:11;;-1:-1:-1;;;;;38447:15:0;;;38474:1;38447:15;;;38465:11;38447:15;;;;;;;38465:20;;;;38447:38;;;38507:13;;;;;;;;:23;;38479:6;;38474:1;38507:23;;38479:6;;38507:23;:::i;:::-;;;;;;;;38563:2;-1:-1:-1;;;;;38548:26:0;38557:4;-1:-1:-1;;;;;38548:26:0;;38567:6;38548:26;;;;5023:25:1;;5011:2;4996:18;;4978:76;38548:26:0;;;;;;;;38600:11;;;;:15;;;;38599:30;;-1:-1:-1;38620:9:0;;38599:30;:44;;;;-1:-1:-1;38634:9:0;;;;38633:10;38599:44;:65;;;;-1:-1:-1;38648:16:0;;;;38647:17;38599:65;38596:123;;;38681:26;38689:4;38695:8;38704:1;38695:11;;;;38681:7;:26::i;:::-;38735:11;;;;:15;;;;38734:30;;-1:-1:-1;38755:9:0;;38734:30;:44;;;;-1:-1:-1;38769:9:0;;;;38768:10;38734:44;:65;;;;-1:-1:-1;38783:16:0;;;;38782:17;38734:65;38731:121;;;38816:24;38822:4;38828:8;38837:1;38828:11;;;;38816:5;:24::i;:::-;36551:2358;;;;;:::o;11451:105::-;11518:30;11529:4;7255:10;11518;:30::i;:::-;11451:105;:::o;15049:239::-;15133:22;15141:4;15147:7;15133;:22::i;:::-;15129:152;;;15204:5;15172:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;15172:29:0;;;;;;;;;;:37;;-1:-1:-1;;15172:37:0;;;15229:40;7255:10;;15172:12;;15229:40;;15204:5;15229:40;15049:239;;:::o;14055:112::-;14134:25;14145:4;14151:7;14134:10;:25::i;40130:589::-;33789:16;:23;;-1:-1:-1;;33789:23:0;33808:4;33789:23;;;40241:16:::1;::::0;;40255:1:::1;40241:16:::0;;;;;::::1;::::0;;-1:-1:-1;;40241:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;40241:16:0::1;40217:40;;40286:4;40268;40273:1;40268:7;;;;;;-1:-1:-1::0;;;40268:7:0::1;;;;;;;;;-1:-1:-1::0;;;;;40268:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;40312:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;40312:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;40268:7;;40312:22;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40302:4;40307:1;40302:7;;;;;;-1:-1:-1::0;;;40302:7:0::1;;;;;;;;;-1:-1:-1::0;;;;;40302:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;40379:15:::1;::::0;40347:62:::1;::::0;40364:4:::1;::::0;40379:15:::1;40397:11:::0;40347:8:::1;:62::i;:::-;40422:15;::::0;40564:18:::1;::::0;40422:199:::1;::::0;-1:-1:-1;;;40422:199:0;;-1:-1:-1;;;;;40422:15:0;;::::1;::::0;:66:::1;::::0;:199:::1;::::0;40503:11;;40422:15:::1;::::0;40545:4;;40564:18;::::1;::::0;40595:15:::1;::::0;40422:199:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40639:72;40670:11;40696:4;40639:72;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;33835:16:0;:24;;-1:-1:-1;;33835:24:0;;;40130:589::o;30705:181::-;30763:7;;30795:5;30799:1;30795;:5;:::i;:::-;30783:17;;30824:1;30819;:6;;30811:46;;;;-1:-1:-1;;;30811:46:0;;8235:2:1;30811:46:0;;;8217:21:1;8274:2;8254:18;;;8247:30;8313:29;8293:18;;;8286:57;8360:18;;30811:46:0;8207:177:1;30811:46:0;30877:1;30705:181;-1:-1:-1;;;30705:181:0:o;31238:250::-;31296:7;31320:6;31316:47;;-1:-1:-1;31350:1:0;31343:8;;31316:47;31375:9;31387:5;31391:1;31387;:5;:::i;:::-;31375:17;-1:-1:-1;31420:1:0;31411:5;31415:1;31375:17;31411:5;:::i;:::-;:10;31403:56;;;;-1:-1:-1;;;31403:56:0;;11012:2:1;31403:56:0;;;10994:21:1;11051:2;11031:18;;;11024:30;11090:34;11070:18;;;11063:62;-1:-1:-1;;;11141:18:1;;;11134:31;11182:19;;31403:56:0;10984:223:1;31498:132:0;31556:7;31583:39;31587:1;31590;31583:39;;;;;;;;;;;;;;;;;:3;:39::i;40850:247::-;40913:20;40935:16;32749:5;41007:9;;32749:5;40993:23;;;;:::i;:::-;40983:34;;:6;:34;:::i;:::-;:48;;;;:::i;:::-;40964:67;;32749:5;41066:9;;41057:6;:18;;;;:::i;:::-;:32;;;;:::i;:::-;41042:47;;40850:247;;;:::o;41108:242::-;41170:20;41192:15;32749:5;41263:8;;32749:5;41249:22;;;;:::i;:::-;41239:33;;:6;:33;:::i;:::-;:47;;;;:::i;:::-;41220:66;;32749:5;41320:8;;41311:6;:17;;;;:::i;41360:129::-;41419:11;32749:5;41462;;41453:6;:14;;;;:::i;:::-;:28;;;;:::i;39956:164::-;40027:11;;40024:89;;40055:46;40071:5;40086:4;40093:7;40055:15;:46::i;38922:601::-;-1:-1:-1;;;;;39007:21:0;;38999:67;;;;-1:-1:-1;;;38999:67:0;;11835:2:1;38999:67:0;;;11817:21:1;11874:2;11854:18;;;11847:30;11913:34;11893:18;;;11886:62;-1:-1:-1;;;11964:18:1;;;11957:31;12005:19;;38999:67:0;11807:223:1;38999:67:0;-1:-1:-1;;;;;39166:18:0;;39141:22;39166:18;;;;;;;;;;;39203:24;;;;39195:71;;;;-1:-1:-1;;;39195:71:0;;6648:2:1;39195:71:0;;;6630:21:1;6687:2;6667:18;;;6660:30;6726:34;6706:18;;;6699:62;-1:-1:-1;;;6777:18:1;;;6770:32;6819:19;;39195:71:0;6620:224:1;39195:71:0;-1:-1:-1;;;;;39302:18:0;;:9;:18;;;;;;;;;;39323:23;;;39302:44;;39368:21;;;;:31;;39340:6;;39302:9;39368:31;;39340:6;;39368:31;:::i;:::-;;;;-1:-1:-1;;39417:37:0;;5023:25:1;;;39443:1:0;;-1:-1:-1;;;;;39417:37:0;;;;;5011:2:1;4996:18;39417:37:0;;;;;;;29819:125;;;:::o;11846:505::-;11935:22;11943:4;11949:7;11935;:22::i;:::-;11930:414;;12123:41;12151:7;-1:-1:-1;;;;;12123:41:0;12161:2;12123:19;:41::i;:::-;12237:38;12265:4;12272:2;12237:19;:38::i;:::-;12028:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;12028:270:0;;;;;;;;;;-1:-1:-1;;;11974:358:0;;;;;;;:::i;14679:238::-;14763:22;14771:4;14777:7;14763;:22::i;:::-;14758:152;;14802:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;14802:29:0;;;;;;;;;:36;;-1:-1:-1;;14802:36:0;14834:4;14802:36;;;14885:12;7255:10;;7175:98;14885:12;-1:-1:-1;;;;;14858:40:0;14876:7;-1:-1:-1;;;;;14858:40:0;14870:4;14858:40;;;;;;;;;;14679:238;;:::o;31638:278::-;31724:7;31759:12;31752:5;31744:28;;;;-1:-1:-1;;;31744:28:0;;;;;;;;:::i;:::-;-1:-1:-1;31783:9:0;31795:5;31799:1;31795;:5;:::i;:::-;31783:17;31638:278;-1:-1:-1;;;;;31638:278:0:o;25376:671::-;-1:-1:-1;;;;;25507:18:0;;25499:68;;;;-1:-1:-1;;;25499:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25586:16:0;;25578:64;;;;-1:-1:-1;;;25578:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25728:15:0;;25706:19;25728:15;;;;;;;;;;;25762:21;;;;25754:72;;;;-1:-1:-1;;;25754:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25862:15:0;;;:9;:15;;;;;;;;;;;25880:20;;;25862:38;;25922:13;;;;;;;;:23;;25894:6;;25862:9;25922:23;;25894:6;;25922:23;:::i;:::-;;;;;;;;25978:2;-1:-1:-1;;;;;25963:26:0;25972:4;-1:-1:-1;;;;;25963:26:0;;25982:6;25963:26;;;;5023:25:1;;5011:2;4996:18;;4978:76;25963:26:0;;;;;;;;26002:37;29819:125;16848:451;16923:13;16949:19;16981:10;16985:6;16981:1;:10;:::i;:::-;:14;;16994:1;16981:14;:::i;:::-;16971:25;;;;;;-1:-1:-1;;;16971:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16971:25:0;;16949:47;;-1:-1:-1;;;17007:6:0;17014:1;17007:9;;;;;;-1:-1:-1;;;17007:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;17007:15:0;;;;;;;;;-1:-1:-1;;;17033:6:0;17040:1;17033:9;;;;;;-1:-1:-1;;;17033:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;17033:15:0;;;;;;;;-1:-1:-1;17064:9:0;17076:10;17080:6;17076:1;:10;:::i;:::-;:14;;17089:1;17076:14;:::i;:::-;17064:26;;17059:135;17096:1;17092;:5;17059:135;;;-1:-1:-1;;;17144:5:0;17152:3;17144:11;17131:25;;;;;-1:-1:-1;;;17131:25:0;;;;;;;;;;;;17119:6;17126:1;17119:9;;;;;;-1:-1:-1;;;17119:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;17119:37:0;;;;;;;;-1:-1:-1;17181:1:0;17171:11;;;;;17099:3;;;:::i;:::-;;;17059:135;;;-1:-1:-1;17212:10:0;;17204:55;;;;-1:-1:-1;;;17204:55:0;;5883:2:1;17204:55:0;;;5865:21:1;;;5902:18;;;5895:30;5961:34;5941:18;;;5934:62;6013:18;;17204:55:0;5855:182:1;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:257:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;542:398::-;610:6;618;671:2;659:9;650:7;646:23;642:32;639:2;;;692:6;684;677:22;639:2;736:9;723:23;755:31;780:5;755:31;:::i;:::-;805:5;-1:-1:-1;862:2:1;847:18;;834:32;875:33;834:32;875:33;:::i;:::-;927:7;917:17;;;629:311;;;;;:::o;945:466::-;1022:6;1030;1038;1091:2;1079:9;1070:7;1066:23;1062:32;1059:2;;;1112:6;1104;1097:22;1059:2;1156:9;1143:23;1175:31;1200:5;1175:31;:::i;:::-;1225:5;-1:-1:-1;1282:2:1;1267:18;;1254:32;1295:33;1254:32;1295:33;:::i;:::-;1049:362;;1347:7;;-1:-1:-1;;;1401:2:1;1386:18;;;;1373:32;;1049:362::o;1416:436::-;1481:6;1489;1542:2;1530:9;1521:7;1517:23;1513:32;1510:2;;;1563:6;1555;1548:22;1510:2;1607:9;1594:23;1626:31;1651:5;1626:31;:::i;:::-;1676:5;-1:-1:-1;1733:2:1;1718:18;;1705:32;1775:15;;1768:23;1756:36;;1746:2;;1811:6;1803;1796:22;1857:325;1925:6;1933;1986:2;1974:9;1965:7;1961:23;1957:32;1954:2;;;2007:6;1999;1992:22;1954:2;2051:9;2038:23;2070:31;2095:5;2070:31;:::i;:::-;2120:5;2172:2;2157:18;;;;2144:32;;-1:-1:-1;;;1944:238:1:o;2187:190::-;2246:6;2299:2;2287:9;2278:7;2274:23;2270:32;2267:2;;;2320:6;2312;2305:22;2267:2;-1:-1:-1;2348:23:1;;2257:120;-1:-1:-1;2257:120:1:o;2382:325::-;2450:6;2458;2511:2;2499:9;2490:7;2486:23;2482:32;2479:2;;;2532:6;2524;2517:22;2479:2;2573:9;2560:23;2550:33;;2633:2;2622:9;2618:18;2605:32;2646:31;2671:5;2646:31;:::i;2712:306::-;2770:6;2823:2;2811:9;2802:7;2798:23;2794:32;2791:2;;;2844:6;2836;2829:22;2791:2;2875:23;;-1:-1:-1;;;;;;2927:32:1;;2917:43;;2907:2;;2979:6;2971;2964:22;3218:463;3271:3;3309:5;3303:12;3336:6;3331:3;3324:19;3362:4;3391:2;3386:3;3382:12;3375:19;;3428:2;3421:5;3417:14;3449:3;3461:195;3475:6;3472:1;3469:13;3461:195;;;3540:13;;-1:-1:-1;;;;;3536:39:1;3524:52;;3596:12;;;;3631:15;;;;3572:1;3490:9;3461:195;;;-1:-1:-1;3672:3:1;;3279:402;-1:-1:-1;;;;;3279:402:1:o;3686:786::-;4097:25;4092:3;4085:38;4067:3;4152:6;4146:13;4168:62;4223:6;4218:2;4213:3;4209:12;4202:4;4194:6;4190:17;4168:62;:::i;:::-;-1:-1:-1;;;4289:2:1;4249:16;;;4281:11;;;4274:40;4339:13;;4361:63;4339:13;4410:2;4402:11;;4395:4;4383:17;;4361:63;:::i;:::-;4444:17;4463:2;4440:26;;4075:397;-1:-1:-1;;;;4075:397:1:o;5293:383::-;5442:2;5431:9;5424:21;5405:4;5474:6;5468:13;5517:6;5512:2;5501:9;5497:18;5490:34;5533:66;5592:6;5587:2;5576:9;5572:18;5567:2;5559:6;5555:15;5533:66;:::i;:::-;5660:2;5639:15;-1:-1:-1;;5635:29:1;5620:45;;;;5667:2;5616:54;;5414:262;-1:-1:-1;;5414:262:1:o;6042:399::-;6244:2;6226:21;;;6283:2;6263:18;;;6256:30;6322:34;6317:2;6302:18;;6295:62;-1:-1:-1;;;6388:2:1;6373:18;;6366:33;6431:3;6416:19;;6216:225::o;9573:402::-;9775:2;9757:21;;;9814:2;9794:18;;;9787:30;9853:34;9848:2;9833:18;;9826:62;-1:-1:-1;;;9919:2:1;9904:18;;9897:36;9965:3;9950:19;;9747:228::o;11212:416::-;11414:2;11396:21;;;11453:2;11433:18;;;11426:30;11492:34;11487:2;11472:18;;11465:62;-1:-1:-1;;;11558:2:1;11543:18;;11536:50;11618:3;11603:19;;11386:242::o;12035:401::-;12237:2;12219:21;;;12276:2;12256:18;;;12249:30;12315:34;12310:2;12295:18;;12288:62;-1:-1:-1;;;12381:2:1;12366:18;;12359:35;12426:3;12411:19;;12209:227::o;14261:332::-;14468:6;14457:9;14450:25;14511:2;14506;14495:9;14491:18;14484:30;14431:4;14531:56;14583:2;14572:9;14568:18;14560:6;14531:56;:::i;:::-;14523:64;14440:153;-1:-1:-1;;;;14440:153:1:o;14598:582::-;14897:6;14886:9;14879:25;14940:6;14935:2;14924:9;14920:18;14913:34;14983:3;14978:2;14967:9;14963:18;14956:31;14860:4;15004:57;15056:3;15045:9;15041:19;15033:6;15004:57;:::i;:::-;-1:-1:-1;;;;;15097:32:1;;;;15092:2;15077:18;;15070:60;-1:-1:-1;15161:3:1;15146:19;15139:35;14996:65;14869:311;-1:-1:-1;;;14869:311:1:o;15374:128::-;15414:3;15445:1;15441:6;15438:1;15435:13;15432:2;;;15451:18;;:::i;:::-;-1:-1:-1;15487:9:1;;15422:80::o;15507:217::-;15547:1;15573;15563:2;;-1:-1:-1;;;15598:31:1;;15652:4;15649:1;15642:15;15680:4;15605:1;15670:15;15563:2;-1:-1:-1;15709:9:1;;15553:171::o;15729:168::-;15769:7;15835:1;15831;15827:6;15823:14;15820:1;15817:21;15812:1;15805:9;15798:17;15794:45;15791:2;;;15842:18;;:::i;:::-;-1:-1:-1;15882:9:1;;15781:116::o;15902:125::-;15942:4;15970:1;15967;15964:8;15961:2;;;15975:18;;:::i;:::-;-1:-1:-1;16012:9:1;;15951:76::o;16032:258::-;16104:1;16114:113;16128:6;16125:1;16122:13;16114:113;;;16204:11;;;16198:18;16185:11;;;16178:39;16150:2;16143:10;16114:113;;;16245:6;16242:1;16239:13;16236:2;;;-1:-1:-1;;16280:1:1;16262:16;;16255:27;16085:205::o;16295:136::-;16334:3;16362:5;16352:2;;16371:18;;:::i;:::-;-1:-1:-1;;;16407:18:1;;16342:89::o;16436:380::-;16515:1;16511:12;;;;16558;;;16579:2;;16633:4;16625:6;16621:17;16611:27;;16579:2;16686;16678:6;16675:14;16655:18;16652:38;16649:2;;;16732:10;16727:3;16723:20;16720:1;16713:31;16767:4;16764:1;16757:15;16795:4;16792:1;16785:15;16649:2;;16491:325;;;:::o;16821:127::-;16882:10;16877:3;16873:20;16870:1;16863:31;16913:4;16910:1;16903:15;16937:4;16934:1;16927:15;16953:131;-1:-1:-1;;;;;17028:31:1;;17018:42;;17008:2;;17074:1;17071;17064:12
Swarm Source
ipfs://08bd250ba2ea0ee0d1d6333a4dd57889993efaf004d5ddf6acd6051ba62815ce
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.