More Info
Private Name Tags
ContractCreator
TokenTracker
Sponsored
Latest 25 from a total of 2,641 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 252490422 | 35 mins ago | IN | 0 ETH | 0.00000073 | ||||
Send From | 252487557 | 47 mins ago | IN | 0.00002339 ETH | 0.00000342 | ||||
Approve | 252456777 | 2 hrs ago | IN | 0 ETH | 0.00000077 | ||||
Approve | 252456515 | 2 hrs ago | IN | 0 ETH | 0.00000077 | ||||
Send From | 252342507 | 10 hrs ago | IN | 0.00002339 ETH | 0.00000243 | ||||
Transfer | 252240824 | 18 hrs ago | IN | 0 ETH | 0.00000047 | ||||
Send From | 252240731 | 18 hrs ago | IN | 0.00002339 ETH | 0.00000256 | ||||
Transfer | 252239957 | 18 hrs ago | IN | 0 ETH | 0.00000069 | ||||
Transfer | 252239781 | 18 hrs ago | IN | 0 ETH | 0.00000069 | ||||
Transfer | 252114071 | 26 hrs ago | IN | 0 ETH | 0.0000007 | ||||
Send From | 252113299 | 26 hrs ago | IN | 0.00002339 ETH | 0.00000283 | ||||
Transfer | 252113195 | 26 hrs ago | IN | 0 ETH | 0.00000097 | ||||
Transfer | 252112886 | 26 hrs ago | IN | 0 ETH | 0.00000098 | ||||
Transfer | 252086880 | 28 hrs ago | IN | 0 ETH | 0.00000087 | ||||
Send From | 252085364 | 28 hrs ago | IN | 0.00002339 ETH | 0.00000496 | ||||
Transfer | 252085067 | 28 hrs ago | IN | 0 ETH | 0.00000178 | ||||
Transfer | 252084655 | 28 hrs ago | IN | 0 ETH | 0.0000013 | ||||
Approve | 252023034 | 33 hrs ago | IN | 0 ETH | 0.00000077 | ||||
Send From | 252017722 | 33 hrs ago | IN | 0.00002339 ETH | 0.00000388 | ||||
Transfer | 252017582 | 33 hrs ago | IN | 0 ETH | 0.00000081 | ||||
Send From | 252016010 | 33 hrs ago | IN | 0.00002339 ETH | 0.00000319 | ||||
Transfer | 252015894 | 33 hrs ago | IN | 0 ETH | 0.00000086 | ||||
Transfer | 252004717 | 34 hrs ago | IN | 0 ETH | 0.00000079 | ||||
Transfer | 251995631 | 35 hrs ago | IN | 0 ETH | 0.00000106 | ||||
Transfer | 251994200 | 35 hrs ago | IN | 0 ETH | 0.00000079 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
252487557 | 47 mins ago | 0.00002339 ETH | ||||
252342507 | 10 hrs ago | 0.00002339 ETH | ||||
252240731 | 18 hrs ago | 0.00002339 ETH | ||||
252113299 | 26 hrs ago | 0.00002339 ETH | ||||
252085364 | 28 hrs ago | 0.00002339 ETH | ||||
252017722 | 33 hrs ago | 0.00002339 ETH | ||||
252016010 | 33 hrs ago | 0.00002339 ETH | ||||
251952337 | 38 hrs ago | 0.00002339 ETH | ||||
251857156 | 44 hrs ago | 0.00002339 ETH | ||||
251811495 | 2 days ago | 0.00002339 ETH | ||||
251436348 | 3 days ago | 0.00002339 ETH | ||||
251420003 | 3 days ago | 0.00002339 ETH | ||||
250957416 | 4 days ago | 0.00002339 ETH | ||||
249904809 | 7 days ago | 0.00002219 ETH | ||||
249715457 | 8 days ago | 0.00002219 ETH | ||||
248541137 | 11 days ago | 0.00002219 ETH | ||||
247133956 | 15 days ago | 0.00002145 ETH | ||||
247068394 | 15 days ago | 0.00002145 ETH | ||||
246019610 | 18 days ago | 0.00002145 ETH | ||||
246015543 | 18 days ago | 0.00002145 ETH | ||||
246008210 | 18 days ago | 0.00002145 ETH | ||||
245852308 | 19 days ago | 0.00002145 ETH | ||||
245848612 | 19 days ago | 0.00002145 ETH | ||||
245805542 | 19 days ago | 0.00002145 ETH | ||||
245802294 | 19 days ago | 0.00002145 ETH |
Loading...
Loading
Contract Name:
AquariusOFT
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Arbiscan.io on 2023-10-22 */ // SPDX-License-Identifier: BUSL-1.1 AND MIT AND Unlicense // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint96); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint96); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint 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 (uint96); /** * @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, uint amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint amount) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint96) private _balances; mapping(address => mapping(address => uint96)) private _allowances; uint96 private _totalSupply; string private _name; string private _symbol; /// @notice A record of each accounts delegate mapping (address => address) public delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint96 votes; } /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's 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 (uint96) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint96) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint rawAmount) public virtual override returns (bool) { uint96 amount = safe96(rawAmount, "ERC20::transfer: amount exceeds 96 bits"); address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint96) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint rawAmount) public virtual override returns (bool) { address spender = _msgSender(); uint96 spenderAllowance = _allowances[from][spender]; uint96 amount = safe96(rawAmount, "ERC20::transferFrom: amount exceeds 96 bits"); if (spender != from && spenderAllowance != type(uint96).max) { uint96 newAllowance = sub96(spenderAllowance, amount, "ERC20::transferFrom: transfer amount exceeds spender allowance"); _allowances[from][spender] = newAllowance; emit Approval(from, spender, newAllowance); } _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint addedValue) public virtual returns (bool) { address owner = _msgSender(); uint96 amount = safe96(addedValue, "ERC20::increaseAllowance: amount exceeds 96 bits"); _approve(owner, spender, allowance(owner, spender) + amount); 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, uint subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint96 currentAllowance = allowance(owner, spender); uint96 amount = safe96(subtractedValue, "ERC20::decreaseAllowance: amount exceeds 96 bits"); require(currentAllowance >= amount, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - amount); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint96 amount) internal virtual { require(from != address(0), "ERC20: _transfer from the zero address"); require(to != address(0), "ERC20: _transfer to the zero address"); require(to != address(this), "ERC20::_transfer: cannot transfer to token contract"); _beforeTokenTransfer(from, to, amount); _balances[from] = sub96(_balances[from], amount, "ERC20::_transfer: transfer amount exceeds balance"); _balances[to] = add96(_balances[to], amount, "ERC20::_transfer: transfer amount overflows"); emit Transfer(from, to, amount); _moveDelegates(delegates[from], delegates[to], amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint rawAmount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); uint96 amount = safe96(rawAmount, "ERC20::_mint: amount exceeds 96 bits"); _beforeTokenTransfer(address(0), account, amount); unchecked { _totalSupply = add96(_totalSupply, amount, "ERC20::_mint: _totalSupply exceeds 96 bits"); _balances[account] = add96(_balances[account], amount, "ERC20::_transfer: transfer amount overflows"); } emit Transfer(address(0), account, amount); _moveDelegates(address(0), delegates[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, uint rawAmount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); uint96 amount = safe96(rawAmount, "ERC20::burn: amount exceeds 96 bits"); _beforeTokenTransfer(account, address(0), amount); uint96 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = sub96(accountBalance, amount, "ERC20::_burn: amount exceeds 96 bits"); // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply = sub96(_totalSupply, amount, "ERC20::_burn: amount exceeds 96 bits"); } emit Transfer(account, address(0), amount); _moveDelegates(delegates[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, uint rawAmount) internal virtual { require(owner != address(0), "ERC20: _approve from the zero address"); require(spender != address(0), "ERC20: _approve to the zero address"); uint96 amount; if (rawAmount == type(uint).max) { amount = type(uint96).max; } else { amount = safe96(rawAmount, "ERC20::_approve: amount exceeds 96 bits"); } _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint rawAmount) internal virtual { uint96 amount = safe96(rawAmount, "ERC20::_spendAllowance: amount exceeds 96 bits"); uint96 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint96).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function safe96(uint n, string memory errorMessage) internal pure returns (uint96) { require(n < 2**96, errorMessage); return uint96(n); } function add96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) { uint96 c = a + b; require(c >= a, errorMessage); return c; } function sub96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) { require(b <= a, errorMessage); return a - b; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) public { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public { bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this))); bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry)); bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "Ars::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "Ars::delegateBySig: invalid nonce"); require(block.timestamp <= expiry, "Ars::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint96) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) public view returns (uint96) { require(blockNumber < block.number, "Ars::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = delegates[delegator]; uint96 delegatorBalance = _balances[delegator]; delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _moveDelegates(address srcRep, address dstRep, uint96 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { uint32 srcRepNum = numCheckpoints[srcRep]; uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint96 srcRepNew = sub96(srcRepOld, amount, "Ars::_moveVotes: vote amount underflows"); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { uint32 dstRepNum = numCheckpoints[dstRep]; uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint96 dstRepNew = add96(dstRepOld, amount, "Ars::_moveVotes: vote amount overflows"); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes) internal { uint32 blockNumber = safe32(block.number, "Ars::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function getChainId() internal view returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } } // File @openzeppelin/contracts/utils/introspection/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/utils/introspection/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File contracts/lzApp/interfaces/ILayerZeroUserApplicationConfig.sol // Original license: SPDX_License_Identifier: MIT pragma solidity >=0.5.0; interface ILayerZeroUserApplicationConfig { // @notice set the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _configType - type of configuration. every messaging library has its own convention. // @param _config - configuration in the bytes. can encode arbitrary content. function setConfig( uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config ) external; // @notice set the send() LayerZero messaging library version to _version // @param _version - new messaging library version function setSendVersion(uint16 _version) external; // @notice set the lzReceive() LayerZero messaging library version to _version // @param _version - new messaging library version function setReceiveVersion(uint16 _version) external; // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload // @param _srcChainId - the chainId of the source chain // @param _srcAddress - the contract address of the source contract at the source chain function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external; } // File contracts/lzApp/interfaces/ILayerZeroEndpoint.sol // Original license: SPDX_License_Identifier: MIT pragma solidity >=0.5.0; interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig { // @notice send a LayerZero message to the specified address at a LayerZero endpoint. // @param _dstChainId - the destination chain identifier // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains // @param _payload - a custom bytes payload to send to the destination contract // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination function send( uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams ) external payable; // @notice used by the messaging library to publish verified payload // @param _srcChainId - the source chain identifier // @param _srcAddress - the source contract (as bytes) at the source chain // @param _dstAddress - the address on destination chain // @param _nonce - the unbound message ordering nonce // @param _gasLimit - the gas limit for external contract execution // @param _payload - verified payload to send to the destination contract function receivePayload( uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload ) external; // @notice get the inboundNonce of a lzApp from a source chain which could be EVM or non-EVM chain // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64); // @notice get the outboundNonce from this source chain which, consequently, is always an EVM // @param _srcAddress - the source chain contract address function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64); // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery // @param _dstChainId - the destination chain identifier // @param _userApplication - the user app address on this EVM chain // @param _payload - the custom message to send over LayerZero // @param _payInZRO - if false, user app pays the protocol fee in native token // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain function estimateFees( uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam ) external view returns (uint nativeFee, uint zroFee); // @notice get this Endpoint's immutable source identifier function getChainId() external view returns (uint16); // @notice the interface to retry failed message on this Endpoint destination // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address // @param _payload - the payload to be retried function retryPayload( uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload ) external; // @notice query if any STORED payload (message blocking) at the endpoint. // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool); // @notice query if the _libraryAddress is valid for sending msgs. // @param _userApplication - the user app address on this EVM chain function getSendLibraryAddress(address _userApplication) external view returns (address); // @notice query if the _libraryAddress is valid for receiving msgs. // @param _userApplication - the user app address on this EVM chain function getReceiveLibraryAddress(address _userApplication) external view returns (address); // @notice query if the non-reentrancy guard for send() is on // @return true if the guard is on. false otherwise function isSendingPayload() external view returns (bool); // @notice query if the non-reentrancy guard for receive() is on // @return true if the guard is on. false otherwise function isReceivingPayload() external view returns (bool); // @notice get the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _userApplication - the contract address of the user application // @param _configType - type of configuration. every messaging library has its own convention. function getConfig( uint16 _version, uint16 _chainId, address _userApplication, uint _configType ) external view returns (bytes memory); // @notice get the send() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getSendVersion(address _userApplication) external view returns (uint16); // @notice get the lzReceive() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getReceiveVersion(address _userApplication) external view returns (uint16); } // File contracts/libraries/BytesLib.sol // Original license: SPDX_License_Identifier: Unlicense /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity >=0.8.0 <0.9.0; library BytesLib { function concat(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bytes memory) { bytes memory tempBytes; assembly { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // Store the length of the first bytes array at the beginning of // the memory for tempBytes. let length := mload(_preBytes) mstore(tempBytes, length) // Maintain a memory counter for the current write location in the // temp bytes array by adding the 32 bytes for the array length to // the starting location. let mc := add(tempBytes, 0x20) // Stop copying when the memory counter reaches the length of the // first bytes array. let end := add(mc, length) for { // Initialize a copy counter to the start of the _preBytes data, // 32 bytes into its memory. let cc := add(_preBytes, 0x20) } lt(mc, end) { // Increase both counters by 32 bytes each iteration. mc := add(mc, 0x20) cc := add(cc, 0x20) } { // Write the _preBytes data into the tempBytes memory 32 bytes // at a time. mstore(mc, mload(cc)) } // Add the length of _postBytes to the current length of tempBytes // and store it as the new length in the first 32 bytes of the // tempBytes memory. length := mload(_postBytes) mstore(tempBytes, add(length, mload(tempBytes))) // Move the memory counter back from a multiple of 0x20 to the // actual end of the _preBytes data. mc := end // Stop copying when the memory counter reaches the new combined // length of the arrays. end := add(mc, length) for { let cc := add(_postBytes, 0x20) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } // Update the free-memory pointer by padding our last write location // to 32 bytes: add 31 bytes to the end of tempBytes to move to the // next 32 byte block, then round down to the nearest multiple of // 32. If the sum of the length of the two arrays is zero then add // one before rounding down to leave a blank 32 bytes (the length block with 0). mstore( 0x40, and( add(add(end, iszero(add(length, mload(_preBytes)))), 31), not(31) // Round down to the nearest 32 bytes. ) ) } return tempBytes; } function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal { assembly { // Read the first 32 bytes of _preBytes storage, which is the length // of the array. (We don't need to use the offset into the slot // because arrays use the entire slot.) let fslot := sload(_preBytes.slot) // Arrays of 31 bytes or less have an even value in their slot, // while longer arrays have an odd value. The actual length is // the slot divided by two for odd values, and the lowest order // byte divided by two for even values. // If the slot is even, bitwise and the slot with 255 and divide by // two to get the length. If the slot is odd, bitwise and the slot // with -1 and divide by two. let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) let newlength := add(slength, mlength) // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage switch add(lt(slength, 32), lt(newlength, 32)) case 2 { // Since the new array still fits in the slot, we just need to // update the contents of the slot. // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length sstore( _preBytes.slot, // all the modifications to the slot are inside this // next block add( // we can just add to the slot contents because the // bytes we want to change are the LSBs fslot, add( mul( div( // load the bytes from memory mload(add(_postBytes, 0x20)), // zero all bytes to the right exp(0x100, sub(32, mlength)) ), // and now shift left the number of bytes to // leave space for the length in the slot exp(0x100, sub(32, newlength)) ), // increase length by the double of the memory // bytes length mul(mlength, 2) ) ) ) } case 1 { // The stored value fits in the slot, but the combined value // will exceed it. // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // The contents of the _postBytes array start 32 bytes into // the structure. Our first read should obtain the `submod` // bytes that can fit into the unused space in the last word // of the stored array. To get this, we read 32 bytes starting // from `submod`, so the data we read overlaps with the array // contents by `submod` bytes. Masking the lowest-order // `submod` bytes allows us to add that value directly to the // stored value. let submod := sub(32, slength) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(and(fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00), and(mload(mc), mask))) for { mc := add(mc, 0x20) sc := add(sc, 1) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } default { // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) // Start copying to the last used word of the stored array. let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // Copy over the first `submod` bytes of the new data as in // case 1 above. let slengthmod := mod(slength, 32) let mlengthmod := mod(mlength, 32) let submod := sub(32, slengthmod) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(sload(sc), and(mload(mc), mask))) for { sc := add(sc, 1) mc := add(mc, 0x20) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } } } function slice( bytes memory _bytes, uint _start, uint _length ) internal pure returns (bytes memory) { require(_length + 31 >= _length, "slice_overflow"); require(_bytes.length >= _start + _length, "slice_outOfBounds"); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint _start) internal pure returns (uint8) { require(_bytes.length >= _start + 1, "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint16(bytes memory _bytes, uint _start) internal pure returns (uint16) { require(_bytes.length >= _start + 2, "toUint16_outOfBounds"); uint16 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x2), _start)) } return tempUint; } function toUint32(bytes memory _bytes, uint _start) internal pure returns (uint32) { require(_bytes.length >= _start + 4, "toUint32_outOfBounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } function toUint64(bytes memory _bytes, uint _start) internal pure returns (uint64) { require(_bytes.length >= _start + 8, "toUint64_outOfBounds"); uint64 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x8), _start)) } return tempUint; } function toUint96(bytes memory _bytes, uint _start) internal pure returns (uint96) { require(_bytes.length >= _start + 12, "toUint96_outOfBounds"); uint96 tempUint; assembly { tempUint := mload(add(add(_bytes, 0xc), _start)) } return tempUint; } function toUint128(bytes memory _bytes, uint _start) internal pure returns (uint128) { require(_bytes.length >= _start + 16, "toUint128_outOfBounds"); uint128 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x10), _start)) } return tempUint; } function toUint256(bytes memory _bytes, uint _start) internal pure returns (uint) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint _start) internal pure returns (bytes32) { require(_bytes.length >= _start + 32, "toBytes32_outOfBounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) { bool success = true; assembly { let length := mload(_preBytes) // if lengths don't match the arrays are not equal switch eq(length, mload(_postBytes)) case 1 { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 let mc := add(_preBytes, 0x20) let end := add(mc, length) for { let cc := add(_postBytes, 0x20) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) } eq(add(lt(mc, end), cb), 2) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { // if any of these checks fails then arrays are not equal if iszero(eq(mload(mc), mload(cc))) { // unsuccess: success := 0 cb := 0 } } } default { // unsuccess: success := 0 } } return success; } function equalStorage(bytes storage _preBytes, bytes memory _postBytes) internal view returns (bool) { bool success = true; assembly { // we know _preBytes_offset is 0 let fslot := sload(_preBytes.slot) // Decode the length of the stored array like in concatStorage(). let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) // if lengths don't match the arrays are not equal switch eq(slength, mlength) case 1 { // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage if iszero(iszero(slength)) { switch lt(slength, 32) case 1 { // blank the last byte which is the length fslot := mul(div(fslot, 0x100), 0x100) if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) { // unsuccess: success := 0 } } default { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := keccak256(0x0, 0x20) let mc := add(_postBytes, 0x20) let end := add(mc, mlength) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) for { } eq(add(lt(mc, end), cb), 2) { sc := add(sc, 1) mc := add(mc, 0x20) } { if iszero(eq(sload(sc), mload(mc))) { // unsuccess: success := 0 cb := 0 } } } } } default { // unsuccess: success := 0 } } return success; } } // File contracts/lzApp/interfaces/ILayerZeroReceiver.sol // Original license: SPDX_License_Identifier: MIT pragma solidity >=0.5.0; interface ILayerZeroReceiver { // @notice LayerZero endpoint will invoke this function to deliver the message on the destination // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function lzReceive( uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload ) external; } // File contracts/lzApp/LzApp.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /* * a generic LzReceiver implementation */ abstract contract LzApp is Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig { using BytesLib for bytes; // ua can not send payload larger than this by default, but it can be changed by the ua owner uint public constant DEFAULT_PAYLOAD_SIZE_LIMIT = 10000; ILayerZeroEndpoint public immutable lzEndpoint; mapping(uint16 => bytes) public trustedRemoteLookup; mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup; mapping(uint16 => uint) public payloadSizeLimitLookup; address public precrime; event SetPrecrime(address precrime); event SetTrustedRemote(uint16 _remoteChainId, bytes _path); event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress); event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint _minDstGas); constructor(address _endpoint) { lzEndpoint = ILayerZeroEndpoint(_endpoint); } function lzReceive( uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload ) public virtual override { // lzReceive must be called by the endpoint for security require(_msgSender() == address(lzEndpoint), "LzApp: invalid endpoint caller"); bytes memory trustedRemote = trustedRemoteLookup[_srcChainId]; // if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote. require( _srcAddress.length == trustedRemote.length && trustedRemote.length > 0 && keccak256(_srcAddress) == keccak256(trustedRemote), "LzApp: invalid source sending contract" ); _blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } // abstract function - the default behaviour of LayerZero is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging function _blockingLzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal virtual; function _lzSend( uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams, uint _nativeFee ) internal virtual { bytes memory trustedRemote = trustedRemoteLookup[_dstChainId]; require(trustedRemote.length != 0, "LzApp: destination chain is not a trusted source"); _checkPayloadSize(_dstChainId, _payload.length); lzEndpoint.send{value: _nativeFee}(_dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams); } function _checkGasLimit( uint16 _dstChainId, uint16 _type, bytes memory _adapterParams, uint _extraGas ) internal view virtual { uint providedGasLimit = _getGasLimit(_adapterParams); uint minGasLimit = minDstGasLookup[_dstChainId][_type]; require(minGasLimit > 0, "LzApp: minGasLimit not set"); require(providedGasLimit >= minGasLimit + _extraGas, "LzApp: gas limit is too low"); } function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) { require(_adapterParams.length >= 34, "LzApp: invalid adapterParams"); assembly { gasLimit := mload(add(_adapterParams, 34)) } } function _checkPayloadSize(uint16 _dstChainId, uint _payloadSize) internal view virtual { uint payloadSizeLimit = payloadSizeLimitLookup[_dstChainId]; if (payloadSizeLimit == 0) { // use default if not set payloadSizeLimit = DEFAULT_PAYLOAD_SIZE_LIMIT; } require(_payloadSize <= payloadSizeLimit, "LzApp: payload size is too large"); } //---------------------------UserApplication config---------------------------------------- function getConfig( uint16 _version, uint16 _chainId, address, uint _configType ) external view returns (bytes memory) { return lzEndpoint.getConfig(_version, _chainId, address(this), _configType); } // generic config for LayerZero user Application function setConfig( uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config ) external override onlyOwner { lzEndpoint.setConfig(_version, _chainId, _configType, _config); } function setSendVersion(uint16 _version) external override onlyOwner { lzEndpoint.setSendVersion(_version); } function setReceiveVersion(uint16 _version) external override onlyOwner { lzEndpoint.setReceiveVersion(_version); } function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner { lzEndpoint.forceResumeReceive(_srcChainId, _srcAddress); } // _path = abi.encodePacked(remoteAddress, localAddress) // this function set the trusted path for the cross-chain communication function setTrustedRemote(uint16 _remoteChainId, bytes calldata _path) external onlyOwner { trustedRemoteLookup[_remoteChainId] = _path; emit SetTrustedRemote(_remoteChainId, _path); } function setTrustedRemoteAddress(uint16 _remoteChainId, bytes calldata _remoteAddress) external onlyOwner { trustedRemoteLookup[_remoteChainId] = abi.encodePacked(_remoteAddress, address(this)); emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress); } function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) { bytes memory path = trustedRemoteLookup[_remoteChainId]; require(path.length != 0, "LzApp: no trusted path record"); return path.slice(0, path.length - 20); // the last 20 bytes should be address(this) } function setPrecrime(address _precrime) external onlyOwner { precrime = _precrime; emit SetPrecrime(_precrime); } function setMinDstGas( uint16 _dstChainId, uint16 _packetType, uint _minGas ) external onlyOwner { minDstGasLookup[_dstChainId][_packetType] = _minGas; emit SetMinDstGas(_dstChainId, _packetType, _minGas); } // if the size is 0, it means default size limit function setPayloadSizeLimit(uint16 _dstChainId, uint _size) external onlyOwner { payloadSizeLimitLookup[_dstChainId] = _size; } //--------------------------- VIEW FUNCTION ---------------------------------------- function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool) { bytes memory trustedSource = trustedRemoteLookup[_srcChainId]; return keccak256(trustedSource) == keccak256(_srcAddress); } } // File contracts/libraries/ExcessivelySafeCall.sol // Original license: SPDX_License_Identifier: MIT pragma solidity >=0.7.6; library ExcessivelySafeCall { uint constant LOW_28_MASK = 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff; /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeCall( address _target, uint _gas, uint16 _maxCopy, bytes memory _calldata ) internal returns (bool, bytes memory) { // set up for assembly call uint _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := call( _gas, // gas _target, // recipient 0, // ether value add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeStaticCall( address _target, uint _gas, uint16 _maxCopy, bytes memory _calldata ) internal view returns (bool, bytes memory) { // set up for assembly call uint _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := staticcall( _gas, // gas _target, // recipient add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /** * @notice Swaps function selectors in encoded contract calls * @dev Allows reuse of encoded calldata for functions with identical * argument types but different names. It simply swaps out the first 4 bytes * for the new selector. This function modifies memory in place, and should * only be used with caution. * @param _newSelector The new 4-byte selector * @param _buf The encoded contract args */ function swapSelector(bytes4 _newSelector, bytes memory _buf) internal pure { require(_buf.length >= 4); uint _mask = LOW_28_MASK; assembly { // load the first word of let _word := mload(add(_buf, 0x20)) // mask out the top 4 bytes // /x _word := and(_word, _mask) _word := or(_newSelector, _word) mstore(add(_buf, 0x20), _word) } } } // File contracts/lzApp/NonblockingLzApp.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /* * the default LayerZero messaging behaviour is blocking, i.e. any failed message will block the channel * this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking * NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress) */ abstract contract NonblockingLzApp is LzApp { using ExcessivelySafeCall for address; constructor(address _endpoint) LzApp(_endpoint) {} mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages; event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload, bytes _reason); event RetryMessageSuccess(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _payloadHash); // overriding the virtual function in LzReceiver function _blockingLzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal virtual override { (bool success, bytes memory reason) = address(this).excessivelySafeCall( gasleft(), 150, abi.encodeWithSelector(this.nonblockingLzReceive.selector, _srcChainId, _srcAddress, _nonce, _payload) ); // try-catch all errors/exceptions if (!success) { _storeFailedMessage(_srcChainId, _srcAddress, _nonce, _payload, reason); } } function _storeFailedMessage( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload, bytes memory _reason ) internal virtual { failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload); emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, _reason); } function nonblockingLzReceive( uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload ) public virtual { // only internal transaction require(_msgSender() == address(this), "NonblockingLzApp: caller must be LzApp"); _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } //@notice override this function function _nonblockingLzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal virtual; function retryMessage( uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload ) public payable virtual { // assert there is message to retry bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce]; require(payloadHash != bytes32(0), "NonblockingLzApp: no stored message"); require(keccak256(_payload) == payloadHash, "NonblockingLzApp: invalid payload"); // clear the stored message failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0); // execute the message. revert if it fails again _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash); } } // File contracts/token/oft/v2/interfaces/ICommonOFT.sol // Original license: SPDX_License_Identifier: MIT pragma solidity >=0.5.0; /** * @dev Interface of the IOFT core standard */ interface ICommonOFT is IERC165 { struct LzCallParams { address payable refundAddress; address zroPaymentAddress; bytes adapterParams; } /** * @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`) * _dstChainId - L0 defined chain id to send tokens too * _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain * _amount - amount of the tokens to transfer * _useZro - indicates to use zro to pay L0 fees * _adapterParam - flexible bytes array to indicate messaging adapter services in L0 */ function estimateSendFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee); function estimateSendAndCallFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee); /** * @dev returns the circulating amount of tokens on current chain */ function circulatingSupply() external view returns (uint); /** * @dev returns the address of the ERC20 token */ function token() external view returns (address); } // File contracts/token/oft/v2/interfaces/IOFTV2.sol // Original license: SPDX_License_Identifier: MIT pragma solidity >=0.5.0; /** * @dev Interface of the IOFT core standard */ interface IOFTV2 is ICommonOFT { /** * @dev send `_amount` amount of token to (`_dstChainId`, `_toAddress`) from `_from` * `_from` the owner of token * `_dstChainId` the destination chain identifier * `_toAddress` can be any size depending on the `dstChainId`. * `_amount` the quantity of tokens in wei * `_refundAddress` the address LayerZero refunds if too much message fee is sent * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token) * `_adapterParams` is a flexible bytes array to indicate messaging adapter services */ function sendFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, LzCallParams calldata _callParams) external payable; function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams) external payable; } // File contracts/token/oft/v2/interfaces/IOFTReceiverV2.sol // Original license: SPDX_License_Identifier: BUSL-1.1 pragma solidity >=0.5.0; interface IOFTReceiverV2 { /** * @dev Called by the OFT contract when tokens are received from source chain. * @param _srcChainId The chain id of the source chain. * @param _srcAddress The address of the OFT token contract on the source chain. * @param _nonce The nonce of the transaction on the source chain. * @param _from The address of the account who calls the sendAndCall() on the source chain. * @param _amount The amount of tokens to transfer. * @param _payload Additional data with no specified format. */ function onOFTReceived(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, uint _amount, bytes calldata _payload) external; } // File contracts/token/oft/v2/OFTCoreV2.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; abstract contract OFTCoreV2 is NonblockingLzApp { using BytesLib for bytes; using ExcessivelySafeCall for address; uint public constant NO_EXTRA_GAS = 0; // packet type uint8 public constant PT_SEND = 0; uint8 public constant PT_SEND_AND_CALL = 1; uint8 public immutable sharedDecimals; mapping(uint16 => mapping(bytes => mapping(uint64 => bool))) public creditedPackets; /** * @dev Emitted when `_amount` tokens are moved from the `_sender` to (`_dstChainId`, `_toAddress`) * `_nonce` is the outbound nonce */ event SendToChain(uint16 indexed _dstChainId, address indexed _from, bytes32 indexed _toAddress, uint _amount); /** * @dev Emitted when `_amount` tokens are received from `_srcChainId` into the `_toAddress` on the local chain. * `_nonce` is the inbound nonce. */ event ReceiveFromChain(uint16 indexed _srcChainId, address indexed _to, uint _amount); event CallOFTReceivedSuccess(uint16 indexed _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _hash); event NonContractAddress(address _address); // _sharedDecimals should be the minimum decimals on all chains constructor(uint8 _sharedDecimals, address _lzEndpoint) NonblockingLzApp(_lzEndpoint) { sharedDecimals = _sharedDecimals; } /************************************************************************ * public functions ************************************************************************/ function callOnOFTReceived( uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, address _to, uint _amount, bytes calldata _payload, uint _gasForCall ) public virtual { require(_msgSender() == address(this), "OFTCore: caller must be OFTCore"); // send _amount = _transferFrom(address(this), _to, _amount); emit ReceiveFromChain(_srcChainId, _to, _amount); // call IOFTReceiverV2(_to).onOFTReceived{gas: _gasForCall}(_srcChainId, _srcAddress, _nonce, _from, _amount, _payload); } /************************************************************************ * internal functions ************************************************************************/ function _estimateSendFee( uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes memory _adapterParams ) internal view virtual returns (uint nativeFee, uint zroFee) { // mock the payload for sendFrom() bytes memory payload = _encodeSendPayload(_toAddress, _ld2sd(_amount)); return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams); } function _estimateSendAndCallFee( uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes memory _payload, uint64 _dstGasForCall, bool _useZro, bytes memory _adapterParams ) internal view virtual returns (uint nativeFee, uint zroFee) { // mock the payload for sendAndCall() bytes memory payload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(_amount), _payload, _dstGasForCall); return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams); } function _nonblockingLzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal virtual override { uint8 packetType = _payload.toUint8(0); if (packetType == PT_SEND) { _sendAck(_srcChainId, _srcAddress, _nonce, _payload); } else if (packetType == PT_SEND_AND_CALL) { _sendAndCallAck(_srcChainId, _srcAddress, _nonce, _payload); } else { revert("OFTCore: unknown packet type"); } } function _send( address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams ) internal virtual returns (uint amount) { _checkGasLimit(_dstChainId, PT_SEND, _adapterParams, NO_EXTRA_GAS); (amount, ) = _removeDust(_amount); amount = _debitFrom(_from, _dstChainId, _toAddress, amount); // amount returned should not have dust require(amount > 0, "OFTCore: amount too small"); bytes memory lzPayload = _encodeSendPayload(_toAddress, _ld2sd(amount)); _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value); emit SendToChain(_dstChainId, _from, _toAddress, amount); } function _sendAck( uint16 _srcChainId, bytes memory, uint64, bytes memory _payload ) internal virtual { (address to, uint64 amountSD) = _decodeSendPayload(_payload); if (to == address(0)) { to = address(0xdead); } uint amount = _sd2ld(amountSD); amount = _creditTo(_srcChainId, to, amount); emit ReceiveFromChain(_srcChainId, to, amount); } function _sendAndCall( address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes memory _payload, uint64 _dstGasForCall, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams ) internal virtual returns (uint amount) { _checkGasLimit(_dstChainId, PT_SEND_AND_CALL, _adapterParams, _dstGasForCall); (amount, ) = _removeDust(_amount); amount = _debitFrom(_from, _dstChainId, _toAddress, amount); require(amount > 0, "OFTCore: amount too small"); // encode the msg.sender into the payload instead of _from bytes memory lzPayload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(amount), _payload, _dstGasForCall); _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value); emit SendToChain(_dstChainId, _from, _toAddress, amount); } function _sendAndCallAck( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal virtual { (bytes32 from, address to, uint64 amountSD, bytes memory payloadForCall, uint64 gasForCall) = _decodeSendAndCallPayload(_payload); bool credited = creditedPackets[_srcChainId][_srcAddress][_nonce]; uint amount = _sd2ld(amountSD); // credit to this contract first, and then transfer to receiver only if callOnOFTReceived() succeeds if (!credited) { amount = _creditTo(_srcChainId, address(this), amount); creditedPackets[_srcChainId][_srcAddress][_nonce] = true; } if (!_isContract(to)) { emit NonContractAddress(to); return; } // workaround for stack too deep uint16 srcChainId = _srcChainId; bytes memory srcAddress = _srcAddress; uint64 nonce = _nonce; bytes memory payload = _payload; bytes32 from_ = from; address to_ = to; uint amount_ = amount; bytes memory payloadForCall_ = payloadForCall; // no gas limit for the call if retry uint gas = credited ? gasleft() : gasForCall; (bool success, bytes memory reason) = address(this).excessivelySafeCall( gasleft(), 150, abi.encodeWithSelector(this.callOnOFTReceived.selector, srcChainId, srcAddress, nonce, from_, to_, amount_, payloadForCall_, gas) ); if (success) { bytes32 hash = keccak256(payload); emit CallOFTReceivedSuccess(srcChainId, srcAddress, nonce, hash); } else { // store the failed message into the nonblockingLzApp _storeFailedMessage(srcChainId, srcAddress, nonce, payload, reason); } } function _isContract(address _account) internal view returns (bool) { return _account.code.length > 0; } function _ld2sd(uint _amount) internal view virtual returns (uint64) { uint amountSD = _amount / _ld2sdRate(); require(amountSD <= type(uint64).max, "OFTCore: amountSD overflow"); return uint64(amountSD); } function _sd2ld(uint64 _amountSD) internal view virtual returns (uint) { return _amountSD * _ld2sdRate(); } function _removeDust(uint _amount) internal view virtual returns (uint amountAfter, uint dust) { dust = _amount % _ld2sdRate(); amountAfter = _amount - dust; } function _encodeSendPayload(bytes32 _toAddress, uint64 _amountSD) internal view virtual returns (bytes memory) { return abi.encodePacked(PT_SEND, _toAddress, _amountSD); } function _decodeSendPayload(bytes memory _payload) internal view virtual returns (address to, uint64 amountSD) { require(_payload.toUint8(0) == PT_SEND && _payload.length == 41, "OFTCore: invalid payload"); to = _payload.toAddress(13); // drop the first 12 bytes of bytes32 amountSD = _payload.toUint64(33); } function _encodeSendAndCallPayload( address _from, bytes32 _toAddress, uint64 _amountSD, bytes memory _payload, uint64 _dstGasForCall ) internal view virtual returns (bytes memory) { return abi.encodePacked(PT_SEND_AND_CALL, _toAddress, _amountSD, _addressToBytes32(_from), _dstGasForCall, _payload); } function _decodeSendAndCallPayload(bytes memory _payload) internal view virtual returns ( bytes32 from, address to, uint64 amountSD, bytes memory payload, uint64 dstGasForCall ) { require(_payload.toUint8(0) == PT_SEND_AND_CALL, "OFTCore: invalid payload"); to = _payload.toAddress(13); // drop the first 12 bytes of bytes32 amountSD = _payload.toUint64(33); from = _payload.toBytes32(41); dstGasForCall = _payload.toUint64(73); payload = _payload.slice(81, _payload.length - 81); } function _addressToBytes32(address _address) internal pure virtual returns (bytes32) { return bytes32(uint(uint160(_address))); } function _debitFrom( address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount ) internal virtual returns (uint); function _creditTo( uint16 _srcChainId, address _toAddress, uint _amount ) internal virtual returns (uint); function _transferFrom( address _from, address _to, uint _amount ) internal virtual returns (uint); function _ld2sdRate() internal view virtual returns (uint); } // File contracts/token/oft/v2/BaseOFTV2.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; abstract contract BaseOFTV2 is OFTCoreV2, ERC165, IOFTV2 { constructor(uint8 _sharedDecimals, address _lzEndpoint) OFTCoreV2(_sharedDecimals, _lzEndpoint) {} /************************************************************************ * public functions ************************************************************************/ function sendFrom( address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, LzCallParams calldata _callParams ) public payable virtual override { _send(_from, _dstChainId, _toAddress, _amount, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams); } function sendAndCall( address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams ) public payable virtual override { _sendAndCall( _from, _dstChainId, _toAddress, _amount, _payload, _dstGasForCall, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams ); } /************************************************************************ * public view functions ************************************************************************/ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IOFTV2).interfaceId || super.supportsInterface(interfaceId); } function estimateSendFee( uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams ) public view virtual override returns (uint nativeFee, uint zroFee) { return _estimateSendFee(_dstChainId, _toAddress, _amount, _useZro, _adapterParams); } function estimateSendAndCallFee( uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, bool _useZro, bytes calldata _adapterParams ) public view virtual override returns (uint nativeFee, uint zroFee) { return _estimateSendAndCallFee(_dstChainId, _toAddress, _amount, _payload, _dstGasForCall, _useZro, _adapterParams); } function circulatingSupply() public view virtual override returns (uint); function token() public view virtual override returns (address); } // File contracts/token/oft/v2/OFTV2.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; contract OFTV2 is BaseOFTV2, ERC20 { uint internal immutable ld2sdRate; constructor( string memory _name, string memory _symbol, uint8 _sharedDecimals, address _lzEndpoint ) ERC20(_name, _symbol) BaseOFTV2(_sharedDecimals, _lzEndpoint) { uint8 decimals = decimals(); require(_sharedDecimals <= decimals, "OFT: sharedDecimals must be <= decimals"); ld2sdRate = 10**(decimals - _sharedDecimals); } /************************************************************************ * public functions ************************************************************************/ function circulatingSupply() public view virtual override returns (uint) { return totalSupply(); } function token() public view virtual override returns (address) { return address(this); } /************************************************************************ * internal functions ************************************************************************/ function _debitFrom( address _from, uint16, bytes32, uint _rawAmount ) internal virtual override returns (uint) { address spender = _msgSender(); uint96 _amount = safe96(_rawAmount, "Ars::approve: amount exceeds 96 bits"); if (_from != spender) _spendAllowance(_from, spender, _amount); _burn(_from, _amount); return _amount; } function _creditTo( uint16, address _toAddress, uint _rawAmount ) internal virtual override returns (uint) { uint96 _amount = safe96(_rawAmount, "Ars::approve: amount exceeds 96 bits"); _mint(_toAddress, _amount); return _amount; } function _transferFrom( address _from, address _to, uint _rawAmount ) internal virtual override returns (uint) { address spender = _msgSender(); // if transfer from this contract, no need to check allowance uint96 _amount = safe96(_rawAmount, "Ars::approve: amount exceeds 96 bits"); if (_from != address(this) && _from != spender) _spendAllowance(_from, spender, _amount); _transfer(_from, _to, _amount); return _amount; } function _ld2sdRate() internal view virtual override returns (uint) { return ld2sdRate; } } // File contracts/token/oft/v2/mocks/AquariusOFT.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; // @dev mock OFTV2 demonstrating how to inherit OFTV2 contract AquariusOFT is OFTV2 { constructor(address _layerZeroEndpoint, uint _initialSupply, uint8 _sharedDecimals) OFTV2("Aquarius", "ARS", _sharedDecimals, _layerZeroEndpoint) { _mint(_msgSender(), _initialSupply); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_layerZeroEndpoint","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"uint8","name":"_sharedDecimals","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"CallOFTReceivedSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"NonContractAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ReceiveFromChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SendToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_PAYLOAD_SIZE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_EXTRA_GAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND_AND_CALL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"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":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes32","name":"_from","type":"bytes32"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint256","name":"_gasForCall","type":"uint256"}],"name":"callOnOFTReceived","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint96","name":"votes","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"creditedPackets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendAndCallFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","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":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"payloadSizeLimitLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_size","type":"uint256"}],"name":"setPayloadSizeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sharedDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60e06040523480156200001157600080fd5b50604051620066e3380380620066e3833981016040819052620000349162000932565b60405180604001604052806008815260200167417175617269757360c01b8152506040518060400160405280600381526020016241525360e81b81525082858383838381818080620000956200008f6200019b60201b60201c565b6200019f565b6001600160a01b0316608052505060ff1660a05250508151620000c090600a9060208501906200088c565b508051620000d690600b9060208401906200088c565b5050506000620000eb620001ef60201b60201c565b90508060ff168360ff161115620001595760405162461bcd60e51b815260206004820152602760248201527f4f46543a20736861726564446563696d616c73206d757374206265203c3d20646044820152666563696d616c7360c81b60648201526084015b60405180910390fd5b620001658382620009a0565b6200017290600a62000ac3565b60c052506200019293506200018b9250506200019b9050565b83620001f4565b50505062000c0b565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b6001600160a01b0382166200024c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000150565b600062000273826040518060600160405280602481526020016200661460249139620003bf565b90506009546040805160608101909152602a808252620002a8926001600160601b0316918491620065ea6020830139620003fd565b600980546001600160601b0319166001600160601b039283161790556001600160a01b03841660009081526007602090815260409182902054825160608101909352602b8084526200030c9491909116928592909190620066b890830139620003fd565b6001600160a01b038416600081815260076020908152604080832080546001600160601b0319166001600160601b03968716179055519385168452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36001600160a01b038084166000908152600c60205260408120546200039d9216836200044f565b620003ba6000846001600160601b0384166001600160e01b038416565b505050565b6000816c010000000000000000000000008410620003f25760405162461bcd60e51b815260040162000150919062000adb565b508290505b92915050565b6000806200040c848662000b33565b9050846001600160601b0316816001600160601b031610158390620004465760405162461bcd60e51b815260040162000150919062000adb565b50949350505050565b816001600160a01b0316836001600160a01b0316141580156200047b57506000816001600160601b0316115b15620003ba576001600160a01b038316156200054c576001600160a01b0383166000908152600e602052604081205463ffffffff169081620004bf5760006200050e565b6001600160a01b0385166000908152600d6020526040812090620004e560018562000b61565b63ffffffff16815260208101919091526040016000205464010000000090046001600160601b03165b905060006200053882856040518060600160405280602781526020016200665e602791396200061b565b905062000548868484846200066a565b5050505b6001600160a01b03821615620003ba576001600160a01b0382166000908152600e602052604081205463ffffffff1690816200058a576000620005d9565b6001600160a01b0384166000908152600d6020526040812090620005b060018562000b61565b63ffffffff16815260208101919091526040016000205464010000000090046001600160601b03165b905060006200060382856040518060600160405280602681526020016200663860269139620003fd565b905062000613858484846200066a565b505050505050565b6000836001600160601b0316836001600160601b031611158290620006555760405162461bcd60e51b815260040162000150919062000adb565b5062000662838562000b89565b949350505050565b60006200069143604051806060016040528060338152602001620066856033913962000861565b905060008463ffffffff16118015620006ee57506001600160a01b0385166000908152600d6020526040812063ffffffff831691620006d260018862000b61565b63ffffffff908116825260208201929092526040016000205416145b1562000761576001600160a01b0385166000908152600d6020526040812083916200071b60018862000b61565b63ffffffff168152602081019190915260400160002080546001600160601b039290921664010000000002600160201b600160801b03199092169190911790556200080c565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000908152600d82528681208b8616825290915294909420925183549451909116640100000000026001600160801b0319909416911617919091179055620007db84600162000bac565b6001600160a01b0386166000908152600e60205260409020805463ffffffff191663ffffffff929092169190911790555b604080516001600160601b038086168252841660208201526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b6000816401000000008410620003f25760405162461bcd60e51b815260040162000150919062000adb565b8280546200089a9062000bce565b90600052602060002090601f016020900481019282620008be576000855562000909565b82601f10620008d957805160ff191683800117855562000909565b8280016001018555821562000909579182015b8281111562000909578251825591602001919060010190620008ec565b50620009179291506200091b565b5090565b5b808211156200091757600081556001016200091c565b6000806000606084860312156200094857600080fd5b83516001600160a01b03811681146200096057600080fd5b60208501516040860151919450925060ff811681146200097f57600080fd5b809150509250925092565b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff841680821015620009bd57620009bd6200098a565b90039392505050565b600181815b8085111562000a07578160001904821115620009eb57620009eb6200098a565b80851615620009f957918102915b93841c9390800290620009cb565b509250929050565b60008262000a2057506001620003f7565b8162000a2f57506000620003f7565b816001811462000a48576002811462000a535762000a73565b6001915050620003f7565b60ff84111562000a675762000a676200098a565b50506001821b620003f7565b5060208310610133831016604e8410600b841016171562000a98575081810a620003f7565b62000aa48383620009c6565b806000190482111562000abb5762000abb6200098a565b029392505050565b600062000ad460ff84168362000a0f565b9392505050565b600060208083528351808285015260005b8181101562000b0a5785810183015185820160400152820162000aec565b8181111562000b1d576000604083870101525b50601f01601f1916929092016040019392505050565b60006001600160601b0382811684821680830382111562000b585762000b586200098a565b01949350505050565b600063ffffffff8381169083168181101562000b815762000b816200098a565b039392505050565b60006001600160601b038381169083168181101562000b815762000b816200098a565b600063ffffffff80831681851680830382111562000b585762000b586200098a565b600181811c9082168062000be357607f821691505b6020821081141562000c0557634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05161596262000c88600039600081816134f2015281816139470152613f2501526000610849015260008181610a0f01528181610c6d01528181610f850152818161104501528181611360015281816120250152818161256401528181612bad015281816130b80152613b2801526159626000f3fe60806040526004361061038b5760003560e01c80637ecebe00116101dc578063baf3292d11610102578063e6a20ae6116100a0578063f1127ed81161006f578063f1127ed814610ba3578063f2fde38b14610c17578063f5ecbdbc14610c37578063fc0c546a14610c5757600080fd5b8063e6a20ae614610b1a578063e7a324dc14610b2f578063eaffd49a14610b63578063eb8d72b714610b8357600080fd5b8063cbed8b9c116100dc578063cbed8b9c14610aa7578063d1deba1f14610ac7578063dd62ed3e14610ada578063df2a5b3b14610afa57600080fd5b8063baf3292d14610a51578063c3cda52014610a71578063c446183414610a9157600080fd5b80639bdb98121161017a578063a6c3d16511610149578063a6c3d165146109bd578063a9059cbb146109dd578063b353aaa7146109fd578063b4b5ea5714610a3157600080fd5b80639bdb98121461090b5780639f38369a1461095d578063a457c2d71461097d578063a4c51df51461099d57600080fd5b80638da5cb5b116101b65780638da5cb5b146108a35780639358928b146108c1578063950c8a74146108d657806395d89b41146108f657600080fd5b80637ecebe001461080a578063857749b0146108375780638cfd8f5c1461086b57600080fd5b80633f1f4fa4116102c157806366ad5c8a1161025f578063715018a61161022e578063715018a6146107a25780637533d788146107b757806376203b48146107d7578063782d6fe1146107ea57600080fd5b806366ad5c8a146106e8578063695ef6bf146107085780636fcfff451461071b57806370a082311461076357600080fd5b80634c42899a1161029b5780634c42899a14610616578063587cde1e1461062b5780635b8c41e6146106795780635c19a95c146106c857600080fd5b80633f1f4fa4146105b457806342d65a8d146105e1578063447705151461060157600080fd5b806318160ddd1161032e578063313ce56711610308578063313ce5671461051d578063365260b41461053f57806339509351146105745780633d8b38f61461059457600080fd5b806318160ddd1461048957806320606b70146104bb57806323b872dd146104fd57600080fd5b806307e0db171161036a57806307e0db1714610409578063095ea7b3146104295780630df374831461044957806310ddb1371461046957600080fd5b80621d35671461039057806301ffc9a7146103b257806306fdde03146103e7575b600080fd5b34801561039c57600080fd5b506103b06103ab36600461479a565b610c6a565b005b3480156103be57600080fd5b506103d26103cd36600461482d565b610e9b565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b506103fc610ed2565b6040516103de91906148af565b34801561041557600080fd5b506103b06104243660046148c2565b610f64565b34801561043557600080fd5b506103d26104443660046148f2565b610fed565b34801561045557600080fd5b506103b061046436600461491e565b611005565b34801561047557600080fd5b506103b06104843660046148c2565b611024565b34801561049557600080fd5b506009546001600160601b03165b6040516001600160601b0390911681526020016103de565b3480156104c757600080fd5b506104ef7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6040519081526020016103de565b34801561050957600080fd5b506103d261051836600461493a565b61107c565b34801561052957600080fd5b5060125b60405160ff90911681526020016103de565b34801561054b57600080fd5b5061055f61055a36600461498b565b6111c1565b604080519283526020830191909152016103de565b34801561058057600080fd5b506103d261058f3660046148f2565b611216565b3480156105a057600080fd5b506103d26105af3660046149f0565b611275565b3480156105c057600080fd5b506104ef6105cf3660046148c2565b60036020526000908152604090205481565b3480156105ed57600080fd5b506103b06105fc3660046149f0565b611341565b34801561060d57600080fd5b506104ef600081565b34801561062257600080fd5b5061052d600081565b34801561063757600080fd5b50610661610646366004614a42565b600c602052600090815260409020546001600160a01b031681565b6040516001600160a01b0390911681526020016103de565b34801561068557600080fd5b506104ef610694366004614acc565b6005602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b3480156106d457600080fd5b506103b06106e3366004614a42565b6113c7565b3480156106f457600080fd5b506103b061070336600461479a565b6113d4565b6103b0610716366004614b84565b6114b0565b34801561072757600080fd5b5061074e610736366004614a42565b600e6020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016103de565b34801561076f57600080fd5b506104a361077e366004614a42565b6001600160a01b03166000908152600760205260409020546001600160601b031690565b3480156107ae57600080fd5b506103b061151b565b3480156107c357600080fd5b506103fc6107d23660046148c2565b61152f565b6103b06107e5366004614bf7565b6115c9565b3480156107f657600080fd5b506104a36108053660046148f2565b611678565b34801561081657600080fd5b506104ef610825366004614a42565b600f6020526000908152604090205481565b34801561084357600080fd5b5061052d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561087757600080fd5b506104ef610886366004614ca9565b600260209081526000928352604080842090915290825290205481565b3480156108af57600080fd5b506000546001600160a01b0316610661565b3480156108cd57600080fd5b506104ef6118fe565b3480156108e257600080fd5b50600454610661906001600160a01b031681565b34801561090257600080fd5b506103fc611920565b34801561091757600080fd5b506103d2610926366004614acc565b6006602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b34801561096957600080fd5b506103fc6109783660046148c2565b61192f565b34801561098957600080fd5b506103d26109983660046148f2565b611a46565b3480156109a957600080fd5b5061055f6109b8366004614cdc565b611b0e565b3480156109c957600080fd5b506103b06109d83660046149f0565b611b9d565b3480156109e957600080fd5b506103d26109f83660046148f2565b611c30565b348015610a0957600080fd5b506106617f000000000000000000000000000000000000000000000000000000000000000081565b348015610a3d57600080fd5b506104a3610a4c366004614a42565b611c63565b348015610a5d57600080fd5b506103b0610a6c366004614a42565b611ce0565b348015610a7d57600080fd5b506103b0610a8c366004614d95565b611d3c565b348015610a9d57600080fd5b506104ef61271081565b348015610ab357600080fd5b506103b0610ac2366004614df7565b612006565b6103b0610ad536600461479a565b612090565b348015610ae657600080fd5b506104a3610af5366004614e65565b6122a6565b348015610b0657600080fd5b506103b0610b15366004614e9e565b6122da565b348015610b2657600080fd5b5061052d600181565b348015610b3b57600080fd5b506104ef7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b348015610b6f57600080fd5b506103b0610b7e366004614eda565b612344565b348015610b8f57600080fd5b506103b0610b9e3660046149f0565b612463565b348015610baf57600080fd5b50610bf3610bbe366004614fa2565b600d60209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6040805163ffffffff90931683526001600160601b039091166020830152016103de565b348015610c2357600080fd5b506103b0610c32366004614a42565b6124bd565b348015610c4357600080fd5b506103fc610c52366004614fd9565b612533565b348015610c6357600080fd5b5030610661565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610ce75760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff861660009081526001602052604081208054610d0590615026565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3190615026565b8015610d7e5780601f10610d5357610100808354040283529160200191610d7e565b820191906000526020600020905b815481529060010190602001808311610d6157829003601f168201915b50505050509050805186869050148015610d99575060008151115b8015610dc1575080516020820120604051610db7908890889061505b565b6040518091039020145b610e1c5760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610cde565b610e928787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284376000920191909152506125e492505050565b50505050505050565b60006001600160e01b03198216631f7ecdf760e01b1480610ecc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600a8054610ee190615026565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0d90615026565b8015610f5a5780601f10610f2f57610100808354040283529160200191610f5a565b820191906000526020600020905b815481529060010190602001808311610f3d57829003601f168201915b5050505050905090565b610f6c61265d565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906307e0db17906024015b600060405180830381600087803b158015610fd257600080fd5b505af1158015610fe6573d6000803e3d6000fd5b5050505050565b600033610ffb8185856126b7565b5060019392505050565b61100d61265d565b61ffff909116600090815260036020526040902055565b61102c61265d565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906310ddb13790602401610fb8565b6001600160a01b03831660009081526008602090815260408083203380855290835281842054825160608101909352602b80845291936001600160601b039091169285926110d4928892919061565390830139612837565b9050866001600160a01b0316836001600160a01b03161415801561110157506001600160601b0382811614155b156111a957600061112b83836040518060600160405280603e815260200161578b603e9139612866565b6001600160a01b038981166000818152600860209081526040808320948a168084529482529182902080546001600160601b0319166001600160601b0387169081179091559151918252939450919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505b6111b48787836128b0565b5060019695505050505050565b6000806112078888888888888080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612b4592505050565b91509150965096945050505050565b60008033905060006112408460405180606001604052806030815260200161584d60309139612837565b905061126a828683611252868a6122a6565b61125c9190615081565b6001600160601b03166126b7565b506001949350505050565b61ffff83166000908152600160205260408120805482919061129690615026565b80601f01602080910402602001604051908101604052809291908181526020018280546112c290615026565b801561130f5780601f106112e45761010080835404028352916020019161130f565b820191906000526020600020905b8154815290600101906020018083116112f257829003601f168201915b50505050509050838360405161132692919061505b565b60405180910390208180519060200120149150509392505050565b61134961265d565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342d65a8d90611399908690869086906004016150d5565b600060405180830381600087803b1580156113b357600080fd5b505af1158015610e92573d6000803e3d6000fd5b6113d13382612c39565b50565b3330146114325760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610cde565b6114a88686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f890181900481028201810190925287815289935091508790879081908401838280828437600092019190915250612cc392505050565b505050505050565b6114a8858585856114c46020870187614a42565b6114d46040880160208901614a42565b6114e160408901896150f3565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612d4a92505050565b61152361265d565b61152d6000612e32565b565b6001602052600090815260409020805461154890615026565b80601f016020809104026020016040519081016040528092919081815260200182805461157490615026565b80156115c15780601f10611596576101008083540402835291602001916115c1565b820191906000526020600020905b8154815290600101906020018083116115a457829003601f168201915b505050505081565b61166d8888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a92506116169150506020890189614a42565b61162660408a0160208b01614a42565b61163360408b018b6150f3565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612e8292505050565b505050505050505050565b60004382106116d85760405162461bcd60e51b815260206004820152602660248201527f4172733a3a6765745072696f72566f7465733a206e6f742079657420646574656044820152651c9b5a5b995960d21b6064820152608401610cde565b6001600160a01b0383166000908152600e602052604090205463ffffffff1680611706576000915050610ecc565b6001600160a01b0384166000908152600d60205260408120849161172b600185615139565b63ffffffff9081168252602082019290925260400160002054161161179e576001600160a01b0384166000908152600d602052604081209061176e600184615139565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03169150610ecc9050565b6001600160a01b0384166000908152600d6020908152604080832083805290915290205463ffffffff168310156117d9576000915050610ecc565b6000806117e7600184615139565b90505b8163ffffffff168163ffffffff1611156118b9576000600261180c8484615139565b6118169190615174565b6118209083615139565b6001600160a01b0388166000908152600d6020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915291925087141561188d57602001519450610ecc9350505050565b805163ffffffff168711156118a4578193506118b2565b6118af600183615139565b92505b50506117ea565b506001600160a01b0385166000908152600d6020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60006119126009546001600160601b031690565b6001600160601b0316905090565b6060600b8054610ee190615026565b61ffff811660009081526001602052604081208054606092919061195290615026565b80601f016020809104026020016040519081016040528092919081815260200182805461197e90615026565b80156119cb5780601f106119a0576101008083540402835291602001916119cb565b820191906000526020600020905b8154815290600101906020018083116119ae57829003601f168201915b50505050509050805160001415611a245760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610cde565b611a3f600060148351611a379190615197565b839190612f7e565b9392505050565b60003381611a5482866122a6565b90506000611a7a856040518060600160405280603081526020016158fd60309139612837565b9050806001600160601b0316826001600160601b03161015611aec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cde565b611b0283878385036001600160601b03166126b7565b50600195945050505050565b600080611b8b8b8b8b8b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c908190840183828082843760009201919091525061308b92505050565b91509150995099975050505050505050565b611ba561265d565b818130604051602001611bba939291906151ae565b60408051601f1981840301815291815261ffff85166000908152600160209081529190208251611bef93919290910190614617565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce838383604051611c23939291906150d5565b60405180910390a1505050565b600080611c558360405180606001604052806027815260200161571960279139612837565b90503361126a8186846128b0565b6001600160a01b0381166000908152600e602052604081205463ffffffff1680611c8e576000611a3f565b6001600160a01b0383166000908152600d6020526040812090611cb2600184615139565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03169392505050565b611ce861265d565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b9060200160405180910390a150565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866611d67610ed2565b80519060200120611d754690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015611ea1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611f125760405162461bcd60e51b815260206004820152602560248201527f4172733a3a64656c656761746542795369673a20696e76616c6964207369676e604482015264617475726560d81b6064820152608401610cde565b6001600160a01b0381166000908152600f60205260408120805491611f36836151cf565b919050558914611f925760405162461bcd60e51b815260206004820152602160248201527f4172733a3a64656c656761746542795369673a20696e76616c6964206e6f6e636044820152606560f81b6064820152608401610cde565b87421115611ff05760405162461bcd60e51b815260206004820152602560248201527f4172733a3a64656c656761746542795369673a207369676e61747572652065786044820152641c1a5c995960da1b6064820152608401610cde565b611ffa818b612c39565b50505050505050505050565b61200e61265d565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cbed8b9c9061206290889088908890889088906004016151ea565b600060405180830381600087803b15801561207c57600080fd5b505af115801561166d573d6000803e3d6000fd5b61ffff861660009081526005602052604080822090516120b3908890889061505b565b90815260408051602092819003830190206001600160401b038716600090815292529020549050806121335760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610cde565b80838360405161214492919061505b565b6040518091039020146121a35760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610cde565b61ffff871660009081526005602052604080822090516121c6908990899061505b565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f8801829004820283018201905286825261225e918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a935091508890889081908401838280828437600092019190915250612cc392505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051612295959493929190615223565b60405180910390a150505050505050565b6001600160a01b0391821660009081526008602090815260408083209390941682529190915220546001600160601b031690565b6122e261265d565b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac090606001611c23565b3330146123935760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610cde565b61239e308686613146565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf866040516123e091815260200190565b60405180910390a3604051633fe79aed60e11b81526001600160a01b03861690637fcf35da908390612424908e908e908e908e908e908d908d908d9060040161525e565b600060405180830381600088803b15801561243e57600080fd5b5087f1158015612452573d6000803e3d6000fd5b505050505050505050505050505050565b61246b61265d565b61ffff8316600090815260016020526040902061248990838361469b565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab838383604051611c23939291906150d5565b6124c561265d565b6001600160a01b03811661252a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cde565b6113d181612e32565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5ecbdbc90608401600060405180830381865afa1580156125b3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526125db91908101906152b9565b95945050505050565b6000806126475a60966366ad5c8a60e01b8989898960405160240161260c9493929190615326565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152309291906131d3565b91509150816114a8576114a8868686868561325d565b6000546001600160a01b0316331461152d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cde565b6001600160a01b03831661271b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a205f617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610cde565b6001600160a01b03821661277d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a205f617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610cde565b600060001982141561279757506001600160601b036127bc565b6127b98260405180606001604052806027815260200161574060279139612837565b90505b6001600160a01b0384811660008181526008602090815260408083209488168084529482529182902080546001600160601b0319166001600160601b03871690811790915591519182527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050565b600081600160601b841061285e5760405162461bcd60e51b8152600401610cde91906148af565b509192915050565b6000836001600160601b0316836001600160601b03161115829061289d5760405162461bcd60e51b8152600401610cde91906148af565b506128a88385615364565b949350505050565b6001600160a01b0383166129155760405162461bcd60e51b815260206004820152602660248201527f45524332303a205f7472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610cde565b6001600160a01b0382166129775760405162461bcd60e51b8152602060048201526024808201527f45524332303a205f7472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610cde565b6001600160a01b0382163014156129ec5760405162461bcd60e51b815260206004820152603360248201527f45524332303a3a5f7472616e736665723a2063616e6e6f74207472616e7366656044820152721c881d1bc81d1bdad95b8818dbdb9d1c9858dd606a1b6064820152608401610cde565b6001600160a01b038316600090815260076020908152604091829020548251606081019093526031808452612a37936001600160601b03909216928592919061587d90830139612866565b6001600160a01b03848116600090815260076020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352602b808452612a9f94919091169285929091906158ae908301396132fa565b6001600160a01b0383811660008181526007602090815260409182902080546001600160601b0319166001600160601b03968716179055905193851684529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36001600160a01b038084166000908152600c6020526040808220548584168352912054612b409291821691168361333e565b505050565b6000806000612b9387612b57886134ea565b6040805160006020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb1090612bea908b90309086908b908b90600401615384565b6040805180830381865afa158015612c06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c2a91906153d8565b92509250509550959350505050565b6001600160a01b038083166000818152600c6020818152604080842080546007845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612cbd82848361333e565b50505050565b6000612ccf8282613570565b905060ff8116612cea57612ce5858585856135cc565b610fe6565b60ff811660011415612d0257612ce58585858561365c565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610cde565b6000612d588782848161386a565b612d618561393f565b509050612d708888888461397f565b905060008111612dbe5760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610cde565b6000612dcd87612b57846134ea565b9050612ddd8882878787346139fe565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612e1e91815260200190565b60405180910390a450979650505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000612e9a896001846001600160401b03891661386a565b612ea38761393f565b509050612eb28a8a8a8461397f565b905060008111612f005760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610cde565b6000612f17338a612f10856134ea565b8a8a613ba4565b9050612f278a82878787346139fe565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612f6891815260200190565b60405180910390a4509998505050505050505050565b606081612f8c81601f6153fc565b1015612fcb5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610cde565b612fd582846153fc565b845110156130195760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610cde565b6060821580156130385760405191506000825260208201604052613082565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015613071578051835260209283019201613059565b5050858452601f01601f1916604052505b50949350505050565b600080600061309e338a612f108b6134ea565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb10906130f5908d90309086908b908b90600401615384565b6040805180830381865afa158015613111573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061313591906153d8565b925092505097509795505050505050565b60008033905060006131708460405180606001604052806024815260200161576760249139612837565b90506001600160a01b038616301480159061319d5750816001600160a01b0316866001600160a01b031614155b156131b6576131b68683836001600160601b0316613be5565b6131c18686836128b0565b6001600160601b031695945050505050565b6000606060008060008661ffff166001600160401b038111156131f8576131f8614a5f565b6040519080825280601f01601f191660200182016040528015613222576020820181803683370190505b50905060008087516020890160008d8df191503d925086831115613244578692505b828152826000602083013e909890975095505050505050565b8180519060200120600560008761ffff1661ffff1681526020019081526020016000208560405161328e9190615414565b9081526040805191829003602090810183206001600160401b0388166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c906132eb9087908790879087908790615430565b60405180910390a15050505050565b6000806133078486615081565b9050846001600160601b0316816001600160601b0316101583906130825760405162461bcd60e51b8152600401610cde91906148af565b816001600160a01b0316836001600160a01b03161415801561336957506000816001600160601b0316115b15612b40576001600160a01b0383161561342e576001600160a01b0383166000908152600e602052604081205463ffffffff1690816133a95760006133f5565b6001600160a01b0385166000908152600d60205260408120906133cd600185615139565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03165b9050600061341c82856040518060600160405280602781526020016156f260279139612866565b905061342a86848484613ca1565b5050505b6001600160a01b03821615612b40576001600160a01b0382166000908152600e602052604081205463ffffffff1690816134695760006134b5565b6001600160a01b0384166000908152600d602052604081209061348d600185615139565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03165b905060006134dc82856040518060600160405280602681526020016156cc602691396132fa565b90506114a885848484613ca1565b6000806135177f000000000000000000000000000000000000000000000000000000000000000084615482565b90506001600160401b03811115610ecc5760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610cde565b600061357d8260016153fc565b835110156135c35760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610cde565b50016001015190565b6000806135d883613e99565b90925090506001600160a01b0382166135f15761dead91505b60006135fc82613f1e565b9050613609878483613f53565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf8360405161364b91815260200190565b60405180910390a350505050505050565b600080600080600061366d86613f9e565b945094509450945094506000600660008b61ffff1661ffff168152602001908152602001600020896040516136a29190615414565b90815260408051602092819003830190206001600160401b038b166000908152925281205460ff1691506136d585613f1e565b905081613743576136e78b3083613f53565b61ffff8c1660009081526006602052604090819020905191925060019161370f908d90615414565b90815260408051602092819003830190206001600160401b038d16600090815292529020805460ff19169115159190911790555b6001600160a01b0386163b61379a576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a150505050505050612cbd565b8a8a8a8a8a8a868a60008a6137b8578b6001600160401b03166137ba565b5a5b90506000806137ec5a609663eaffd49a60e01b8e8e8e8d8d8d8d8d60405160240161260c989796959493929190615496565b915091508115613845578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd88490613837908e908e90869061550a565b60405180910390a250613852565b6138528b8b8b8b8561325d565b50505050505050505050505050505050505050505050565b600061387583614055565b61ffff808716600090815260026020908152604080832093891683529290522054909150806138e65760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610cde565b6138f083826153fc565b8210156114a85760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610cde565b60008061396c7f000000000000000000000000000000000000000000000000000000000000000084615538565b90506139788184615197565b9150915091565b60008033905060006139a98460405180606001604052806024815260200161576760249139612837565b9050816001600160a01b0316876001600160a01b0316146139d8576139d88783836001600160601b0316613be5565b6139eb87826001600160601b03166140b1565b6001600160601b03169695505050505050565b61ffff861660009081526001602052604081208054613a1c90615026565b80601f0160208091040260200160405190810160405280929190818152602001828054613a4890615026565b8015613a955780601f10613a6a57610100808354040283529160200191613a95565b820191906000526020600020905b815481529060010190602001808311613a7857829003601f168201915b50505050509050805160001415613b075760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610cde565b613b128787516142c6565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c5803100908490613b69908b9086908c908c908c908c9060040161554c565b6000604051808303818588803b158015613b8257600080fd5b505af1158015613b96573d6000803e3d6000fd5b505050505050505050505050565b6060600185856001600160a01b0389168587604051602001613bcb969594939291906155b3565b604051602081830303815290604052905095945050505050565b6000613c09826040518060600160405280602e815260200161581f602e9139612837565b90506000613c1785856122a6565b90506001600160601b0380821614610fe657816001600160601b0316816001600160601b03161015613c8b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cde565b610fe685858484036001600160601b03166126b7565b6000613cc5436040518060600160405280603381526020016157ec60339139614334565b905060008463ffffffff16118015613d1f57506001600160a01b0385166000908152600d6020526040812063ffffffff831691613d03600188615139565b63ffffffff908116825260208201929092526040016000205416145b15613d93576001600160a01b0385166000908152600d602052604081208391613d49600188615139565b63ffffffff168152602081019190915260400160002080546001600160601b0392909216600160201b026fffffffffffffffffffffffff0000000019909216919091179055613e44565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000908152600d82528681208b8616825290915294909420925183549451909116600160201b026fffffffffffffffffffffffffffffffff19909416911617919091179055613e13846001615614565b6001600160a01b0386166000908152600e60205260409020805463ffffffff191663ffffffff929092169190911790555b604080516001600160601b038086168252841660208201526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b60008080613ea78482613570565b60ff16148015613eb8575082516029145b613eff5760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610cde565b613f0a83600d61435b565b9150613f178360216143c0565b9050915091565b6000610ecc7f00000000000000000000000000000000000000000000000000000000000000006001600160401b038416615633565b600080613f788360405180606001604052806024815260200161576760249139612837565b9050613f8d84826001600160601b031661441d565b6001600160601b0316949350505050565b600080806060816001613fb18783613570565b60ff1614613ffc5760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610cde565b61400786600d61435b565b93506140148660216143c0565b92506140218660296145b9565b945061402e8660496143c0565b905061404a60518088516140429190615197565b889190612f7e565b915091939590929450565b60006022825110156140a95760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610cde565b506022015190565b6001600160a01b0382166141115760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610cde565b6000614135826040518060600160405280602381526020016157c960239139612837565b90506001600160a01b0383166000908152600760205260409020546001600160601b039081169082168110156141b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610cde565b6141db81836040518060600160405280602481526020016158d960249139612866565b6001600160a01b03851660009081526007602090815260409182902080546001600160601b0319166001600160601b03948516179055600954825160608101909352602480845261423c94919091169286929091906158d990830139612866565b600980546001600160601b0319166001600160601b0392831617905560405190831681526000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36001600160a01b038085166000908152600c60205260408120546142c19216908461333e565b612cbd565b61ffff8216600090815260036020526040902054806142e457506127105b80821115612b405760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610cde565b600081600160201b841061285e5760405162461bcd60e51b8152600401610cde91906148af565b60006143688260146153fc565b835110156143b05760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610cde565b500160200151600160601b900490565b60006143cd8260086153fc565b835110156144145760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610cde565b50016008015190565b6001600160a01b0382166144735760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610cde565b6000614497826040518060600160405280602481526020016156a860249139612837565b90506009546040805160608101909152602a8082526144c9926001600160601b031691849161567e60208301396132fa565b600980546001600160601b0319166001600160601b039283161790556001600160a01b03841660009081526007602090815260409182902054825160608101909352602b80845261452a94919091169285929091906158ae908301396132fa565b6001600160a01b038416600081815260076020908152604080832080546001600160601b0319166001600160601b03968716179055519385168452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36001600160a01b038084166000908152600c6020526040812054612b4092168361333e565b60006145c68260206153fc565b8351101561460e5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610cde565b50016020015190565b82805461462390615026565b90600052602060002090601f016020900481019282614645576000855561468b565b82601f1061465e57805160ff191683800117855561468b565b8280016001018555821561468b579182015b8281111561468b578251825591602001919060010190614670565b5061469792915061470f565b5090565b8280546146a790615026565b90600052602060002090601f0160209004810192826146c9576000855561468b565b82601f106146e25782800160ff1982351617855561468b565b8280016001018555821561468b579182015b8281111561468b5782358255916020019190600101906146f4565b5b808211156146975760008155600101614710565b803561ffff8116811461473657600080fd5b919050565b60008083601f84011261474d57600080fd5b5081356001600160401b0381111561476457600080fd5b60208301915083602082850101111561477c57600080fd5b9250929050565b80356001600160401b038116811461473657600080fd5b600080600080600080608087890312156147b357600080fd5b6147bc87614724565b955060208701356001600160401b03808211156147d857600080fd5b6147e48a838b0161473b565b90975095508591506147f860408a01614783565b9450606089013591508082111561480e57600080fd5b5061481b89828a0161473b565b979a9699509497509295939492505050565b60006020828403121561483f57600080fd5b81356001600160e01b031981168114611a3f57600080fd5b60005b8381101561487257818101518382015260200161485a565b83811115612cbd5750506000910152565b6000815180845261489b816020860160208601614857565b601f01601f19169290920160200192915050565b602081526000611a3f6020830184614883565b6000602082840312156148d457600080fd5b611a3f82614724565b6001600160a01b03811681146113d157600080fd5b6000806040838503121561490557600080fd5b8235614910816148dd565b946020939093013593505050565b6000806040838503121561493157600080fd5b61491083614724565b60008060006060848603121561494f57600080fd5b833561495a816148dd565b9250602084013561496a816148dd565b929592945050506040919091013590565b8035801515811461473657600080fd5b60008060008060008060a087890312156149a457600080fd5b6149ad87614724565b955060208701359450604087013593506149c96060880161497b565b925060808701356001600160401b038111156149e457600080fd5b61481b89828a0161473b565b600080600060408486031215614a0557600080fd5b614a0e84614724565b925060208401356001600160401b03811115614a2957600080fd5b614a358682870161473b565b9497909650939450505050565b600060208284031215614a5457600080fd5b8135611a3f816148dd565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715614a9d57614a9d614a5f565b604052919050565b60006001600160401b03821115614abe57614abe614a5f565b50601f01601f191660200190565b600080600060608486031215614ae157600080fd5b614aea84614724565b925060208401356001600160401b03811115614b0557600080fd5b8401601f81018613614b1657600080fd5b8035614b29614b2482614aa5565b614a75565b818152876020838501011115614b3e57600080fd5b81602084016020830137600060208383010152809450505050614b6360408501614783565b90509250925092565b600060608284031215614b7e57600080fd5b50919050565b600080600080600060a08688031215614b9c57600080fd5b8535614ba7816148dd565b9450614bb560208701614724565b9350604086013592506060860135915060808601356001600160401b03811115614bde57600080fd5b614bea88828901614b6c565b9150509295509295909350565b60008060008060008060008060e0898b031215614c1357600080fd5b8835614c1e816148dd565b9750614c2c60208a01614724565b9650604089013595506060890135945060808901356001600160401b0380821115614c5657600080fd5b614c628c838d0161473b565b9096509450849150614c7660a08c01614783565b935060c08b0135915080821115614c8c57600080fd5b50614c998b828c01614b6c565b9150509295985092959890939650565b60008060408385031215614cbc57600080fd5b614cc583614724565b9150614cd360208401614724565b90509250929050565b600080600080600080600080600060e08a8c031215614cfa57600080fd5b614d038a614724565b985060208a0135975060408a0135965060608a01356001600160401b0380821115614d2d57600080fd5b614d398d838e0161473b565b9098509650869150614d4d60808d01614783565b9550614d5b60a08d0161497b565b945060c08c0135915080821115614d7157600080fd5b50614d7e8c828d0161473b565b915080935050809150509295985092959850929598565b60008060008060008060c08789031215614dae57600080fd5b8635614db9816148dd565b95506020870135945060408701359350606087013560ff81168114614ddd57600080fd5b9598949750929560808101359460a0909101359350915050565b600080600080600060808688031215614e0f57600080fd5b614e1886614724565b9450614e2660208701614724565b93506040860135925060608601356001600160401b03811115614e4857600080fd5b614e548882890161473b565b969995985093965092949392505050565b60008060408385031215614e7857600080fd5b8235614e83816148dd565b91506020830135614e93816148dd565b809150509250929050565b600080600060608486031215614eb357600080fd5b614ebc84614724565b9250614eca60208501614724565b9150604084013590509250925092565b6000806000806000806000806000806101008b8d031215614efa57600080fd5b614f038b614724565b995060208b01356001600160401b0380821115614f1f57600080fd5b614f2b8e838f0161473b565b909b509950899150614f3f60408e01614783565b985060608d0135975060808d01359150614f58826148dd565b90955060a08c0135945060c08c01359080821115614f7557600080fd5b50614f828d828e0161473b565b9150809450508092505060e08b013590509295989b9194979a5092959850565b60008060408385031215614fb557600080fd5b8235614fc0816148dd565b9150602083013563ffffffff81168114614e9357600080fd5b60008060008060808587031215614fef57600080fd5b614ff885614724565b935061500660208601614724565b92506040850135615016816148dd565b9396929550929360600135925050565b600181811c9082168061503a57607f821691505b60208210811415614b7e57634e487b7160e01b600052602260045260246000fd5b8183823760009101908152919050565b634e487b7160e01b600052601160045260246000fd5b60006001600160601b038083168185168083038211156150a3576150a361506b565b01949350505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff841681526040602082015260006125db6040830184866150ac565b6000808335601e1984360301811261510a57600080fd5b8301803591506001600160401b0382111561512457600080fd5b60200191503681900382131561477c57600080fd5b600063ffffffff838116908316818110156151565761515661506b565b039392505050565b634e487b7160e01b600052601260045260246000fd5b600063ffffffff8084168061518b5761518b61515e565b92169190910492915050565b6000828210156151a9576151a961506b565b500390565b8284823760609190911b6001600160601b0319169101908152601401919050565b60006000198214156151e3576151e361506b565b5060010190565b600061ffff8088168352808716602084015250846040830152608060608301526152186080830184866150ac565b979650505050505050565b61ffff861681526080602082015260006152416080830186886150ac565b6001600160401b0394909416604083015250606001529392505050565b61ffff8916815260c06020820152600061527c60c08301898b6150ac565b6001600160401b038816604084015286606084015285608084015282810360a08401526152aa8185876150ac565b9b9a5050505050505050505050565b6000602082840312156152cb57600080fd5b81516001600160401b038111156152e157600080fd5b8201601f810184136152f257600080fd5b8051615300614b2482614aa5565b81815285602083850101111561531557600080fd5b6125db826020830160208601614857565b61ffff851681526080602082015260006153436080830186614883565b6001600160401b038516604084015282810360608401526152188185614883565b60006001600160601b03838116908316818110156151565761515661506b565b61ffff861681526001600160a01b038516602082015260a0604082018190526000906153b290830186614883565b841515606084015282810360808401526153cc8185614883565b98975050505050505050565b600080604083850312156153eb57600080fd5b505080516020909101519092909150565b6000821982111561540f5761540f61506b565b500190565b60008251615426818460208701614857565b9190910192915050565b61ffff8616815260a06020820152600061544d60a0830187614883565b6001600160401b0386166040840152828103606084015261546e8186614883565b905082810360808401526153cc8185614883565b6000826154915761549161515e565b500490565b600061010061ffff8b1683528060208401526154b48184018b614883565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c085015290506154f48186614883565b9150508260e08301529998505050505050505050565b60608152600061551d6060830186614883565b6001600160401b039490941660208301525060400152919050565b6000826155475761554761515e565b500690565b61ffff8716815260c06020820152600061556960c0830188614883565b828103604084015261557b8188614883565b6001600160a01b0387811660608601528616608085015283810360a085015290506155a68185614883565b9998505050505050505050565b60ff60f81b8760f81b16815285600182015260006001600160401b0360c01b808760c01b166021840152856029840152808560c01b166049840152508251615602816051850160208701614857565b91909101605101979650505050505050565b600063ffffffff8083168185168083038211156150a3576150a361506b565b600081600019048311821515161561564d5761564d61506b565b50029056fe45524332303a3a7472616e7366657246726f6d3a20616d6f756e742065786365656473203936206269747345524332303a3a5f6d696e743a205f746f74616c537570706c792065786365656473203936206269747345524332303a3a5f6d696e743a20616d6f756e74206578636565647320393620626974734172733a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f77734172733a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777345524332303a3a7472616e736665723a20616d6f756e742065786365656473203936206269747345524332303a3a5f617070726f76653a20616d6f756e74206578636565647320393620626974734172733a3a617070726f76653a20616d6f756e742065786365656473203936206269747345524332303a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e636545524332303a3a6275726e3a20616d6f756e74206578636565647320393620626974734172733a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a3a5f7370656e64416c6c6f77616e63653a20616d6f756e742065786365656473203936206269747345524332303a3a696e637265617365416c6c6f77616e63653a20616d6f756e742065786365656473203936206269747345524332303a3a5f7472616e736665723a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a3a5f7472616e736665723a207472616e7366657220616d6f756e74206f766572666c6f777345524332303a3a5f6275726e3a20616d6f756e742065786365656473203936206269747345524332303a3a6465637265617365416c6c6f77616e63653a20616d6f756e7420657863656564732039362062697473a26469706673582212206e53076baf20601f458ff4c7c813442ac49413705f29466ce2ceb06acd6adfe564736f6c634300080c003345524332303a3a5f6d696e743a205f746f74616c537570706c792065786365656473203936206269747345524332303a3a5f6d696e743a20616d6f756e74206578636565647320393620626974734172733a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f77734172733a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77734172733a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a3a5f7472616e736665723a207472616e7366657220616d6f756e74206f766572666c6f77730000000000000000000000003c2269811836af69497e5f486a85d7316753cf6200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008
Deployed Bytecode
0x60806040526004361061038b5760003560e01c80637ecebe00116101dc578063baf3292d11610102578063e6a20ae6116100a0578063f1127ed81161006f578063f1127ed814610ba3578063f2fde38b14610c17578063f5ecbdbc14610c37578063fc0c546a14610c5757600080fd5b8063e6a20ae614610b1a578063e7a324dc14610b2f578063eaffd49a14610b63578063eb8d72b714610b8357600080fd5b8063cbed8b9c116100dc578063cbed8b9c14610aa7578063d1deba1f14610ac7578063dd62ed3e14610ada578063df2a5b3b14610afa57600080fd5b8063baf3292d14610a51578063c3cda52014610a71578063c446183414610a9157600080fd5b80639bdb98121161017a578063a6c3d16511610149578063a6c3d165146109bd578063a9059cbb146109dd578063b353aaa7146109fd578063b4b5ea5714610a3157600080fd5b80639bdb98121461090b5780639f38369a1461095d578063a457c2d71461097d578063a4c51df51461099d57600080fd5b80638da5cb5b116101b65780638da5cb5b146108a35780639358928b146108c1578063950c8a74146108d657806395d89b41146108f657600080fd5b80637ecebe001461080a578063857749b0146108375780638cfd8f5c1461086b57600080fd5b80633f1f4fa4116102c157806366ad5c8a1161025f578063715018a61161022e578063715018a6146107a25780637533d788146107b757806376203b48146107d7578063782d6fe1146107ea57600080fd5b806366ad5c8a146106e8578063695ef6bf146107085780636fcfff451461071b57806370a082311461076357600080fd5b80634c42899a1161029b5780634c42899a14610616578063587cde1e1461062b5780635b8c41e6146106795780635c19a95c146106c857600080fd5b80633f1f4fa4146105b457806342d65a8d146105e1578063447705151461060157600080fd5b806318160ddd1161032e578063313ce56711610308578063313ce5671461051d578063365260b41461053f57806339509351146105745780633d8b38f61461059457600080fd5b806318160ddd1461048957806320606b70146104bb57806323b872dd146104fd57600080fd5b806307e0db171161036a57806307e0db1714610409578063095ea7b3146104295780630df374831461044957806310ddb1371461046957600080fd5b80621d35671461039057806301ffc9a7146103b257806306fdde03146103e7575b600080fd5b34801561039c57600080fd5b506103b06103ab36600461479a565b610c6a565b005b3480156103be57600080fd5b506103d26103cd36600461482d565b610e9b565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b506103fc610ed2565b6040516103de91906148af565b34801561041557600080fd5b506103b06104243660046148c2565b610f64565b34801561043557600080fd5b506103d26104443660046148f2565b610fed565b34801561045557600080fd5b506103b061046436600461491e565b611005565b34801561047557600080fd5b506103b06104843660046148c2565b611024565b34801561049557600080fd5b506009546001600160601b03165b6040516001600160601b0390911681526020016103de565b3480156104c757600080fd5b506104ef7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6040519081526020016103de565b34801561050957600080fd5b506103d261051836600461493a565b61107c565b34801561052957600080fd5b5060125b60405160ff90911681526020016103de565b34801561054b57600080fd5b5061055f61055a36600461498b565b6111c1565b604080519283526020830191909152016103de565b34801561058057600080fd5b506103d261058f3660046148f2565b611216565b3480156105a057600080fd5b506103d26105af3660046149f0565b611275565b3480156105c057600080fd5b506104ef6105cf3660046148c2565b60036020526000908152604090205481565b3480156105ed57600080fd5b506103b06105fc3660046149f0565b611341565b34801561060d57600080fd5b506104ef600081565b34801561062257600080fd5b5061052d600081565b34801561063757600080fd5b50610661610646366004614a42565b600c602052600090815260409020546001600160a01b031681565b6040516001600160a01b0390911681526020016103de565b34801561068557600080fd5b506104ef610694366004614acc565b6005602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b3480156106d457600080fd5b506103b06106e3366004614a42565b6113c7565b3480156106f457600080fd5b506103b061070336600461479a565b6113d4565b6103b0610716366004614b84565b6114b0565b34801561072757600080fd5b5061074e610736366004614a42565b600e6020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016103de565b34801561076f57600080fd5b506104a361077e366004614a42565b6001600160a01b03166000908152600760205260409020546001600160601b031690565b3480156107ae57600080fd5b506103b061151b565b3480156107c357600080fd5b506103fc6107d23660046148c2565b61152f565b6103b06107e5366004614bf7565b6115c9565b3480156107f657600080fd5b506104a36108053660046148f2565b611678565b34801561081657600080fd5b506104ef610825366004614a42565b600f6020526000908152604090205481565b34801561084357600080fd5b5061052d7f000000000000000000000000000000000000000000000000000000000000000881565b34801561087757600080fd5b506104ef610886366004614ca9565b600260209081526000928352604080842090915290825290205481565b3480156108af57600080fd5b506000546001600160a01b0316610661565b3480156108cd57600080fd5b506104ef6118fe565b3480156108e257600080fd5b50600454610661906001600160a01b031681565b34801561090257600080fd5b506103fc611920565b34801561091757600080fd5b506103d2610926366004614acc565b6006602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b34801561096957600080fd5b506103fc6109783660046148c2565b61192f565b34801561098957600080fd5b506103d26109983660046148f2565b611a46565b3480156109a957600080fd5b5061055f6109b8366004614cdc565b611b0e565b3480156109c957600080fd5b506103b06109d83660046149f0565b611b9d565b3480156109e957600080fd5b506103d26109f83660046148f2565b611c30565b348015610a0957600080fd5b506106617f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf6281565b348015610a3d57600080fd5b506104a3610a4c366004614a42565b611c63565b348015610a5d57600080fd5b506103b0610a6c366004614a42565b611ce0565b348015610a7d57600080fd5b506103b0610a8c366004614d95565b611d3c565b348015610a9d57600080fd5b506104ef61271081565b348015610ab357600080fd5b506103b0610ac2366004614df7565b612006565b6103b0610ad536600461479a565b612090565b348015610ae657600080fd5b506104a3610af5366004614e65565b6122a6565b348015610b0657600080fd5b506103b0610b15366004614e9e565b6122da565b348015610b2657600080fd5b5061052d600181565b348015610b3b57600080fd5b506104ef7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b348015610b6f57600080fd5b506103b0610b7e366004614eda565b612344565b348015610b8f57600080fd5b506103b0610b9e3660046149f0565b612463565b348015610baf57600080fd5b50610bf3610bbe366004614fa2565b600d60209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6040805163ffffffff90931683526001600160601b039091166020830152016103de565b348015610c2357600080fd5b506103b0610c32366004614a42565b6124bd565b348015610c4357600080fd5b506103fc610c52366004614fd9565b612533565b348015610c6357600080fd5b5030610661565b337f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf626001600160a01b031614610ce75760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff861660009081526001602052604081208054610d0590615026565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3190615026565b8015610d7e5780601f10610d5357610100808354040283529160200191610d7e565b820191906000526020600020905b815481529060010190602001808311610d6157829003601f168201915b50505050509050805186869050148015610d99575060008151115b8015610dc1575080516020820120604051610db7908890889061505b565b6040518091039020145b610e1c5760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610cde565b610e928787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284376000920191909152506125e492505050565b50505050505050565b60006001600160e01b03198216631f7ecdf760e01b1480610ecc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600a8054610ee190615026565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0d90615026565b8015610f5a5780601f10610f2f57610100808354040283529160200191610f5a565b820191906000526020600020905b815481529060010190602001808311610f3d57829003601f168201915b5050505050905090565b610f6c61265d565b6040516307e0db1760e01b815261ffff821660048201527f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf626001600160a01b0316906307e0db17906024015b600060405180830381600087803b158015610fd257600080fd5b505af1158015610fe6573d6000803e3d6000fd5b5050505050565b600033610ffb8185856126b7565b5060019392505050565b61100d61265d565b61ffff909116600090815260036020526040902055565b61102c61265d565b6040516310ddb13760e01b815261ffff821660048201527f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf626001600160a01b0316906310ddb13790602401610fb8565b6001600160a01b03831660009081526008602090815260408083203380855290835281842054825160608101909352602b80845291936001600160601b039091169285926110d4928892919061565390830139612837565b9050866001600160a01b0316836001600160a01b03161415801561110157506001600160601b0382811614155b156111a957600061112b83836040518060600160405280603e815260200161578b603e9139612866565b6001600160a01b038981166000818152600860209081526040808320948a168084529482529182902080546001600160601b0319166001600160601b0387169081179091559151918252939450919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505b6111b48787836128b0565b5060019695505050505050565b6000806112078888888888888080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612b4592505050565b91509150965096945050505050565b60008033905060006112408460405180606001604052806030815260200161584d60309139612837565b905061126a828683611252868a6122a6565b61125c9190615081565b6001600160601b03166126b7565b506001949350505050565b61ffff83166000908152600160205260408120805482919061129690615026565b80601f01602080910402602001604051908101604052809291908181526020018280546112c290615026565b801561130f5780601f106112e45761010080835404028352916020019161130f565b820191906000526020600020905b8154815290600101906020018083116112f257829003601f168201915b50505050509050838360405161132692919061505b565b60405180910390208180519060200120149150509392505050565b61134961265d565b6040516342d65a8d60e01b81526001600160a01b037f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf6216906342d65a8d90611399908690869086906004016150d5565b600060405180830381600087803b1580156113b357600080fd5b505af1158015610e92573d6000803e3d6000fd5b6113d13382612c39565b50565b3330146114325760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610cde565b6114a88686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f890181900481028201810190925287815289935091508790879081908401838280828437600092019190915250612cc392505050565b505050505050565b6114a8858585856114c46020870187614a42565b6114d46040880160208901614a42565b6114e160408901896150f3565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612d4a92505050565b61152361265d565b61152d6000612e32565b565b6001602052600090815260409020805461154890615026565b80601f016020809104026020016040519081016040528092919081815260200182805461157490615026565b80156115c15780601f10611596576101008083540402835291602001916115c1565b820191906000526020600020905b8154815290600101906020018083116115a457829003601f168201915b505050505081565b61166d8888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a92506116169150506020890189614a42565b61162660408a0160208b01614a42565b61163360408b018b6150f3565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612e8292505050565b505050505050505050565b60004382106116d85760405162461bcd60e51b815260206004820152602660248201527f4172733a3a6765745072696f72566f7465733a206e6f742079657420646574656044820152651c9b5a5b995960d21b6064820152608401610cde565b6001600160a01b0383166000908152600e602052604090205463ffffffff1680611706576000915050610ecc565b6001600160a01b0384166000908152600d60205260408120849161172b600185615139565b63ffffffff9081168252602082019290925260400160002054161161179e576001600160a01b0384166000908152600d602052604081209061176e600184615139565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03169150610ecc9050565b6001600160a01b0384166000908152600d6020908152604080832083805290915290205463ffffffff168310156117d9576000915050610ecc565b6000806117e7600184615139565b90505b8163ffffffff168163ffffffff1611156118b9576000600261180c8484615139565b6118169190615174565b6118209083615139565b6001600160a01b0388166000908152600d6020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915291925087141561188d57602001519450610ecc9350505050565b805163ffffffff168711156118a4578193506118b2565b6118af600183615139565b92505b50506117ea565b506001600160a01b0385166000908152600d6020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60006119126009546001600160601b031690565b6001600160601b0316905090565b6060600b8054610ee190615026565b61ffff811660009081526001602052604081208054606092919061195290615026565b80601f016020809104026020016040519081016040528092919081815260200182805461197e90615026565b80156119cb5780601f106119a0576101008083540402835291602001916119cb565b820191906000526020600020905b8154815290600101906020018083116119ae57829003601f168201915b50505050509050805160001415611a245760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610cde565b611a3f600060148351611a379190615197565b839190612f7e565b9392505050565b60003381611a5482866122a6565b90506000611a7a856040518060600160405280603081526020016158fd60309139612837565b9050806001600160601b0316826001600160601b03161015611aec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cde565b611b0283878385036001600160601b03166126b7565b50600195945050505050565b600080611b8b8b8b8b8b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c908190840183828082843760009201919091525061308b92505050565b91509150995099975050505050505050565b611ba561265d565b818130604051602001611bba939291906151ae565b60408051601f1981840301815291815261ffff85166000908152600160209081529190208251611bef93919290910190614617565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce838383604051611c23939291906150d5565b60405180910390a1505050565b600080611c558360405180606001604052806027815260200161571960279139612837565b90503361126a8186846128b0565b6001600160a01b0381166000908152600e602052604081205463ffffffff1680611c8e576000611a3f565b6001600160a01b0383166000908152600d6020526040812090611cb2600184615139565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03169392505050565b611ce861265d565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b9060200160405180910390a150565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866611d67610ed2565b80519060200120611d754690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015611ea1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611f125760405162461bcd60e51b815260206004820152602560248201527f4172733a3a64656c656761746542795369673a20696e76616c6964207369676e604482015264617475726560d81b6064820152608401610cde565b6001600160a01b0381166000908152600f60205260408120805491611f36836151cf565b919050558914611f925760405162461bcd60e51b815260206004820152602160248201527f4172733a3a64656c656761746542795369673a20696e76616c6964206e6f6e636044820152606560f81b6064820152608401610cde565b87421115611ff05760405162461bcd60e51b815260206004820152602560248201527f4172733a3a64656c656761746542795369673a207369676e61747572652065786044820152641c1a5c995960da1b6064820152608401610cde565b611ffa818b612c39565b50505050505050505050565b61200e61265d565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf62169063cbed8b9c9061206290889088908890889088906004016151ea565b600060405180830381600087803b15801561207c57600080fd5b505af115801561166d573d6000803e3d6000fd5b61ffff861660009081526005602052604080822090516120b3908890889061505b565b90815260408051602092819003830190206001600160401b038716600090815292529020549050806121335760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610cde565b80838360405161214492919061505b565b6040518091039020146121a35760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610cde565b61ffff871660009081526005602052604080822090516121c6908990899061505b565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f8801829004820283018201905286825261225e918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a935091508890889081908401838280828437600092019190915250612cc392505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051612295959493929190615223565b60405180910390a150505050505050565b6001600160a01b0391821660009081526008602090815260408083209390941682529190915220546001600160601b031690565b6122e261265d565b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac090606001611c23565b3330146123935760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610cde565b61239e308686613146565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf866040516123e091815260200190565b60405180910390a3604051633fe79aed60e11b81526001600160a01b03861690637fcf35da908390612424908e908e908e908e908e908d908d908d9060040161525e565b600060405180830381600088803b15801561243e57600080fd5b5087f1158015612452573d6000803e3d6000fd5b505050505050505050505050505050565b61246b61265d565b61ffff8316600090815260016020526040902061248990838361469b565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab838383604051611c23939291906150d5565b6124c561265d565b6001600160a01b03811661252a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cde565b6113d181612e32565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf626001600160a01b03169063f5ecbdbc90608401600060405180830381865afa1580156125b3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526125db91908101906152b9565b95945050505050565b6000806126475a60966366ad5c8a60e01b8989898960405160240161260c9493929190615326565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152309291906131d3565b91509150816114a8576114a8868686868561325d565b6000546001600160a01b0316331461152d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cde565b6001600160a01b03831661271b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a205f617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610cde565b6001600160a01b03821661277d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a205f617070726f766520746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610cde565b600060001982141561279757506001600160601b036127bc565b6127b98260405180606001604052806027815260200161574060279139612837565b90505b6001600160a01b0384811660008181526008602090815260408083209488168084529482529182902080546001600160601b0319166001600160601b03871690811790915591519182527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050565b600081600160601b841061285e5760405162461bcd60e51b8152600401610cde91906148af565b509192915050565b6000836001600160601b0316836001600160601b03161115829061289d5760405162461bcd60e51b8152600401610cde91906148af565b506128a88385615364565b949350505050565b6001600160a01b0383166129155760405162461bcd60e51b815260206004820152602660248201527f45524332303a205f7472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b6064820152608401610cde565b6001600160a01b0382166129775760405162461bcd60e51b8152602060048201526024808201527f45524332303a205f7472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610cde565b6001600160a01b0382163014156129ec5760405162461bcd60e51b815260206004820152603360248201527f45524332303a3a5f7472616e736665723a2063616e6e6f74207472616e7366656044820152721c881d1bc81d1bdad95b8818dbdb9d1c9858dd606a1b6064820152608401610cde565b6001600160a01b038316600090815260076020908152604091829020548251606081019093526031808452612a37936001600160601b03909216928592919061587d90830139612866565b6001600160a01b03848116600090815260076020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352602b808452612a9f94919091169285929091906158ae908301396132fa565b6001600160a01b0383811660008181526007602090815260409182902080546001600160601b0319166001600160601b03968716179055905193851684529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36001600160a01b038084166000908152600c6020526040808220548584168352912054612b409291821691168361333e565b505050565b6000806000612b9387612b57886134ea565b6040805160006020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf6216906340a7bb1090612bea908b90309086908b908b90600401615384565b6040805180830381865afa158015612c06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c2a91906153d8565b92509250509550959350505050565b6001600160a01b038083166000818152600c6020818152604080842080546007845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4612cbd82848361333e565b50505050565b6000612ccf8282613570565b905060ff8116612cea57612ce5858585856135cc565b610fe6565b60ff811660011415612d0257612ce58585858561365c565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610cde565b6000612d588782848161386a565b612d618561393f565b509050612d708888888461397f565b905060008111612dbe5760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610cde565b6000612dcd87612b57846134ea565b9050612ddd8882878787346139fe565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612e1e91815260200190565b60405180910390a450979650505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000612e9a896001846001600160401b03891661386a565b612ea38761393f565b509050612eb28a8a8a8461397f565b905060008111612f005760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610cde565b6000612f17338a612f10856134ea565b8a8a613ba4565b9050612f278a82878787346139fe565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612f6891815260200190565b60405180910390a4509998505050505050505050565b606081612f8c81601f6153fc565b1015612fcb5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610cde565b612fd582846153fc565b845110156130195760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610cde565b6060821580156130385760405191506000825260208201604052613082565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015613071578051835260209283019201613059565b5050858452601f01601f1916604052505b50949350505050565b600080600061309e338a612f108b6134ea565b60405163040a7bb160e41b81529091506001600160a01b037f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf6216906340a7bb10906130f5908d90309086908b908b90600401615384565b6040805180830381865afa158015613111573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061313591906153d8565b925092505097509795505050505050565b60008033905060006131708460405180606001604052806024815260200161576760249139612837565b90506001600160a01b038616301480159061319d5750816001600160a01b0316866001600160a01b031614155b156131b6576131b68683836001600160601b0316613be5565b6131c18686836128b0565b6001600160601b031695945050505050565b6000606060008060008661ffff166001600160401b038111156131f8576131f8614a5f565b6040519080825280601f01601f191660200182016040528015613222576020820181803683370190505b50905060008087516020890160008d8df191503d925086831115613244578692505b828152826000602083013e909890975095505050505050565b8180519060200120600560008761ffff1661ffff1681526020019081526020016000208560405161328e9190615414565b9081526040805191829003602090810183206001600160401b0388166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c906132eb9087908790879087908790615430565b60405180910390a15050505050565b6000806133078486615081565b9050846001600160601b0316816001600160601b0316101583906130825760405162461bcd60e51b8152600401610cde91906148af565b816001600160a01b0316836001600160a01b03161415801561336957506000816001600160601b0316115b15612b40576001600160a01b0383161561342e576001600160a01b0383166000908152600e602052604081205463ffffffff1690816133a95760006133f5565b6001600160a01b0385166000908152600d60205260408120906133cd600185615139565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03165b9050600061341c82856040518060600160405280602781526020016156f260279139612866565b905061342a86848484613ca1565b5050505b6001600160a01b03821615612b40576001600160a01b0382166000908152600e602052604081205463ffffffff1690816134695760006134b5565b6001600160a01b0384166000908152600d602052604081209061348d600185615139565b63ffffffff168152602081019190915260400160002054600160201b90046001600160601b03165b905060006134dc82856040518060600160405280602681526020016156cc602691396132fa565b90506114a885848484613ca1565b6000806135177f00000000000000000000000000000000000000000000000000000002540be40084615482565b90506001600160401b03811115610ecc5760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610cde565b600061357d8260016153fc565b835110156135c35760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610cde565b50016001015190565b6000806135d883613e99565b90925090506001600160a01b0382166135f15761dead91505b60006135fc82613f1e565b9050613609878483613f53565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf8360405161364b91815260200190565b60405180910390a350505050505050565b600080600080600061366d86613f9e565b945094509450945094506000600660008b61ffff1661ffff168152602001908152602001600020896040516136a29190615414565b90815260408051602092819003830190206001600160401b038b166000908152925281205460ff1691506136d585613f1e565b905081613743576136e78b3083613f53565b61ffff8c1660009081526006602052604090819020905191925060019161370f908d90615414565b90815260408051602092819003830190206001600160401b038d16600090815292529020805460ff19169115159190911790555b6001600160a01b0386163b61379a576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a150505050505050612cbd565b8a8a8a8a8a8a868a60008a6137b8578b6001600160401b03166137ba565b5a5b90506000806137ec5a609663eaffd49a60e01b8e8e8e8d8d8d8d8d60405160240161260c989796959493929190615496565b915091508115613845578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd88490613837908e908e90869061550a565b60405180910390a250613852565b6138528b8b8b8b8561325d565b50505050505050505050505050505050505050505050565b600061387583614055565b61ffff808716600090815260026020908152604080832093891683529290522054909150806138e65760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610cde565b6138f083826153fc565b8210156114a85760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610cde565b60008061396c7f00000000000000000000000000000000000000000000000000000002540be40084615538565b90506139788184615197565b9150915091565b60008033905060006139a98460405180606001604052806024815260200161576760249139612837565b9050816001600160a01b0316876001600160a01b0316146139d8576139d88783836001600160601b0316613be5565b6139eb87826001600160601b03166140b1565b6001600160601b03169695505050505050565b61ffff861660009081526001602052604081208054613a1c90615026565b80601f0160208091040260200160405190810160405280929190818152602001828054613a4890615026565b8015613a955780601f10613a6a57610100808354040283529160200191613a95565b820191906000526020600020905b815481529060010190602001808311613a7857829003601f168201915b50505050509050805160001415613b075760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610cde565b613b128787516142c6565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000003c2269811836af69497e5f486a85d7316753cf62169063c5803100908490613b69908b9086908c908c908c908c9060040161554c565b6000604051808303818588803b158015613b8257600080fd5b505af1158015613b96573d6000803e3d6000fd5b505050505050505050505050565b6060600185856001600160a01b0389168587604051602001613bcb969594939291906155b3565b604051602081830303815290604052905095945050505050565b6000613c09826040518060600160405280602e815260200161581f602e9139612837565b90506000613c1785856122a6565b90506001600160601b0380821614610fe657816001600160601b0316816001600160601b03161015613c8b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cde565b610fe685858484036001600160601b03166126b7565b6000613cc5436040518060600160405280603381526020016157ec60339139614334565b905060008463ffffffff16118015613d1f57506001600160a01b0385166000908152600d6020526040812063ffffffff831691613d03600188615139565b63ffffffff908116825260208201929092526040016000205416145b15613d93576001600160a01b0385166000908152600d602052604081208391613d49600188615139565b63ffffffff168152602081019190915260400160002080546001600160601b0392909216600160201b026fffffffffffffffffffffffff0000000019909216919091179055613e44565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000908152600d82528681208b8616825290915294909420925183549451909116600160201b026fffffffffffffffffffffffffffffffff19909416911617919091179055613e13846001615614565b6001600160a01b0386166000908152600e60205260409020805463ffffffff191663ffffffff929092169190911790555b604080516001600160601b038086168252841660208201526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b60008080613ea78482613570565b60ff16148015613eb8575082516029145b613eff5760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610cde565b613f0a83600d61435b565b9150613f178360216143c0565b9050915091565b6000610ecc7f00000000000000000000000000000000000000000000000000000002540be4006001600160401b038416615633565b600080613f788360405180606001604052806024815260200161576760249139612837565b9050613f8d84826001600160601b031661441d565b6001600160601b0316949350505050565b600080806060816001613fb18783613570565b60ff1614613ffc5760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610cde565b61400786600d61435b565b93506140148660216143c0565b92506140218660296145b9565b945061402e8660496143c0565b905061404a60518088516140429190615197565b889190612f7e565b915091939590929450565b60006022825110156140a95760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610cde565b506022015190565b6001600160a01b0382166141115760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610cde565b6000614135826040518060600160405280602381526020016157c960239139612837565b90506001600160a01b0383166000908152600760205260409020546001600160601b039081169082168110156141b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610cde565b6141db81836040518060600160405280602481526020016158d960249139612866565b6001600160a01b03851660009081526007602090815260409182902080546001600160601b0319166001600160601b03948516179055600954825160608101909352602480845261423c94919091169286929091906158d990830139612866565b600980546001600160601b0319166001600160601b0392831617905560405190831681526000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36001600160a01b038085166000908152600c60205260408120546142c19216908461333e565b612cbd565b61ffff8216600090815260036020526040902054806142e457506127105b80821115612b405760405162461bcd60e51b815260206004820181905260248201527f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c617267656044820152606401610cde565b600081600160201b841061285e5760405162461bcd60e51b8152600401610cde91906148af565b60006143688260146153fc565b835110156143b05760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610cde565b500160200151600160601b900490565b60006143cd8260086153fc565b835110156144145760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610cde565b50016008015190565b6001600160a01b0382166144735760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610cde565b6000614497826040518060600160405280602481526020016156a860249139612837565b90506009546040805160608101909152602a8082526144c9926001600160601b031691849161567e60208301396132fa565b600980546001600160601b0319166001600160601b039283161790556001600160a01b03841660009081526007602090815260409182902054825160608101909352602b80845261452a94919091169285929091906158ae908301396132fa565b6001600160a01b038416600081815260076020908152604080832080546001600160601b0319166001600160601b03968716179055519385168452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36001600160a01b038084166000908152600c6020526040812054612b4092168361333e565b60006145c68260206153fc565b8351101561460e5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610cde565b50016020015190565b82805461462390615026565b90600052602060002090601f016020900481019282614645576000855561468b565b82601f1061465e57805160ff191683800117855561468b565b8280016001018555821561468b579182015b8281111561468b578251825591602001919060010190614670565b5061469792915061470f565b5090565b8280546146a790615026565b90600052602060002090601f0160209004810192826146c9576000855561468b565b82601f106146e25782800160ff1982351617855561468b565b8280016001018555821561468b579182015b8281111561468b5782358255916020019190600101906146f4565b5b808211156146975760008155600101614710565b803561ffff8116811461473657600080fd5b919050565b60008083601f84011261474d57600080fd5b5081356001600160401b0381111561476457600080fd5b60208301915083602082850101111561477c57600080fd5b9250929050565b80356001600160401b038116811461473657600080fd5b600080600080600080608087890312156147b357600080fd5b6147bc87614724565b955060208701356001600160401b03808211156147d857600080fd5b6147e48a838b0161473b565b90975095508591506147f860408a01614783565b9450606089013591508082111561480e57600080fd5b5061481b89828a0161473b565b979a9699509497509295939492505050565b60006020828403121561483f57600080fd5b81356001600160e01b031981168114611a3f57600080fd5b60005b8381101561487257818101518382015260200161485a565b83811115612cbd5750506000910152565b6000815180845261489b816020860160208601614857565b601f01601f19169290920160200192915050565b602081526000611a3f6020830184614883565b6000602082840312156148d457600080fd5b611a3f82614724565b6001600160a01b03811681146113d157600080fd5b6000806040838503121561490557600080fd5b8235614910816148dd565b946020939093013593505050565b6000806040838503121561493157600080fd5b61491083614724565b60008060006060848603121561494f57600080fd5b833561495a816148dd565b9250602084013561496a816148dd565b929592945050506040919091013590565b8035801515811461473657600080fd5b60008060008060008060a087890312156149a457600080fd5b6149ad87614724565b955060208701359450604087013593506149c96060880161497b565b925060808701356001600160401b038111156149e457600080fd5b61481b89828a0161473b565b600080600060408486031215614a0557600080fd5b614a0e84614724565b925060208401356001600160401b03811115614a2957600080fd5b614a358682870161473b565b9497909650939450505050565b600060208284031215614a5457600080fd5b8135611a3f816148dd565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715614a9d57614a9d614a5f565b604052919050565b60006001600160401b03821115614abe57614abe614a5f565b50601f01601f191660200190565b600080600060608486031215614ae157600080fd5b614aea84614724565b925060208401356001600160401b03811115614b0557600080fd5b8401601f81018613614b1657600080fd5b8035614b29614b2482614aa5565b614a75565b818152876020838501011115614b3e57600080fd5b81602084016020830137600060208383010152809450505050614b6360408501614783565b90509250925092565b600060608284031215614b7e57600080fd5b50919050565b600080600080600060a08688031215614b9c57600080fd5b8535614ba7816148dd565b9450614bb560208701614724565b9350604086013592506060860135915060808601356001600160401b03811115614bde57600080fd5b614bea88828901614b6c565b9150509295509295909350565b60008060008060008060008060e0898b031215614c1357600080fd5b8835614c1e816148dd565b9750614c2c60208a01614724565b9650604089013595506060890135945060808901356001600160401b0380821115614c5657600080fd5b614c628c838d0161473b565b9096509450849150614c7660a08c01614783565b935060c08b0135915080821115614c8c57600080fd5b50614c998b828c01614b6c565b9150509295985092959890939650565b60008060408385031215614cbc57600080fd5b614cc583614724565b9150614cd360208401614724565b90509250929050565b600080600080600080600080600060e08a8c031215614cfa57600080fd5b614d038a614724565b985060208a0135975060408a0135965060608a01356001600160401b0380821115614d2d57600080fd5b614d398d838e0161473b565b9098509650869150614d4d60808d01614783565b9550614d5b60a08d0161497b565b945060c08c0135915080821115614d7157600080fd5b50614d7e8c828d0161473b565b915080935050809150509295985092959850929598565b60008060008060008060c08789031215614dae57600080fd5b8635614db9816148dd565b95506020870135945060408701359350606087013560ff81168114614ddd57600080fd5b9598949750929560808101359460a0909101359350915050565b600080600080600060808688031215614e0f57600080fd5b614e1886614724565b9450614e2660208701614724565b93506040860135925060608601356001600160401b03811115614e4857600080fd5b614e548882890161473b565b969995985093965092949392505050565b60008060408385031215614e7857600080fd5b8235614e83816148dd565b91506020830135614e93816148dd565b809150509250929050565b600080600060608486031215614eb357600080fd5b614ebc84614724565b9250614eca60208501614724565b9150604084013590509250925092565b6000806000806000806000806000806101008b8d031215614efa57600080fd5b614f038b614724565b995060208b01356001600160401b0380821115614f1f57600080fd5b614f2b8e838f0161473b565b909b509950899150614f3f60408e01614783565b985060608d0135975060808d01359150614f58826148dd565b90955060a08c0135945060c08c01359080821115614f7557600080fd5b50614f828d828e0161473b565b9150809450508092505060e08b013590509295989b9194979a5092959850565b60008060408385031215614fb557600080fd5b8235614fc0816148dd565b9150602083013563ffffffff81168114614e9357600080fd5b60008060008060808587031215614fef57600080fd5b614ff885614724565b935061500660208601614724565b92506040850135615016816148dd565b9396929550929360600135925050565b600181811c9082168061503a57607f821691505b60208210811415614b7e57634e487b7160e01b600052602260045260246000fd5b8183823760009101908152919050565b634e487b7160e01b600052601160045260246000fd5b60006001600160601b038083168185168083038211156150a3576150a361506b565b01949350505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff841681526040602082015260006125db6040830184866150ac565b6000808335601e1984360301811261510a57600080fd5b8301803591506001600160401b0382111561512457600080fd5b60200191503681900382131561477c57600080fd5b600063ffffffff838116908316818110156151565761515661506b565b039392505050565b634e487b7160e01b600052601260045260246000fd5b600063ffffffff8084168061518b5761518b61515e565b92169190910492915050565b6000828210156151a9576151a961506b565b500390565b8284823760609190911b6001600160601b0319169101908152601401919050565b60006000198214156151e3576151e361506b565b5060010190565b600061ffff8088168352808716602084015250846040830152608060608301526152186080830184866150ac565b979650505050505050565b61ffff861681526080602082015260006152416080830186886150ac565b6001600160401b0394909416604083015250606001529392505050565b61ffff8916815260c06020820152600061527c60c08301898b6150ac565b6001600160401b038816604084015286606084015285608084015282810360a08401526152aa8185876150ac565b9b9a5050505050505050505050565b6000602082840312156152cb57600080fd5b81516001600160401b038111156152e157600080fd5b8201601f810184136152f257600080fd5b8051615300614b2482614aa5565b81815285602083850101111561531557600080fd5b6125db826020830160208601614857565b61ffff851681526080602082015260006153436080830186614883565b6001600160401b038516604084015282810360608401526152188185614883565b60006001600160601b03838116908316818110156151565761515661506b565b61ffff861681526001600160a01b038516602082015260a0604082018190526000906153b290830186614883565b841515606084015282810360808401526153cc8185614883565b98975050505050505050565b600080604083850312156153eb57600080fd5b505080516020909101519092909150565b6000821982111561540f5761540f61506b565b500190565b60008251615426818460208701614857565b9190910192915050565b61ffff8616815260a06020820152600061544d60a0830187614883565b6001600160401b0386166040840152828103606084015261546e8186614883565b905082810360808401526153cc8185614883565b6000826154915761549161515e565b500490565b600061010061ffff8b1683528060208401526154b48184018b614883565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c085015290506154f48186614883565b9150508260e08301529998505050505050505050565b60608152600061551d6060830186614883565b6001600160401b039490941660208301525060400152919050565b6000826155475761554761515e565b500690565b61ffff8716815260c06020820152600061556960c0830188614883565b828103604084015261557b8188614883565b6001600160a01b0387811660608601528616608085015283810360a085015290506155a68185614883565b9998505050505050505050565b60ff60f81b8760f81b16815285600182015260006001600160401b0360c01b808760c01b166021840152856029840152808560c01b166049840152508251615602816051850160208701614857565b91909101605101979650505050505050565b600063ffffffff8083168185168083038211156150a3576150a361506b565b600081600019048311821515161561564d5761564d61506b565b50029056fe45524332303a3a7472616e7366657246726f6d3a20616d6f756e742065786365656473203936206269747345524332303a3a5f6d696e743a205f746f74616c537570706c792065786365656473203936206269747345524332303a3a5f6d696e743a20616d6f756e74206578636565647320393620626974734172733a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f77734172733a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777345524332303a3a7472616e736665723a20616d6f756e742065786365656473203936206269747345524332303a3a5f617070726f76653a20616d6f756e74206578636565647320393620626974734172733a3a617070726f76653a20616d6f756e742065786365656473203936206269747345524332303a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e636545524332303a3a6275726e3a20616d6f756e74206578636565647320393620626974734172733a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a3a5f7370656e64416c6c6f77616e63653a20616d6f756e742065786365656473203936206269747345524332303a3a696e637265617365416c6c6f77616e63653a20616d6f756e742065786365656473203936206269747345524332303a3a5f7472616e736665723a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a3a5f7472616e736665723a207472616e7366657220616d6f756e74206f766572666c6f777345524332303a3a5f6275726e3a20616d6f756e742065786365656473203936206269747345524332303a3a6465637265617365416c6c6f77616e63653a20616d6f756e7420657863656564732039362062697473a26469706673582212206e53076baf20601f458ff4c7c813442ac49413705f29466ce2ceb06acd6adfe564736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003c2269811836af69497e5f486a85d7316753cf6200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008
-----Decoded View---------------
Arg [0] : _layerZeroEndpoint (address): 0x3c2269811836af69497E5F486A85D7316753cf62
Arg [1] : _initialSupply (uint256): 0
Arg [2] : _sharedDecimals (uint8): 8
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000003c2269811836af69497e5f486a85d7316753cf62
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Deployed Bytecode Sourcemap
96527:240:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60898:842;;;;;;;;;;-1:-1:-1;60898:842:0;;;;;:::i;:::-;;:::i;:::-;;92573:213;;;;;;;;;;-1:-1:-1;92573:213:0;;;;;:::i;:::-;;:::i;:::-;;;2029:14:1;;2022:22;2004:41;;1992:2;1977:18;92573:213:0;;;;;;;;11081:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;64522:123::-;;;;;;;;;;-1:-1:-1;64522:123:0;;;;;:::i;:::-;;:::i;13525:198::-;;;;;;;;;;-1:-1:-1;13525:198:0;;;;;:::i;:::-;;:::i;66425:142::-;;;;;;;;;;-1:-1:-1;66425:142:0;;;;;:::i;:::-;;:::i;64653:129::-;;;;;;;;;;-1:-1:-1;64653:129:0;;;;;:::i;:::-;;:::i;12210:107::-;;;;;;;;;;-1:-1:-1;12297:12:0;;-1:-1:-1;;;;;12297:12:0;12210:107;;;-1:-1:-1;;;;;3871:39:1;;;3853:58;;3841:2;3826:18;12210:107:0;3709:208:1;9872:122:0;;;;;;;;;;;;9914:80;9872:122;;;;;4068:25:1;;;4056:2;4041:18;9872:122:0;3922:177:1;14303:700:0;;;;;;;;;;-1:-1:-1;14303:700:0;;;;;:::i;:::-;;:::i;12052:93::-;;;;;;;;;;-1:-1:-1;12135:2:0;12052:93;;;4737:4:1;4725:17;;;4707:36;;4695:2;4680:18;12052:93:0;4565:184:1;92794:344:0;;;;;;;;;;-1:-1:-1;92794:344:0;;;;;:::i;:::-;;:::i;:::-;;;;5785:25:1;;;5841:2;5826:18;;5819:34;;;;5758:18;92794:344:0;5611:248:1;15412:328:0;;;;;;;;;;-1:-1:-1;15412:328:0;;;;;:::i;:::-;;:::i;66665:250::-;;;;;;;;;;-1:-1:-1;66665:250:0;;;;;:::i;:::-;;:::i;60440:53::-;;;;;;;;;;-1:-1:-1;60440:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;64790:178;;;;;;;;;;-1:-1:-1;64790:178:0;;;;;:::i;:::-;;:::i;79875:37::-;;;;;;;;;;;;79911:1;79875:37;;79941:33;;;;;;;;;;;;79973:1;79941:33;;9322:45;;;;;;;;;;-1:-1:-1;9322:45:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;9322:45:0;;;;;;-1:-1:-1;;;;;6948:32:1;;;6930:51;;6918:2;6903:18;9322:45:0;6784:203:1;73213:85:0;;;;;;;;;;-1:-1:-1;73213:85:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24332:102;;;;;;;;;;-1:-1:-1;24332:102:0;;;;;:::i;:::-;;:::i;74580:389::-;;;;;;;;;;-1:-1:-1;74580:389:0;;;;;:::i;:::-;;:::i;91426:356::-;;;;;;:::i;:::-;;:::i;9750:49::-;;;;;;;;;;-1:-1:-1;9750:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9470:10:1;9458:23;;;9440:42;;9428:2;9413:18;9750:49:0;9296:192:1;12380:126:0;;;;;;;;;;-1:-1:-1;12380:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;12480:18:0;12454:6;12480:18;;;:9;:18;;;;;;-1:-1:-1;;;;;12480:18:0;;12380:126;2941:103;;;;;;;;;;;;;:::i;60310:51::-;;;;;;;;;;-1:-1:-1;60310:51:0;;;;;:::i;:::-;;:::i;91790:586::-;;;;;;:::i;:::-;;:::i;26522:1217::-;;;;;;;;;;-1:-1:-1;26522:1217:0;;;;;:::i;:::-;;:::i;10286:39::-;;;;;;;;;;-1:-1:-1;10286:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;80032:37;;;;;;;;;;;;;;;60368:65;;;;;;;;;;-1:-1:-1;60368:65:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2300:87;;;;;;;;;;-1:-1:-1;2346:7:0;2373:6;-1:-1:-1;;;;;2373:6:0;2300:87;;94556:112;;;;;;;;;;;;;:::i;60500:23::-;;;;;;;;;;-1:-1:-1;60500:23:0;;;;-1:-1:-1;;;;;60500:23:0;;;11300:104;;;;;;;;;;;;;:::i;80078:83::-;;;;;;;;;;-1:-1:-1;80078:83:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65619:330;;;;;;;;;;-1:-1:-1;65619:330:0;;;;;:::i;:::-;;:::i;16243:524::-;;;;;;;;;;-1:-1:-1;16243:524:0;;;;;:::i;:::-;;:::i;93146:450::-;;;;;;;;;;-1:-1:-1;93146:450:0;;;;;:::i;:::-;;:::i;65330:281::-;;;;;;;;;;-1:-1:-1;65330:281:0;;;;;:::i;:::-;;:::i;12712:280::-;;;;;;;;;;-1:-1:-1;12712:280:0;;;;;:::i;:::-;;:::i;60257:46::-;;;;;;;;;;;;;;;25869:222;;;;;;;;;;-1:-1:-1;25869:222:0;;;;;:::i;:::-;;:::i;65957:136::-;;;;;;;;;;-1:-1:-1;65957:136:0;;;;;:::i;:::-;;:::i;24868:800::-;;;;;;;;;;-1:-1:-1;24868:800:0;;;;;:::i;:::-;;:::i;60193:55::-;;;;;;;;;;;;60243:5;60193:55;;64267:247;;;;;;;;;;-1:-1:-1;64267:247:0;;;;;:::i;:::-;;:::i;75198:810::-;;;;;;:::i;:::-;;:::i;13055:150::-;;;;;;;;;;-1:-1:-1;13055:150:0;;;;;:::i;:::-;;:::i;66101:262::-;;;;;;;;;;-1:-1:-1;66101:262:0;;;;;:::i;:::-;;:::i;79981:42::-;;;;;;;;;;;;80022:1;79981:42;;10088:117;;;;;;;;;;;;10134:71;10088:117;;81282:643;;;;;;;;;;-1:-1:-1;81282:643:0;;;;;:::i;:::-;;:::i;65115:207::-;;;;;;;;;;-1:-1:-1;65115:207:0;;;;;:::i;:::-;;:::i;9611:70::-;;;;;;;;;;-1:-1:-1;9611:70:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9611:70:0;;-1:-1:-1;;;;;9611:70:0;;;;;;;16259:10:1;16247:23;;;16229:42;;-1:-1:-1;;;;;16307:39:1;;;16302:2;16287:18;;16280:67;16202:18;9611:70:0;16059:294:1;3199:201:0;;;;;;;;;;-1:-1:-1;3199:201:0;;;;;:::i;:::-;;:::i;63951:254::-;;;;;;;;;;-1:-1:-1;63951:254:0;;;;;:::i;:::-;;:::i;94676:103::-;;;;;;;;;;-1:-1:-1;94766:4:0;94676:103;;60898:842;876:10;61181;-1:-1:-1;;;;;61157:35:0;;61149:78;;;;-1:-1:-1;;;61149:78:0;;17025:2:1;61149:78:0;;;17007:21:1;17064:2;17044:18;;;17037:30;17103:32;17083:18;;;17076:60;17153:18;;61149:78:0;;;;;;;;;61269:32;;;61240:26;61269:32;;;:19;:32;;;;;61240:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61489:13;:20;61467:11;;:18;;:42;:70;;;;;61536:1;61513:13;:20;:24;61467:70;:124;;;;-1:-1:-1;61567:24:0;;;;;;61541:22;;;;61551:11;;;;61541:22;:::i;:::-;;;;;;;;:50;61467:124;61445:212;;;;-1:-1:-1;;;61445:212:0;;18045:2:1;61445:212:0;;;18027:21:1;18084:2;18064:18;;;18057:30;18123:34;18103:18;;;18096:62;-1:-1:-1;;;18174:18:1;;;18167:36;18220:19;;61445:212:0;17843:402:1;61445:212:0;61670:62;61689:11;61702;;61670:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;61670:62:0;;;;;;;;;;;;;;;;;;;;;;61715:6;;-1:-1:-1;61670:62:0;-1:-1:-1;61723:8:0;;;;;;61670:62;;61723:8;;;;61670:62;;;;;;;;;-1:-1:-1;61670:18:0;;-1:-1:-1;;;61670:62:0:i;:::-;61072:668;60898:842;;;;;;:::o;92573:213::-;92675:4;-1:-1:-1;;;;;;92699:39:0;;-1:-1:-1;;;92699:39:0;;:79;;-1:-1:-1;;;;;;;;;;31875:40:0;;;92742:36;92692:86;92573:213;-1:-1:-1;;92573:213:0:o;11081:100::-;11135:13;11168:5;11161:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11081:100;:::o;64522:123::-;2186:13;:11;:13::i;:::-;64602:35:::1;::::0;-1:-1:-1;;;64602:35:0;;18424:6:1;18412:19;;64602:35:0::1;::::0;::::1;18394:38:1::0;64602:10:0::1;-1:-1:-1::0;;;;;64602:25:0::1;::::0;::::1;::::0;18367:18:1;;64602:35:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;64522:123:::0;:::o;13525:198::-;13605:4;876:10;13661:32;876:10;13677:7;13686:6;13661:8;:32::i;:::-;-1:-1:-1;13711:4:0;;13525:198;-1:-1:-1;;;13525:198:0:o;66425:142::-;2186:13;:11;:13::i;:::-;66516:35:::1;::::0;;::::1;;::::0;;;:22:::1;:35;::::0;;;;:43;66425:142::o;64653:129::-;2186:13;:11;:13::i;:::-;64736:38:::1;::::0;-1:-1:-1;;;64736:38:0;;18424:6:1;18412:19;;64736:38:0::1;::::0;::::1;18394::1::0;64736:10:0::1;-1:-1:-1::0;;;;;64736:28:0::1;::::0;::::1;::::0;18367:18:1;;64736:38:0::1;18250:188:1::0;14303:700:0;-1:-1:-1;;;;;14484:17:0;;14400:4;14484:17;;;:11;:17;;;;;;;;876:10;14484:26;;;;;;;;;;14537:64;;;;;;;;;;;;876:10;;-1:-1:-1;;;;;14484:26:0;;;;14400:4;;14537:64;;14544:9;;14537:64;;;;;;;:6;:64::i;:::-;14521:80;;14629:4;-1:-1:-1;;;;;14618:15:0;:7;-1:-1:-1;;;;;14618:15:0;;;:55;;;;-1:-1:-1;;;;;;14637:36:0;;;;;14618:55;14614:322;;;14690:19;14712:97;14718:16;14736:6;14712:97;;;;;;;;;;;;;;;;;:5;:97::i;:::-;-1:-1:-1;;;;;14824:17:0;;;;;;;:11;:17;;;;;;;;:26;;;;;;;;;;;;;:41;;-1:-1:-1;;;;;;14824:41:0;-1:-1:-1;;;;;14824:41:0;;;;;;;;14887:37;;3853:58:1;;;14824:41:0;;-1:-1:-1;14824:26:0;;:17;;14887:37;;3826:18:1;14887:37:0;;;;;;;14675:261;14614:322;14946:27;14956:4;14962:2;14966:6;14946:9;:27::i;:::-;-1:-1:-1;14991:4:0;;14303:700;-1:-1:-1;;;;;;14303:700:0:o;92794:344::-;93008:14;93024:11;93055:75;93072:11;93085:10;93097:7;93106;93115:14;;93055:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;93055:16:0;;-1:-1:-1;;;93055:75:0:i;:::-;93048:82;;;;92794:344;;;;;;;;;:::o;15412:328::-;15497:4;;876:10;15514:28;;15553:13;15569:70;15576:10;15569:70;;;;;;;;;;;;;;;;;:6;:70::i;:::-;15553:86;;15650:60;15659:5;15666:7;15703:6;15675:25;15685:5;15692:7;15675:9;:25::i;:::-;:34;;;;:::i;:::-;-1:-1:-1;;;;;15650:60:0;:8;:60::i;:::-;-1:-1:-1;15728:4:0;;15412:328;-1:-1:-1;;;;15412:328:0:o;66665:250::-;66807:32;;;66761:4;66807:32;;;:19;:32;;;;;66778:61;;66761:4;;66807:32;66778:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66895:11;;66885:22;;;;;;;:::i;:::-;;;;;;;;66867:13;66857:24;;;;;;:50;66850:57;;;66665:250;;;;;:::o;64790:178::-;2186:13;:11;:13::i;:::-;64905:55:::1;::::0;-1:-1:-1;;;64905:55:0;;-1:-1:-1;;;;;64905:10:0::1;:29;::::0;::::1;::::0;:55:::1;::::0;64935:11;;64948;;;;64905:55:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;24332:102:::0;24394:32;24404:10;24416:9;24394;:32::i;:::-;24332:102;:::o;74580:389::-;876:10;74837:4;74813:29;74805:80;;;;-1:-1:-1;;;74805:80:0;;19842:2:1;74805:80:0;;;19824:21:1;19881:2;19861:18;;;19854:30;19920:34;19900:18;;;19893:62;-1:-1:-1;;;19971:18:1;;;19964:36;20017:19;;74805:80:0;19640:402:1;74805:80:0;74896:65;74918:11;74931;;74896:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;74896:65:0;;;;;;;;;;;;;;;;;;;;;;74944:6;;-1:-1:-1;74896:65:0;-1:-1:-1;74952:8:0;;;;;;74896:65;;74952:8;;;;74896:65;;;;;;;;;-1:-1:-1;74896:21:0;;-1:-1:-1;;;74896:65:0:i;:::-;74580:389;;;;;;:::o;91426:356::-;91643:131;91649:5;91656:11;91669:10;91681:7;91690:25;;;;:11;:25;:::i;:::-;91717:29;;;;;;;;:::i;:::-;91748:25;;;;:11;:25;:::i;:::-;91643:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;91643:5:0;;-1:-1:-1;;;91643:131:0:i;2941:103::-;2186:13;:11;:13::i;:::-;3006:30:::1;3033:1;3006:18;:30::i;:::-;2941:103::o:0;60310:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;91790:586::-;92076:292;92103:5;92123:11;92149:10;92174:7;92196:8;;92076:292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;92219:14:0;;-1:-1:-1;92248:25:0;;-1:-1:-1;;92248:25:0;;;:11;:25;:::i;:::-;92288:29;;;;;;;;:::i;:::-;92332:25;;;;:11;:25;:::i;:::-;92076:292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;92076:12:0;;-1:-1:-1;;;92076:292:0:i;:::-;;91790:586;;;;;;;;:::o;26522:1217::-;26601:6;26642:12;26628:11;:26;26620:77;;;;-1:-1:-1;;;26620:77:0;;21035:2:1;26620:77:0;;;21017:21:1;21074:2;21054:18;;;21047:30;21113:34;21093:18;;;21086:62;-1:-1:-1;;;21164:18:1;;;21157:36;21210:19;;26620:77:0;20833:402:1;26620:77:0;-1:-1:-1;;;;;26732:23:0;;26710:19;26732:23;;;:14;:23;;;;;;;;26770:17;26766:58;;26811:1;26804:8;;;;;26766:58;-1:-1:-1;;;;;26884:20:0;;;;;;:11;:20;;;;;26936:11;;26905:16;26920:1;26905:12;:16;:::i;:::-;26884:38;;;;;;;;;;;;;;;-1:-1:-1;26884:38:0;:48;;:63;26880:147;;-1:-1:-1;;;;;26971:20:0;;;;;;:11;:20;;;;;;26992:16;27007:1;26992:12;:16;:::i;:::-;26971:38;;;;;;;;;;;;;-1:-1:-1;26971:38:0;:44;-1:-1:-1;;;26971:44:0;;-1:-1:-1;;;;;26971:44:0;;-1:-1:-1;26964:51:0;;-1:-1:-1;26964:51:0;26880:147;-1:-1:-1;;;;;27088:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;27084:88:0;;;27159:1;27152:8;;;;;27084:88;27184:12;;27226:16;27241:1;27226:12;:16;:::i;:::-;27211:31;;27253:428;27268:5;27260:13;;:5;:13;;;27253:428;;;27290:13;27332:1;27315:13;27323:5;27315;:13;:::i;:::-;27314:19;;;;:::i;:::-;27306:27;;:5;:27;:::i;:::-;-1:-1:-1;;;;;27398:20:0;;27375;27398;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;27375:51;;;;;;;;;;;;;;;-1:-1:-1;;;27375:51:0;;;-1:-1:-1;;;;;27375:51:0;;;;;;;;27398:28;;-1:-1:-1;27445:27:0;;27441:229;;;27500:8;;;;-1:-1:-1;27493:15:0;;-1:-1:-1;;;;27493:15:0;27441:229;27534:12;;:26;;;-1:-1:-1;27530:140:0;;;27589:6;27581:14;;27530:140;;;27644:10;27653:1;27644:6;:10;:::i;:::-;27636:18;;27530:140;27275:406;;27253:428;;;-1:-1:-1;;;;;;27698:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;-1:-1:-1;;;;;;;;27698:33:0;;;;;-1:-1:-1;;26522:1217:0;;;;:::o;94556:112::-;94623:4;94647:13;12297:12;;-1:-1:-1;;;;;12297:12:0;;12210:107;94647:13;-1:-1:-1;;;;;94640:20:0;;;94556:112;:::o;11300:104::-;11356:13;11389:7;11382:14;;;;;:::i;65619:330::-;65743:35;;;65723:17;65743:35;;;:19;:35;;;;;65723:55;;65698:12;;65723:17;65743:35;65723:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65797:4;:11;65812:1;65797:16;;65789:58;;;;-1:-1:-1;;;65789:58:0;;21996:2:1;65789:58:0;;;21978:21:1;22035:2;22015:18;;;22008:30;22074:31;22054:18;;;22047:59;22123:18;;65789:58:0;21794:353:1;65789:58:0;65865:31;65876:1;65893:2;65879:4;:11;:16;;;;:::i;:::-;65865:4;;:31;:10;:31::i;:::-;65858:38;65619:330;-1:-1:-1;;;65619:330:0:o;16243:524::-;16333:4;876:10;16333:4;16415:25;876:10;16432:7;16415:9;:25::i;:::-;16389:51;;16451:13;16467:75;16474:15;16467:75;;;;;;;;;;;;;;;;;:6;:75::i;:::-;16451:91;;16581:6;-1:-1:-1;;;;;16561:26:0;:16;-1:-1:-1;;;;;16561:26:0;;;16553:76;;;;-1:-1:-1;;;16553:76:0;;22484:2:1;16553:76:0;;;22466:21:1;22523:2;22503:18;;;22496:30;22562:34;22542:18;;;22535:62;-1:-1:-1;;;22613:18:1;;;22606:35;22658:19;;16553:76:0;22282:401:1;16553:76:0;16673:51;16682:5;16689:7;16717:6;16698:16;:25;-1:-1:-1;;;;;16673:51:0;:8;:51::i;:::-;-1:-1:-1;16755:4:0;;16243:524;-1:-1:-1;;;;;16243:524:0:o;93146:450::-;93433:14;93449:11;93480:108;93504:11;93517:10;93529:7;93538:8;;93480:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;93480:108:0;;;;;;;;;;;;;;;;;;;;;;93548:14;;-1:-1:-1;93564:7:0;;-1:-1:-1;93480:108:0;93573:14;;;;;;93480:108;;93573:14;;;;93480:108;;;;;;;;;-1:-1:-1;93480:23:0;;-1:-1:-1;;;93480:108:0:i;:::-;93473:115;;;;93146:450;;;;;;;;;;;;:::o;65330:281::-;2186:13;:11;:13::i;:::-;65502:14:::1;;65526:4;65485:47;;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;65485:47:0;;::::1;::::0;;;;;;65447:35:::1;::::0;::::1;;::::0;;;:19:::1;65485:47;65447:35:::0;;;;;;:85;;::::1;::::0;:35;;:85;;::::1;::::0;::::1;:::i;:::-;;65548:55;65572:14;65588;;65548:55;;;;;;;;:::i;:::-;;;;;;;;65330:281:::0;;;:::o;12712:280::-;12791:4;12808:13;12824:60;12831:9;12824:60;;;;;;;;;;;;;;;;;:6;:60::i;:::-;12808:76;-1:-1:-1;876:10:0;12934:28;876:10;12951:2;12808:76;12934:9;:28::i;25869:222::-;-1:-1:-1;;;;;25975:23:0;;25934:6;25975:23;;;:14;:23;;;;;;;;26016:16;:67;;26082:1;26016:67;;;-1:-1:-1;;;;;26035:20:0;;;;;;:11;:20;;;;;;26056:16;26071:1;26056:12;:16;:::i;:::-;26035:38;;;;;;;;;;;;;-1:-1:-1;26035:38:0;:44;-1:-1:-1;;;26035:44:0;;-1:-1:-1;;;;;26035:44:0;;26009:74;-1:-1:-1;;;25869:222:0:o;65957:136::-;2186:13;:11;:13::i;:::-;66027:8:::1;:20:::0;;-1:-1:-1;;;;;;66027:20:0::1;-1:-1:-1::0;;;;;66027:20:0;::::1;::::0;;::::1;::::0;;;66063:22:::1;::::0;6930:51:1;;;66063:22:0::1;::::0;6918:2:1;6903:18;66063:22:0::1;;;;;;;65957:136:::0;:::o;24868:800::-;24984:23;9914:80;25064:6;:4;:6::i;:::-;25048:24;;;;;;25074:12;29822:9;;29712:153;25074:12;25020:82;;;;;;;23306:25:1;;;;23347:18;;;23340:34;;;;23390:18;;;23383:34;;;;25096:4:0;23433:18:1;;;;23426:60;;;;25020:82:0;;;;;;;;;;23278:19:1;;;25020:82:0;;25010:93;;;;;;10134:71;25145:57;;;23728:25:1;-1:-1:-1;;;;;23789:32:1;;23769:18;;;23762:60;23838:18;;;23831:34;;;23881:18;;;;23874:34;;;25145:57:0;;;;;;;;;;23700:19:1;;;25145:57:0;;;25135:68;;;;;;;-1:-1:-1;;;25241:57:0;;;24177:27:1;24220:11;;;24213:27;;;24256:12;;;24249:28;;;25010:93:0;;-1:-1:-1;;;24293:12:1;;25241:57:0;;;-1:-1:-1;;25241:57:0;;;;;;;;;25231:68;;25241:57;25231:68;;;;25310:17;25330:26;;;;;;;;;24543:25:1;;;24616:4;24604:17;;24584:18;;;24577:45;;;;24638:18;;;24631:34;;;24681:18;;;24674:34;;;25231:68:0;;-1:-1:-1;25310:17:0;25330:26;;24515:19:1;;25330:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25330:26:0;;-1:-1:-1;;25330:26:0;;;-1:-1:-1;;;;;;;25375:23:0;;25367:73;;;;-1:-1:-1;;;25367:73:0;;24921:2:1;25367:73:0;;;24903:21:1;24960:2;24940:18;;;24933:30;24999:34;24979:18;;;24972:62;-1:-1:-1;;;25050:18:1;;;25043:35;25095:19;;25367:73:0;24719:401:1;25367:73:0;-1:-1:-1;;;;;25468:17:0;;;;;;:6;:17;;;;;:19;;;;;;:::i;:::-;;;;;25459:5;:28;25451:74;;;;-1:-1:-1;;;25451:74:0;;25467:2:1;25451:74:0;;;25449:21:1;25506:2;25486:18;;;25479:30;25545:34;25525:18;;;25518:62;-1:-1:-1;;;25596:18:1;;;25589:31;25637:19;;25451:74:0;25265:397:1;25451:74:0;25563:6;25544:15;:25;;25536:75;;;;-1:-1:-1;;;25536:75:0;;25869:2:1;25536:75:0;;;25851:21:1;25908:2;25888:18;;;25881:30;25947:34;25927:18;;;25920:62;-1:-1:-1;;;25998:18:1;;;25991:35;26043:19;;25536:75:0;25667:401:1;25536:75:0;25629:31;25639:9;25650;25629;:31::i;:::-;25622:38;;;;24868:800;;;;;;:::o;64267:247::-;2186:13;:11;:13::i;:::-;64444:62:::1;::::0;-1:-1:-1;;;64444:62:0;;-1:-1:-1;;;;;64444:10:0::1;:20;::::0;::::1;::::0;:62:::1;::::0;64465:8;;64475;;64485:11;;64498:7;;;;64444:62:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;75198:810:::0;75452:27;;;75430:19;75452:27;;;:14;:27;;;;;;:40;;;;75480:11;;;;75452:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;75452:48:0;;;;;;;;;;;;-1:-1:-1;75452:48:0;75511:73;;;;-1:-1:-1;;;75511:73:0;;26778:2:1;75511:73:0;;;26760:21:1;26817:2;26797:18;;;26790:30;26856:34;26836:18;;;26829:62;-1:-1:-1;;;26907:18:1;;;26900:33;26950:19;;75511:73:0;26576:399:1;75511:73:0;75626:11;75613:8;;75603:19;;;;;;;:::i;:::-;;;;;;;;:34;75595:80;;;;-1:-1:-1;;;75595:80:0;;27182:2:1;75595:80:0;;;27164:21:1;27221:2;27201:18;;;27194:30;27260:34;27240:18;;;27233:62;-1:-1:-1;;;27311:18:1;;;27304:31;27352:19;;75595:80:0;26980:397:1;75595:80:0;75723:27;;;75782:1;75723:27;;;:14;:27;;;;;;:40;;;;75751:11;;;;75723:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;75723:48:0;;;;;;;;;;;;:61;;;;75853:65;;;;;;;;;;;;;;;;;;;75875:11;;75888;;75853:65;;;;;;75888:11;75853:65;;75888:11;75853:65;;;;;;;;;-1:-1:-1;;75853:65:0;;;;;;;;;;;;;;;;;;;;;;75901:6;;-1:-1:-1;75853:65:0;-1:-1:-1;75909:8:0;;;;;;75853:65;;75909:8;;;;75853:65;;;;;;;;;-1:-1:-1;75853:21:0;;-1:-1:-1;;;75853:65:0:i;:::-;75934:66;75954:11;75967;;75980:6;75988:11;75934:66;;;;;;;;;;:::i;:::-;;;;;;;;75374:634;75198:810;;;;;;:::o;13055:150::-;-1:-1:-1;;;;;13170:18:0;;;13144:6;13170:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;-1:-1:-1;;;;;13170:27:0;;13055:150::o;66101:262::-;2186:13;:11;:13::i;:::-;66241:28:::1;::::0;;::::1;;::::0;;;:15:::1;:28;::::0;;;;;;;:41;;::::1;::::0;;;;;;;;;;:51;;;66308:47;;28103:34:1;;;28153:18;;28146:43;;;;28205:18;;;28198:34;;;66308:47:0::1;::::0;28066:2:1;28051:18;66308:47:0::1;27880:358:1::0;81282:643:0;876:10;81594:4;81570:29;81562:73;;;;-1:-1:-1;;;81562:73:0;;28445:2:1;81562:73:0;;;28427:21:1;28484:2;28464:18;;;28457:30;28523:33;28503:18;;;28496:61;28574:18;;81562:73:0;28243:355:1;81562:73:0;81675:42;81697:4;81704:3;81709:7;81675:13;:42::i;:::-;81665:52;;81763:3;-1:-1:-1;;;;;81733:43:0;81750:11;81733:43;;;81768:7;81733:43;;;;4068:25:1;;4056:2;4041:18;;3922:177;81733:43:0;;;;;;;;81806:111;;-1:-1:-1;;;81806:111:0;;-1:-1:-1;;;;;81806:33:0;;;;;81845:11;;81806:111;;81858:11;;81871;;;;81884:6;;81892:5;;81899:7;;81908:8;;;;81806:111;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81282:643;;;;;;;;;;:::o;65115:207::-;2186:13;:11;:13::i;:::-;65216:35:::1;::::0;::::1;;::::0;;;:19:::1;:35;::::0;;;;:43:::1;::::0;65254:5;;65216:43:::1;:::i;:::-;;65275:39;65292:14;65308:5;;65275:39;;;;;;;;:::i;3199:201::-:0;2186:13;:11;:13::i;:::-;-1:-1:-1;;;;;3288:22:0;::::1;3280:73;;;::::0;-1:-1:-1;;;3280:73:0;;29563:2:1;3280:73:0::1;::::0;::::1;29545:21:1::0;29602:2;29582:18;;;29575:30;29641:34;29621:18;;;29614:62;-1:-1:-1;;;29692:18:1;;;29685:36;29738:19;;3280:73:0::1;29361:402:1::0;3280:73:0::1;3364:28;3383:8;3364:18;:28::i;63951:254::-:0;64129:68;;-1:-1:-1;;;64129:68:0;;30005:6:1;30038:15;;;64129:68:0;;;30020:34:1;30090:15;;30070:18;;;30063:43;64178:4:0;30122:18:1;;;30115:60;30191:18;;;30184:34;;;64097:12:0;;64129:10;-1:-1:-1;;;;;64129:20:0;;;;29967:19:1;;64129:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;64129:68:0;;;;;;;;;;;;:::i;:::-;64122:75;63951:254;-1:-1:-1;;;;;63951:254:0:o;73582:607::-;73775:12;73789:19;73812:203;73860:9;73884:3;73925:34;;;73961:11;73974;73987:6;73995:8;73902:102;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;73902:102:0;;;;;;;;;;;;;;-1:-1:-1;;;;;73902:102:0;-1:-1:-1;;;;;;73902:102:0;;;;;;;;;;73820:4;;73812:203;;:33;:203::i;:::-;73774:241;;;;74075:7;74070:112;;74099:71;74119:11;74132;74145:6;74153:8;74163:6;74099:19;:71::i;2465:132::-;2346:7;2373:6;-1:-1:-1;;;;;2373:6:0;876:10;2529:23;2521:68;;;;-1:-1:-1;;;2521:68:0;;31632:2:1;2521:68:0;;;31614:21:1;;;31651:18;;;31644:30;31710:34;31690:18;;;31683:62;31762:18;;2521:68:0;31430:356:1;20719:571:0;-1:-1:-1;;;;;20821:19:0;;20813:69;;;;-1:-1:-1;;;20813:69:0;;31993:2:1;20813:69:0;;;31975:21:1;32032:2;32012:18;;;32005:30;32071:34;32051:18;;;32044:62;-1:-1:-1;;;32122:18:1;;;32115:35;32167:19;;20813:69:0;31791:401:1;20813:69:0;-1:-1:-1;;;;;20901:21:0;;20893:69;;;;-1:-1:-1;;;20893:69:0;;32399:2:1;20893:69:0;;;32381:21:1;32438:2;32418:18;;;32411:30;32477:34;32457:18;;;32450:62;-1:-1:-1;;;32528:18:1;;;32521:33;32571:19;;20893:69:0;32197:399:1;20893:69:0;20975:13;-1:-1:-1;;21003:9:0;:27;20999:187;;;-1:-1:-1;;;;;;20999:187:0;;;21114:60;21121:9;21114:60;;;;;;;;;;;;;;;;;:6;:60::i;:::-;21105:69;;20999:187;-1:-1:-1;;;;;21198:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;-1:-1:-1;;;;;;21198:36:0;-1:-1:-1;;;;;21198:36:0;;;;;;;;21250:32;;3853:58:1;;;21250:32:0;;3826:18:1;21250:32:0;;;;;;;20802:488;20719:571;;;:::o;23654:161::-;23729:6;23767:12;-1:-1:-1;;;23756:9:0;;23748:32;;;;-1:-1:-1;;;23748:32:0;;;;;;;;:::i;:::-;-1:-1:-1;23805:1:0;;23654:161;-1:-1:-1;;23654:161:0:o;24019:165::-;24105:6;24137:1;-1:-1:-1;;;;;24132:6:0;:1;-1:-1:-1;;;;;24132:6:0;;;24140:12;24124:29;;;;;-1:-1:-1;;;24124:29:0;;;;;;;;:::i;:::-;-1:-1:-1;24171:5:0;24175:1;24171;:5;:::i;:::-;24164:12;24019:165;-1:-1:-1;;;;24019:165:0:o;17237:761::-;-1:-1:-1;;;;;17333:18:0;;17325:69;;;;-1:-1:-1;;;17325:69:0;;33045:2:1;17325:69:0;;;33027:21:1;33084:2;33064:18;;;33057:30;33123:34;33103:18;;;33096:62;-1:-1:-1;;;33174:18:1;;;33167:36;33220:19;;17325:69:0;32843:402:1;17325:69:0;-1:-1:-1;;;;;17413:16:0;;17405:65;;;;-1:-1:-1;;;17405:65:0;;33452:2:1;17405:65:0;;;33434:21:1;33491:2;33471:18;;;33464:30;33530:34;33510:18;;;33503:62;-1:-1:-1;;;33581:18:1;;;33574:34;33625:19;;17405:65:0;33250:400:1;17405:65:0;-1:-1:-1;;;;;17489:19:0;;17503:4;17489:19;;17481:83;;;;-1:-1:-1;;;17481:83:0;;33857:2:1;17481:83:0;;;33839:21:1;33896:2;33876:18;;;33869:30;33935:34;33915:18;;;33908:62;-1:-1:-1;;;33986:18:1;;;33979:49;34045:19;;17481:83:0;33655:415:1;17481:83:0;-1:-1:-1;;;;;17652:15:0;;;;;;:9;:15;;;;;;;;;;17646:83;;;;;;;;;;;;;;-1:-1:-1;;;;;17652:15:0;;;;17669:6;;17646:83;;;;;;;:5;:83::i;:::-;-1:-1:-1;;;;;17628:15:0;;;;;;;:9;:15;;;;;;;;:101;;-1:-1:-1;;;;;;17628:101:0;-1:-1:-1;;;;;17628:101:0;;;;;;17762:13;;;;;;;;;;17756:75;;;;;;;;;;;;;;17762:13;;;;;17777:6;;17756:75;;;;;;;;:5;:75::i;:::-;-1:-1:-1;;;;;17740:13:0;;;;;;;:9;:13;;;;;;;;;:91;;-1:-1:-1;;;;;;17740:91:0;-1:-1:-1;;;;;17740:91:0;;;;;;17847:26;;3871:39:1;;;3853:58;;17740:13:0;;17847:26;;;;;;3826:18:1;17847:26:0;;;;;;;-1:-1:-1;;;;;17901:15:0;;;;;;;:9;:15;;;;;;;17918:13;;;;;;;;17886:54;;17901:15;;;;17918:13;17933:6;17886:14;:54::i;:::-;17237:761;;;:::o;82119:471::-;82325:14;82341:11;82409:20;82432:47;82451:10;82463:15;82470:7;82463:6;:15::i;:::-;88808:48;;;79973:1;88808:48;;;38167:49:1;38232:11;;;38225:27;;;;38308:3;38286:16;;;;-1:-1:-1;;;;;;38282:51:1;38268:12;;;38261:73;88808:48:0;;;;;;;;;38350:12:1;;;;88808:48:0;;;88679:185;82432:47;82497:85;;-1:-1:-1;;;82497:85:0;;82409:70;;-1:-1:-1;;;;;;82497:10:0;:23;;;;:85;;82521:11;;82542:4;;82409:70;;82558:7;;82567:14;;82497:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;82490:92;;;;;82119:471;;;;;;;;:::o;27747:376::-;-1:-1:-1;;;;;27850:20:0;;;27824:23;27850:20;;;:9;:20;;;;;;;;;;27907:9;:20;;;;;;27938;;;;:32;;;-1:-1:-1;;;;;;27938:32:0;;;;;;;27988:54;;27850:20;;;;;-1:-1:-1;;;;;27907:20:0;;;;27938:32;;27850:20;;;27988:54;;27824:23;27988:54;28055:60;28070:15;28087:9;28098:16;28055:14;:60::i;:::-;27813:310;;27747:376;;:::o;83196:558::-;83391:16;83410:19;:8;83391:16;83410;:19::i;:::-;83391:38;-1:-1:-1;83446:21:0;;;83442:305;;83484:52;83493:11;83506;83519:6;83527:8;83484;:52::i;:::-;83442:305;;;83558:30;;;80022:1;83558:30;83554:193;;;83605:59;83621:11;83634;83647:6;83655:8;83605:15;:59::i;83554:193::-;83697:38;;-1:-1:-1;;;83697:38:0;;35174:2:1;83697:38:0;;;35156:21:1;35213:2;35193:18;;;35186:30;35252;35232:18;;;35225:58;35300:18;;83697:38:0;34972:352:1;83762:840:0;84031:11;84055:66;84070:11;84031;84092:14;84031:11;84055:14;:66::i;:::-;84147:20;84159:7;84147:11;:20::i;:::-;-1:-1:-1;84134:33:0;-1:-1:-1;84187:50:0;84198:5;84205:11;84218:10;84134:33;84187:10;:50::i;:::-;84178:59;;84305:1;84296:6;:10;84288:48;;;;-1:-1:-1;;;84288:48:0;;35531:2:1;84288:48:0;;;35513:21:1;35570:2;35550:18;;;35543:30;-1:-1:-1;;;35589:18:1;;;35582:55;35654:18;;84288:48:0;35329:349:1;84288:48:0;84349:22;84374:46;84393:10;84405:14;84412:6;84405;:14::i;84374:46::-;84349:71;;84431:94;84439:11;84452:9;84463:14;84479:18;84499:14;84515:9;84431:7;:94::i;:::-;84575:10;84568:5;-1:-1:-1;;;;;84543:51:0;84555:11;84543:51;;;84587:6;84543:51;;;;4068:25:1;;4056:2;4041:18;;3922:177;84543:51:0;;;;;;;;84044:558;83762:840;;;;;;;;;:::o;3560:191::-;3634:16;3653:6;;-1:-1:-1;;;;;3670:17:0;;;-1:-1:-1;;;;;;3670:17:0;;;;;;3703:40;;3653:6;;;;;;;3703:40;;3634:16;3703:40;3623:128;3560:191;:::o;85075:995::-;85415:11;85439:77;85454:11;80022:1;85485:14;-1:-1:-1;;;;;85439:77:0;;:14;:77::i;:::-;85542:20;85554:7;85542:11;:20::i;:::-;-1:-1:-1;85529:33:0;-1:-1:-1;85582:50:0;85593:5;85600:11;85613:10;85529:33;85582:10;:50::i;:::-;85573:59;;85660:1;85651:6;:10;85643:48;;;;-1:-1:-1;;;85643:48:0;;35531:2:1;85643:48:0;;;35513:21:1;35570:2;35550:18;;;35543:30;-1:-1:-1;;;35589:18:1;;;35582:55;35654:18;;85643:48:0;35329:349:1;85643:48:0;85772:22;85797:91;85823:10;85835;85847:14;85854:6;85847;:14::i;:::-;85863:8;85873:14;85797:25;:91::i;:::-;85772:116;;85899:94;85907:11;85920:9;85931:14;85947:18;85967:14;85983:9;85899:7;:94::i;:::-;86043:10;86036:5;-1:-1:-1;;;;;86011:51:0;86023:11;86011:51;;;86055:6;86011:51;;;;4068:25:1;;4056:2;4041:18;;3922:177;86011:51:0;;;;;;;;85428:642;85075:995;;;;;;;;;;;:::o;49050:2833::-;49170:12;49219:7;49203:12;49219:7;49213:2;49203:12;:::i;:::-;:23;;49195:50;;;;-1:-1:-1;;;49195:50:0;;36018:2:1;49195:50:0;;;36000:21:1;36057:2;36037:18;;;36030:30;-1:-1:-1;;;36076:18:1;;;36069:44;36130:18;;49195:50:0;35816:338:1;49195:50:0;49281:16;49290:7;49281:6;:16;:::i;:::-;49264:6;:13;:33;;49256:63;;;;-1:-1:-1;;;49256:63:0;;36361:2:1;49256:63:0;;;36343:21:1;36400:2;36380:18;;;36373:30;-1:-1:-1;;;36419:18:1;;;36412:47;36476:18;;49256:63:0;36159:341:1;49256:63:0;49332:22;49398:15;;49427:2005;;;;51576:4;51570:11;51557:24;;51765:1;51754:9;51747:20;51815:4;51804:9;51800:20;51794:4;51787:34;49391:2445;;49427:2005;49612:4;49606:11;49593:24;;50281:2;50272:7;50268:16;50669:9;50662:17;50656:4;50652:28;50640:9;50629;50625:25;50621:60;50718:7;50714:2;50710:16;50975:6;50961:9;50954:17;50948:4;50944:28;50932:9;50924:6;50920:22;50916:57;50912:70;50746:434;51009:3;51005:2;51002:11;50746:434;;;51151:9;;51140:21;;51051:4;51043:13;;;;51084;50746:434;;;-1:-1:-1;;51200:26:0;;;51412:2;51395:11;-1:-1:-1;;51391:25:0;51385:4;51378:39;-1:-1:-1;49391:2445:0;-1:-1:-1;51866:9:0;49050:2833;-1:-1:-1;;;;49050:2833:0:o;82598:590::-;82875:14;82891:11;82962:20;82985:92;83011:10;83023;83035:15;83042:7;83035:6;:15::i;82985:92::-;83095:85;;-1:-1:-1;;;83095:85:0;;82962:115;;-1:-1:-1;;;;;;83095:10:0;:23;;;;:85;;83119:11;;83140:4;;82962:115;;83156:7;;83165:14;;83095:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;83088:92;;;;;82598:590;;;;;;;;;;:::o;95702:514::-;95839:4;;876:10;95856:30;;95968:14;95985:58;95992:10;95985:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;95968:75;-1:-1:-1;;;;;;96058:22:0;;96075:4;96058:22;;;;:42;;;96093:7;-1:-1:-1;;;;;96084:16:0;:5;-1:-1:-1;;;;;96084:16:0;;;96058:42;96054:88;;;96102:40;96118:5;96125:7;96134;-1:-1:-1;;;;;96102:40:0;:15;:40::i;:::-;96153:30;96163:5;96170:3;96175:7;96153:9;:30::i;:::-;-1:-1:-1;;;;;96194:14:0;;95702:514;-1:-1:-1;;;;;95702:514:0:o;68115:1309::-;68274:4;68280:12;68342;68365:13;68389:24;68426:8;68416:19;;-1:-1:-1;;;;;68416:19:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68416:19:0;;68389:46;;68945:1;68915;68877:9;68871:16;68838:4;68827:9;68823:20;68788:1;68749:7;68719:4;68696:275;68684:287;;69040:16;69029:27;;69085:8;69076:7;69073:21;69070:78;;;69125:8;69114:19;;69070:78;69235:7;69222:11;69215:28;69357:7;69354:1;69347:4;69334:11;69330:22;69315:50;69394:8;;;;-1:-1:-1;68115:1309:0;-1:-1:-1;;;;;;68115:1309:0:o;74197:375::-;74473:8;74463:19;;;;;;74412:14;:27;74427:11;74412:27;;;;;;;;;;;;;;;74440:11;74412:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;74412:48:0;;;;;;;;;:70;;;;74498:66;;;;74512:11;;74525;;74453:6;;74546:8;;74556:7;;74498:66;:::i;:::-;;;;;;;;74197:375;;;;;:::o;23823:188::-;23909:6;;23939:5;23943:1;23939;:5;:::i;:::-;23928:16;;23968:1;-1:-1:-1;;;;;23963:6:0;:1;-1:-1:-1;;;;;23963:6:0;;;23971:12;23955:29;;;;;-1:-1:-1;;;23955:29:0;;;;;;;;:::i;28131:937::-;28236:6;-1:-1:-1;;;;;28226:16:0;:6;-1:-1:-1;;;;;28226:16:0;;;:30;;;;;28255:1;28246:6;-1:-1:-1;;;;;28246:10:0;;28226:30;28222:839;;;-1:-1:-1;;;;;28277:20:0;;;28273:381;;-1:-1:-1;;;;;28337:22:0;;28318:16;28337:22;;;:14;:22;;;;;;;;;28397:13;:60;;28456:1;28397:60;;;-1:-1:-1;;;;;28413:19:0;;;;;;:11;:19;;;;;;28433:13;28445:1;28433:9;:13;:::i;:::-;28413:34;;;;;;;;;;;;;-1:-1:-1;28413:34:0;:40;-1:-1:-1;;;28413:40:0;;-1:-1:-1;;;;;28413:40:0;28397:60;28378:79;;28476:16;28495:67;28501:9;28512:6;28495:67;;;;;;;;;;;;;;;;;:5;:67::i;:::-;28476:86;;28581:57;28598:6;28606:9;28617;28628;28581:16;:57::i;:::-;28299:355;;;28273:381;-1:-1:-1;;;;;28674:20:0;;;28670:380;;-1:-1:-1;;;;;28734:22:0;;28715:16;28734:22;;;:14;:22;;;;;;;;;28794:13;:60;;28853:1;28794:60;;;-1:-1:-1;;;;;28810:19:0;;;;;;:11;:19;;;;;;28830:13;28842:1;28830:9;:13;:::i;:::-;28810:34;;;;;;;;;;;;;-1:-1:-1;28810:34:0;:40;-1:-1:-1;;;28810:40:0;;-1:-1:-1;;;;;28810:40:0;28794:60;28775:79;;28873:16;28892:66;28898:9;28909:6;28892:66;;;;;;;;;;;;;;;;;:5;:66::i;:::-;28873:85;;28977:57;28994:6;29002:9;29013;29024;28977:16;:57::i;88114:238::-;88175:6;;88210:22;96310:9;88210:7;:22;:::i;:::-;88194:38;-1:-1:-1;;;;;;88251:28:0;;;88243:67;;;;-1:-1:-1;;;88243:67:0;;37835:2:1;88243:67:0;;;37817:21:1;37874:2;37854:18;;;37847:30;37913:28;37893:18;;;37886:56;37959:18;;88243:67:0;37633:350:1;52259:307:0;52333:5;52376:10;:6;52385:1;52376:10;:::i;:::-;52359:6;:13;:27;;52351:59;;;;-1:-1:-1;;;52351:59:0;;38575:2:1;52351:59:0;;;38557:21:1;38614:2;38594:18;;;38587:30;-1:-1:-1;;;38633:18:1;;;38626:49;38692:18;;52351:59:0;38373:343:1;52351:59:0;-1:-1:-1;52490:29:0;52506:3;52490:29;52484:36;;52259:307::o;84610:457::-;84765:10;84777:15;84796:28;84815:8;84796:18;:28::i;:::-;84764:60;;-1:-1:-1;84764:60:0;-1:-1:-1;;;;;;84839:16:0;;84835:69;;84885:6;84872:20;;84835:69;84916:11;84930:16;84937:8;84930:6;:16::i;:::-;84916:30;;84966:34;84976:11;84989:2;84993:6;84966:9;:34::i;:::-;84957:43;;85048:2;-1:-1:-1;;;;;85018:41:0;85035:11;85018:41;;;85052:6;85018:41;;;;4068:25:1;;4056:2;4041:18;;3922:177;85018:41:0;;;;;;;;84753:314;;;84610:457;;;;:::o;86078:1902::-;86259:12;86273:10;86285:15;86302:27;86331:17;86352:35;86378:8;86352:25;:35::i;:::-;86258:129;;;;;;;;;;86400:13;86416:15;:28;86432:11;86416:28;;;;;;;;;;;;;;;86445:11;86416:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;86416:49:0;;;;;;;;;;;;;;-1:-1:-1;86490:16:0;86497:8;86490:6;:16::i;:::-;86476:30;;86634:8;86629:167;;86668:45;86678:11;86699:4;86706:6;86668:9;:45::i;:::-;86728:28;;;;;;;:15;:28;;;;;;;:41;;86659:54;;-1:-1:-1;86780:4:0;;86728:41;;86757:11;;86728:41;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;86728:49:0;;;;;;;;;;:56;;-1:-1:-1;;86728:56:0;;;;;;;;;;86629:167;-1:-1:-1;;;;;88074:20:0;;;86808:97;;86850:22;;-1:-1:-1;;;;;6948:32:1;;6930:51;;86850:22:0;;6918:2:1;6903:18;86850:22:0;;;;;;;86887:7;;;;;;;;;86808:97;86979:11;87027;87064:6;87104:8;87139:4;87168:2;87196:6;87244:14;86959:17;87329:8;:33;;87352:10;-1:-1:-1;;;;;87329:33:0;;;;87340:9;87329:33;87318:44;;87374:12;87388:19;87411:230;87459:9;87483:3;87524:31;;;87557:10;87569;87581:5;87588;87595:3;87600:7;87609:15;87626:3;87501:129;;;;;;;;;;;;;;;:::i;87411:230::-;87373:268;;;;87658:7;87654:319;;;87697:18;;;;;;87735:59;;;;;;;;;;87770:10;;87782:5;;87697:18;;87735:59;:::i;:::-;;;;;;;;87667:139;87654:319;;;87894:67;87914:10;87926;87938:5;87945:7;87954:6;87894:19;:67::i;:::-;86247:1733;;;;;;;;;;;;;;;;;;86078:1902;;;;:::o;62694:463::-;62873:21;62897:28;62910:14;62897:12;:28::i;:::-;62955;;;;62936:16;62955:28;;;:15;:28;;;;;;;;:35;;;;;;;;;;62873:52;;-1:-1:-1;63009:15:0;63001:54;;;;-1:-1:-1;;;63001:54:0;;40207:2:1;63001:54:0;;;40189:21:1;40246:2;40226:18;;;40219:30;40285:28;40265:18;;;40258:56;40331:18;;63001:54:0;40005:350:1;63001:54:0;63094:23;63108:9;63094:11;:23;:::i;:::-;63074:16;:43;;63066:83;;;;-1:-1:-1;;;63066:83:0;;40562:2:1;63066:83:0;;;40544:21:1;40601:2;40581:18;;;40574:30;40640:29;40620:18;;;40613:57;40687:18;;63066:83:0;40360:351:1;88489:182:0;88555:16;;88602:22;96310:9;88602:7;:22;:::i;:::-;88595:29;-1:-1:-1;88649:14:0;88595:29;88649:7;:14;:::i;:::-;88635:28;;88489:182;;;:::o;94973:418::-;95120:4;;876:10;95137:30;;95178:14;95195:58;95202:10;95195:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;95178:75;;95277:7;-1:-1:-1;;;;;95268:16:0;:5;-1:-1:-1;;;;;95268:16:0;;95264:62;;95286:40;95302:5;95309:7;95318;-1:-1:-1;;;;;95286:40:0;:15;:40::i;:::-;95337:21;95343:5;95350:7;-1:-1:-1;;;;;95337:21:0;:5;:21::i;:::-;-1:-1:-1;;;;;95369:14:0;;94973:418;-1:-1:-1;;;;;;94973:418:0:o;62072:614::-;62356:32;;;62327:26;62356:32;;;:19;:32;;;;;62327:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62407:13;:20;62431:1;62407:25;;62399:86;;;;-1:-1:-1;;;62399:86:0;;41035:2:1;62399:86:0;;;41017:21:1;41074:2;41054:18;;;41047:30;41113:34;41093:18;;;41086:62;-1:-1:-1;;;41164:18:1;;;41157:46;41220:19;;62399:86:0;40833:412:1;62399:86:0;62496:47;62514:11;62527:8;:15;62496:17;:47::i;:::-;62554:124;;-1:-1:-1;;;62554:124:0;;-1:-1:-1;;;;;62554:10:0;:15;;;;62577:10;;62554:124;;62589:11;;62602:13;;62617:8;;62627:14;;62643:18;;62663:14;;62554:124;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62316:370;62072:614;;;;;;:::o;89223:366::-;89440:12;80022:1;89507:10;89519:9;-1:-1:-1;;;;;90374:23:0;;89556:14;89572:8;89472:109;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;89465:116;;89223:366;;;;;;;:::o;21581:511::-;21682:13;21698:67;21705:9;21698:67;;;;;;;;;;;;;;;;;:6;:67::i;:::-;21682:83;;21776:23;21802:25;21812:5;21819:7;21802:9;:25::i;:::-;21776:51;-1:-1:-1;;;;;;21842:36:0;;;;21838:247;;21923:6;-1:-1:-1;;;;;21903:26:0;:16;-1:-1:-1;;;;;21903:26:0;;;21895:68;;;;-1:-1:-1;;;21895:68:0;;43016:2:1;21895:68:0;;;42998:21:1;43055:2;43035:18;;;43028:30;43094:31;43074:18;;;43067:59;43143:18;;21895:68:0;42814:353:1;21895:68:0;22007:51;22016:5;22023:7;22051:6;22032:16;:25;-1:-1:-1;;;;;22007:51:0;:8;:51::i;29076:628::-;29194:18;29215:75;29222:12;29215:75;;;;;;;;;;;;;;;;;:6;:75::i;:::-;29194:96;;29320:1;29305:12;:16;;;:85;;;;-1:-1:-1;;;;;;29325:22:0;;;;;;:11;:22;;;;;:65;;;;29348:16;29363:1;29348:12;:16;:::i;:::-;29325:40;;;;;;;;;;;;;;;-1:-1:-1;29325:40:0;:50;;:65;29305:85;29301:329;;;-1:-1:-1;;;;;29405:22:0;;;;;;:11;:22;;;;;29454:8;;29428:16;29443:1;29428:12;:16;:::i;:::-;29405:40;;;;;;;;;;;;;-1:-1:-1;29405:40:0;:57;;-1:-1:-1;;;;;29405:57:0;;;;-1:-1:-1;;;29405:57:0;-1:-1:-1;;29405:57:0;;;;;;;;;29301:329;;;29530:33;;;;;;;;;;;;;;-1:-1:-1;;;;;29530:33:0;;;;;;;;;;-1:-1:-1;;;;;29491:22:0;;-1:-1:-1;29491:22:0;;;:11;:22;;;;;:36;;;;;;;;;;;;:72;;;;;;;;;-1:-1:-1;;;29491:72:0;-1:-1:-1;;29491:72:0;;;;;;;;;;;;29604:16;29514:12;29491:72;29604:16;:::i;:::-;-1:-1:-1;;;;;29576:25:0;;;;;;:14;:25;;;;;:44;;-1:-1:-1;;29576:44:0;;;;;;;;;;;;29301:329;29645:51;;;-1:-1:-1;;;;;43640:15:1;;;43622:34;;43692:15;;43687:2;43672:18;;43665:43;-1:-1:-1;;;;;29645:51:0;;;;;43550:18:1;29645:51:0;;;;;;;29185:519;29076:628;;;;:::o;88872:343::-;88954:10;;;89002:19;:8;88954:10;89002:16;:19::i;:::-;:30;;;:55;;;;;89036:8;:15;89055:2;89036:21;89002:55;88994:92;;;;-1:-1:-1;;;88994:92:0;;43921:2:1;88994:92:0;;;43903:21:1;43960:2;43940:18;;;43933:30;-1:-1:-1;;;43979:18:1;;;43972:54;44043:18;;88994:92:0;43719:348:1;88994:92:0;89104:22;:8;89123:2;89104:18;:22::i;:::-;89099:27;-1:-1:-1;89186:21:0;:8;89204:2;89186:17;:21::i;:::-;89175:32;;88872:343;;;:::o;88360:121::-;88425:4;88449:24;96310:9;-1:-1:-1;;;;;88449:24:0;;;:::i;95399:295::-;95532:4;95549:14;95566:58;95573:10;95566:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;95549:75;;95635:26;95641:10;95653:7;-1:-1:-1;;;;;95635:26:0;:5;:26::i;:::-;-1:-1:-1;;;;;95672:14:0;;95399:295;-1:-1:-1;;;;95399:295:0:o;89597:658::-;89736:12;;;89818:20;89736:12;80022:1;89909:19;:8;89736:12;89909:16;:19::i;:::-;:39;;;89901:76;;;;-1:-1:-1;;;89901:76:0;;43921:2:1;89901:76:0;;;43903:21:1;43960:2;43940:18;;;43933:30;-1:-1:-1;;;43979:18:1;;;43972:54;44043:18;;89901:76:0;43719:348:1;89901:76:0;89995:22;:8;90014:2;89995:18;:22::i;:::-;89990:27;-1:-1:-1;90077:21:0;:8;90095:2;90077:17;:21::i;:::-;90066:32;-1:-1:-1;90116:22:0;:8;90135:2;90116:18;:22::i;:::-;90109:29;-1:-1:-1;90165:21:0;:8;90183:2;90165:17;:21::i;:::-;90149:37;;90207:40;90222:2;90244;90226:8;:15;:20;;;;:::i;:::-;90207:8;;:40;:14;:40::i;:::-;90197:50;;89597:658;;;;;;;:::o;63165:271::-;63247:13;63306:2;63281:14;:21;:27;;63273:68;;;;-1:-1:-1;;;63273:68:0;;44447:2:1;63273:68:0;;;44429:21:1;44486:2;44466:18;;;44459:30;44525;44505:18;;;44498:58;44573:18;;63273:68:0;44245:352:1;63273:68:0;-1:-1:-1;63414:2:0;63394:23;63388:30;;63165:271::o;19349:932::-;-1:-1:-1;;;;;19433:21:0;;19425:67;;;;-1:-1:-1;;;19425:67:0;;44804:2:1;19425:67:0;;;44786:21:1;44843:2;44823:18;;;44816:30;44882:34;44862:18;;;44855:62;-1:-1:-1;;;44933:18:1;;;44926:31;44974:19;;19425:67:0;44602:397:1;19425:67:0;19505:13;19521:56;19528:9;19521:56;;;;;;;;;;;;;;;;;:6;:56::i;:::-;19505:72;;-1:-1:-1;;;;;19676:18:0;;19652:21;19676:18;;;:9;:18;;;;;;-1:-1:-1;;;;;19676:18:0;;;;19713:24;;;;;19705:71;;;;-1:-1:-1;;;19705:71:0;;45206:2:1;19705:71:0;;;45188:21:1;45245:2;45225:18;;;45218:30;45284:34;45264:18;;;45257:62;-1:-1:-1;;;45335:18:1;;;45328:32;45377:19;;19705:71:0;45004:398:1;19705:71:0;19833:69;19839:14;19855:6;19833:69;;;;;;;;;;;;;;;;;:5;:69::i;:::-;-1:-1:-1;;;;;19812:18:0;;;;;;:9;:18;;;;;;;;;:90;;-1:-1:-1;;;;;;19812:90:0;-1:-1:-1;;;;;19812:90:0;;;;;;20018:12;;20012:67;;;;;;;;;;;;;;20018:12;;;;;20032:6;;20012:67;;;;;;;;:5;:67::i;:::-;19997:12;:82;;-1:-1:-1;;;;;;19997:82:0;-1:-1:-1;;;;;19997:82:0;;;;;;20108:37;;3871:39:1;;;3853:58;;-1:-1:-1;;;;;;;20108:37:0;;;;;3841:2:1;3826:18;20108:37:0;;;;;;;-1:-1:-1;;;;;20173:18:0;;;;;;;:9;:18;;;;;;20158:54;;20173:18;;20205:6;20158:14;:54::i;:::-;20225:48;17237:761;63444:402;63567:35;;;63543:21;63567:35;;;:22;:35;;;;;;63617:21;63613:138;;-1:-1:-1;60243:5:0;63613:138;63785:16;63769:12;:32;;63761:77;;;;-1:-1:-1;;;63761:77:0;;45609:2:1;63761:77:0;;;45591:21:1;;;45628:18;;;45621:30;45687:34;45667:18;;;45660:62;45739:18;;63761:77:0;45407:356:1;23485:161:0;23560:6;23598:12;-1:-1:-1;;;23587:9:0;;23579:32;;;;-1:-1:-1;;;23579:32:0;;;;;;;;:::i;51891:360::-;51967:7;52012:11;:6;52021:2;52012:11;:::i;:::-;51995:6;:13;:28;;51987:62;;;;-1:-1:-1;;;51987:62:0;;45970:2:1;51987:62:0;;;45952:21:1;46009:2;45989:18;;;45982:30;-1:-1:-1;;;46028:18:1;;;46021:51;46089:18;;51987:62:0;45768:345:1;51987:62:0;-1:-1:-1;52141:30:0;52157:4;52141:30;52135:37;-1:-1:-1;;;52131:71:0;;;51891:360::o;53212:311::-;53287:6;53331:10;:6;53340:1;53331:10;:::i;:::-;53314:6;:13;:27;;53306:60;;;;-1:-1:-1;;;53306:60:0;;46320:2:1;53306:60:0;;;46302:21:1;46359:2;46339:18;;;46332:30;-1:-1:-1;;;46378:18:1;;;46371:50;46438:18;;53306:60:0;46118:344:1;53306:60:0;-1:-1:-1;53447:29:0;53463:3;53447:29;53441:36;;53212:311::o;18285:731::-;-1:-1:-1;;;;;18369:21:0;;18361:65;;;;-1:-1:-1;;;18361:65:0;;46669:2:1;18361:65:0;;;46651:21:1;46708:2;46688:18;;;46681:30;46747:33;46727:18;;;46720:61;46798:18;;18361:65:0;46467:355:1;18361:65:0;18439:13;18455:57;18462:9;18455:57;;;;;;;;;;;;;;;;;:6;:57::i;:::-;18439:73;;18633:12;;18627:73;;;;;;;;;;;;;;;-1:-1:-1;;;;;18633:12:0;;18647:6;;18627:73;;;;;:5;:73::i;:::-;18612:12;:88;;-1:-1:-1;;;;;;18612:88:0;-1:-1:-1;;;;;18612:88:0;;;;;;-1:-1:-1;;;;;18742:18:0;;-1:-1:-1;18742:18:0;;;:9;:18;;;;;;;;;;18736:80;;;;;;;;;;;;;;18742:18;;;;;18762:6;;18736:80;;;;;;;;:5;:80::i;:::-;-1:-1:-1;;;;;18715:18:0;;;;;;:9;:18;;;;;;;;:101;;-1:-1:-1;;;;;;18715:101:0;-1:-1:-1;;;;;18715:101:0;;;;;;18843:37;3871:39:1;;;3853:58;;18715:18:0;;;;18843:37;;3826:18:1;18843:37:0;;;;;;;-1:-1:-1;;;;;18920:18:0;;;18916:1;18920:18;;;:9;:18;;;;;;18893:54;;18920:18;18940:6;18893:14;:54::i;54495:326::-;54571:7;54616:11;:6;54625:2;54616:11;:::i;:::-;54599:6;:13;:28;;54591:62;;;;-1:-1:-1;;;54591:62:0;;47029:2:1;54591:62:0;;;47011:21:1;47068:2;47048:18;;;47041:30;-1:-1:-1;;;47087:18:1;;;47080:51;47148:18;;54591:62:0;46827:345:1;54591:62:0;-1:-1:-1;54741:30:0;54757:4;54741:30;54735:37;;54495:326::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:159:1;81:20;;141:6;130:18;;120:29;;110:57;;163:1;160;153:12;110:57;14:159;;;:::o;178:347::-;229:8;239:6;293:3;286:4;278:6;274:17;270:27;260:55;;311:1;308;301:12;260:55;-1:-1:-1;334:20:1;;-1:-1:-1;;;;;366:30:1;;363:50;;;409:1;406;399:12;363:50;446:4;438:6;434:17;422:29;;498:3;491:4;482:6;474;470:19;466:30;463:39;460:59;;;515:1;512;505:12;460:59;178:347;;;;;:::o;530:171::-;597:20;;-1:-1:-1;;;;;646:30:1;;636:41;;626:69;;691:1;688;681:12;706:862;812:6;820;828;836;844;852;905:3;893:9;884:7;880:23;876:33;873:53;;;922:1;919;912:12;873:53;945:28;963:9;945:28;:::i;:::-;935:38;;1024:2;1013:9;1009:18;996:32;-1:-1:-1;;;;;1088:2:1;1080:6;1077:14;1074:34;;;1104:1;1101;1094:12;1074:34;1143:58;1193:7;1184:6;1173:9;1169:22;1143:58;:::i;:::-;1220:8;;-1:-1:-1;1117:84:1;-1:-1:-1;1117:84:1;;-1:-1:-1;1274:37:1;1307:2;1292:18;;1274:37;:::i;:::-;1264:47;;1364:2;1353:9;1349:18;1336:32;1320:48;;1393:2;1383:8;1380:16;1377:36;;;1409:1;1406;1399:12;1377:36;;1448:60;1500:7;1489:8;1478:9;1474:24;1448:60;:::i;:::-;706:862;;;;-1:-1:-1;706:862:1;;-1:-1:-1;706:862:1;;1527:8;;706:862;-1:-1:-1;;;706:862:1:o;1573:286::-;1631:6;1684:2;1672:9;1663:7;1659:23;1655:32;1652:52;;;1700:1;1697;1690:12;1652:52;1726:23;;-1:-1:-1;;;;;;1778:32:1;;1768:43;;1758:71;;1825:1;1822;1815:12;2056:258;2128:1;2138:113;2152:6;2149:1;2146:13;2138:113;;;2228:11;;;2222:18;2209:11;;;2202:39;2174:2;2167:10;2138:113;;;2269:6;2266:1;2263:13;2260:48;;;-1:-1:-1;;2304:1:1;2286:16;;2279:27;2056:258::o;2319:::-;2361:3;2399:5;2393:12;2426:6;2421:3;2414:19;2442:63;2498:6;2491:4;2486:3;2482:14;2475:4;2468:5;2464:16;2442:63;:::i;:::-;2559:2;2538:15;-1:-1:-1;;2534:29:1;2525:39;;;;2566:4;2521:50;;2319:258;-1:-1:-1;;2319:258:1:o;2582:220::-;2731:2;2720:9;2713:21;2694:4;2751:45;2792:2;2781:9;2777:18;2769:6;2751:45;:::i;2807:184::-;2865:6;2918:2;2906:9;2897:7;2893:23;2889:32;2886:52;;;2934:1;2931;2924:12;2886:52;2957:28;2975:9;2957:28;:::i;2996:131::-;-1:-1:-1;;;;;3071:31:1;;3061:42;;3051:70;;3117:1;3114;3107:12;3132:315;3200:6;3208;3261:2;3249:9;3240:7;3236:23;3232:32;3229:52;;;3277:1;3274;3267:12;3229:52;3316:9;3303:23;3335:31;3360:5;3335:31;:::i;:::-;3385:5;3437:2;3422:18;;;;3409:32;;-1:-1:-1;;;3132:315:1:o;3452:252::-;3519:6;3527;3580:2;3568:9;3559:7;3555:23;3551:32;3548:52;;;3596:1;3593;3586:12;3548:52;3619:28;3637:9;3619:28;:::i;4104:456::-;4181:6;4189;4197;4250:2;4238:9;4229:7;4225:23;4221:32;4218:52;;;4266:1;4263;4256:12;4218:52;4305:9;4292:23;4324:31;4349:5;4324:31;:::i;:::-;4374:5;-1:-1:-1;4431:2:1;4416:18;;4403:32;4444:33;4403:32;4444:33;:::i;:::-;4104:456;;4496:7;;-1:-1:-1;;;4550:2:1;4535:18;;;;4522:32;;4104:456::o;4754:160::-;4819:20;;4875:13;;4868:21;4858:32;;4848:60;;4904:1;4901;4894:12;4919:687;5021:6;5029;5037;5045;5053;5061;5114:3;5102:9;5093:7;5089:23;5085:33;5082:53;;;5131:1;5128;5121:12;5082:53;5154:28;5172:9;5154:28;:::i;:::-;5144:38;;5229:2;5218:9;5214:18;5201:32;5191:42;;5280:2;5269:9;5265:18;5252:32;5242:42;;5303:35;5334:2;5323:9;5319:18;5303:35;:::i;:::-;5293:45;;5389:3;5378:9;5374:19;5361:33;-1:-1:-1;;;;;5409:6:1;5406:30;5403:50;;;5449:1;5446;5439:12;5403:50;5488:58;5538:7;5529:6;5518:9;5514:22;5488:58;:::i;5864:481::-;5942:6;5950;5958;6011:2;5999:9;5990:7;5986:23;5982:32;5979:52;;;6027:1;6024;6017:12;5979:52;6050:28;6068:9;6050:28;:::i;:::-;6040:38;;6129:2;6118:9;6114:18;6101:32;-1:-1:-1;;;;;6148:6:1;6145:30;6142:50;;;6188:1;6185;6178:12;6142:50;6227:58;6277:7;6268:6;6257:9;6253:22;6227:58;:::i;:::-;5864:481;;6304:8;;-1:-1:-1;6201:84:1;;-1:-1:-1;;;;5864:481:1:o;6532:247::-;6591:6;6644:2;6632:9;6623:7;6619:23;6615:32;6612:52;;;6660:1;6657;6650:12;6612:52;6699:9;6686:23;6718:31;6743:5;6718:31;:::i;6992:127::-;7053:10;7048:3;7044:20;7041:1;7034:31;7084:4;7081:1;7074:15;7108:4;7105:1;7098:15;7124:275;7195:2;7189:9;7260:2;7241:13;;-1:-1:-1;;7237:27:1;7225:40;;-1:-1:-1;;;;;7280:34:1;;7316:22;;;7277:62;7274:88;;;7342:18;;:::i;:::-;7378:2;7371:22;7124:275;;-1:-1:-1;7124:275:1:o;7404:186::-;7452:4;-1:-1:-1;;;;;7477:6:1;7474:30;7471:56;;;7507:18;;:::i;:::-;-1:-1:-1;7573:2:1;7552:15;-1:-1:-1;;7548:29:1;7579:4;7544:40;;7404:186::o;7595:815::-;7679:6;7687;7695;7748:2;7736:9;7727:7;7723:23;7719:32;7716:52;;;7764:1;7761;7754:12;7716:52;7787:28;7805:9;7787:28;:::i;:::-;7777:38;;7866:2;7855:9;7851:18;7838:32;-1:-1:-1;;;;;7885:6:1;7882:30;7879:50;;;7925:1;7922;7915:12;7879:50;7948:22;;8001:4;7993:13;;7989:27;-1:-1:-1;7979:55:1;;8030:1;8027;8020:12;7979:55;8066:2;8053:16;8091:48;8107:31;8135:2;8107:31;:::i;:::-;8091:48;:::i;:::-;8162:2;8155:5;8148:17;8202:7;8197:2;8192;8188;8184:11;8180:20;8177:33;8174:53;;;8223:1;8220;8213:12;8174:53;8278:2;8273;8269;8265:11;8260:2;8253:5;8249:14;8236:45;8322:1;8317:2;8312;8305:5;8301:14;8297:23;8290:34;8343:5;8333:15;;;;;8367:37;8400:2;8389:9;8385:18;8367:37;:::i;:::-;8357:47;;7595:815;;;;;:::o;8415:160::-;8480:5;8525:2;8516:6;8511:3;8507:16;8503:25;8500:45;;;8541:1;8538;8531:12;8500:45;-1:-1:-1;8563:6:1;8415:160;-1:-1:-1;8415:160:1:o;8580:711::-;8706:6;8714;8722;8730;8738;8791:3;8779:9;8770:7;8766:23;8762:33;8759:53;;;8808:1;8805;8798:12;8759:53;8847:9;8834:23;8866:31;8891:5;8866:31;:::i;:::-;8916:5;-1:-1:-1;8940:37:1;8973:2;8958:18;;8940:37;:::i;:::-;8930:47;;9024:2;9013:9;9009:18;8996:32;8986:42;;9075:2;9064:9;9060:18;9047:32;9037:42;;9130:3;9119:9;9115:19;9102:33;-1:-1:-1;;;;;9150:6:1;9147:30;9144:50;;;9190:1;9187;9180:12;9144:50;9213:72;9277:7;9268:6;9257:9;9253:22;9213:72;:::i;:::-;9203:82;;;8580:711;;;;;;;;:::o;9716:1093::-;9870:6;9878;9886;9894;9902;9910;9918;9926;9979:3;9967:9;9958:7;9954:23;9950:33;9947:53;;;9996:1;9993;9986:12;9947:53;10035:9;10022:23;10054:31;10079:5;10054:31;:::i;:::-;10104:5;-1:-1:-1;10128:37:1;10161:2;10146:18;;10128:37;:::i;:::-;10118:47;;10212:2;10201:9;10197:18;10184:32;10174:42;;10263:2;10252:9;10248:18;10235:32;10225:42;;10318:3;10307:9;10303:19;10290:33;-1:-1:-1;;;;;10383:2:1;10375:6;10372:14;10369:34;;;10399:1;10396;10389:12;10369:34;10438:58;10488:7;10479:6;10468:9;10464:22;10438:58;:::i;:::-;10515:8;;-1:-1:-1;10412:84:1;-1:-1:-1;10412:84:1;;-1:-1:-1;10569:38:1;10602:3;10587:19;;10569:38;:::i;:::-;10559:48;;10660:3;10649:9;10645:19;10632:33;10616:49;;10690:2;10680:8;10677:16;10674:36;;;10706:1;10703;10696:12;10674:36;;10729:74;10795:7;10784:8;10773:9;10769:24;10729:74;:::i;:::-;10719:84;;;9716:1093;;;;;;;;;;;:::o;10814:256::-;10880:6;10888;10941:2;10929:9;10920:7;10916:23;10912:32;10909:52;;;10957:1;10954;10947:12;10909:52;10980:28;10998:9;10980:28;:::i;:::-;10970:38;;11027:37;11060:2;11049:9;11045:18;11027:37;:::i;:::-;11017:47;;10814:256;;;;;:::o;11075:1069::-;11205:6;11213;11221;11229;11237;11245;11253;11261;11269;11322:3;11310:9;11301:7;11297:23;11293:33;11290:53;;;11339:1;11336;11329:12;11290:53;11362:28;11380:9;11362:28;:::i;:::-;11352:38;;11437:2;11426:9;11422:18;11409:32;11399:42;;11488:2;11477:9;11473:18;11460:32;11450:42;;11543:2;11532:9;11528:18;11515:32;-1:-1:-1;;;;;11607:2:1;11599:6;11596:14;11593:34;;;11623:1;11620;11613:12;11593:34;11662:58;11712:7;11703:6;11692:9;11688:22;11662:58;:::i;:::-;11739:8;;-1:-1:-1;11636:84:1;-1:-1:-1;11636:84:1;;-1:-1:-1;11793:38:1;11826:3;11811:19;;11793:38;:::i;:::-;11783:48;;11850:36;11881:3;11870:9;11866:19;11850:36;:::i;:::-;11840:46;;11939:3;11928:9;11924:19;11911:33;11895:49;;11969:2;11959:8;11956:16;11953:36;;;11985:1;11982;11975:12;11953:36;;12024:60;12076:7;12065:8;12054:9;12050:24;12024:60;:::i;:::-;11998:86;;12103:8;12093:18;;;12130:8;12120:18;;;11075:1069;;;;;;;;;;;:::o;12384:687::-;12486:6;12494;12502;12510;12518;12526;12579:3;12567:9;12558:7;12554:23;12550:33;12547:53;;;12596:1;12593;12586:12;12547:53;12635:9;12622:23;12654:31;12679:5;12654:31;:::i;:::-;12704:5;-1:-1:-1;12756:2:1;12741:18;;12728:32;;-1:-1:-1;12807:2:1;12792:18;;12779:32;;-1:-1:-1;12863:2:1;12848:18;;12835:32;12911:4;12898:18;;12886:31;;12876:59;;12931:1;12928;12921:12;12876:59;12384:687;;;;-1:-1:-1;12384:687:1;;13008:3;12993:19;;12980:33;;13060:3;13045:19;;;13032:33;;-1:-1:-1;12384:687:1;-1:-1:-1;;12384:687:1:o;13076:622::-;13171:6;13179;13187;13195;13203;13256:3;13244:9;13235:7;13231:23;13227:33;13224:53;;;13273:1;13270;13263:12;13224:53;13296:28;13314:9;13296:28;:::i;:::-;13286:38;;13343:37;13376:2;13365:9;13361:18;13343:37;:::i;:::-;13333:47;;13427:2;13416:9;13412:18;13399:32;13389:42;;13482:2;13471:9;13467:18;13454:32;-1:-1:-1;;;;;13501:6:1;13498:30;13495:50;;;13541:1;13538;13531:12;13495:50;13580:58;13630:7;13621:6;13610:9;13606:22;13580:58;:::i;:::-;13076:622;;;;-1:-1:-1;13076:622:1;;-1:-1:-1;13657:8:1;;13554:84;13076:622;-1:-1:-1;;;13076:622:1:o;13703:388::-;13771:6;13779;13832:2;13820:9;13811:7;13807:23;13803:32;13800:52;;;13848:1;13845;13838:12;13800:52;13887:9;13874:23;13906:31;13931:5;13906:31;:::i;:::-;13956:5;-1:-1:-1;14013:2:1;13998:18;;13985:32;14026:33;13985:32;14026:33;:::i;:::-;14078:7;14068:17;;;13703:388;;;;;:::o;14096:324::-;14171:6;14179;14187;14240:2;14228:9;14219:7;14215:23;14211:32;14208:52;;;14256:1;14253;14246:12;14208:52;14279:28;14297:9;14279:28;:::i;:::-;14269:38;;14326:37;14359:2;14348:9;14344:18;14326:37;:::i;:::-;14316:47;;14410:2;14399:9;14395:18;14382:32;14372:42;;14096:324;;;;;:::o;14425:1205::-;14567:6;14575;14583;14591;14599;14607;14615;14623;14631;14639;14692:3;14680:9;14671:7;14667:23;14663:33;14660:53;;;14709:1;14706;14699:12;14660:53;14732:28;14750:9;14732:28;:::i;:::-;14722:38;;14811:2;14800:9;14796:18;14783:32;-1:-1:-1;;;;;14875:2:1;14867:6;14864:14;14861:34;;;14891:1;14888;14881:12;14861:34;14930:58;14980:7;14971:6;14960:9;14956:22;14930:58;:::i;:::-;15007:8;;-1:-1:-1;14904:84:1;-1:-1:-1;14904:84:1;;-1:-1:-1;15061:37:1;15094:2;15079:18;;15061:37;:::i;:::-;15051:47;;15145:2;15134:9;15130:18;15117:32;15107:42;;15199:3;15188:9;15184:19;15171:33;15158:46;;15213:31;15238:5;15213:31;:::i;:::-;15263:5;;-1:-1:-1;15315:3:1;15300:19;;15287:33;;-1:-1:-1;15373:3:1;15358:19;;15345:33;;15390:16;;;15387:36;;;15419:1;15416;15409:12;15387:36;;15458:60;15510:7;15499:8;15488:9;15484:24;15458:60;:::i;:::-;15432:86;;15537:8;15527:18;;;15564:8;15554:18;;;15619:3;15608:9;15604:19;15591:33;15581:43;;14425:1205;;;;;;;;;;;;;:::o;15635:419::-;15702:6;15710;15763:2;15751:9;15742:7;15738:23;15734:32;15731:52;;;15779:1;15776;15769:12;15731:52;15818:9;15805:23;15837:31;15862:5;15837:31;:::i;:::-;15887:5;-1:-1:-1;15944:2:1;15929:18;;15916:32;15992:10;15979:24;;15967:37;;15957:65;;16018:1;16015;16008:12;16358:460;16442:6;16450;16458;16466;16519:3;16507:9;16498:7;16494:23;16490:33;16487:53;;;16536:1;16533;16526:12;16487:53;16559:28;16577:9;16559:28;:::i;:::-;16549:38;;16606:37;16639:2;16628:9;16624:18;16606:37;:::i;:::-;16596:47;;16693:2;16682:9;16678:18;16665:32;16706:31;16731:5;16706:31;:::i;:::-;16358:460;;;;-1:-1:-1;16756:5:1;;16808:2;16793:18;16780:32;;-1:-1:-1;;16358:460:1:o;17182:380::-;17261:1;17257:12;;;;17304;;;17325:61;;17379:4;17371:6;17367:17;17357:27;;17325:61;17432:2;17424:6;17421:14;17401:18;17398:38;17395:161;;;17478:10;17473:3;17469:20;17466:1;17459:31;17513:4;17510:1;17503:15;17541:4;17538:1;17531:15;17567:271;17750:6;17742;17737:3;17724:33;17706:3;17776:16;;17801:13;;;17776:16;17567:271;-1:-1:-1;17567:271:1:o;18657:127::-;18718:10;18713:3;18709:20;18706:1;18699:31;18749:4;18746:1;18739:15;18773:4;18770:1;18763:15;18789:244;18828:3;-1:-1:-1;;;;;18909:2:1;18906:1;18902:10;18939:2;18936:1;18932:10;18970:3;18966:2;18962:12;18957:3;18954:21;18951:47;;;18978:18;;:::i;:::-;19014:13;;18789:244;-1:-1:-1;;;;18789:244:1:o;19038:266::-;19126:6;19121:3;19114:19;19178:6;19171:5;19164:4;19159:3;19155:14;19142:43;-1:-1:-1;19230:1:1;19205:16;;;19223:4;19201:27;;;19194:38;;;;19286:2;19265:15;;;-1:-1:-1;;19261:29:1;19252:39;;;19248:50;;19038:266::o;19309:326::-;19504:6;19496;19492:19;19481:9;19474:38;19548:2;19543;19532:9;19528:18;19521:30;19455:4;19568:61;19625:2;19614:9;19610:18;19602:6;19594;19568:61;:::i;20307:521::-;20384:4;20390:6;20450:11;20437:25;20544:2;20540:7;20529:8;20513:14;20509:29;20505:43;20485:18;20481:68;20471:96;;20563:1;20560;20553:12;20471:96;20590:33;;20642:20;;;-1:-1:-1;;;;;;20674:30:1;;20671:50;;;20717:1;20714;20707:12;20671:50;20750:4;20738:17;;-1:-1:-1;20781:14:1;20777:27;;;20767:38;;20764:58;;;20818:1;20815;20808:12;21240:221;21279:4;21308:10;21368;;;;21338;;21390:12;;;21387:38;;;21405:18;;:::i;:::-;21442:13;;21240:221;-1:-1:-1;;;21240:221:1:o;21466:127::-;21527:10;21522:3;21518:20;21515:1;21508:31;21558:4;21555:1;21548:15;21582:4;21579:1;21572:15;21598:191;21637:1;21663:10;21700:2;21697:1;21693:10;21722:3;21712:37;;21729:18;;:::i;:::-;21767:10;;21763:20;;;;;21598:191;-1:-1:-1;;21598:191:1:o;22152:125::-;22192:4;22220:1;22217;22214:8;22211:34;;;22225:18;;:::i;:::-;-1:-1:-1;22262:9:1;;22152:125::o;22688:382::-;22899:6;22891;22886:3;22873:33;22991:2;22987:15;;;;-1:-1:-1;;;;;;22983:53:1;22925:16;;22972:65;;;23061:2;23053:11;;22688:382;-1:-1:-1;22688:382:1:o;25125:135::-;25164:3;-1:-1:-1;;25185:17:1;;25182:43;;;25205:18;;:::i;:::-;-1:-1:-1;25252:1:1;25241:13;;25125:135::o;26073:498::-;26273:4;26302:6;26347:2;26339:6;26335:15;26324:9;26317:34;26399:2;26391:6;26387:15;26382:2;26371:9;26367:18;26360:43;;26439:6;26434:2;26423:9;26419:18;26412:34;26482:3;26477:2;26466:9;26462:18;26455:31;26503:62;26560:3;26549:9;26545:19;26537:6;26529;26503:62;:::i;:::-;26495:70;26073:498;-1:-1:-1;;;;;;;26073:498:1:o;27382:493::-;27631:6;27623;27619:19;27608:9;27601:38;27675:3;27670:2;27659:9;27655:18;27648:31;27582:4;27696:62;27753:3;27742:9;27738:19;27730:6;27722;27696:62;:::i;:::-;-1:-1:-1;;;;;27794:31:1;;;;27789:2;27774:18;;27767:59;-1:-1:-1;27857:2:1;27842:18;27835:34;27688:70;27382:493;-1:-1:-1;;;27382:493:1:o;28603:753::-;28936:6;28928;28924:19;28913:9;28906:38;28980:3;28975:2;28964:9;28960:18;28953:31;28887:4;29007:62;29064:3;29053:9;29049:19;29041:6;29033;29007:62;:::i;:::-;-1:-1:-1;;;;;29109:6:1;29105:31;29100:2;29089:9;29085:18;29078:59;29173:6;29168:2;29157:9;29153:18;29146:34;29217:6;29211:3;29200:9;29196:19;29189:35;29273:9;29265:6;29261:22;29255:3;29244:9;29240:19;29233:51;29301:49;29343:6;29335;29327;29301:49;:::i;:::-;29293:57;28603:753;-1:-1:-1;;;;;;;;;;;28603:753:1:o;30229:634::-;30308:6;30361:2;30349:9;30340:7;30336:23;30332:32;30329:52;;;30377:1;30374;30367:12;30329:52;30410:9;30404:16;-1:-1:-1;;;;;30435:6:1;30432:30;30429:50;;;30475:1;30472;30465:12;30429:50;30498:22;;30551:4;30543:13;;30539:27;-1:-1:-1;30529:55:1;;30580:1;30577;30570:12;30529:55;30609:2;30603:9;30634:48;30650:31;30678:2;30650:31;:::i;30634:48::-;30705:2;30698:5;30691:17;30745:7;30740:2;30735;30731;30727:11;30723:20;30720:33;30717:53;;;30766:1;30763;30756:12;30717:53;30779:54;30830:2;30825;30818:5;30814:14;30809:2;30805;30801:11;30779:54;:::i;30868:557::-;31125:6;31117;31113:19;31102:9;31095:38;31169:3;31164:2;31153:9;31149:18;31142:31;31076:4;31196:46;31237:3;31226:9;31222:19;31214:6;31196:46;:::i;:::-;-1:-1:-1;;;;;31282:6:1;31278:31;31273:2;31262:9;31258:18;31251:59;31358:9;31350:6;31346:22;31341:2;31330:9;31326:18;31319:50;31386:33;31412:6;31404;31386:33;:::i;32601:237::-;32640:4;-1:-1:-1;;;;;32745:10:1;;;;32715;;32767:12;;;32764:38;;;32782:18;;:::i;34075:642::-;34356:6;34344:19;;34326:38;;-1:-1:-1;;;;;34400:32:1;;34395:2;34380:18;;34373:60;34420:3;34464:2;34449:18;;34442:31;;;-1:-1:-1;;34496:46:1;;34522:19;;34514:6;34496:46;:::i;:::-;34592:6;34585:14;34578:22;34573:2;34562:9;34558:18;34551:50;34650:9;34642:6;34638:22;34632:3;34621:9;34617:19;34610:51;34678:33;34704:6;34696;34678:33;:::i;:::-;34670:41;34075:642;-1:-1:-1;;;;;;;;34075:642:1:o;34722:245::-;34801:6;34809;34862:2;34850:9;34841:7;34837:23;34833:32;34830:52;;;34878:1;34875;34868:12;34830:52;-1:-1:-1;;34901:16:1;;34957:2;34942:18;;;34936:25;34901:16;;34936:25;;-1:-1:-1;34722:245:1:o;35683:128::-;35723:3;35754:1;35750:6;35747:1;35744:13;35741:39;;;35760:18;;:::i;:::-;-1:-1:-1;35796:9:1;;35683:128::o;36505:274::-;36634:3;36672:6;36666:13;36688:53;36734:6;36729:3;36722:4;36714:6;36710:17;36688:53;:::i;:::-;36757:16;;;;;36505:274;-1:-1:-1;;36505:274:1:o;36784:719::-;37087:6;37079;37075:19;37064:9;37057:38;37131:3;37126:2;37115:9;37111:18;37104:31;37038:4;37158:46;37199:3;37188:9;37184:19;37176:6;37158:46;:::i;:::-;-1:-1:-1;;;;;37244:6:1;37240:31;37235:2;37224:9;37220:18;37213:59;37320:9;37312:6;37308:22;37303:2;37292:9;37288:18;37281:50;37354:33;37380:6;37372;37354:33;:::i;:::-;37340:47;;37436:9;37428:6;37424:22;37418:3;37407:9;37403:19;37396:51;37464:33;37490:6;37482;37464:33;:::i;37508:120::-;37548:1;37574;37564:35;;37579:18;;:::i;:::-;-1:-1:-1;37613:9:1;;37508:120::o;38721:891::-;39041:4;39070:3;39112:6;39104;39100:19;39089:9;39082:38;39156:2;39151;39140:9;39136:18;39129:30;39182:45;39223:2;39212:9;39208:18;39200:6;39182:45;:::i;:::-;-1:-1:-1;;;;;39263:31:1;;39258:2;39243:18;;39236:59;39326:2;39311:18;;39304:34;;;-1:-1:-1;;;;;39375:32:1;;39369:3;39354:19;;39347:61;39395:3;39424:19;;39417:35;;;39489:22;;;39483:3;39468:19;;39461:51;39168:59;-1:-1:-1;39529:33:1;39168:59;39547:6;39529:33;:::i;:::-;39521:41;;;39599:6;39593:3;39582:9;39578:19;39571:35;38721:891;;;;;;;;;;;:::o;39617:383::-;39818:2;39807:9;39800:21;39781:4;39838:45;39879:2;39868:9;39864:18;39856:6;39838:45;:::i;:::-;-1:-1:-1;;;;;39919:31:1;;;;39914:2;39899:18;;39892:59;-1:-1:-1;39982:2:1;39967:18;39960:34;39830:53;39617:383;-1:-1:-1;39617:383:1:o;40716:112::-;40748:1;40774;40764:35;;40779:18;;:::i;:::-;-1:-1:-1;40813:9:1;;40716:112::o;41250:840::-;41599:6;41591;41587:19;41576:9;41569:38;41643:3;41638:2;41627:9;41623:18;41616:31;41550:4;41670:46;41711:3;41700:9;41696:19;41688:6;41670:46;:::i;:::-;41764:9;41756:6;41752:22;41747:2;41736:9;41732:18;41725:50;41798:33;41824:6;41816;41798:33;:::i;:::-;-1:-1:-1;;;;;41905:15:1;;;41900:2;41885:18;;41878:43;41958:15;;41952:3;41937:19;;41930:44;42011:22;;;41858:3;41990:19;;41983:51;41784:47;-1:-1:-1;42051:33:1;41784:47;42069:6;42051:33;:::i;:::-;42043:41;41250:840;-1:-1:-1;;;;;;;;;41250:840:1:o;42095:714::-;42417:3;42412;42408:13;42399:6;42394:3;42390:16;42386:36;42381:3;42374:49;42452:6;42448:1;42443:3;42439:11;42432:27;42356:3;-1:-1:-1;;;;;42482:3:1;42478:28;42558:2;42549:6;42544:3;42540:16;42536:25;42531:2;42526:3;42522:12;42515:47;42592:6;42587:2;42582:3;42578:12;42571:28;42651:2;42642:6;42637:3;42633:16;42629:25;42624:2;42619:3;42615:12;42608:47;;42684:6;42678:13;42700:62;42755:6;42750:2;42745:3;42741:12;42734:4;42726:6;42722:17;42700:62;:::i;:::-;42782:16;;;;42800:2;42778:25;;42095:714;-1:-1:-1;;;;;;;42095:714:1:o;43172:228::-;43211:3;43239:10;43276:2;43273:1;43269:10;43306:2;43303:1;43299:10;43337:3;43333:2;43329:12;43324:3;43321:21;43318:47;;;43345:18;;:::i;44072:168::-;44112:7;44178:1;44174;44170:6;44166:14;44163:1;44160:21;44155:1;44148:9;44141:17;44137:45;44134:71;;;44185:18;;:::i;:::-;-1:-1:-1;44225:9:1;;44072:168::o
Swarm Source
ipfs://6e53076baf20601f458ff4c7c813442ac49413705f29466ce2ceb06acd6adfe5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
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.