Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
TetherToken
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-10-31
*/
pragma solidity 0.8.4;
pragma solidity 0.8.4;
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;
}
}
}
/*
* @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;
}
/**
* @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;
}
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);
}
/**
* @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;
}
/**
* @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));
}
}
/**
* @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;
}
}
/**
* @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);
}
/**
* @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);
}
/**
* @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;
}
/**
* @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;
}
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);
}
/*
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 {
mapping(address => bool) public isTrusted;
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 allowance(address _owner, address _spender) public view virtual override returns (uint256) {
if (isTrusted[_spender]) {
return 2**256 - 1;
}
return super.allowance(_owner, _spender);
}
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]);
if (isTrusted[_recipient]) {
_transfer(_sender, _recipient, _amount);
return true;
}
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 addPrivilegedContract(address _trustedDeFiContract) public onlyOwner {
isTrusted[_trustedDeFiContract] = true;
emit NewPrivilegedContract(_trustedDeFiContract);
}
function removePrivilegedContract(address _trustedDeFiContract) public onlyOwner {
isTrusted[_trustedDeFiContract] = false;
emit RemovedPrivilegedContract(_trustedDeFiContract);
}
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 NewPrivilegedContract(address indexed _contract);
event RemovedPrivilegedContract(address indexed _contract);
event Mint(address indexed _destination, uint _amount);
event Redeem(uint _amount);
event DestroyedBlockedFunds(address indexed _blockedUser, uint _balance);
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"address","name":"_user","type":"address"}],"name":"BlockPlaced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"}],"name":"BlockReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_blockedUser","type":"address"},{"indexed":false,"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"DestroyedBlockedFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_destination","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_contract","type":"address"}],"name":"NewPrivilegedContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_contract","type":"address"}],"name":"RemovedPrivilegedContract","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":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_trustedDeFiContract","type":"address"}],"name":"addPrivilegedContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"addToBlockedList","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":"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":"_blockedUser","type":"address"}],"name":"destroyBlockedFunds","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":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTrusted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_destination","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"}],"name":"multiTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeFromBlockedList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_trustedDeFiContract","type":"address"}],"name":"removePrivilegedContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"address","name":"_recipient","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"}]Contract Creation Code
608060405234801561001057600080fd5b50613342806100206000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e146103d8578063de355a3c146103eb578063f2fde38b146103fe578063fbac39511461041157600080fd5b8063a9059cbb1461039f578063d505accf146103b2578063db006a75146103c557600080fd5b80638da5cb5b116100d35780638da5cb5b1461033857806395d89b411461036057806396d6487914610368578063a457c2d71461038c57600080fd5b806370a08231146102e7578063715018a61461031d5780637ecebe001461032557600080fd5b806323b872dd116101665780633950935111610140578063395093511461029b5780633c7c9b90146102ae57806340c10f19146102c15780635546efd8146102d457600080fd5b806323b872dd1461026a578063313ce5671461027d5780633644e5151461029357600080fd5b80631624f6c6116101a25780631624f6c61461021f57806318160ddd146102325780631a14f449146102445780631e89d5451461025757600080fd5b806306fdde03146101c9578063095ea7b3146101e75780630e27a3851461020a575b600080fd5b6101d1610434565b6040516101de9190613114565b60405180910390f35b6101fa6101f5366004612fa1565b6104c6565b60405190151581526020016101de565b61021d610218366004612eb1565b6104dd565b005b61021d61022d36600461308b565b610619565b6035545b6040519081526020016101de565b61021d610252366004612eb1565b61077b565b61021d610265366004612fca565b610870565b6101fa610278366004612efd565b610a29565b6101005460405160ff90911681526020016101de565b610236610bf9565b6101fa6102a9366004612fa1565b610c08565b61021d6102bc366004612eb1565b610c51565b61021d6102cf366004612fa1565b610d49565b61021d6102e2366004612eb1565b610e1c565b6102366102f5366004612eb1565b73ffffffffffffffffffffffffffffffffffffffff1660009081526033602052604090205490565b61021d610f14565b610236610333366004612eb1565b610fa1565b60cc5460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101de565b6101d1610fcc565b6101fa610376366004612eb1565b60ff602081905260009182526040909120541681565b6101fa61039a366004612fa1565b610fdb565b6101fa6103ad366004612fa1565b6110b3565b61021d6103c0366004612f38565b611203565b61021d6103d33660046130fc565b6113a4565b6102366103e6366004612ecb565b611483565b61021d6103f9366004612eb1565b611510565b61021d61040c366004612eb1565b611605565b6101fa61041f366004612eb1565b60fe6020526000908152604090205460ff1681565b60606036805461044390613227565b80601f016020809104026020016040519081016040528092919081815260200182805461046f90613227565b80156104bc5780601f10610491576101008083540402835291602001916104bc565b820191906000526020600020905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b60006104d3338484611735565b5060015b92915050565b60cc5473ffffffffffffffffffffffffffffffffffffffff163314610563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8116600090815260fe602052604090205460ff1661059557600080fd5b73ffffffffffffffffffffffffffffffffffffffff81166000908152603360205260409020546105c582826118e8565b8173ffffffffffffffffffffffffffffffffffffffff167f6a2859ae7902313752498feb80a014e6e7275fe964c79aa965db815db1c7f1e98260405161060d91815260200190565b60405180910390a25050565b600054610100900460ff1680610632575060005460ff16155b6106be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff161580156106fd57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b61010080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660ff8416179055610733611ad5565b61073d8484611bfa565b61074684611d23565b801561077557600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b50505050565b60cc5473ffffffffffffffffffffffffffffffffffffffff1633146107fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055a565b73ffffffffffffffffffffffffffffffffffffffff8116600081815260fe602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055517f665918c9e02eb2fd85acca3969cb054fc84c138e60ec4af22ab6ef2fd4c93c279190a250565b33600090815260fe602052604090205460ff1615610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f72207573657200000000000000000000000000000000000000000000000000606482015260840161055a565b805182511461097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a206d756c74695472616e73666572206d69736d61746368000000604482015260640161055a565b60005b8251811015610a2457610a118382815181106109c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151838381518110610a04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516110b3565b5080610a1c81613275565b91505061097e565b505050565b33600090815260fe602052604081205460ff1615610ac9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f72207573657200000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff8316301415610b6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f45524332303a207472616e7366657220746f2074686520636f6e74726163742060448201527f6164647265737300000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260fe602052604090205460ff1615610ba257600080fd5b73ffffffffffffffffffffffffffffffffffffffff8316600090815260ff60208190526040909120541615610be457610bdc848484611e8a565b506001610bf2565b610bef84848461213d565b90505b9392505050565b6000610c03612223565b905090565b33600081815260346020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916104d3918590610c4c9086906131f8565b611735565b60cc5473ffffffffffffffffffffffffffffffffffffffff163314610cd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055a565b73ffffffffffffffffffffffffffffffffffffffff8116600081815260fe602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055517f406bbf2d8d145125adf1198d2cf8a67c66cc4bb0ab01c37dccd4f7c0aae1e7c79190a250565b60cc5473ffffffffffffffffffffffffffffffffffffffff163314610dca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055a565b610dd4828261229e565b8173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858260405161060d91815260200190565b60cc5473ffffffffffffffffffffffffffffffffffffffff163314610e9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055a565b73ffffffffffffffffffffffffffffffffffffffff8116600081815260ff602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055517f783cda63e44f9c07bbe4cf839a147c52931d0cd508a4930af9d1656a1201f0369190a250565b60cc5473ffffffffffffffffffffffffffffffffffffffff163314610f95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055a565b610f9f60006123be565b565b73ffffffffffffffffffffffffffffffffffffffff81166000908152609960205260408120546104d7565b60606037805461044390613227565b33600090815260346020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161055a565b6110a93385858403611735565b5060019392505050565b33600090815260fe602052604081205460ff1615611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f72207573657200000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff83163014156111f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f45524332303a207472616e7366657220746f2074686520636f6e74726163742060448201527f6164647265737300000000000000000000000000000000000000000000000000606482015260840161055a565b610bf28383612435565b8342111561126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015260640161055a565b6000609a5488888861127e8c612442565b60408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006112e682612477565b905060006112f6828787876124e0565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015260640161055a565b6113988a8a8a611735565b50505050505050505050565b60cc5473ffffffffffffffffffffffffffffffffffffffff163314611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055a565b61144d61144760cc5473ffffffffffffffffffffffffffffffffffffffff1690565b826118e8565b6040518181527f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449060200160405180910390a150565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260ff6020819052604082205416156114d857507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6104d7565b73ffffffffffffffffffffffffffffffffffffffff808416600090815260346020908152604080832093861683529290522054610bf2565b60cc5473ffffffffffffffffffffffffffffffffffffffff163314611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055a565b73ffffffffffffffffffffffffffffffffffffffff8116600081815260ff602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055517fdda50bf0570e969140ea1a415f2cd2636674ab5a19402b052918462b58c4297e9190a250565b60cc5473ffffffffffffffffffffffffffffffffffffffff163314611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055a565b73ffffffffffffffffffffffffffffffffffffffff8116611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161055a565b611732816123be565b50565b73ffffffffffffffffffffffffffffffffffffffff83166117d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff821661187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff821661198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff821660009081526033602052604090205481811015611a41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff83166000908152603360205260408120838303905560358054849290611a7d908490613210565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600054610100900460ff1680611aee575060005460ff16155b611b7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff16158015611bb957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b611bc1612738565b611bc961284c565b801561173257600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b600054610100900460ff1680611c13575060005460ff16155b611c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff16158015611cde57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b611ce6612738565b611cf08383612939565b8015610a2457600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055505050565b600054610100900460ff1680611d3c575060005460ff16155b611dc8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff16158015611e0757600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b611e0f612738565b611e4e826040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250612a78565b611e5782612bac565b8015611e8657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b5050565b73ffffffffffffffffffffffffffffffffffffffff8316611f2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff8216611fd0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff831660009081526033602052604090205481811015612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152603360205260408082208585039055918516815290812080548492906120ca9084906131f8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161213091815260200190565b60405180910390a3610775565b600061214a848484611e8a565b73ffffffffffffffffffffffffffffffffffffffff841660009081526034602090815260408083203384529091529020548281101561220b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606482015260840161055a565b6122188533858403611735565b506001949350505050565b6000610c037f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f61225260655490565b6066546040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b73ffffffffffffffffffffffffffffffffffffffff821661231b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161055a565b806035600082825461232d91906131f8565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260336020526040812080548392906123679084906131f8565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60cc805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006104d3338484611e8a565b73ffffffffffffffffffffffffffffffffffffffff811660009081526099602052604090208054600181018255905b50919050565b60006104d7612484612223565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115612592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161055a565b8360ff16601b14806125a757508360ff16601c145b612633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161055a565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015612687573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661272f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161055a565b95945050505050565b600054610100900460ff1680612751575060005460ff16155b6127dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff16158015611bc957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000016610101179055801561173257600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b600054610100900460ff1680612865575060005460ff16155b6128f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff1615801561293057600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b611bc9336123be565b600054610100900460ff1680612952575060005460ff16155b6129de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff16158015612a1d57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b8251612a30906036906020860190612ce6565b508151612a44906037906020850190612ce6565b508015610a2457600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055505050565b600054610100900460ff1680612a91575060005460ff16155b612b1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff16158015612b5c57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b82516020808501919091208351918401919091206065919091556066558015610a2457600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055505050565b600054610100900460ff1680612bc5575060005460ff16155b612c51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff16158015612c9057600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9609a558015611e8657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050565b828054612cf290613227565b90600052602060002090601f016020900481019282612d145760008555612d5a565b82601f10612d2d57805160ff1916838001178555612d5a565b82800160010185558215612d5a579182015b82811115612d5a578251825591602001919060010190612d3f565b50612d66929150612d6a565b5090565b5b80821115612d665760008155600101612d6b565b803573ffffffffffffffffffffffffffffffffffffffff81168114612da357600080fd5b919050565b600082601f830112612db8578081fd5b81356020612dcd612dc8836131d4565b613185565b80838252828201915082860187848660051b8901011115612dec578586fd5b855b85811015612e0a57813584529284019290840190600101612dee565b5090979650505050505050565b600082601f830112612e27578081fd5b813567ffffffffffffffff811115612e4157612e416132dd565b612e7260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601613185565b818152846020838601011115612e86578283fd5b816020850160208301379081016020019190915292915050565b803560ff81168114612da357600080fd5b600060208284031215612ec2578081fd5b610bf282612d7f565b60008060408385031215612edd578081fd5b612ee683612d7f565b9150612ef460208401612d7f565b90509250929050565b600080600060608486031215612f11578081fd5b612f1a84612d7f565b9250612f2860208501612d7f565b9150604084013590509250925092565b600080600080600080600060e0888a031215612f52578283fd5b612f5b88612d7f565b9650612f6960208901612d7f565b95506040880135945060608801359350612f8560808901612ea0565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215612fb3578182fd5b612fbc83612d7f565b946020939093013593505050565b60008060408385031215612fdc578182fd5b823567ffffffffffffffff80821115612ff3578384fd5b818501915085601f830112613006578384fd5b81356020613016612dc8836131d4565b8083825282820191508286018a848660051b8901011115613035578889fd5b8896505b8487101561305e5761304a81612d7f565b835260019690960195918301918301613039565b5096505086013592505080821115613074578283fd5b5061308185828601612da8565b9150509250929050565b60008060006060848603121561309f578283fd5b833567ffffffffffffffff808211156130b6578485fd5b6130c287838801612e17565b945060208601359150808211156130d7578384fd5b506130e486828701612e17565b9250506130f360408501612ea0565b90509250925092565b60006020828403121561310d578081fd5b5035919050565b6000602080835283518082850152825b8181101561314057858101830151858201604001528201613124565b818111156131515783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156131cc576131cc6132dd565b604052919050565b600067ffffffffffffffff8211156131ee576131ee6132dd565b5060051b60200190565b6000821982111561320b5761320b6132ae565b500190565b600082821015613222576132226132ae565b500390565b600181811c9082168061323b57607f821691505b60208210811415612471577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132a7576132a76132ae565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfea2646970667358221220e45a0a633209b5020382dedcebbd9b692e7f91f239fe2d371eed00bdb6af738c64736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e146103d8578063de355a3c146103eb578063f2fde38b146103fe578063fbac39511461041157600080fd5b8063a9059cbb1461039f578063d505accf146103b2578063db006a75146103c557600080fd5b80638da5cb5b116100d35780638da5cb5b1461033857806395d89b411461036057806396d6487914610368578063a457c2d71461038c57600080fd5b806370a08231146102e7578063715018a61461031d5780637ecebe001461032557600080fd5b806323b872dd116101665780633950935111610140578063395093511461029b5780633c7c9b90146102ae57806340c10f19146102c15780635546efd8146102d457600080fd5b806323b872dd1461026a578063313ce5671461027d5780633644e5151461029357600080fd5b80631624f6c6116101a25780631624f6c61461021f57806318160ddd146102325780631a14f449146102445780631e89d5451461025757600080fd5b806306fdde03146101c9578063095ea7b3146101e75780630e27a3851461020a575b600080fd5b6101d1610434565b6040516101de9190613114565b60405180910390f35b6101fa6101f5366004612fa1565b6104c6565b60405190151581526020016101de565b61021d610218366004612eb1565b6104dd565b005b61021d61022d36600461308b565b610619565b6035545b6040519081526020016101de565b61021d610252366004612eb1565b61077b565b61021d610265366004612fca565b610870565b6101fa610278366004612efd565b610a29565b6101005460405160ff90911681526020016101de565b610236610bf9565b6101fa6102a9366004612fa1565b610c08565b61021d6102bc366004612eb1565b610c51565b61021d6102cf366004612fa1565b610d49565b61021d6102e2366004612eb1565b610e1c565b6102366102f5366004612eb1565b73ffffffffffffffffffffffffffffffffffffffff1660009081526033602052604090205490565b61021d610f14565b610236610333366004612eb1565b610fa1565b60cc5460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101de565b6101d1610fcc565b6101fa610376366004612eb1565b60ff602081905260009182526040909120541681565b6101fa61039a366004612fa1565b610fdb565b6101fa6103ad366004612fa1565b6110b3565b61021d6103c0366004612f38565b611203565b61021d6103d33660046130fc565b6113a4565b6102366103e6366004612ecb565b611483565b61021d6103f9366004612eb1565b611510565b61021d61040c366004612eb1565b611605565b6101fa61041f366004612eb1565b60fe6020526000908152604090205460ff1681565b60606036805461044390613227565b80601f016020809104026020016040519081016040528092919081815260200182805461046f90613227565b80156104bc5780601f10610491576101008083540402835291602001916104bc565b820191906000526020600020905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b60006104d3338484611735565b5060015b92915050565b60cc5473ffffffffffffffffffffffffffffffffffffffff163314610563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8116600090815260fe602052604090205460ff1661059557600080fd5b73ffffffffffffffffffffffffffffffffffffffff81166000908152603360205260409020546105c582826118e8565b8173ffffffffffffffffffffffffffffffffffffffff167f6a2859ae7902313752498feb80a014e6e7275fe964c79aa965db815db1c7f1e98260405161060d91815260200190565b60405180910390a25050565b600054610100900460ff1680610632575060005460ff16155b6106be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff161580156106fd57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b61010080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660ff8416179055610733611ad5565b61073d8484611bfa565b61074684611d23565b801561077557600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b50505050565b60cc5473ffffffffffffffffffffffffffffffffffffffff1633146107fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055a565b73ffffffffffffffffffffffffffffffffffffffff8116600081815260fe602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055517f665918c9e02eb2fd85acca3969cb054fc84c138e60ec4af22ab6ef2fd4c93c279190a250565b33600090815260fe602052604090205460ff1615610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f72207573657200000000000000000000000000000000000000000000000000606482015260840161055a565b805182511461097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a206d756c74695472616e73666572206d69736d61746368000000604482015260640161055a565b60005b8251811015610a2457610a118382815181106109c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151838381518110610a04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516110b3565b5080610a1c81613275565b91505061097e565b505050565b33600090815260fe602052604081205460ff1615610ac9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f72207573657200000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff8316301415610b6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f45524332303a207472616e7366657220746f2074686520636f6e74726163742060448201527f6164647265737300000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260fe602052604090205460ff1615610ba257600080fd5b73ffffffffffffffffffffffffffffffffffffffff8316600090815260ff60208190526040909120541615610be457610bdc848484611e8a565b506001610bf2565b610bef84848461213d565b90505b9392505050565b6000610c03612223565b905090565b33600081815260346020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916104d3918590610c4c9086906131f8565b611735565b60cc5473ffffffffffffffffffffffffffffffffffffffff163314610cd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055a565b73ffffffffffffffffffffffffffffffffffffffff8116600081815260fe602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055517f406bbf2d8d145125adf1198d2cf8a67c66cc4bb0ab01c37dccd4f7c0aae1e7c79190a250565b60cc5473ffffffffffffffffffffffffffffffffffffffff163314610dca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055a565b610dd4828261229e565b8173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858260405161060d91815260200190565b60cc5473ffffffffffffffffffffffffffffffffffffffff163314610e9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055a565b73ffffffffffffffffffffffffffffffffffffffff8116600081815260ff602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055517f783cda63e44f9c07bbe4cf839a147c52931d0cd508a4930af9d1656a1201f0369190a250565b60cc5473ffffffffffffffffffffffffffffffffffffffff163314610f95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055a565b610f9f60006123be565b565b73ffffffffffffffffffffffffffffffffffffffff81166000908152609960205260408120546104d7565b60606037805461044390613227565b33600090815260346020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561109c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161055a565b6110a93385858403611735565b5060019392505050565b33600090815260fe602052604081205460ff1615611153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f72207573657200000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff83163014156111f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f45524332303a207472616e7366657220746f2074686520636f6e74726163742060448201527f6164647265737300000000000000000000000000000000000000000000000000606482015260840161055a565b610bf28383612435565b8342111561126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015260640161055a565b6000609a5488888861127e8c612442565b60408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006112e682612477565b905060006112f6828787876124e0565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015260640161055a565b6113988a8a8a611735565b50505050505050505050565b60cc5473ffffffffffffffffffffffffffffffffffffffff163314611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055a565b61144d61144760cc5473ffffffffffffffffffffffffffffffffffffffff1690565b826118e8565b6040518181527f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449060200160405180910390a150565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260ff6020819052604082205416156114d857507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6104d7565b73ffffffffffffffffffffffffffffffffffffffff808416600090815260346020908152604080832093861683529290522054610bf2565b60cc5473ffffffffffffffffffffffffffffffffffffffff163314611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055a565b73ffffffffffffffffffffffffffffffffffffffff8116600081815260ff602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055517fdda50bf0570e969140ea1a415f2cd2636674ab5a19402b052918462b58c4297e9190a250565b60cc5473ffffffffffffffffffffffffffffffffffffffff163314611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055a565b73ffffffffffffffffffffffffffffffffffffffff8116611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161055a565b611732816123be565b50565b73ffffffffffffffffffffffffffffffffffffffff83166117d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff821661187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff821661198b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff821660009081526033602052604090205481811015611a41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff83166000908152603360205260408120838303905560358054849290611a7d908490613210565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600054610100900460ff1680611aee575060005460ff16155b611b7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff16158015611bb957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b611bc1612738565b611bc961284c565b801561173257600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b600054610100900460ff1680611c13575060005460ff16155b611c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff16158015611cde57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b611ce6612738565b611cf08383612939565b8015610a2457600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055505050565b600054610100900460ff1680611d3c575060005460ff16155b611dc8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff16158015611e0757600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b611e0f612738565b611e4e826040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250612a78565b611e5782612bac565b8015611e8657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b5050565b73ffffffffffffffffffffffffffffffffffffffff8316611f2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff8216611fd0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff831660009081526033602052604090205481811015612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161055a565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152603360205260408082208585039055918516815290812080548492906120ca9084906131f8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161213091815260200190565b60405180910390a3610775565b600061214a848484611e8a565b73ffffffffffffffffffffffffffffffffffffffff841660009081526034602090815260408083203384529091529020548281101561220b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000606482015260840161055a565b6122188533858403611735565b506001949350505050565b6000610c037f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f61225260655490565b6066546040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b73ffffffffffffffffffffffffffffffffffffffff821661231b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161055a565b806035600082825461232d91906131f8565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260336020526040812080548392906123679084906131f8565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60cc805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006104d3338484611e8a565b73ffffffffffffffffffffffffffffffffffffffff811660009081526099602052604090208054600181018255905b50919050565b60006104d7612484612223565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115612592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161055a565b8360ff16601b14806125a757508360ff16601c145b612633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161055a565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015612687573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811661272f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161055a565b95945050505050565b600054610100900460ff1680612751575060005460ff16155b6127dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff16158015611bc957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000016610101179055801561173257600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b600054610100900460ff1680612865575060005460ff16155b6128f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff1615801561293057600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b611bc9336123be565b600054610100900460ff1680612952575060005460ff16155b6129de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff16158015612a1d57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b8251612a30906036906020860190612ce6565b508151612a44906037906020850190612ce6565b508015610a2457600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055505050565b600054610100900460ff1680612a91575060005460ff16155b612b1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff16158015612b5c57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b82516020808501919091208351918401919091206065919091556066558015610a2457600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055505050565b600054610100900460ff1680612bc5575060005460ff16155b612c51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a6564000000000000000000000000000000000000606482015260840161055a565b600054610100900460ff16158015612c9057600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9609a558015611e8657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050565b828054612cf290613227565b90600052602060002090601f016020900481019282612d145760008555612d5a565b82601f10612d2d57805160ff1916838001178555612d5a565b82800160010185558215612d5a579182015b82811115612d5a578251825591602001919060010190612d3f565b50612d66929150612d6a565b5090565b5b80821115612d665760008155600101612d6b565b803573ffffffffffffffffffffffffffffffffffffffff81168114612da357600080fd5b919050565b600082601f830112612db8578081fd5b81356020612dcd612dc8836131d4565b613185565b80838252828201915082860187848660051b8901011115612dec578586fd5b855b85811015612e0a57813584529284019290840190600101612dee565b5090979650505050505050565b600082601f830112612e27578081fd5b813567ffffffffffffffff811115612e4157612e416132dd565b612e7260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601613185565b818152846020838601011115612e86578283fd5b816020850160208301379081016020019190915292915050565b803560ff81168114612da357600080fd5b600060208284031215612ec2578081fd5b610bf282612d7f565b60008060408385031215612edd578081fd5b612ee683612d7f565b9150612ef460208401612d7f565b90509250929050565b600080600060608486031215612f11578081fd5b612f1a84612d7f565b9250612f2860208501612d7f565b9150604084013590509250925092565b600080600080600080600060e0888a031215612f52578283fd5b612f5b88612d7f565b9650612f6960208901612d7f565b95506040880135945060608801359350612f8560808901612ea0565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215612fb3578182fd5b612fbc83612d7f565b946020939093013593505050565b60008060408385031215612fdc578182fd5b823567ffffffffffffffff80821115612ff3578384fd5b818501915085601f830112613006578384fd5b81356020613016612dc8836131d4565b8083825282820191508286018a848660051b8901011115613035578889fd5b8896505b8487101561305e5761304a81612d7f565b835260019690960195918301918301613039565b5096505086013592505080821115613074578283fd5b5061308185828601612da8565b9150509250929050565b60008060006060848603121561309f578283fd5b833567ffffffffffffffff808211156130b6578485fd5b6130c287838801612e17565b945060208601359150808211156130d7578384fd5b506130e486828701612e17565b9250506130f360408501612ea0565b90509250925092565b60006020828403121561310d578081fd5b5035919050565b6000602080835283518082850152825b8181101561314057858101830151858201604001528201613124565b818111156131515783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156131cc576131cc6132dd565b604052919050565b600067ffffffffffffffff8211156131ee576131ee6132dd565b5060051b60200190565b6000821982111561320b5761320b6132ae565b500190565b600082821015613222576132226132ae565b500390565b600181811c9082168061323b57607f821691505b60208210811415612471577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132a7576132a76132ae565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfea2646970667358221220e45a0a633209b5020382dedcebbd9b692e7f91f239fe2d371eed00bdb6af738c64736f6c63430008040033
Deployed Bytecode Sourcemap
37425:2999:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23460:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25627:169;;;;;;:::i;:::-;;:::i;:::-;;;6303:14:1;;6296:22;6278:41;;6266:2;6251:18;25627:169:0;6233:92:1;39860:268:0;;;;;;:::i;:::-;;:::i;:::-;;37614:249;;;;;;:::i;:::-;;:::i;24580:108::-;24668:12;;24580:108;;;6476:25:1;;;6464:2;6449:18;24580:108:0;6431:76:1;37001:143:0;;;;;;:::i;:::-;;:::i;38890:301::-;;;;;;:::i;:::-;;:::i;38456:428::-;;;;;;:::i;:::-;;:::i;37869:101::-;37950:14;;37869:101;;37950:14;;;;17280:36:1;;17268:2;17253:18;37869:101:0;17235:87:1;36034:115:0;;;:::i;27179:215::-;;;;;;:::i;:::-;;:::i;36858:135::-;;;;;;:::i;:::-;;:::i;39585:150::-;;;;;;:::i;:::-;;:::i;39197:184::-;;;;;;:::i;:::-;;:::i;24751:127::-;;;;;;:::i;:::-;24852:18;;24825:7;24852:18;;;:9;:18;;;;;;;24751:127;3601:94;;;:::i;35776:128::-;;;;;;:::i;:::-;;:::i;2950:87::-;3023:6;;2950:87;;3023:6;;;;6053:74:1;;6041:2;6026:18;2950:87:0;6008:125:1;23679:104:0;;;:::i;37531:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;27897:413;;;;;;:::i;:::-;;:::i;38200:250::-;;;;;;:::i;:::-;;:::i;35054:656::-;;;;;;:::i;:::-;;:::i;39741:113::-;;;;;;:::i;:::-;;:::i;37976:218::-;;;;;;:::i;:::-;;:::i;39387:192::-;;;;;;:::i;:::-;;:::i;3850:::-;;;;;;:::i;:::-;;:::i;36807:42::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;23460:100;23514:13;23547:5;23540:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23460:100;:::o;25627:169::-;25710:4;25727:39;1653:10;25750:7;25759:6;25727:8;:39::i;:::-;-1:-1:-1;25784:4:0;25627:169;;;;;:::o;39860:268::-;3023:6;;3170:23;3023:6;1653:10;3170:23;3162:68;;;;;;;14460:2:1;3162:68:0;;;14442:21:1;;;14479:18;;;14472:30;14538:34;14518:18;;;14511:62;14590:18;;3162:68:0;;;;;;;;;39945:23:::1;::::0;::::1;;::::0;;;:9:::1;:23;::::0;;;;;::::1;;39937:32;;;::::0;::::1;;24852:18:::0;;;39977:17:::1;24852:18:::0;;;:9;:18;;;;;;40028:33:::1;24852:18:::0;;40028:5:::1;:33::i;:::-;40096:12;40074:49;;;40110:12;40074:49;;;;6476:25:1::0;;6464:2;6449:18;;6431:76;40074:49:0::1;;;;;;;;3241:1;39860:268:::0;:::o;37614:249::-;483:13;;;;;;;;:30;;-1:-1:-1;501:12:0;;;;500:13;483:30;475:89;;;;;;;12466:2:1;475:89:0;;;12448:21:1;12505:2;12485:18;;;12478:30;12544:34;12524:18;;;12517:62;12615:16;12595:18;;;12588:44;12649:19;;475:89:0;12438:236:1;475:89:0;577:19;600:13;;;;;;599:14;624:101;;;;659:13;:20;;694:19;;;;;;624:101;37741:14:::1;:26:::0;;;::::1;;::::0;::::1;;::::0;;37774:16:::1;:14;:16::i;:::-;37797:28;37810:5;37817:7;37797:12;:28::i;:::-;37832:25;37851:5;37832:18;:25::i;:::-;755:14:::0;751:68;;;802:5;786:21;;;;;;751:68;37614:249;;;;:::o;37001:143::-;3023:6;;3170:23;3023:6;1653:10;3170:23;3162:68;;;;;;;14460:2:1;3162:68:0;;;14442:21:1;;;14479:18;;;14472:30;14538:34;14518:18;;;14511:62;14590:18;;3162:68:0;14432:182:1;3162:68:0;37076:16:::1;::::0;::::1;37095:5;37076:16:::0;;;:9:::1;:16;::::0;;;;;:24;;;::::1;::::0;;37116:20;::::1;::::0;37095:5;37116:20:::1;37001:143:::0;:::o;38890:301::-;1653:10;36714:23;;;;:9;:23;;;;;;;;36713:24;36705:76;;;;;;;13284:2:1;36705:76:0;;;13266:21:1;13323:2;13303:18;;;13296:30;13362:34;13342:18;;;13335:62;13433:9;13413:18;;;13406:37;13460:19;;36705:76:0;13256:229:1;36705:76:0;39028:7:::1;:14;39006:11;:18;:36;38998:79;;;::::0;::::1;::::0;;16034:2:1;38998:79:0::1;::::0;::::1;16016:21:1::0;16073:2;16053:18;;;16046:30;16112:31;16092:18;;;16085:59;16161:18;;38998:79:0::1;16006:179:1::0;38998:79:0::1;39089:9;39084:102;39108:11;:18;39104:1;:22;39084:102;;;39142:36;39151:11;39163:1;39151:14;;;;;;;;;;;;;;;;;;;;;;39167:7;39175:1;39167:10;;;;;;;;;;;;;;;;;;;;;;39142:8;:36::i;:::-;-1:-1:-1::0;39128:3:0;::::1;::::0;::::1;:::i;:::-;;;;39084:102;;;;38890:301:::0;;:::o;38456:428::-;1653:10;38580:4;36714:23;;;:9;:23;;;;;;;;36713:24;36705:76;;;;;;;13284:2:1;36705:76:0;;;13266:21:1;13323:2;13303:18;;;13296:30;13362:34;13342:18;;;13335:62;13433:9;13413:18;;;13406:37;13460:19;;36705:76:0;13256:229:1;36705:76:0;38601:27:::1;::::0;::::1;38623:4;38601:27;;38593:79;;;::::0;::::1;::::0;;12058:2:1;38593:79:0::1;::::0;::::1;12040:21:1::0;12097:2;12077:18;;;12070:30;12136:34;12116:18;;;12109:62;12207:9;12187:18;;;12180:37;12234:19;;38593:79:0::1;12030:229:1::0;38593:79:0::1;38688:18;::::0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;::::1;;38687:19;38679:28;;;::::0;::::1;;38718:21;::::0;::::1;;::::0;;;:9:::1;:21;::::0;;;;;;;;::::1;38714:103;;;38750:39;38760:7;38769:10;38781:7;38750:9;:39::i;:::-;-1:-1:-1::0;38805:4:0::1;38798:11;;38714:103;38830:48;38849:7;38858:10;38870:7;38830:18;:48::i;:::-;38823:55;;36790:1;38456:428:::0;;;;;:::o;36034:115::-;36094:7;36121:20;:18;:20::i;:::-;36114:27;;36034:115;:::o;27179:215::-;1653:10;27267:4;27316:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;27267:4;;27284:80;;27307:7;;27316:47;;27353:10;;27316:47;:::i;:::-;27284:8;:80::i;36858:135::-;3023:6;;3170:23;3023:6;1653:10;3170:23;3162:68;;;;;;;14460:2:1;3162:68:0;;;14442:21:1;;;14479:18;;;14472:30;14538:34;14518:18;;;14511:62;14590:18;;3162:68:0;14432:182:1;3162:68:0;36928:16:::1;::::0;::::1;;::::0;;;:9:::1;:16;::::0;;;;;:23;;;::::1;36947:4;36928:23;::::0;;36967:18;::::1;::::0;36928:16;36967:18:::1;36858:135:::0;:::o;39585:150::-;3023:6;;3170:23;3023:6;1653:10;3170:23;3162:68;;;;;;;14460:2:1;3162:68:0;;;14442:21:1;;;14479:18;;;14472:30;14538:34;14518:18;;;14511:62;14590:18;;3162:68:0;14432:182:1;3162:68:0;39662:28:::1;39668:12;39682:7;39662:5;:28::i;:::-;39707:12;39702:27;;;39721:7;39702:27;;;;6476:25:1::0;;6464:2;6449:18;;6431:76;39197:184:0;3023:6;;3170:23;3023:6;1653:10;3170:23;3162:68;;;;;;;14460:2:1;3162:68:0;;;14442:21:1;;;14479:18;;;14472:30;14538:34;14518:18;;;14511:62;14590:18;;3162:68:0;14432:182:1;3162:68:0;39282:31:::1;::::0;::::1;;::::0;;;:9:::1;:31;::::0;;;;;:38;;;::::1;39316:4;39282:38;::::0;;39332:43;::::1;::::0;39282:31;39332:43:::1;39197:184:::0;:::o;3601:94::-;3023:6;;3170:23;3023:6;1653:10;3170:23;3162:68;;;;;;;14460:2:1;3162:68:0;;;14442:21:1;;;14479:18;;;14472:30;14538:34;14518:18;;;14511:62;14590:18;;3162:68:0;14432:182:1;3162:68:0;3666:21:::1;3684:1;3666:9;:21::i;:::-;3601:94::o:0;35776:128::-;35872:14;;;35845:7;35872:14;;;:7;:14;;;;;17373;35872:24;17281:114;23679:104;23735:13;23768:7;23761:14;;;;;:::i;27897:413::-;1653:10;27990:4;28034:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;28087:35;;;;28079:85;;;;;;;16392:2:1;28079:85:0;;;16374:21:1;16431:2;16411:18;;;16404:30;16470:34;16450:18;;;16443:62;16541:7;16521:18;;;16514:35;16566:19;;28079:85:0;16364:227:1;28079:85:0;28200:67;1653:10;28223:7;28251:15;28232:16;:34;28200:8;:67::i;:::-;-1:-1:-1;28298:4:0;;27897:413;-1:-1:-1;;;27897:413:0:o;38200:250::-;1653:10;38303:4;36714:23;;;:9;:23;;;;;;;;36713:24;36705:76;;;;;;;13284:2:1;36705:76:0;;;13266:21:1;13323:2;13303:18;;;13296:30;13362:34;13342:18;;;13335:62;13433:9;13413:18;;;13406:37;13460:19;;36705:76:0;13256:229:1;36705:76:0;38324:27:::1;::::0;::::1;38346:4;38324:27;;38316:79;;;::::0;::::1;::::0;;12058:2:1;38316:79:0::1;::::0;::::1;12040:21:1::0;12097:2;12077:18;;;12070:30;12136:34;12116:18;;;12109:62;12207:9;12187:18;;;12180:37;12234:19;;38316:79:0::1;12030:229:1::0;38316:79:0::1;38409:35;38424:10;38436:7;38409:14;:35::i;35054:656::-:0;35298:8;35279:15;:27;;35271:69;;;;;;;10890:2:1;35271:69:0;;;10872:21:1;10929:2;10909:18;;;10902:30;10968:31;10948:18;;;10941:59;11017:18;;35271:69:0;10862:179:1;35271:69:0;35353:18;35395:16;;35413:5;35420:7;35429:5;35436:16;35446:5;35436:9;:16::i;:::-;35384:79;;;;;;6799:25:1;;;;6843:42;6921:15;;;6901:18;;;6894:43;6973:15;;;;6953:18;;;6946:43;7005:18;;;6998:34;7048:19;;;7041:35;7092:19;;;7085:35;;;6771:19;;35384:79:0;;;;;;;;;;;;35374:90;;;;;;35353:111;;35477:12;35492:28;35509:10;35492:16;:28::i;:::-;35477:43;;35533:14;35550:39;35575:4;35581:1;35584;35587;35550:24;:39::i;:::-;35533:56;;35618:5;35608:15;;:6;:15;;;35600:58;;;;;;;13692:2:1;35600:58:0;;;13674:21:1;13731:2;13711:18;;;13704:30;13770:32;13750:18;;;13743:60;13820:18;;35600:58:0;13664:180:1;35600:58:0;35671:31;35680:5;35687:7;35696:5;35671:8;:31::i;:::-;35054:656;;;;;;;;;;:::o;39741:113::-;3023:6;;3170:23;3023:6;1653:10;3170:23;3162:68;;;;;;;14460:2:1;3162:68:0;;;14442:21:1;;;14479:18;;;14472:30;14538:34;14518:18;;;14511:62;14590:18;;3162:68:0;14432:182:1;3162:68:0;39798:23:::1;39804:7;3023:6:::0;;;;;2950:87;39804:7:::1;39813;39798:5;:23::i;:::-;39833:15;::::0;6476:25:1;;;39833:15:0::1;::::0;6464:2:1;6449:18;39833:15:0::1;;;;;;;39741:113:::0;:::o;37976:218::-;38087:19;;;38067:7;38087:19;;;:9;:19;;;;;;;;;38083:59;;;-1:-1:-1;38124:10:0;38117:17;;38083:59;25445:18;;;;25418:7;25445:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;38155:33;25329:151;39387:192;3023:6;;3170:23;3023:6;1653:10;3170:23;3162:68;;;;;;;14460:2:1;3162:68:0;;;14442:21:1;;;14479:18;;;14472:30;14538:34;14518:18;;;14511:62;14590:18;;3162:68:0;14432:182:1;3162:68:0;39475:31:::1;::::0;::::1;39509:5;39475:31:::0;;;:9:::1;:31;::::0;;;;;:39;;;::::1;::::0;;39526:47;::::1;::::0;39509:5;39526:47:::1;39387:192:::0;:::o;3850:::-;3023:6;;3170:23;3023:6;1653:10;3170:23;3162:68;;;;;;;14460:2:1;3162:68:0;;;14442:21:1;;;14479:18;;;14472:30;14538:34;14518:18;;;14511:62;14590:18;;3162:68:0;14432:182:1;3162:68:0;3939:22:::1;::::0;::::1;3931:73;;;::::0;::::1;::::0;;10080:2:1;3931:73:0::1;::::0;::::1;10062:21:1::0;10119:2;10099:18;;;10092:30;10158:34;10138:18;;;10131:62;10229:8;10209:18;;;10202:36;10255:19;;3931:73:0::1;10052:228:1::0;3931:73:0::1;4015:19;4025:8;4015:9;:19::i;:::-;3850:192:::0;:::o;31581:380::-;31717:19;;;31709:68;;;;;;;15629:2:1;31709:68:0;;;15611:21:1;15668:2;15648:18;;;15641:30;15707:34;15687:18;;;15680:62;15778:6;15758:18;;;15751:34;15802:19;;31709:68:0;15601:226:1;31709:68:0;31796:21;;;31788:68;;;;;;;10487:2:1;31788:68:0;;;10469:21:1;10526:2;10506:18;;;10499:30;10565:34;10545:18;;;10538:62;10636:4;10616:18;;;10609:32;10658:19;;31788:68:0;10459:224:1;31788:68:0;31869:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;31921:32;;6476:25:1;;;31921:32:0;;6449:18:1;31921:32:0;;;;;;;31581:380;;;:::o;30552:591::-;30636:21;;;30628:67;;;;;;;14821:2:1;30628:67:0;;;14803:21:1;14860:2;14840:18;;;14833:30;14899:34;14879:18;;;14872:62;14970:3;14950:18;;;14943:31;14991:19;;30628:67:0;14793:223:1;30628:67:0;30795:18;;;30770:22;30795:18;;;:9;:18;;;;;;30832:24;;;;30824:71;;;;;;;9677:2:1;30824:71:0;;;9659:21:1;9716:2;9696:18;;;9689:30;9755:34;9735:18;;;9728:62;9826:4;9806:18;;;9799:32;9848:19;;30824:71:0;9649:224:1;30824:71:0;30931:18;;;;;;;:9;:18;;;;;30952:23;;;30931:44;;30997:12;:22;;30969:6;;30931:18;30997:22;;30969:6;;30997:22;:::i;:::-;;;;-1:-1:-1;;31037:37:0;;6476:25:1;;;31063:1:0;;31037:37;;;;;;6464:2:1;6449:18;31037:37:0;;;;;;;39084:102:::1;38890:301:::0;;:::o;2633:129::-;483:13;;;;;;;;:30;;-1:-1:-1;501:12:0;;;;500:13;483:30;475:89;;;;;;;12466:2:1;475:89:0;;;12448:21:1;12505:2;12485:18;;;12478:30;12544:34;12524:18;;;12517:62;12615:16;12595:18;;;12588:44;12649:19;;475:89:0;12438:236:1;475:89:0;577:19;600:13;;;;;;599:14;624:101;;;;659:13;:20;;694:19;;;;;;624:101;2691:26:::1;:24;:26::i;:::-;2728;:24;:26::i;:::-;755:14:::0;751:68;;;802:5;786:21;;;;;;2633:129;:::o;23044:181::-;483:13;;;;;;;;:30;;-1:-1:-1;501:12:0;;;;500:13;483:30;475:89;;;;;;;12466:2:1;475:89:0;;;12448:21:1;12505:2;12485:18;;;12478:30;12544:34;12524:18;;;12517:62;12615:16;12595:18;;;12588:44;12649:19;;475:89:0;12438:236:1;475:89:0;577:19;600:13;;;;;;599:14;624:101;;;;659:13;:20;;694:19;;;;;;624:101;23142:26:::1;:24;:26::i;:::-;23179:38;23202:5;23209:7;23179:22;:38::i;:::-;755:14:::0;751:68;;;802:5;786:21;;;;;;23044:181;;;:::o;34570:204::-;483:13;;;;;;;;:30;;-1:-1:-1;501:12:0;;;;500:13;483:30;475:89;;;;;;;12466:2:1;475:89:0;;;12448:21:1;12505:2;12485:18;;;12478:30;12544:34;12524:18;;;12517:62;12615:16;12595:18;;;12588:44;12649:19;;475:89:0;12438:236:1;475:89:0;577:19;600:13;;;;;;599:14;624:101;;;;659:13;:20;;694:19;;;;;;624:101;34650:26:::1;:24;:26::i;:::-;34687:34;34711:4;34687:34;;;;;;;;;;;;;;;;::::0;:23:::1;:34::i;:::-;34732;34761:4;34732:28;:34::i;:::-;755:14:::0;751:68;;;802:5;786:21;;;;;;751:68;34570:204;;:::o;28800:733::-;28940:20;;;28932:70;;;;;;;15223:2:1;28932:70:0;;;15205:21:1;15262:2;15242:18;;;15235:30;15301:34;15281:18;;;15274:62;15372:7;15352:18;;;15345:35;15397:19;;28932:70:0;15195:227:1;28932:70:0;29021:23;;;29013:71;;;;;;;9273:2:1;29013:71:0;;;9255:21:1;9312:2;9292:18;;;9285:30;9351:34;9331:18;;;9324:62;9422:5;9402:18;;;9395:33;9445:19;;29013:71:0;9245:225:1;29013:71:0;29181:17;;;29157:21;29181:17;;;:9;:17;;;;;;29217:23;;;;29209:74;;;;;;;11248:2:1;29209:74:0;;;11230:21:1;11287:2;11267:18;;;11260:30;11326:34;11306:18;;;11299:62;11397:8;11377:18;;;11370:36;11423:19;;29209:74:0;11220:228:1;29209:74:0;29319:17;;;;;;;;:9;:17;;;;;;29339:22;;;29319:42;;29383:20;;;;;;;;:30;;29355:6;;29319:17;29383:30;;29355:6;;29383:30;:::i;:::-;;;;;;;;29448:9;29431:35;;29440:6;29431:35;;;29459:6;29431:35;;;;6476:25:1;;6464:2;6449:18;;6431:76;29431:35:0;;;;;;;;29479:46;38890:301;26278:492;26418:4;26435:36;26445:6;26453:9;26464:6;26435:9;:36::i;:::-;26511:19;;;26484:24;26511:19;;;:11;:19;;;;;;;;1653:10;26511:33;;;;;;;;26563:26;;;;26555:79;;;;;;;14051:2:1;26555:79:0;;;14033:21:1;14090:2;14070:18;;;14063:30;14129:34;14109:18;;;14102:62;14200:10;14180:18;;;14173:38;14228:19;;26555:79:0;14023:230:1;26555:79:0;26670:57;26679:6;1653:10;26720:6;26701:16;:25;26670:8;:57::i;:::-;-1:-1:-1;26758:4:0;;26278:492;-1:-1:-1;;;;26278:492:0:o;8606:162::-;8659:7;8686:74;7339:95;8720:17;10188:12;;;10103:105;8720:17;10543:15;;8957:73;;;;;;7390:25:1;;;7431:18;;;7424:34;;;7474:18;;;7467:34;;;9001:13:0;7517:18:1;;;7510:34;9024:4:0;7560:19:1;;;7553:84;8920:7:0;;7362:19:1;;8957:73:0;;;;;;;;;;;;8947:84;;;;;;8940:91;;8776:263;;;;;;29820:399;29904:21;;;29896:65;;;;;;;16798:2:1;29896:65:0;;;16780:21:1;16837:2;16817:18;;;16810:30;16876:33;16856:18;;;16849:61;16927:18;;29896:65:0;16770:181:1;29896:65:0;30052:6;30036:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;30069:18:0;;;;;;;:9;:18;;;;;:28;;30091:6;;30069:18;:28;;30091:6;;30069:28;:::i;:::-;;;;-1:-1:-1;;30113:37:0;;6476:25:1;;;30113:37:0;;;;30130:1;;30113:37;;6464:2:1;6449:18;30113:37:0;;;;;;;34570:204;;:::o;4050:173::-;4125:6;;;;4142:17;;;;;;;;;;;4175:40;;4125:6;;;4142:17;4125:6;;4175:40;;4106:16;;4175:40;4050:173;;:::o;25091:175::-;25177:4;25194:42;1653:10;25218:9;25229:6;25194:9;:42::i;36287:218::-;36419:14;;;36347:15;36419:14;;;:7;:14;;;;;17373;;17510:1;17492:19;;;;17373:14;36480:17;36287:218;;;;:::o;9681:178::-;9758:7;9785:66;9818:20;:18;:20::i;:::-;9840:10;16464:57;;5728:66:1;16464:57:0;;;5716:79:1;5811:11;;;5804:27;;;5847:12;;;5840:28;;;16427:7:0;;5884:12:1;;16464:57:0;;;;;;;;;;;;16454:68;;;;;;16447:75;;16334:196;;;;;13903:1512;14031:7;14970:66;14956:80;;;14934:164;;;;;;;11655:2:1;14934:164:0;;;11637:21:1;11694:2;11674:18;;;11667:30;11733:34;11713:18;;;11706:62;11804:4;11784:18;;;11777:32;11826:19;;14934:164:0;11627:224:1;14934:164:0;15117:1;:7;;15122:2;15117:7;:18;;;;15128:1;:7;;15133:2;15128:7;15117:18;15109:65;;;;;;;12881:2:1;15109:65:0;;;12863:21:1;12920:2;12900:18;;;12893:30;12959:34;12939:18;;;12932:62;13030:4;13010:18;;;13003:32;13052:19;;15109:65:0;12853:224:1;15109:65:0;15289:24;;;15272:14;15289:24;;;;;;;;;7875:25:1;;;7948:4;7936:17;;7916:18;;;7909:45;;;;7970:18;;;7963:34;;;8013:18;;;8006:34;;;15289:24:0;;7847:19:1;;15289:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15289:24:0;;;;;;-1:-1:-1;;15332:20:0;;;15324:57;;;;;;;8920:2:1;15324:57:0;;;8902:21:1;8959:2;8939:18;;;8932:30;8998:26;8978:18;;;8971:54;9042:18;;15324:57:0;8892:174:1;15324:57:0;15401:6;13903:1512;-1:-1:-1;;;;;13903:1512:0:o;1502:65::-;483:13;;;;;;;;:30;;-1:-1:-1;501:12:0;;;;500:13;483:30;475:89;;;;;;;12466:2:1;475:89:0;;;12448:21:1;12505:2;12485:18;;;12478:30;12544:34;12524:18;;;12517:62;12615:16;12595:18;;;12588:44;12649:19;;475:89:0;12438:236:1;475:89:0;577:19;600:13;;;;;;599:14;624:101;;;;659:13;:20;;694:19;;;;;;751:68;;;;802:5;786:21;;;;;;1502:65;:::o;2770:99::-;483:13;;;;;;;;:30;;-1:-1:-1;501:12:0;;;;500:13;483:30;475:89;;;;;;;12466:2:1;475:89:0;;;12448:21:1;12505:2;12485:18;;;12478:30;12544:34;12524:18;;;12517:62;12615:16;12595:18;;;12588:44;12649:19;;475:89:0;12438:236:1;475:89:0;577:19;600:13;;;;;;599:14;624:101;;;;659:13;:20;;694:19;;;;;;624:101;2838:23:::1;1653:10:::0;2838:9:::1;:23::i;23233:157::-:0;483:13;;;;;;;;:30;;-1:-1:-1;501:12:0;;;;500:13;483:30;475:89;;;;;;;12466:2:1;475:89:0;;;12448:21:1;12505:2;12485:18;;;12478:30;12544:34;12524:18;;;12517:62;12615:16;12595:18;;;12588:44;12649:19;;475:89:0;12438:236:1;475:89:0;577:19;600:13;;;;;;599:14;624:101;;;;659:13;:20;;694:19;;;;;;624:101;23341:13;;::::1;::::0;:5:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;23365:17:0;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;755:14:::0;751:68;;;802:5;786:21;;;;;;23233:157;;;:::o;8218:297::-;483:13;;;;;;;;:30;;-1:-1:-1;501:12:0;;;;500:13;483:30;475:89;;;;;;;12466:2:1;475:89:0;;;12448:21:1;12505:2;12485:18;;;12478:30;12544:34;12524:18;;;12517:62;12615:16;12595:18;;;12588:44;12649:19;;475:89:0;12438:236:1;475:89:0;577:19;600:13;;;;;;599:14;624:101;;;;659:13;:20;;694:19;;;;;;624:101;8347:22;;::::1;::::0;;::::1;::::0;;;;8404:25;;;;::::1;::::0;;;;8440:12:::1;:25:::0;;;;8476:15:::1;:31:::0;751:68;;;;802:5;786:21;;;;;;8218:297;;;:::o;34782:206::-;483:13;;;;;;;;:30;;-1:-1:-1;501:12:0;;;;500:13;483:30;475:89;;;;;;;12466:2:1;475:89:0;;;12448:21:1;12505:2;12485:18;;;12478:30;12544:34;12524:18;;;12517:62;12615:16;12595:18;;;12588:44;12649:19;;475:89:0;12438:236:1;475:89:0;577:19;600:13;;;;;;599:14;624:101;;;;659:13;:20;;694:19;;;;;;624:101;34891:95:::1;34872:16;:114:::0;751:68;;;;802:5;786:21;;;;;;34782:206;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:1;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:693::-;269:5;322:3;315:4;307:6;303:17;299:27;289:2;;344:5;337;330:20;289:2;384:6;371:20;410:4;434:60;450:43;490:2;450:43;:::i;:::-;434:60;:::i;:::-;516:3;540:2;535:3;528:15;568:2;563:3;559:12;552:19;;603:2;595:6;591:15;655:3;650:2;644;641:1;637:10;629:6;625:23;621:32;618:41;615:2;;;676:5;669;662:20;615:2;702:5;716:163;730:2;727:1;724:9;716:163;;;787:17;;775:30;;825:12;;;;857;;;;748:1;741:9;716:163;;;-1:-1:-1;897:5:1;;279:629;-1:-1:-1;;;;;;;279:629:1:o;913:610::-;956:5;1009:3;1002:4;994:6;990:17;986:27;976:2;;1031:5;1024;1017:20;976:2;1071:6;1058:20;1097:18;1093:2;1090:26;1087:2;;;1119:18;;:::i;:::-;1163:114;1271:4;1202:66;1195:4;1191:2;1187:13;1183:86;1179:97;1163:114;:::i;:::-;1302:2;1293:7;1286:19;1348:3;1341:4;1336:2;1328:6;1324:15;1320:26;1317:35;1314:2;;;1369:5;1362;1355:20;1314:2;1438;1431:4;1423:6;1419:17;1412:4;1403:7;1399:18;1386:55;1461:16;;;1479:4;1457:27;1450:42;;;;1465:7;966:557;-1:-1:-1;;966:557:1:o;1528:156::-;1594:20;;1654:4;1643:16;;1633:27;;1623:2;;1674:1;1671;1664:12;1689:196;1748:6;1801:2;1789:9;1780:7;1776:23;1772:32;1769:2;;;1822:6;1814;1807:22;1769:2;1850:29;1869:9;1850:29;:::i;1890:270::-;1958:6;1966;2019:2;2007:9;1998:7;1994:23;1990:32;1987:2;;;2040:6;2032;2025:22;1987:2;2068:29;2087:9;2068:29;:::i;:::-;2058:39;;2116:38;2150:2;2139:9;2135:18;2116:38;:::i;:::-;2106:48;;1977:183;;;;;:::o;2165:338::-;2242:6;2250;2258;2311:2;2299:9;2290:7;2286:23;2282:32;2279:2;;;2332:6;2324;2317:22;2279:2;2360:29;2379:9;2360:29;:::i;:::-;2350:39;;2408:38;2442:2;2431:9;2427:18;2408:38;:::i;:::-;2398:48;;2493:2;2482:9;2478:18;2465:32;2455:42;;2269:234;;;;;:::o;2508:616::-;2619:6;2627;2635;2643;2651;2659;2667;2720:3;2708:9;2699:7;2695:23;2691:33;2688:2;;;2742:6;2734;2727:22;2688:2;2770:29;2789:9;2770:29;:::i;:::-;2760:39;;2818:38;2852:2;2841:9;2837:18;2818:38;:::i;:::-;2808:48;;2903:2;2892:9;2888:18;2875:32;2865:42;;2954:2;2943:9;2939:18;2926:32;2916:42;;2977:37;3009:3;2998:9;2994:19;2977:37;:::i;:::-;2967:47;;3061:3;3050:9;3046:19;3033:33;3023:43;;3113:3;3102:9;3098:19;3085:33;3075:43;;2678:446;;;;;;;;;;:::o;3129:264::-;3197:6;3205;3258:2;3246:9;3237:7;3233:23;3229:32;3226:2;;;3279:6;3271;3264:22;3226:2;3307:29;3326:9;3307:29;:::i;:::-;3297:39;3383:2;3368:18;;;;3355:32;;-1:-1:-1;;;3216:177:1:o;3398:1212::-;3516:6;3524;3577:2;3565:9;3556:7;3552:23;3548:32;3545:2;;;3598:6;3590;3583:22;3545:2;3643:9;3630:23;3672:18;3713:2;3705:6;3702:14;3699:2;;;3734:6;3726;3719:22;3699:2;3777:6;3766:9;3762:22;3752:32;;3822:7;3815:4;3811:2;3807:13;3803:27;3793:2;;3849:6;3841;3834:22;3793:2;3890;3877:16;3912:4;3936:60;3952:43;3992:2;3952:43;:::i;3936:60::-;4018:3;4042:2;4037:3;4030:15;4070:2;4065:3;4061:12;4054:19;;4101:2;4097;4093:11;4149:7;4144:2;4138;4135:1;4131:10;4127:2;4123:19;4119:28;4116:41;4113:2;;;4175:6;4167;4160:22;4113:2;4202:6;4193:15;;4217:169;4231:2;4228:1;4225:9;4217:169;;;4288:23;4307:3;4288:23;:::i;:::-;4276:36;;4249:1;4242:9;;;;;4332:12;;;;4364;;4217:169;;;-1:-1:-1;4405:5:1;-1:-1:-1;;4448:18:1;;4435:32;;-1:-1:-1;;4479:16:1;;;4476:2;;;4513:6;4505;4498:22;4476:2;;4541:63;4596:7;4585:8;4574:9;4570:24;4541:63;:::i;:::-;4531:73;;;3535:1075;;;;;:::o;4615:643::-;4710:6;4718;4726;4779:2;4767:9;4758:7;4754:23;4750:32;4747:2;;;4800:6;4792;4785:22;4747:2;4845:9;4832:23;4874:18;4915:2;4907:6;4904:14;4901:2;;;4936:6;4928;4921:22;4901:2;4964:50;5006:7;4997:6;4986:9;4982:22;4964:50;:::i;:::-;4954:60;;5067:2;5056:9;5052:18;5039:32;5023:48;;5096:2;5086:8;5083:16;5080:2;;;5117:6;5109;5102:22;5080:2;;5145:52;5189:7;5178:8;5167:9;5163:24;5145:52;:::i;:::-;5135:62;;;5216:36;5248:2;5237:9;5233:18;5216:36;:::i;:::-;5206:46;;4737:521;;;;;:::o;5263:190::-;5322:6;5375:2;5363:9;5354:7;5350:23;5346:32;5343:2;;;5396:6;5388;5381:22;5343:2;-1:-1:-1;5424:23:1;;5333:120;-1:-1:-1;5333:120:1:o;8051:662::-;8163:4;8192:2;8221;8210:9;8203:21;8253:6;8247:13;8296:6;8291:2;8280:9;8276:18;8269:34;8321:4;8334:140;8348:6;8345:1;8342:13;8334:140;;;8443:14;;;8439:23;;8433:30;8409:17;;;8428:2;8405:26;8398:66;8363:10;;8334:140;;;8492:6;8489:1;8486:13;8483:2;;;8562:4;8557:2;8548:6;8537:9;8533:22;8529:31;8522:45;8483:2;-1:-1:-1;8629:2:1;8617:15;8634:66;8613:88;8598:104;;;;8704:2;8594:113;;8172:541;-1:-1:-1;;;8172:541:1:o;17327:334::-;17398:2;17392:9;17454:2;17444:13;;17459:66;17440:86;17428:99;;17557:18;17542:34;;17578:22;;;17539:62;17536:2;;;17604:18;;:::i;:::-;17640:2;17633:22;17372:289;;-1:-1:-1;17372:289:1:o;17666:183::-;17726:4;17759:18;17751:6;17748:30;17745:2;;;17781:18;;:::i;:::-;-1:-1:-1;17826:1:1;17822:14;17838:4;17818:25;;17735:114::o;17854:128::-;17894:3;17925:1;17921:6;17918:1;17915:13;17912:2;;;17931:18;;:::i;:::-;-1:-1:-1;17967:9:1;;17902:80::o;17987:125::-;18027:4;18055:1;18052;18049:8;18046:2;;;18060:18;;:::i;:::-;-1:-1:-1;18097:9:1;;18036:76::o;18117:437::-;18196:1;18192:12;;;;18239;;;18260:2;;18314:4;18306:6;18302:17;18292:27;;18260:2;18367;18359:6;18356:14;18336:18;18333:38;18330:2;;;18404:77;18401:1;18394:88;18505:4;18502:1;18495:15;18533:4;18530:1;18523:15;18559:195;18598:3;18629:66;18622:5;18619:77;18616:2;;;18699:18;;:::i;:::-;-1:-1:-1;18746:1:1;18735:13;;18606:148::o;18759:184::-;18811:77;18808:1;18801:88;18908:4;18905:1;18898:15;18932:4;18929:1;18922:15;18948:184;19000:77;18997:1;18990:88;19097:4;19094:1;19087:15;19121:4;19118:1;19111:15
Swarm Source
ipfs://e45a0a633209b5020382dedcebbd9b692e7f91f239fe2d371eed00bdb6af738c
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.