Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- ArbitrumExtension
- Optimization enabled
- true
- Compiler version
- v0.8.4+commit.c7e474f2
- Optimization runs
- 10000
- EVM Version
- default
- Verified at
- 2023-08-24T23:26:33.523000Z
Contract source code
// File: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } } // File: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; } // File: @openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } uint256[49] private __gap; } // File: @openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); } // File: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20MetadataUpgradeable is IERC20Upgradeable { /** * @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); } // File: @openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol pragma solidity ^0.8.0; /** * @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 guidelines: functions revert instead * of 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 ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _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. */ function __ERC20_init(string memory name_, string memory symbol_) internal initializer { __Context_init_unchained(); __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal initializer { _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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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 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 {} uint256[45] private __gap; } // File: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/draft-IERC20PermitUpgradeable.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20PermitUpgradeable { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: @openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSAUpgradeable { /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return recover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return recover(hash, r, vs); } else { revert("ECDSA: invalid signature length"); } } /** * @dev Overload of {ECDSA-recover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return recover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. require( uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value" ); require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value"); // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); require(signer != address(0), "ECDSA: invalid signature"); return signer; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File: @openzeppelin/contracts-upgradeable/utils/cryptography/draft-EIP712Upgradeable.sol pragma solidity ^0.8.0; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712Upgradeable is Initializable { /* solhint-disable var-name-mixedcase */ bytes32 private _HASHED_NAME; bytes32 private _HASHED_VERSION; bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ function __EIP712_init(string memory name, string memory version) internal initializer { __EIP712_init_unchained(name, version); } function __EIP712_init_unchained(string memory name, string memory version) internal initializer { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { return _buildDomainSeparator(_TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash()); } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSAUpgradeable.toTypedDataHash(_domainSeparatorV4(), structHash); } /** * @dev The hash of the name parameter for the EIP712 domain. * * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs * are a concern. */ function _EIP712NameHash() internal virtual view returns (bytes32) { return _HASHED_NAME; } /** * @dev The hash of the version parameter for the EIP712 domain. * * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs * are a concern. */ function _EIP712VersionHash() internal virtual view returns (bytes32) { return _HASHED_VERSION; } uint256[50] private __gap; } // File: @openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library CountersUpgradeable { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/draft-ERC20PermitUpgradeable.sol pragma solidity ^0.8.0; /** * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * _Available since v3.4._ */ abstract contract ERC20PermitUpgradeable is Initializable, ERC20Upgradeable, IERC20PermitUpgradeable, EIP712Upgradeable { using CountersUpgradeable for CountersUpgradeable.Counter; mapping(address => CountersUpgradeable.Counter) private _nonces; // solhint-disable-next-line var-name-mixedcase bytes32 private _PERMIT_TYPEHASH; /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC20 token name. */ function __ERC20Permit_init(string memory name) internal initializer { __Context_init_unchained(); __EIP712_init_unchained(name, "1"); __ERC20Permit_init_unchained(name); } function __ERC20Permit_init_unchained(string memory name) internal initializer { _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");} /** * @dev See {IERC20Permit-permit}. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= deadline, "ERC20Permit: expired deadline"); bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline)); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSAUpgradeable.recover(hash, v, r, s); require(signer == owner, "ERC20Permit: invalid signature"); _approve(owner, spender, value); } /** * @dev See {IERC20Permit-nonces}. */ function nonces(address owner) public view virtual override returns (uint256) { return _nonces[owner].current(); } /** * @dev See {IERC20Permit-DOMAIN_SEPARATOR}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view override returns (bytes32) { return _domainSeparatorV4(); } /** * @dev "Consume a nonce": return the current value and increment. * * _Available since v4.1._ */ function _useNonce(address owner) internal virtual returns (uint256 current) { CountersUpgradeable.Counter storage nonce = _nonces[owner]; current = nonce.current(); nonce.increment(); } uint256[49] private __gap; } // File: contracts/Tether/WithBlockedList.sol pragma solidity 0.8.4; /* Copyright Tether.to 2020 Author Will Harborne Licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 */ contract WithBlockedList is OwnableUpgradeable { /** * @dev Reverts if called by a blocked account */ modifier onlyNotBlocked() { require(!isBlocked[_msgSender()], "Blocked: transfers are blocked for user"); _; } mapping (address => bool) public isBlocked; function addToBlockedList (address _user) public onlyOwner { isBlocked[_user] = true; emit BlockPlaced(_user); } function removeFromBlockedList (address _user) public onlyOwner { isBlocked[_user] = false; emit BlockReleased(_user); } event BlockPlaced(address indexed _user); event BlockReleased(address indexed _user); } // File: contracts/Tether/TetherToken.sol pragma solidity 0.8.4; /* Copyright Tether.to 2020 Author Will Harborne Licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 */ contract TetherToken is Initializable, ERC20PermitUpgradeable, OwnableUpgradeable, WithBlockedList { uint8 private tetherDecimals; function initialize( string memory _name, string memory _symbol, uint8 _decimals ) public initializer { tetherDecimals = _decimals; __Ownable_init(); __ERC20_init(_name, _symbol); __ERC20Permit_init(_name); } function decimals() public view virtual override returns (uint8) { return tetherDecimals; } function transfer(address _recipient, uint256 _amount) public virtual override onlyNotBlocked returns (bool) { require(_recipient != address(this), "ERC20: transfer to the contract address"); return super.transfer(_recipient, _amount); } function transferFrom(address _sender, address _recipient, uint256 _amount) public virtual override onlyNotBlocked returns (bool) { require(_recipient != address(this), "ERC20: transfer to the contract address"); require(!isBlocked[_sender]); return super.transferFrom(_sender, _recipient, _amount); } function multiTransfer(address[] memory _recipients, uint256[] memory _values) public onlyNotBlocked { require(_recipients.length == _values.length , "ERC20: multiTransfer mismatch"); for (uint256 i = 0; i < _recipients.length; i++) { transfer(_recipients[i], _values[i]); } } function mint(address _destination, uint256 _amount) public onlyOwner { _mint(_destination, _amount); emit Mint(_destination, _amount); } function redeem(uint256 _amount) public onlyOwner { _burn(owner(), _amount); emit Redeem(_amount); } function destroyBlockedFunds (address _blockedUser) public onlyOwner { require(isBlocked[_blockedUser]); uint blockedFunds = balanceOf(_blockedUser); _burn(_blockedUser, blockedFunds); emit DestroyedBlockedFunds(_blockedUser, blockedFunds); } event Mint(address indexed _destination, uint _amount); event Redeem(uint _amount); event DestroyedBlockedFunds(address indexed _blockedUser, uint _balance); } // File: contracts/Wrappers/ArbitrumExtension.sol pragma solidity 0.8.4; /* Copyright Tether.to 2020 Author Will Harborne Licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 */ interface IArbToken { /** * @notice should increase token supply by amount, and should (probably) only be callable by the L1 bridge. */ function bridgeMint(address account, uint256 amount) external; /** * @notice should decrease token supply by amount, and should (probably) only be callable by the L1 bridge. */ function bridgeBurn(address account, uint256 amount) external; /** * @return address of layer 1 token */ function l1Address() external view returns (address); } contract ArbitrumExtension is TetherToken, IArbToken { address public l2Gateway; address public override l1Address; modifier onlyGateway { require(msg.sender == l2Gateway, "ONLY_GATEWAY"); _; } function initialize( string memory _name, string memory _symbol, uint8 _decimals, address _l2Gateway, address _l1Counterpart ) public initializer { require(_l2Gateway != address(0), "INVALID_GATEWAY"); require(l2Gateway == address(0), "ALREADY_INIT"); l2Gateway = _l2Gateway; l1Address = _l1Counterpart; TetherToken.initialize(_name, _symbol, _decimals); } /** * @notice Mint tokens on L2. Callable path is L1Gateway depositToken (which handles L1 escrow), which triggers L2Gateway, which calls this * @param account recipient of tokens * @param amount amount of tokens minted */ function bridgeMint(address account, uint256 amount) external virtual override onlyGateway { _mint(account, amount); emit Mint(account, amount); } /** * @notice Burn tokens on L2. * @dev only the token bridge can call this * @param account owner of tokens * @param amount amount of tokens burnt */ function bridgeBurn(address account, uint256 amount) external virtual override onlyGateway { _burn(account, amount); emit Redeem(amount); } }
Contract ABI
[{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"BlockPlaced","inputs":[{"type":"address","name":"_user","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"BlockReleased","inputs":[{"type":"address","name":"_user","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"DestroyedBlockedFunds","inputs":[{"type":"address","name":"_blockedUser","internalType":"address","indexed":true},{"type":"uint256","name":"_balance","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Mint","inputs":[{"type":"address","name":"_destination","internalType":"address","indexed":true},{"type":"uint256","name":"_amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Redeem","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DOMAIN_SEPARATOR","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addToBlockedList","inputs":[{"type":"address","name":"_user","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"bridgeBurn","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"bridgeMint","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"destroyBlockedFunds","inputs":[{"type":"address","name":"_blockedUser","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[{"type":"string","name":"_name","internalType":"string"},{"type":"string","name":"_symbol","internalType":"string"},{"type":"uint8","name":"_decimals","internalType":"uint8"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[{"type":"string","name":"_name","internalType":"string"},{"type":"string","name":"_symbol","internalType":"string"},{"type":"uint8","name":"_decimals","internalType":"uint8"},{"type":"address","name":"_l2Gateway","internalType":"address"},{"type":"address","name":"_l1Counterpart","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isBlocked","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"l1Address","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"l2Gateway","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"_destination","internalType":"address"},{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"multiTransfer","inputs":[{"type":"address[]","name":"_recipients","internalType":"address[]"},{"type":"uint256[]","name":"_values","internalType":"uint256[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"nonces","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"permit","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"},{"type":"uint256","name":"deadline","internalType":"uint256"},{"type":"uint8","name":"v","internalType":"uint8"},{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"redeem","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removeFromBlockedList","inputs":[{"type":"address","name":"_user","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"_recipient","internalType":"address"},{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"_sender","internalType":"address"},{"type":"address","name":"_recipient","internalType":"address"},{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
Contract Creation Code
0x608060405234801561001057600080fd5b50612c3b806100206000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806374f4f54711610104578063a9059cbb116100a2578063db006a7511610071578063db006a75146103f6578063dd62ed3e14610409578063f2fde38b14610442578063fbac39511461045557600080fd5b8063a9059cbb146103a9578063c2eeeebd146103bc578063c820f146146103d0578063d505accf146103e357600080fd5b80638da5cb5b116100de5780638da5cb5b146103515780638fa74a0e1461037657806395d89b411461038e578063a457c2d71461039657600080fd5b806374f4f547146103185780637ecebe001461032b5780638c2a993e1461033e57600080fd5b806323b872dd1161017c5780633c7c9b901161014b5780633c7c9b90146102c157806340c10f19146102d457806370a08231146102e7578063715018a61461031057600080fd5b806323b872dd14610280578063313ce567146102935780633644e515146102a657806339509351146102ae57600080fd5b80631624f6c6116101b85780631624f6c61461023557806318160ddd146102485780631a14f4491461025a5780631e89d5451461026d57600080fd5b806306fdde03146101df578063095ea7b3146101fd5780630e27a38514610220575b600080fd5b6101e7610478565b6040516101f49190612a0d565b60405180910390f35b61021061020b366004612807565b61050a565b60405190151581526020016101f4565b61023361022e366004612717565b610520565b005b6102336102433660046128f1565b61060e565b6035545b6040519081526020016101f4565b610233610268366004612717565b61071a565b61023361027b366004612830565b6107db565b61021061028e366004612763565b610960565b60ff8054604051911681526020016101f4565b61024c610a9e565b6102106102bc366004612807565b610aad565b6102336102cf366004612717565b610ae9565b6102336102e2366004612807565b610bad565b61024c6102f5366004612717565b6001600160a01b031660009081526033602052604090205490565b610233610c4c565b610233610326366004612807565b610cb2565b61024c610339366004612717565b610d52565b61023361034c366004612807565b610d72565b60cc546001600160a01b03165b6040516001600160a01b0390911681526020016101f4565b60ff5461035e9061010090046001600160a01b031681565b6101e7610dd1565b6102106103a4366004612807565b610de0565b6102106103b7366004612807565b610e91565b6101005461035e906001600160a01b031681565b6102336103de366004612962565b610fa7565b6102336103f136600461279e565b611194565b6102336104043660046129f5565b6112da565b61024c610417366004612731565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b610233610450366004612717565b611385565b610210610463366004612717565b60fe6020526000908152604090205460ff1681565b60606036805461048790612b20565b80601f01602080910402602001604051908101604052809291908181526020018280546104b390612b20565b80156105005780601f106104d557610100808354040283529160200191610500565b820191906000526020600020905b8154815290600101906020018083116104e357829003601f168201915b5050505050905090565b6000610517338484611467565b50600192915050565b60cc546001600160a01b0316331461057f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038116600090815260fe602052604090205460ff166105a457600080fd5b6001600160a01b0381166000908152603360205260409020546105c782826115bf565b816001600160a01b03167f6a2859ae7902313752498feb80a014e6e7275fe964c79aa965db815db1c7f1e98260405161060291815260200190565b60405180910390a25050565b600054610100900460ff1680610627575060005460ff16155b6106995760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff161580156106bb576000805461ffff19166101011790555b60ff80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168382161790556106ef611744565b6106f98484611815565b610702846118ea565b8015610714576000805461ff00191690555b50505050565b60cc546001600160a01b031633146107745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b6001600160a01b038116600081815260fe602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055517f665918c9e02eb2fd85acca3969cb054fc84c138e60ec4af22ab6ef2fd4c93c279190a250565b33600090815260fe602052604090205460ff16156108615760405162461bcd60e51b815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f722075736572000000000000000000000000000000000000000000000000006064820152608401610576565b80518251146108b25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a206d756c74695472616e73666572206d69736d617463680000006044820152606401610576565b60005b825181101561095b576109488382815181106108fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183838151811061093b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610e91565b508061095381612b6e565b9150506108b5565b505050565b33600090815260fe602052604081205460ff16156109e65760405162461bcd60e51b815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f722075736572000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038316301415610a655760405162461bcd60e51b815260206004820152602760248201527f45524332303a207472616e7366657220746f2074686520636f6e74726163742060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038416600090815260fe602052604090205460ff1615610a8b57600080fd5b610a968484846119fd565b949350505050565b6000610aa8611abc565b905090565b3360008181526034602090815260408083206001600160a01b03871684529091528120549091610517918590610ae4908690612af1565b611467565b60cc546001600160a01b03163314610b435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b6001600160a01b038116600081815260fe602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055517f406bbf2d8d145125adf1198d2cf8a67c66cc4bb0ab01c37dccd4f7c0aae1e7c79190a250565b60cc546001600160a01b03163314610c075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b610c118282611b37565b816001600160a01b03167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858260405161060291815260200190565b60cc546001600160a01b03163314610ca65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b610cb06000611c16565b565b60ff5461010090046001600160a01b03163314610d115760405162461bcd60e51b815260206004820152600c60248201527f4f4e4c595f4741544557415900000000000000000000000000000000000000006044820152606401610576565b610d1b82826115bf565b6040518181527f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449060200160405180910390a15050565b6001600160a01b0381166000908152609960205260408120545b92915050565b60ff5461010090046001600160a01b03163314610c075760405162461bcd60e51b815260206004820152600c60248201527f4f4e4c595f4741544557415900000000000000000000000000000000000000006044820152606401610576565b60606037805461048790612b20565b3360009081526034602090815260408083206001600160a01b038616845290915281205482811015610e7a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610576565b610e873385858403611467565b5060019392505050565b33600090815260fe602052604081205460ff1615610f175760405162461bcd60e51b815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f722075736572000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038316301415610f965760405162461bcd60e51b815260206004820152602760248201527f45524332303a207472616e7366657220746f2074686520636f6e74726163742060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610576565b610fa08383611c80565b9392505050565b600054610100900460ff1680610fc0575060005460ff16155b6110325760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015611054576000805461ffff19166101011790555b6001600160a01b0383166110aa5760405162461bcd60e51b815260206004820152600f60248201527f494e56414c49445f4741544557415900000000000000000000000000000000006044820152606401610576565b60ff5461010090046001600160a01b0316156111085760405162461bcd60e51b815260206004820152600c60248201527f414c52454144595f494e495400000000000000000000000000000000000000006044820152606401610576565b60ff80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff166101006001600160a01b0386811682029290921790925581547fffffffffffffffffffffffff00000000000000000000000000000000000000001690841617905561117a86868661060e565b801561118c576000805461ff00191690555b505050505050565b834211156111e45760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610576565b6000609a548888886111f58c611c8d565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061125082611cb5565b9050600061126082878787611d1e565b9050896001600160a01b0316816001600160a01b0316146112c35760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610576565b6112ce8a8a8a611467565b50505050505050505050565b60cc546001600160a01b031633146113345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b61134f61134960cc546001600160a01b031690565b826115bf565b6040518181527f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449060200160405180910390a150565b60cc546001600160a01b031633146113df5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b6001600160a01b03811661145b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610576565b61146481611c16565b50565b6001600160a01b0383166114e25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b03821661155e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b0383811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03821661163b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038216600090815260336020526040902054818110156116ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b03831660009081526033602052604081208383039055603580548492906116f9908490612b09565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600054610100900460ff168061175d575060005460ff16155b6117cf5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff161580156117f1576000805461ffff19166101011790555b6117f9611f1b565b611801611fdb565b8015611464576000805461ff001916905550565b600054610100900460ff168061182e575060005460ff16155b6118a05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff161580156118c2576000805461ffff19166101011790555b6118ca611f1b565b6118d48383612091565b801561095b576000805461ff0019169055505050565b600054610100900460ff1680611903575060005460ff16155b6119755760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015611997576000805461ffff19166101011790555b61199f611f1b565b6119de826040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525061217c565b6119e78261225c565b80156119f9576000805461ff00191690555b5050565b6000611a0a848484612342565b6001600160a01b038416600090815260346020908152604080832033845290915290205482811015611aa45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610576565b611ab18533858403611467565b506001949350505050565b6000610aa87f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f611aeb60655490565b6066546040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b6001600160a01b038216611b8d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610576565b8060356000828254611b9f9190612af1565b90915550506001600160a01b03821660009081526033602052604081208054839290611bcc908490612af1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60cc80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610517338484612342565b6001600160a01b03811660009081526099602052604090208054600181018255905b50919050565b6000610d6c611cc2611abc565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115611db65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610576565b8360ff16601b1480611dcb57508360ff16601c145b611e3d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015611e91573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe001519150506001600160a01b038116611f125760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610576565b95945050505050565b600054610100900460ff1680611f34575060005460ff16155b611fa65760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015611801576000805461ffff19166101011790558015611464576000805461ff001916905550565b600054610100900460ff1680611ff4575060005460ff16155b6120665760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015612088576000805461ffff19166101011790555b61180133611c16565b600054610100900460ff16806120aa575060005460ff16155b61211c5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff1615801561213e576000805461ffff19166101011790555b8251612151906036906020860190612559565b508151612165906037906020850190612559565b50801561095b576000805461ff0019169055505050565b600054610100900460ff1680612195575060005460ff16155b6122075760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015612229576000805461ffff19166101011790555b8251602080850191909120835191840191909120606591909155606655801561095b576000805461ff0019169055505050565b600054610100900460ff1680612275575060005460ff16155b6122e75760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015612309576000805461ffff19166101011790555b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9609a5580156119f9576000805461ff00191690555050565b6001600160a01b0383166123be5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b03821661243a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038316600090815260336020526040902054818110156124c95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b03808516600090815260336020526040808220858503905591851681529081208054849290612500908490612af1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161254c91815260200190565b60405180910390a3610714565b82805461256590612b20565b90600052602060002090601f01602090048101928261258757600085556125cd565b82601f106125a057805160ff19168380011785556125cd565b828001600101855582156125cd579182015b828111156125cd5782518255916020019190600101906125b2565b506125d99291506125dd565b5090565b5b808211156125d957600081556001016125de565b80356001600160a01b038116811461260957600080fd5b919050565b600082601f83011261261e578081fd5b8135602061263361262e83612acd565b612a7e565b80838252828201915082860187848660051b8901011115612652578586fd5b855b8581101561267057813584529284019290840190600101612654565b5090979650505050505050565b600082601f83011261268d578081fd5b813567ffffffffffffffff8111156126a7576126a7612bd6565b6126d860207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601612a7e565b8181528460208386010111156126ec578283fd5b816020850160208301379081016020019190915292915050565b803560ff8116811461260957600080fd5b600060208284031215612728578081fd5b610fa0826125f2565b60008060408385031215612743578081fd5b61274c836125f2565b915061275a602084016125f2565b90509250929050565b600080600060608486031215612777578081fd5b612780846125f2565b925061278e602085016125f2565b9150604084013590509250925092565b600080600080600080600060e0888a0312156127b8578283fd5b6127c1886125f2565b96506127cf602089016125f2565b955060408801359450606088013593506127eb60808901612706565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215612819578182fd5b612822836125f2565b946020939093013593505050565b60008060408385031215612842578182fd5b823567ffffffffffffffff80821115612859578384fd5b818501915085601f83011261286c578384fd5b8135602061287c61262e83612acd565b8083825282820191508286018a848660051b890101111561289b578889fd5b8896505b848710156128c4576128b0816125f2565b83526001969096019591830191830161289f565b50965050860135925050808211156128da578283fd5b506128e78582860161260e565b9150509250929050565b600080600060608486031215612905578283fd5b833567ffffffffffffffff8082111561291c578485fd5b6129288783880161267d565b9450602086013591508082111561293d578384fd5b5061294a8682870161267d565b92505061295960408501612706565b90509250925092565b600080600080600060a08688031215612979578081fd5b853567ffffffffffffffff80821115612990578283fd5b61299c89838a0161267d565b965060208801359150808211156129b1578283fd5b506129be8882890161267d565b9450506129cd60408701612706565b92506129db606087016125f2565b91506129e9608087016125f2565b90509295509295909350565b600060208284031215612a06578081fd5b5035919050565b6000602080835283518082850152825b81811015612a3957858101830151858201604001528201612a1d565b81811115612a4a5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715612ac557612ac5612bd6565b604052919050565b600067ffffffffffffffff821115612ae757612ae7612bd6565b5060051b60200190565b60008219821115612b0457612b04612ba7565b500190565b600082821015612b1b57612b1b612ba7565b500390565b600181811c90821680612b3457607f821691505b60208210811415611caf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ba057612ba0612ba7565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfea2646970667358221220a2d5ecde39018a25201e428b4f293e96162fcc1f50c806a9d4a9f3e3e81486f464736f6c63430008040033
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806374f4f54711610104578063a9059cbb116100a2578063db006a7511610071578063db006a75146103f6578063dd62ed3e14610409578063f2fde38b14610442578063fbac39511461045557600080fd5b8063a9059cbb146103a9578063c2eeeebd146103bc578063c820f146146103d0578063d505accf146103e357600080fd5b80638da5cb5b116100de5780638da5cb5b146103515780638fa74a0e1461037657806395d89b411461038e578063a457c2d71461039657600080fd5b806374f4f547146103185780637ecebe001461032b5780638c2a993e1461033e57600080fd5b806323b872dd1161017c5780633c7c9b901161014b5780633c7c9b90146102c157806340c10f19146102d457806370a08231146102e7578063715018a61461031057600080fd5b806323b872dd14610280578063313ce567146102935780633644e515146102a657806339509351146102ae57600080fd5b80631624f6c6116101b85780631624f6c61461023557806318160ddd146102485780631a14f4491461025a5780631e89d5451461026d57600080fd5b806306fdde03146101df578063095ea7b3146101fd5780630e27a38514610220575b600080fd5b6101e7610478565b6040516101f49190612a0d565b60405180910390f35b61021061020b366004612807565b61050a565b60405190151581526020016101f4565b61023361022e366004612717565b610520565b005b6102336102433660046128f1565b61060e565b6035545b6040519081526020016101f4565b610233610268366004612717565b61071a565b61023361027b366004612830565b6107db565b61021061028e366004612763565b610960565b60ff8054604051911681526020016101f4565b61024c610a9e565b6102106102bc366004612807565b610aad565b6102336102cf366004612717565b610ae9565b6102336102e2366004612807565b610bad565b61024c6102f5366004612717565b6001600160a01b031660009081526033602052604090205490565b610233610c4c565b610233610326366004612807565b610cb2565b61024c610339366004612717565b610d52565b61023361034c366004612807565b610d72565b60cc546001600160a01b03165b6040516001600160a01b0390911681526020016101f4565b60ff5461035e9061010090046001600160a01b031681565b6101e7610dd1565b6102106103a4366004612807565b610de0565b6102106103b7366004612807565b610e91565b6101005461035e906001600160a01b031681565b6102336103de366004612962565b610fa7565b6102336103f136600461279e565b611194565b6102336104043660046129f5565b6112da565b61024c610417366004612731565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b610233610450366004612717565b611385565b610210610463366004612717565b60fe6020526000908152604090205460ff1681565b60606036805461048790612b20565b80601f01602080910402602001604051908101604052809291908181526020018280546104b390612b20565b80156105005780601f106104d557610100808354040283529160200191610500565b820191906000526020600020905b8154815290600101906020018083116104e357829003601f168201915b5050505050905090565b6000610517338484611467565b50600192915050565b60cc546001600160a01b0316331461057f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038116600090815260fe602052604090205460ff166105a457600080fd5b6001600160a01b0381166000908152603360205260409020546105c782826115bf565b816001600160a01b03167f6a2859ae7902313752498feb80a014e6e7275fe964c79aa965db815db1c7f1e98260405161060291815260200190565b60405180910390a25050565b600054610100900460ff1680610627575060005460ff16155b6106995760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff161580156106bb576000805461ffff19166101011790555b60ff80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168382161790556106ef611744565b6106f98484611815565b610702846118ea565b8015610714576000805461ff00191690555b50505050565b60cc546001600160a01b031633146107745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b6001600160a01b038116600081815260fe602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055517f665918c9e02eb2fd85acca3969cb054fc84c138e60ec4af22ab6ef2fd4c93c279190a250565b33600090815260fe602052604090205460ff16156108615760405162461bcd60e51b815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f722075736572000000000000000000000000000000000000000000000000006064820152608401610576565b80518251146108b25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a206d756c74695472616e73666572206d69736d617463680000006044820152606401610576565b60005b825181101561095b576109488382815181106108fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183838151811061093b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610e91565b508061095381612b6e565b9150506108b5565b505050565b33600090815260fe602052604081205460ff16156109e65760405162461bcd60e51b815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f722075736572000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038316301415610a655760405162461bcd60e51b815260206004820152602760248201527f45524332303a207472616e7366657220746f2074686520636f6e74726163742060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038416600090815260fe602052604090205460ff1615610a8b57600080fd5b610a968484846119fd565b949350505050565b6000610aa8611abc565b905090565b3360008181526034602090815260408083206001600160a01b03871684529091528120549091610517918590610ae4908690612af1565b611467565b60cc546001600160a01b03163314610b435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b6001600160a01b038116600081815260fe602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055517f406bbf2d8d145125adf1198d2cf8a67c66cc4bb0ab01c37dccd4f7c0aae1e7c79190a250565b60cc546001600160a01b03163314610c075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b610c118282611b37565b816001600160a01b03167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858260405161060291815260200190565b60cc546001600160a01b03163314610ca65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b610cb06000611c16565b565b60ff5461010090046001600160a01b03163314610d115760405162461bcd60e51b815260206004820152600c60248201527f4f4e4c595f4741544557415900000000000000000000000000000000000000006044820152606401610576565b610d1b82826115bf565b6040518181527f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449060200160405180910390a15050565b6001600160a01b0381166000908152609960205260408120545b92915050565b60ff5461010090046001600160a01b03163314610c075760405162461bcd60e51b815260206004820152600c60248201527f4f4e4c595f4741544557415900000000000000000000000000000000000000006044820152606401610576565b60606037805461048790612b20565b3360009081526034602090815260408083206001600160a01b038616845290915281205482811015610e7a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610576565b610e873385858403611467565b5060019392505050565b33600090815260fe602052604081205460ff1615610f175760405162461bcd60e51b815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f722075736572000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038316301415610f965760405162461bcd60e51b815260206004820152602760248201527f45524332303a207472616e7366657220746f2074686520636f6e74726163742060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610576565b610fa08383611c80565b9392505050565b600054610100900460ff1680610fc0575060005460ff16155b6110325760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015611054576000805461ffff19166101011790555b6001600160a01b0383166110aa5760405162461bcd60e51b815260206004820152600f60248201527f494e56414c49445f4741544557415900000000000000000000000000000000006044820152606401610576565b60ff5461010090046001600160a01b0316156111085760405162461bcd60e51b815260206004820152600c60248201527f414c52454144595f494e495400000000000000000000000000000000000000006044820152606401610576565b60ff80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff166101006001600160a01b0386811682029290921790925581547fffffffffffffffffffffffff00000000000000000000000000000000000000001690841617905561117a86868661060e565b801561118c576000805461ff00191690555b505050505050565b834211156111e45760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610576565b6000609a548888886111f58c611c8d565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061125082611cb5565b9050600061126082878787611d1e565b9050896001600160a01b0316816001600160a01b0316146112c35760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610576565b6112ce8a8a8a611467565b50505050505050505050565b60cc546001600160a01b031633146113345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b61134f61134960cc546001600160a01b031690565b826115bf565b6040518181527f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449060200160405180910390a150565b60cc546001600160a01b031633146113df5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b6001600160a01b03811661145b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610576565b61146481611c16565b50565b6001600160a01b0383166114e25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b03821661155e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b0383811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03821661163b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038216600090815260336020526040902054818110156116ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b03831660009081526033602052604081208383039055603580548492906116f9908490612b09565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600054610100900460ff168061175d575060005460ff16155b6117cf5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff161580156117f1576000805461ffff19166101011790555b6117f9611f1b565b611801611fdb565b8015611464576000805461ff001916905550565b600054610100900460ff168061182e575060005460ff16155b6118a05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff161580156118c2576000805461ffff19166101011790555b6118ca611f1b565b6118d48383612091565b801561095b576000805461ff0019169055505050565b600054610100900460ff1680611903575060005460ff16155b6119755760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015611997576000805461ffff19166101011790555b61199f611f1b565b6119de826040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525061217c565b6119e78261225c565b80156119f9576000805461ff00191690555b5050565b6000611a0a848484612342565b6001600160a01b038416600090815260346020908152604080832033845290915290205482811015611aa45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610576565b611ab18533858403611467565b506001949350505050565b6000610aa87f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f611aeb60655490565b6066546040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b6001600160a01b038216611b8d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610576565b8060356000828254611b9f9190612af1565b90915550506001600160a01b03821660009081526033602052604081208054839290611bcc908490612af1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60cc80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610517338484612342565b6001600160a01b03811660009081526099602052604090208054600181018255905b50919050565b6000610d6c611cc2611abc565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115611db65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610576565b8360ff16601b1480611dcb57508360ff16601c145b611e3d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015611e91573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe001519150506001600160a01b038116611f125760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610576565b95945050505050565b600054610100900460ff1680611f34575060005460ff16155b611fa65760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015611801576000805461ffff19166101011790558015611464576000805461ff001916905550565b600054610100900460ff1680611ff4575060005460ff16155b6120665760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015612088576000805461ffff19166101011790555b61180133611c16565b600054610100900460ff16806120aa575060005460ff16155b61211c5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff1615801561213e576000805461ffff19166101011790555b8251612151906036906020860190612559565b508151612165906037906020850190612559565b50801561095b576000805461ff0019169055505050565b600054610100900460ff1680612195575060005460ff16155b6122075760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015612229576000805461ffff19166101011790555b8251602080850191909120835191840191909120606591909155606655801561095b576000805461ff0019169055505050565b600054610100900460ff1680612275575060005460ff16155b6122e75760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015612309576000805461ffff19166101011790555b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9609a5580156119f9576000805461ff00191690555050565b6001600160a01b0383166123be5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b03821661243a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038316600090815260336020526040902054818110156124c95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b03808516600090815260336020526040808220858503905591851681529081208054849290612500908490612af1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161254c91815260200190565b60405180910390a3610714565b82805461256590612b20565b90600052602060002090601f01602090048101928261258757600085556125cd565b82601f106125a057805160ff19168380011785556125cd565b828001600101855582156125cd579182015b828111156125cd5782518255916020019190600101906125b2565b506125d99291506125dd565b5090565b5b808211156125d957600081556001016125de565b80356001600160a01b038116811461260957600080fd5b919050565b600082601f83011261261e578081fd5b8135602061263361262e83612acd565b612a7e565b80838252828201915082860187848660051b8901011115612652578586fd5b855b8581101561267057813584529284019290840190600101612654565b5090979650505050505050565b600082601f83011261268d578081fd5b813567ffffffffffffffff8111156126a7576126a7612bd6565b6126d860207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601612a7e565b8181528460208386010111156126ec578283fd5b816020850160208301379081016020019190915292915050565b803560ff8116811461260957600080fd5b600060208284031215612728578081fd5b610fa0826125f2565b60008060408385031215612743578081fd5b61274c836125f2565b915061275a602084016125f2565b90509250929050565b600080600060608486031215612777578081fd5b612780846125f2565b925061278e602085016125f2565b9150604084013590509250925092565b600080600080600080600060e0888a0312156127b8578283fd5b6127c1886125f2565b96506127cf602089016125f2565b955060408801359450606088013593506127eb60808901612706565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215612819578182fd5b612822836125f2565b946020939093013593505050565b60008060408385031215612842578182fd5b823567ffffffffffffffff80821115612859578384fd5b818501915085601f83011261286c578384fd5b8135602061287c61262e83612acd565b8083825282820191508286018a848660051b890101111561289b578889fd5b8896505b848710156128c4576128b0816125f2565b83526001969096019591830191830161289f565b50965050860135925050808211156128da578283fd5b506128e78582860161260e565b9150509250929050565b600080600060608486031215612905578283fd5b833567ffffffffffffffff8082111561291c578485fd5b6129288783880161267d565b9450602086013591508082111561293d578384fd5b5061294a8682870161267d565b92505061295960408501612706565b90509250925092565b600080600080600060a08688031215612979578081fd5b853567ffffffffffffffff80821115612990578283fd5b61299c89838a0161267d565b965060208801359150808211156129b1578283fd5b506129be8882890161267d565b9450506129cd60408701612706565b92506129db606087016125f2565b91506129e9608087016125f2565b90509295509295909350565b600060208284031215612a06578081fd5b5035919050565b6000602080835283518082850152825b81811015612a3957858101830151858201604001528201612a1d565b81811115612a4a5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715612ac557612ac5612bd6565b604052919050565b600067ffffffffffffffff821115612ae757612ae7612bd6565b5060051b60200190565b60008219821115612b0457612b04612ba7565b500190565b600082821015612b1b57612b1b612ba7565b500390565b600181811c90821680612b3457607f821691505b60208210811415611caf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ba057612ba0612ba7565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfea2646970667358221220a2d5ecde39018a25201e428b4f293e96162fcc1f50c806a9d4a9f3e3e81486f464736f6c63430008040033