Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Tornado.Cash
Overview
Max Total Supply
9,999,997.526814999108992673 TORN
Holders
11,324 ( -0.009%)
Market
Price
$2.17 @ 0.000873 ETH (+3.72%)
Onchain Market Cap
$21,699,994.63
Circulating Supply Market Cap
$8,249,354.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.597021324348967407 TORNValue
$1.30 ( ~0.000523049146476436 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | MEXC | TORN-USDT | $2.17 0.0008728 Eth | $59,043.00 27,180.173 TORN | 69.6193% |
2 | Uniswap V3 (Ethereum) | 0X77777FEDDDDFFC19FF86DB637967013E6C6A116C-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $2.15 0.0008622 Eth | $19,772.79 9,102.178 0X77777FEDDDDFFC19FF86DB637967013E6C6A116C | 23.3143% |
3 | Uniswap V2 (Ethereum) | 0X77777FEDDDDFFC19FF86DB637967013E6C6A116C-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $2.15 0.0008639 Eth | $5,923.91 2,701.232 0X77777FEDDDDFFC19FF86DB637967013E6C6A116C | 6.9189% |
4 | PancakeSwap (v2) | 0X1BA8D3C4C219B124D351F603060663BD1BCD9BBF-0XBB4CDB9CBD36B01BD1CBAEBF2DE08D9173BC095C | $2.31 0.0009269 Eth | $216.60 92.978 0X1BA8D3C4C219B124D351F603060663BD1BCD9BBF | 0.2382% |
5 | Sushiswap | 0X77777FEDDDDFFC19FF86DB637967013E6C6A116C-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $2.15 0.0008656 Eth | $123.54 57.571 0X77777FEDDDDFFC19FF86DB637967013E6C6A116C | 0.1475% |
Contract Name:
TORN
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)Audit Report
/** *Submitted for verification at Etherscan.io on 2020-12-18 */ // https://tornado.cash /* * d888888P dP a88888b. dP * 88 88 d8' `88 88 * 88 .d8888b. 88d888b. 88d888b. .d8888b. .d888b88 .d8888b. 88 .d8888b. .d8888b. 88d888b. * 88 88' `88 88' `88 88' `88 88' `88 88' `88 88' `88 88 88' `88 Y8ooooo. 88' `88 * 88 88. .88 88 88 88 88. .88 88. .88 88. .88 dP Y8. .88 88. .88 88 88 88 * dP `88888P' dP dP dP `88888P8 `88888P8 `88888P' 88 Y88888P' `88888P8 `88888P' dP dP * ooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.6.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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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 to 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 { } } // File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol pragma solidity ^0.6.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.6.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.6.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. */ 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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/utils/Pausable.sol pragma solidity ^0.6.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/math/Math.sol pragma solidity ^0.6.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } // File: contracts/ECDSA.sol pragma solidity ^0.6.0; // A copy from https://github.com/OpenZeppelin/openzeppelin-contracts/pull/2237/files /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { // Check the signature length if (signature.length != 65) { revert("ECDSA: invalid signature length"); } // Divide the signature in r, s and v variables bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. // solhint-disable-next-line no-inline-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := mload(add(signature, 0x41)) } return recover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover-bytes32-bytes-} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value"); require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value"); // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); require(signer != address(0), "ECDSA: invalid signature"); return signer; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * replicates the behavior of the * https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign[`eth_sign`] * JSON-RPC method. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } } // File: contracts/ERC20Permit.sol pragma solidity ^0.6.0; // Adapted copy from https://github.com/OpenZeppelin/openzeppelin-contracts/pull/2237/files /** * @dev Extension of {ERC20} that allows token holders to use their tokens * without sending any transactions by setting {IERC20-allowance} with a * signature using the {permit} method, and then spend them via * {IERC20-transferFrom}. * * The {permit} signature mechanism conforms to the {IERC2612Permit} interface. */ abstract contract ERC20Permit is ERC20 { mapping(address => uint256) private _nonces; bytes32 private constant _PERMIT_TYPEHASH = keccak256( "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)" ); // Mapping of ChainID to domain separators. This is a very gas efficient way // to not recalculate the domain separator on every call, while still // automatically detecting ChainID changes. mapping(uint256 => bytes32) private _domainSeparators; constructor() internal { _updateDomainSeparator(); } /** * @dev See {IERC2612Permit-permit}. * * If https://eips.ethereum.org/EIPS/eip-1344[ChainID] ever changes, the * EIP712 Domain Separator is automatically recalculated. */ function permit( address owner, address spender, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public { require(blockTimestamp() <= deadline, "ERC20Permit: expired deadline"); bytes32 hashStruct = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, amount, _nonces[owner], deadline)); bytes32 hash = keccak256(abi.encodePacked(uint16(0x1901), _domainSeparator(), hashStruct)); address signer = ECDSA.recover(hash, v, r, s); require(signer == owner, "ERC20Permit: invalid signature"); _nonces[owner]++; _approve(owner, spender, amount); } /** * @dev See {IERC2612Permit-nonces}. */ function nonces(address owner) public view returns (uint256) { return _nonces[owner]; } function _updateDomainSeparator() private returns (bytes32) { uint256 _chainID = chainID(); bytes32 newDomainSeparator = keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes(name())), keccak256(bytes("1")), // Version _chainID, address(this) ) ); _domainSeparators[_chainID] = newDomainSeparator; return newDomainSeparator; } // Returns the domain separator, updating it if chainID changes function _domainSeparator() private returns (bytes32) { bytes32 domainSeparator = _domainSeparators[chainID()]; if (domainSeparator != 0x00) { return domainSeparator; } else { return _updateDomainSeparator(); } } function chainID() public view virtual returns (uint256 _chainID) { assembly { _chainID := chainid() } } function blockTimestamp() public view virtual returns (uint256) { return block.timestamp; } } // File: contracts/ENS.sol pragma solidity ^0.6.0; interface ENS { function resolver(bytes32 node) external view returns (Resolver); } interface Resolver { function addr(bytes32 node) external view returns (address); } contract EnsResolve { function resolve(bytes32 node) public view virtual returns (address) { ENS Registry = ENS( getChainId() == 1 ? 0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e : 0x8595bFb0D940DfEDC98943FA8a907091203f25EE ); return Registry.resolver(node).addr(node); } function bulkResolve(bytes32[] memory domains) public view returns (address[] memory result) { result = new address[](domains.length); for (uint256 i = 0; i < domains.length; i++) { result[i] = resolve(domains[i]); } } function getChainId() internal pure returns (uint256) { uint256 chainId; assembly { chainId := chainid() } return chainId; } } // File: contracts/TORN.sol pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; contract TORN is ERC20("TornadoCash", "TORN"), ERC20Burnable, ERC20Permit, Pausable, EnsResolve { using SafeERC20 for IERC20; uint256 public immutable canUnpauseAfter; address public immutable governance; mapping(address => bool) public allowedTransferee; event Allowed(address target); event Disallowed(address target); struct Recipient { bytes32 to; uint256 amount; } constructor( bytes32 _governance, uint256 _pausePeriod, Recipient[] memory _vestings ) public { address _resolvedGovernance = resolve(_governance); governance = _resolvedGovernance; allowedTransferee[_resolvedGovernance] = true; for (uint256 i = 0; i < _vestings.length; i++) { address to = resolve(_vestings[i].to); _mint(to, _vestings[i].amount); allowedTransferee[to] = true; } canUnpauseAfter = blockTimestamp().add(_pausePeriod); _pause(); require(totalSupply() == 10000000 ether, "TORN: incorrect distribution"); } modifier onlyGovernance() { require(_msgSender() == governance, "TORN: only governance can perform this action"); _; } function changeTransferability(bool decision) public onlyGovernance { require(blockTimestamp() > canUnpauseAfter, "TORN: cannot change transferability yet"); if (decision) { _unpause(); } else { _pause(); } } function addToAllowedList(address[] memory target) public onlyGovernance { for (uint256 i = 0; i < target.length; i++) { allowedTransferee[target[i]] = true; emit Allowed(target[i]); } } function removeFromAllowedList(address[] memory target) public onlyGovernance { for (uint256 i = 0; i < target.length; i++) { allowedTransferee[target[i]] = false; emit Disallowed(target[i]); } } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override { super._beforeTokenTransfer(from, to, amount); require(!paused() || allowedTransferee[from] || allowedTransferee[to], "TORN: paused"); require(to != address(this), "TORN: invalid recipient"); } /// @dev Method to claim junk and accidentally sent tokens function rescueTokens( IERC20 _token, address payable _to, uint256 _balance ) external onlyGovernance { require(_to != address(0), "TORN: can not send to zero address"); if (_token == IERC20(0)) { // for Ether uint256 totalBalance = address(this).balance; uint256 balance = _balance == 0 ? totalBalance : Math.min(totalBalance, _balance); _to.transfer(balance); } else { // any other erc20 uint256 totalBalance = _token.balanceOf(address(this)); uint256 balance = _balance == 0 ? totalBalance : Math.min(totalBalance, _balance); require(balance > 0, "TORN: trying to send 0 balance"); _token.safeTransfer(_to, balance); } } }
Contract Security Audit
- ABDK- May 23rd, 2020 - Security Audit Report
- Pessimistic- Nov 10th, 2020 - Security Audit Report
[{"inputs":[{"internalType":"bytes32","name":"_governance","type":"bytes32"},{"internalType":"uint256","name":"_pausePeriod","type":"uint256"},{"components":[{"internalType":"bytes32","name":"to","type":"bytes32"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct TORN.Recipient[]","name":"_vestings","type":"tuple[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"target","type":"address"}],"name":"Allowed","type":"event"},{"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":false,"internalType":"address","name":"target","type":"address"}],"name":"Disallowed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address[]","name":"target","type":"address[]"}],"name":"addToAllowedList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowedTransferee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"domains","type":"bytes32[]"}],"name":"bulkResolve","outputs":[{"internalType":"address[]","name":"result","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canUnpauseAfter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chainID","outputs":[{"internalType":"uint256","name":"_chainID","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"decision","type":"bool"}],"name":"changeTransferability","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"target","type":"address[]"}],"name":"removeFromAllowedList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"node","type":"bytes32"}],"name":"resolve","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b5060405162002d3c38038062002d3c8339810160408190526200003491620007f6565b604080518082018252600b81526a0a8dee4dcc2c8de86c2e6d60ab1b6020808301918252835180850190945260048452632a27a92760e11b908401528151919291620000839160039162000707565b5080516200009990600490602084019062000707565b50506005805460ff1916601217905550620000b36200020b565b506008805460ff191690556000620000cb84620002c7565b6001600160601b0319606082901b1660a0526001600160a01b0381166000908152600960205260408120805460ff191660011790559091505b825181101562000191576000620001398483815181106200012157fe5b602002602001015160000151620002c760201b60201c565b905062000165818584815181106200014d57fe5b6020026020010151602001516200041560201b60201c565b6001600160a01b03166000908152600960205260409020805460ff191660019081179091550162000104565b50620001b583620001a1620004f8565b620004fc60201b62000f051790919060201c565b608052620001c262000524565b620001cc6200059b565b6a084595161401484a00000014620002015760405162461bcd60e51b8152600401620001f890620009c7565b60405180910390fd5b5050505062000a75565b60008062000218620005a1565b905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f62000247620005a5565b805160209182012060408051808201825260018152603160f81b90840152516200029993927fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6918791309101620008dd565b60408051601f1981840301815291815281516020928301206000948552600790925290922082905550905090565b600080620002d4620005a1565b600114620002f757738595bfb0d940dfedc98943fa8a907091203f25ee62000308565b6e0c2e074ec69a0dfb2997ba6c7d2e1e5b604051630178b8bf60e01b81529091506001600160a01b03821690630178b8bf9062000339908690600401620008d4565b60206040518083038186803b1580156200035257600080fd5b505afa15801562000367573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200038d9190620007d7565b6001600160a01b0316633b3b57de846040518263ffffffff1660e01b8152600401620003ba9190620008d4565b60206040518083038186803b158015620003d357600080fd5b505afa158015620003e8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200040e9190620007d7565b9392505050565b6001600160a01b0382166200043e5760405162461bcd60e51b8152600401620001f890620009fe565b6200044c600083836200063f565b6200046881600254620004fc60201b62000f051790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200049b91839062000f05620004fc821b17901c565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620004ec908590620008d4565b60405180910390a35050565b4290565b6000828201838110156200040e5760405162461bcd60e51b8152600401620001f89062000909565b60085460ff16156200054a5760405162461bcd60e51b8152600401620001f8906200099d565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25862000582620006fa565b604051620005919190620008c0565b60405180910390a1565b60025490565b4690565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015620006355780601f10620006095761010080835404028352916020019162000635565b820191906000526020600020905b8154815290600101906020018083116200061757829003601f168201915b5050505050905090565b62000657838383620006f560201b620008511760201c565b62000661620006fe565b15806200068657506001600160a01b03831660009081526009602052604090205460ff165b80620006aa57506001600160a01b03821660009081526009602052604090205460ff165b620006c95760405162461bcd60e51b8152600401620001f89062000977565b6001600160a01b038216301415620006f55760405162461bcd60e51b8152600401620001f89062000940565b505050565b3390565b60085460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200074a57805160ff19168380011785556200077a565b828001600101855582156200077a579182015b828111156200077a5782518255916020019190600101906200075d565b50620007889291506200078c565b5090565b5b808211156200078857600081556001016200078d565b600060408284031215620007b5578081fd5b620007c1604062000a35565b9050815181526020820151602082015292915050565b600060208284031215620007e9578081fd5b81516200040e8162000a5c565b6000806000606084860312156200080b578182fd5b83519250602080850151925060408086015160018060401b038082111562000831578485fd5b818801915088601f83011262000845578485fd5b81518181111562000854578586fd5b62000863858683020162000a35565b8181528581019250838601858302850187018c101562000881578788fd5b8794505b82851015620008af576200089a8c82620007a3565b84526001949094019392860192850162000885565b508096505050505050509250925092565b6001600160a01b0391909116815260200190565b90815260200190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526017908201527f544f524e3a20696e76616c696420726563697069656e74000000000000000000604082015260600190565b6020808252600c908201526b1513d4938e881c185d5cd95960a21b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252601c908201527f544f524e3a20696e636f727265637420646973747269627574696f6e00000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6040518181016001600160401b038111828210171562000a5457600080fd5b604052919050565b6001600160a01b038116811462000a7257600080fd5b50565b60805160a05160601c61228762000ab56000398061054052806106685280610873528061092c5280610b185250806108cb5280610e1752506122876000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806379cc6790116100f9578063adb6183211610097578063d505accf11610071578063d505accf14610357578063dc0f0d121461036a578063dd62ed3e14610372578063f9e5423414610385576101a9565b8063adb6183214610334578063adc879e91461033c578063cea9d26f14610344576101a9565b8063885ad0cf116100d3578063885ad0cf146102f357806395d89b4114610306578063a457c2d71461030e578063a9059cbb14610321576101a9565b806379cc6790146102ba5780637ecebe00146102cd57806381893c7c146102e0576101a9565b80633c8d76d1116101665780635c23bdf5116101405780635c23bdf5146102795780635c975abb1461028c5780635d4545a01461029457806370a08231146102a7576101a9565b80633c8d76d11461023c57806342966c68146102515780635aa6e67514610264576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101ec57806323b872dd14610201578063313ce567146102145780633950935114610229575b600080fd5b6101b66103a5565b6040516101c39190611bcb565b60405180910390f35b6101df6101da3660046118ca565b61043c565b6040516101c39190611b39565b6101f461045a565b6040516101c39190611b44565b6101df61020f366004611815565b610460565b61021c6104e7565b6040516101c391906120f0565b6101df6102373660046118ca565b6104f0565b61024f61024a3660046118f5565b61053e565b005b61024f61025f366004611a4e565b610652565b61026c610666565b6040516101c39190611abf565b61026c610287366004611a4e565b61068a565b6101df6107c8565b6101df6102a23660046117a5565b6107d1565b6101f46102b53660046117a5565b6107e6565b61024f6102c83660046118ca565b610801565b6101f46102db3660046117a5565b610856565b61024f6102ee366004611a16565b610871565b61024f6103013660046118f5565b61092a565b6101b6610a31565b6101df61031c3660046118ca565b610a92565b6101df61032f3660046118ca565b610afa565b6101f4610b0e565b6101f4610b12565b61024f610352366004611815565b610b16565b61024f610365366004611855565b610cd4565b6101f4610e15565b6101f46103803660046117dd565b610e39565b610398610393366004611992565b610e64565b6040516101c39190611aec565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104315780601f1061040657610100808354040283529160200191610431565b820191906000526020600020905b81548152906001019060200180831161041457829003601f168201915b505050505090505b90565b6000610450610449610f2a565b8484610f2e565b5060015b92915050565b60025490565b600061046d848484610fe2565b6104dd84610479610f2a565b6104d8856040518060600160405280602881526020016121e1602891396001600160a01b038a166000908152600160205260408120906104b7610f2a565b6001600160a01b0316815260208101919091526040016000205491906110f7565b610f2e565b5060019392505050565b60055460ff1690565b60006104506104fd610f2a565b846104d8856001600061050e610f2a565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f05565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610570610f2a565b6001600160a01b03161461059f5760405162461bcd60e51b81526004016105969061206c565b60405180910390fd5b60005b815181101561064e576000600960008484815181106105bd57fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9ef90a89b00db1a1891a357dc96b2a273add9d883e378c350d22bad87a9d7d3082828151811061062957fe5b602002602001015160405161063e9190611abf565b60405180910390a16001016105a2565b5050565b61066361065d610f2a565b82611123565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080610695610b12565b6001146106b657738595bfb0d940dfedc98943fa8a907091203f25ee6106c7565b6e0c2e074ec69a0dfb2997ba6c7d2e1e5b604051630178b8bf60e01b81529091506001600160a01b03821690630178b8bf906106f6908690600401611b44565b60206040518083038186803b15801561070e57600080fd5b505afa158015610722573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074691906117c1565b6001600160a01b0316633b3b57de846040518263ffffffff1660e01b81526004016107719190611b44565b60206040518083038186803b15801561078957600080fd5b505afa15801561079d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c191906117c1565b9392505050565b60085460ff1690565b60096020526000908152604090205460ff1681565b6001600160a01b031660009081526020819052604090205490565b6000610833826040518060600160405280602481526020016122096024913961082c86610380610f2a565b91906110f7565b905061084783610841610f2a565b83610f2e565b6108518383611123565b505050565b6001600160a01b031660009081526006602052604090205490565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166108a3610f2a565b6001600160a01b0316146108c95760405162461bcd60e51b81526004016105969061206c565b7f00000000000000000000000000000000000000000000000000000000000000006108f2610b0e565b1161090f5760405162461bcd60e51b815260040161059690611e61565b80156109225761091d611205565b610663565b610663611271565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661095c610f2a565b6001600160a01b0316146109825760405162461bcd60e51b81526004016105969061206c565b60005b815181101561064e576001600960008484815181106109a057fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055507f77a7dbc6ad97703ad411a8d5edfcd1df382fb34b076a90898b11884f7ebdcc05828281518110610a0c57fe5b6020026020010151604051610a219190611abf565b60405180910390a1600101610985565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104315780601f1061040657610100808354040283529160200191610431565b6000610450610a9f610f2a565b846104d88560405180606001604052806025815260200161222d6025913960016000610ac9610f2a565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906110f7565b6000610450610b07610f2a565b8484610fe2565b4290565b4690565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610b48610f2a565b6001600160a01b031614610b6e5760405162461bcd60e51b81526004016105969061206c565b6001600160a01b038216610b945760405162461bcd60e51b815260040161059690611fe0565b6001600160a01b038316610bfd574760008215610bba57610bb582846112ca565b610bbc565b815b6040519091506001600160a01b0385169082156108fc029083906000818181858888f19350505050158015610bf5573d6000803e3d6000fd5b505050610851565b6040516370a0823160e01b81526000906001600160a01b038516906370a0823190610c2c903090600401611abf565b60206040518083038186803b158015610c4457600080fd5b505afa158015610c58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7c9190611a66565b905060008215610c9557610c9082846112ca565b610c97565b815b905060008111610cb95760405162461bcd60e51b8152600401610596906120b9565b610ccd6001600160a01b03861685836112e0565b5050505050565b83610cdd610b0e565b1115610cfb5760405162461bcd60e51b815260040161059690611d56565b6001600160a01b0387166000908152600660209081526040808320549051610d4e927f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9928c928c928c92918c9101611b4d565b6040516020818303038152906040528051906020012090506000611901610d73611336565b83604051602001610d8693929190611a9a565b6040516020818303038152906040528051906020012090506000610dac82878787611375565b9050896001600160a01b0316816001600160a01b031614610ddf5760405162461bcd60e51b815260040161059690611ea8565b6001600160a01b038a16600090815260066020526040902080546001019055610e098a8a8a610f2e565b50505050505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060815167ffffffffffffffff81118015610e7e57600080fd5b50604051908082528060200260200182016040528015610ea8578160200160208202803683370190505b50905060005b8251811015610eff57610ed3838281518110610ec657fe5b602002602001015161068a565b828281518110610edf57fe5b6001600160a01b0390921660209283029190910190910152600101610eae565b50919050565b6000828201838110156107c15760405162461bcd60e51b815260040161059690611ce8565b3390565b6001600160a01b038316610f545760405162461bcd60e51b815260040161059690611f65565b6001600160a01b038216610f7a5760405162461bcd60e51b815260040161059690611ca6565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610fd5908590611b44565b60405180910390a3505050565b6001600160a01b0383166110085760405162461bcd60e51b815260040161059690611f20565b6001600160a01b03821661102e5760405162461bcd60e51b815260040161059690611c35565b61103983838361146d565b611076816040518060600160405280602681526020016121bb602691396001600160a01b03861660009081526020819052604090205491906110f7565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546110a59082610f05565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610fd5908590611b44565b6000818484111561111b5760405162461bcd60e51b81526004016105969190611bcb565b505050900390565b6001600160a01b0382166111495760405162461bcd60e51b815260040161059690611edf565b6111558260008361146d565b61119281604051806060016040528060228152602001612199602291396001600160a01b03851660009081526020819052604090205491906110f7565b6001600160a01b0383166000908152602081905260409020556002546111b8908261150c565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111f9908590611b44565b60405180910390a35050565b60085460ff166112275760405162461bcd60e51b815260040161059690611c78565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61125a610f2a565b6040516112679190611abf565b60405180910390a1565b60085460ff16156112945760405162461bcd60e51b815260040161059690611df5565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861125a610f2a565b60008183106112d957816107c1565b5090919050565b6108518363a9059cbb60e01b84846040516024016112ff929190611ad3565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261154e565b60008060076000611345610b12565b815260208101919091526040016000205490508015611365579050610439565b61136d6115dd565b915050610439565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156113b75760405162461bcd60e51b815260040161059690611db3565b8360ff16601b14806113cc57508360ff16601c145b6113e85760405162461bcd60e51b815260040161059690611e1f565b60006001868686866040516000815260200160405260405161140d9493929190611bad565b6020604051602081039080840390855afa15801561142f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166114625760405162461bcd60e51b815260040161059690611bfe565b90505b949350505050565b611478838383610851565b6114806107c8565b15806114a457506001600160a01b03831660009081526009602052604090205460ff165b806114c757506001600160a01b03821660009081526009602052604090205460ff165b6114e35760405162461bcd60e51b815260040161059690611d8d565b6001600160a01b0382163014156108515760405162461bcd60e51b815260040161059690611d1f565b60006107c183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110f7565b60606115a3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166116939092919063ffffffff16565b80519091501561085157808060200190518101906115c19190611a32565b6108515760405162461bcd60e51b815260040161059690612022565b6000806115e8610b12565b905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6116156103a5565b805160209182012060408051808201825260018152603160f81b908401525161166593927fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6918791309101611b81565b60408051601f1981840301815291815281516020928301206000948552600790925290922082905550905090565b6060611465848460008560606116a885611761565b6116c45760405162461bcd60e51b815260040161059690611fa9565b60006060866001600160a01b031685876040516116e19190611a7e565b60006040518083038185875af1925050503d806000811461171e576040519150601f19603f3d011682016040523d82523d6000602084013e611723565b606091505b509150915081156117375791506114659050565b8051156117475780518082602001fd5b8360405162461bcd60e51b81526004016105969190611bcb565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611465575050151592915050565b803561045481612175565b6000602082840312156117b6578081fd5b81356107c181612175565b6000602082840312156117d2578081fd5b81516107c181612175565b600080604083850312156117ef578081fd5b82356117fa81612175565b9150602083013561180a81612175565b809150509250929050565b600080600060608486031215611829578081fd5b833561183481612175565b9250602084013561184481612175565b929592945050506040919091013590565b600080600080600080600060e0888a03121561186f578283fd5b873561187a81612175565b9650602088013561188a81612175565b95506040880135945060608801359350608088013560ff811681146118ad578384fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156118dc578182fd5b82356118e781612175565b946020939093013593505050565b60006020808385031215611907578182fd5b823567ffffffffffffffff81111561191d578283fd5b8301601f8101851361192d578283fd5b803561194061193b82612125565b6120fe565b818152838101908385018584028501860189101561195c578687fd5b8694505b8385101561198657611972898261179a565b835260019490940193918501918501611960565b50979650505050505050565b600060208083850312156119a4578182fd5b823567ffffffffffffffff8111156119ba578283fd5b8301601f810185136119ca578283fd5b80356119d861193b82612125565b81815283810190838501858402850186018910156119f4578687fd5b8694505b838510156119865780358352600194909401939185019185016119f8565b600060208284031215611a27578081fd5b81356107c18161218a565b600060208284031215611a43578081fd5b81516107c18161218a565b600060208284031215611a5f578081fd5b5035919050565b600060208284031215611a77578081fd5b5051919050565b60008251611a90818460208701612145565b9190910192915050565b60f09390931b6001600160f01b03191683526002830191909152602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b81811015611b2d5783516001600160a01b031683529284019291840191600101611b08565b50909695505050505050565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b93845260ff9290921660208401526040830152606082015260800190565b6000602082528251806020840152611bea816040850160208701612145565b601f01601f19169190910160400192915050565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526017908201527f544f524e3a20696e76616c696420726563697069656e74000000000000000000604082015260600190565b6020808252601d908201527f45524332305065726d69743a206578706972656420646561646c696e65000000604082015260600190565b6020808252600c908201526b1513d4938e881c185d5cd95960a21b604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b60208082526027908201527f544f524e3a2063616e6e6f74206368616e6765207472616e736665726162696c6040820152661a5d1e481e595d60ca1b606082015260800190565b6020808252601e908201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526022908201527f544f524e3a2063616e206e6f742073656e6420746f207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252602d908201527f544f524e3a206f6e6c7920676f7665726e616e63652063616e20706572666f7260408201526c36903a3434b99030b1ba34b7b760991b606082015260800190565b6020808252601e908201527f544f524e3a20747279696e6720746f2073656e6420302062616c616e63650000604082015260600190565b60ff91909116815260200190565b60405181810167ffffffffffffffff8111828210171561211d57600080fd5b604052919050565b600067ffffffffffffffff82111561213b578081fd5b5060209081020190565b60005b83811015612160578181015183820152602001612148565b8381111561216f576000848401525b50505050565b6001600160a01b038116811461066357600080fd5b801515811461066357600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220043c43bde5b4acd90be7aee5944f4d06f58b795870731c1c144b7c808b4cf01f64736f6c634300060c003394d63e9067c3ab2d966702f604484c43b5ea247ecd08c28762caa50df5dc02bd00000000000000000000000000000000000000000000000000000000003b538000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000008d6d5ad7ec98c44fe89ef66c3277ef0ec7b1acbd7e0134bc1291fd952d7ff60300000000000000000000000000000000000000000000069e10de76676d0800000f06c24d1d0c5da2628caf6a7912f231ca834476d6c3505f1fb8e5926ab7f9ba500000000000000000000000000000000000000000000d3c21bcecceda1000000d4170e52df400408080f433b70182366fa7e47c6f6975ec15be6da658f0029b1000000000000000000000000000000000000000000048cab98f1671af58000006d8b43746e98f89a69d95242bc8238a46bb7022bdc0b29770a6cde90cc5e3c2600000000000000000000000000000000000000000000ae26c5d670f7f5bc0000ed485425f77ec3a133fce98177a1e2b35ac5337f207c483e669452aefddef4cf00000000000000000000000000000000000000000000ae26c5d670f7f5bc0000b25756000db285a10ae8473f799a05c7b883cc86240b2b10f0b08b79ebd152e300000000000000000000000000000000000000000000ae26c5d670f7f5bc000089658e012376b43a5108744fbe66ad3c8c14d2713bd74e4d9109b3e7a4b496d40000000000000000000000000000000000000000000069e10de76676d0800000a0f86f042328bf10a9ad59b05ac64fb64760786b2b1bf6da844549f3d84db48e0000000000000000000000000000000000000000000006f0f401ad6a314c0000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806379cc6790116100f9578063adb6183211610097578063d505accf11610071578063d505accf14610357578063dc0f0d121461036a578063dd62ed3e14610372578063f9e5423414610385576101a9565b8063adb6183214610334578063adc879e91461033c578063cea9d26f14610344576101a9565b8063885ad0cf116100d3578063885ad0cf146102f357806395d89b4114610306578063a457c2d71461030e578063a9059cbb14610321576101a9565b806379cc6790146102ba5780637ecebe00146102cd57806381893c7c146102e0576101a9565b80633c8d76d1116101665780635c23bdf5116101405780635c23bdf5146102795780635c975abb1461028c5780635d4545a01461029457806370a08231146102a7576101a9565b80633c8d76d11461023c57806342966c68146102515780635aa6e67514610264576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101ec57806323b872dd14610201578063313ce567146102145780633950935114610229575b600080fd5b6101b66103a5565b6040516101c39190611bcb565b60405180910390f35b6101df6101da3660046118ca565b61043c565b6040516101c39190611b39565b6101f461045a565b6040516101c39190611b44565b6101df61020f366004611815565b610460565b61021c6104e7565b6040516101c391906120f0565b6101df6102373660046118ca565b6104f0565b61024f61024a3660046118f5565b61053e565b005b61024f61025f366004611a4e565b610652565b61026c610666565b6040516101c39190611abf565b61026c610287366004611a4e565b61068a565b6101df6107c8565b6101df6102a23660046117a5565b6107d1565b6101f46102b53660046117a5565b6107e6565b61024f6102c83660046118ca565b610801565b6101f46102db3660046117a5565b610856565b61024f6102ee366004611a16565b610871565b61024f6103013660046118f5565b61092a565b6101b6610a31565b6101df61031c3660046118ca565b610a92565b6101df61032f3660046118ca565b610afa565b6101f4610b0e565b6101f4610b12565b61024f610352366004611815565b610b16565b61024f610365366004611855565b610cd4565b6101f4610e15565b6101f46103803660046117dd565b610e39565b610398610393366004611992565b610e64565b6040516101c39190611aec565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104315780601f1061040657610100808354040283529160200191610431565b820191906000526020600020905b81548152906001019060200180831161041457829003601f168201915b505050505090505b90565b6000610450610449610f2a565b8484610f2e565b5060015b92915050565b60025490565b600061046d848484610fe2565b6104dd84610479610f2a565b6104d8856040518060600160405280602881526020016121e1602891396001600160a01b038a166000908152600160205260408120906104b7610f2a565b6001600160a01b0316815260208101919091526040016000205491906110f7565b610f2e565b5060019392505050565b60055460ff1690565b60006104506104fd610f2a565b846104d8856001600061050e610f2a565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f05565b7f0000000000000000000000005efda50f22d34f262c29268506c5fa42cb56a1ce6001600160a01b0316610570610f2a565b6001600160a01b03161461059f5760405162461bcd60e51b81526004016105969061206c565b60405180910390fd5b60005b815181101561064e576000600960008484815181106105bd57fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9ef90a89b00db1a1891a357dc96b2a273add9d883e378c350d22bad87a9d7d3082828151811061062957fe5b602002602001015160405161063e9190611abf565b60405180910390a16001016105a2565b5050565b61066361065d610f2a565b82611123565b50565b7f0000000000000000000000005efda50f22d34f262c29268506c5fa42cb56a1ce81565b600080610695610b12565b6001146106b657738595bfb0d940dfedc98943fa8a907091203f25ee6106c7565b6e0c2e074ec69a0dfb2997ba6c7d2e1e5b604051630178b8bf60e01b81529091506001600160a01b03821690630178b8bf906106f6908690600401611b44565b60206040518083038186803b15801561070e57600080fd5b505afa158015610722573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074691906117c1565b6001600160a01b0316633b3b57de846040518263ffffffff1660e01b81526004016107719190611b44565b60206040518083038186803b15801561078957600080fd5b505afa15801561079d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c191906117c1565b9392505050565b60085460ff1690565b60096020526000908152604090205460ff1681565b6001600160a01b031660009081526020819052604090205490565b6000610833826040518060600160405280602481526020016122096024913961082c86610380610f2a565b91906110f7565b905061084783610841610f2a565b83610f2e565b6108518383611123565b505050565b6001600160a01b031660009081526006602052604090205490565b7f0000000000000000000000005efda50f22d34f262c29268506c5fa42cb56a1ce6001600160a01b03166108a3610f2a565b6001600160a01b0316146108c95760405162461bcd60e51b81526004016105969061206c565b7f0000000000000000000000000000000000000000000000000000000060176ed56108f2610b0e565b1161090f5760405162461bcd60e51b815260040161059690611e61565b80156109225761091d611205565b610663565b610663611271565b7f0000000000000000000000005efda50f22d34f262c29268506c5fa42cb56a1ce6001600160a01b031661095c610f2a565b6001600160a01b0316146109825760405162461bcd60e51b81526004016105969061206c565b60005b815181101561064e576001600960008484815181106109a057fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055507f77a7dbc6ad97703ad411a8d5edfcd1df382fb34b076a90898b11884f7ebdcc05828281518110610a0c57fe5b6020026020010151604051610a219190611abf565b60405180910390a1600101610985565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104315780601f1061040657610100808354040283529160200191610431565b6000610450610a9f610f2a565b846104d88560405180606001604052806025815260200161222d6025913960016000610ac9610f2a565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906110f7565b6000610450610b07610f2a565b8484610fe2565b4290565b4690565b7f0000000000000000000000005efda50f22d34f262c29268506c5fa42cb56a1ce6001600160a01b0316610b48610f2a565b6001600160a01b031614610b6e5760405162461bcd60e51b81526004016105969061206c565b6001600160a01b038216610b945760405162461bcd60e51b815260040161059690611fe0565b6001600160a01b038316610bfd574760008215610bba57610bb582846112ca565b610bbc565b815b6040519091506001600160a01b0385169082156108fc029083906000818181858888f19350505050158015610bf5573d6000803e3d6000fd5b505050610851565b6040516370a0823160e01b81526000906001600160a01b038516906370a0823190610c2c903090600401611abf565b60206040518083038186803b158015610c4457600080fd5b505afa158015610c58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7c9190611a66565b905060008215610c9557610c9082846112ca565b610c97565b815b905060008111610cb95760405162461bcd60e51b8152600401610596906120b9565b610ccd6001600160a01b03861685836112e0565b5050505050565b83610cdd610b0e565b1115610cfb5760405162461bcd60e51b815260040161059690611d56565b6001600160a01b0387166000908152600660209081526040808320549051610d4e927f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9928c928c928c92918c9101611b4d565b6040516020818303038152906040528051906020012090506000611901610d73611336565b83604051602001610d8693929190611a9a565b6040516020818303038152906040528051906020012090506000610dac82878787611375565b9050896001600160a01b0316816001600160a01b031614610ddf5760405162461bcd60e51b815260040161059690611ea8565b6001600160a01b038a16600090815260066020526040902080546001019055610e098a8a8a610f2e565b50505050505050505050565b7f0000000000000000000000000000000000000000000000000000000060176ed581565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060815167ffffffffffffffff81118015610e7e57600080fd5b50604051908082528060200260200182016040528015610ea8578160200160208202803683370190505b50905060005b8251811015610eff57610ed3838281518110610ec657fe5b602002602001015161068a565b828281518110610edf57fe5b6001600160a01b0390921660209283029190910190910152600101610eae565b50919050565b6000828201838110156107c15760405162461bcd60e51b815260040161059690611ce8565b3390565b6001600160a01b038316610f545760405162461bcd60e51b815260040161059690611f65565b6001600160a01b038216610f7a5760405162461bcd60e51b815260040161059690611ca6565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610fd5908590611b44565b60405180910390a3505050565b6001600160a01b0383166110085760405162461bcd60e51b815260040161059690611f20565b6001600160a01b03821661102e5760405162461bcd60e51b815260040161059690611c35565b61103983838361146d565b611076816040518060600160405280602681526020016121bb602691396001600160a01b03861660009081526020819052604090205491906110f7565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546110a59082610f05565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610fd5908590611b44565b6000818484111561111b5760405162461bcd60e51b81526004016105969190611bcb565b505050900390565b6001600160a01b0382166111495760405162461bcd60e51b815260040161059690611edf565b6111558260008361146d565b61119281604051806060016040528060228152602001612199602291396001600160a01b03851660009081526020819052604090205491906110f7565b6001600160a01b0383166000908152602081905260409020556002546111b8908261150c565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111f9908590611b44565b60405180910390a35050565b60085460ff166112275760405162461bcd60e51b815260040161059690611c78565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61125a610f2a565b6040516112679190611abf565b60405180910390a1565b60085460ff16156112945760405162461bcd60e51b815260040161059690611df5565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861125a610f2a565b60008183106112d957816107c1565b5090919050565b6108518363a9059cbb60e01b84846040516024016112ff929190611ad3565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261154e565b60008060076000611345610b12565b815260208101919091526040016000205490508015611365579050610439565b61136d6115dd565b915050610439565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156113b75760405162461bcd60e51b815260040161059690611db3565b8360ff16601b14806113cc57508360ff16601c145b6113e85760405162461bcd60e51b815260040161059690611e1f565b60006001868686866040516000815260200160405260405161140d9493929190611bad565b6020604051602081039080840390855afa15801561142f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166114625760405162461bcd60e51b815260040161059690611bfe565b90505b949350505050565b611478838383610851565b6114806107c8565b15806114a457506001600160a01b03831660009081526009602052604090205460ff165b806114c757506001600160a01b03821660009081526009602052604090205460ff165b6114e35760405162461bcd60e51b815260040161059690611d8d565b6001600160a01b0382163014156108515760405162461bcd60e51b815260040161059690611d1f565b60006107c183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110f7565b60606115a3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166116939092919063ffffffff16565b80519091501561085157808060200190518101906115c19190611a32565b6108515760405162461bcd60e51b815260040161059690612022565b6000806115e8610b12565b905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6116156103a5565b805160209182012060408051808201825260018152603160f81b908401525161166593927fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6918791309101611b81565b60408051601f1981840301815291815281516020928301206000948552600790925290922082905550905090565b6060611465848460008560606116a885611761565b6116c45760405162461bcd60e51b815260040161059690611fa9565b60006060866001600160a01b031685876040516116e19190611a7e565b60006040518083038185875af1925050503d806000811461171e576040519150601f19603f3d011682016040523d82523d6000602084013e611723565b606091505b509150915081156117375791506114659050565b8051156117475780518082602001fd5b8360405162461bcd60e51b81526004016105969190611bcb565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611465575050151592915050565b803561045481612175565b6000602082840312156117b6578081fd5b81356107c181612175565b6000602082840312156117d2578081fd5b81516107c181612175565b600080604083850312156117ef578081fd5b82356117fa81612175565b9150602083013561180a81612175565b809150509250929050565b600080600060608486031215611829578081fd5b833561183481612175565b9250602084013561184481612175565b929592945050506040919091013590565b600080600080600080600060e0888a03121561186f578283fd5b873561187a81612175565b9650602088013561188a81612175565b95506040880135945060608801359350608088013560ff811681146118ad578384fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156118dc578182fd5b82356118e781612175565b946020939093013593505050565b60006020808385031215611907578182fd5b823567ffffffffffffffff81111561191d578283fd5b8301601f8101851361192d578283fd5b803561194061193b82612125565b6120fe565b818152838101908385018584028501860189101561195c578687fd5b8694505b8385101561198657611972898261179a565b835260019490940193918501918501611960565b50979650505050505050565b600060208083850312156119a4578182fd5b823567ffffffffffffffff8111156119ba578283fd5b8301601f810185136119ca578283fd5b80356119d861193b82612125565b81815283810190838501858402850186018910156119f4578687fd5b8694505b838510156119865780358352600194909401939185019185016119f8565b600060208284031215611a27578081fd5b81356107c18161218a565b600060208284031215611a43578081fd5b81516107c18161218a565b600060208284031215611a5f578081fd5b5035919050565b600060208284031215611a77578081fd5b5051919050565b60008251611a90818460208701612145565b9190910192915050565b60f09390931b6001600160f01b03191683526002830191909152602282015260420190565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b81811015611b2d5783516001600160a01b031683529284019291840191600101611b08565b50909695505050505050565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b93845260ff9290921660208401526040830152606082015260800190565b6000602082528251806020840152611bea816040850160208701612145565b601f01601f19169190910160400192915050565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526017908201527f544f524e3a20696e76616c696420726563697069656e74000000000000000000604082015260600190565b6020808252601d908201527f45524332305065726d69743a206578706972656420646561646c696e65000000604082015260600190565b6020808252600c908201526b1513d4938e881c185d5cd95960a21b604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b60208082526027908201527f544f524e3a2063616e6e6f74206368616e6765207472616e736665726162696c6040820152661a5d1e481e595d60ca1b606082015260800190565b6020808252601e908201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526022908201527f544f524e3a2063616e206e6f742073656e6420746f207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252602d908201527f544f524e3a206f6e6c7920676f7665726e616e63652063616e20706572666f7260408201526c36903a3434b99030b1ba34b7b760991b606082015260800190565b6020808252601e908201527f544f524e3a20747279696e6720746f2073656e6420302062616c616e63650000604082015260600190565b60ff91909116815260200190565b60405181810167ffffffffffffffff8111828210171561211d57600080fd5b604052919050565b600067ffffffffffffffff82111561213b578081fd5b5060209081020190565b60005b83811015612160578181015183820152602001612148565b8381111561216f576000848401525b50505050565b6001600160a01b038116811461066357600080fd5b801515811461066357600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220043c43bde5b4acd90be7aee5944f4d06f58b795870731c1c144b7c808b4cf01f64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
94d63e9067c3ab2d966702f604484c43b5ea247ecd08c28762caa50df5dc02bd00000000000000000000000000000000000000000000000000000000003b538000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000008d6d5ad7ec98c44fe89ef66c3277ef0ec7b1acbd7e0134bc1291fd952d7ff60300000000000000000000000000000000000000000000069e10de76676d0800000f06c24d1d0c5da2628caf6a7912f231ca834476d6c3505f1fb8e5926ab7f9ba500000000000000000000000000000000000000000000d3c21bcecceda1000000d4170e52df400408080f433b70182366fa7e47c6f6975ec15be6da658f0029b1000000000000000000000000000000000000000000048cab98f1671af58000006d8b43746e98f89a69d95242bc8238a46bb7022bdc0b29770a6cde90cc5e3c2600000000000000000000000000000000000000000000ae26c5d670f7f5bc0000ed485425f77ec3a133fce98177a1e2b35ac5337f207c483e669452aefddef4cf00000000000000000000000000000000000000000000ae26c5d670f7f5bc0000b25756000db285a10ae8473f799a05c7b883cc86240b2b10f0b08b79ebd152e300000000000000000000000000000000000000000000ae26c5d670f7f5bc000089658e012376b43a5108744fbe66ad3c8c14d2713bd74e4d9109b3e7a4b496d40000000000000000000000000000000000000000000069e10de76676d0800000a0f86f042328bf10a9ad59b05ac64fb64760786b2b1bf6da844549f3d84db48e0000000000000000000000000000000000000000000006f0f401ad6a314c0000
-----Decoded View---------------
Arg [0] : _governance (bytes32): 0x94d63e9067c3ab2d966702f604484c43b5ea247ecd08c28762caa50df5dc02bd
Arg [1] : _pausePeriod (uint256): 3888000
Arg [2] : _vestings (tuple[]): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
-----Encoded View---------------
20 Constructor Arguments found :
Arg [0] : 94d63e9067c3ab2d966702f604484c43b5ea247ecd08c28762caa50df5dc02bd
Arg [1] : 00000000000000000000000000000000000000000000000000000000003b5380
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : d6d5ad7ec98c44fe89ef66c3277ef0ec7b1acbd7e0134bc1291fd952d7ff6030
Arg [5] : 0000000000000000000000000000000000000000000069e10de76676d0800000
Arg [6] : f06c24d1d0c5da2628caf6a7912f231ca834476d6c3505f1fb8e5926ab7f9ba5
Arg [7] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [8] : d4170e52df400408080f433b70182366fa7e47c6f6975ec15be6da658f0029b1
Arg [9] : 000000000000000000000000000000000000000000048cab98f1671af5800000
Arg [10] : 6d8b43746e98f89a69d95242bc8238a46bb7022bdc0b29770a6cde90cc5e3c26
Arg [11] : 00000000000000000000000000000000000000000000ae26c5d670f7f5bc0000
Arg [12] : ed485425f77ec3a133fce98177a1e2b35ac5337f207c483e669452aefddef4cf
Arg [13] : 00000000000000000000000000000000000000000000ae26c5d670f7f5bc0000
Arg [14] : b25756000db285a10ae8473f799a05c7b883cc86240b2b10f0b08b79ebd152e3
Arg [15] : 00000000000000000000000000000000000000000000ae26c5d670f7f5bc0000
Arg [16] : 89658e012376b43a5108744fbe66ad3c8c14d2713bd74e4d9109b3e7a4b496d4
Arg [17] : 0000000000000000000000000000000000000000000069e10de76676d0800000
Arg [18] : a0f86f042328bf10a9ad59b05ac64fb64760786b2b1bf6da844549f3d84db48e
Arg [19] : 0000000000000000000000000000000000000000000006f0f401ad6a314c0000
Deployed Bytecode Sourcemap
45628:2984:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18399:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20505:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;19474:100::-;;;:::i;:::-;;;;;;;:::i;21148:321::-;;;;;;:::i;:::-;;:::i;19326:83::-;;;:::i;:::-;;;;;;;:::i;21878:218::-;;;;;;:::i;:::-;;:::i;47262:222::-;;;;;;:::i;:::-;;:::i;:::-;;27696:91;;;;;;:::i;:::-;;:::i;45807:35::-;;;:::i;:::-;;;;;;;:::i;44826:271::-;;;;;;:::i;:::-;;:::i;35501:78::-;;;:::i;45847:49::-;;;;;;:::i;:::-;;:::i;19637:119::-;;;;;;:::i;:::-;;:::i;28106:295::-;;;;;;:::i;:::-;;:::i;43392:95::-;;;;;;:::i;:::-;;:::i;46792:245::-;;;;;;:::i;:::-;;:::i;47043:213::-;;;;;;:::i;:::-;;:::i;18601:87::-;;;:::i;22599:269::-;;;;;;:::i;:::-;;:::i;19969:175::-;;;;;;:::i;:::-;;:::i;44452:99::-;;;:::i;44322:124::-;;;:::i;47880:729::-;;;;;;:::i;:::-;;:::i;42688:644::-;;;;;;:::i;:::-;;:::i;45762:40::-;;;:::i;20207:151::-;;;;;;:::i;:::-;;:::i;45103:243::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;18399:83::-;18469:5;18462:12;;;;;;;;-1:-1:-1;;18462:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18436:13;;18462:12;;18469:5;;18462:12;;18469:5;18462:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18399:83;;:::o;20505:169::-;20588:4;20605:39;20614:12;:10;:12::i;:::-;20628:7;20637:6;20605:8;:39::i;:::-;-1:-1:-1;20662:4:0;20505:169;;;;;:::o;19474:100::-;19554:12;;19474:100;:::o;21148:321::-;21254:4;21271:36;21281:6;21289:9;21300:6;21271:9;:36::i;:::-;21318:121;21327:6;21335:12;:10;:12::i;:::-;21349:89;21387:6;21349:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21349:19:0;;;;;;:11;:19;;;;;;21369:12;:10;:12::i;:::-;-1:-1:-1;;;;;21349:33:0;;;;;;;;;;;;-1:-1:-1;21349:33:0;;;:89;:37;:89::i;:::-;21318:8;:121::i;:::-;-1:-1:-1;21457:4:0;21148:321;;;;;:::o;19326:83::-;19392:9;;;;19326:83;:::o;21878:218::-;21966:4;21983:83;21992:12;:10;:12::i;:::-;22006:7;22015:50;22054:10;22015:11;:25;22027:12;:10;:12::i;:::-;-1:-1:-1;;;;;22015:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22015:25:0;;;:34;;;;;;;;;;;:38;:50::i;47262:222::-;46712:10;-1:-1:-1;;;;;46696:26:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;46696:26:0;;46688:84;;;;-1:-1:-1;;;46688:84:0;;;;;;;:::i;:::-;;;;;;;;;47352:9:::1;47347:132;47371:6;:13;47367:1;:17;47347:132;;;47431:5;47400:17;:28;47418:6;47425:1;47418:9;;;;;;;;;;;;;;-1:-1:-1::0;;;;;47400:28:0::1;-1:-1:-1::0;;;;;47400:28:0::1;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;47450:21;47461:6;47468:1;47461:9;;;;;;;;;;;;;;47450:21;;;;;;:::i;:::-;;;;;;;;47386:3;;47347:132;;;;47262:222:::0;:::o;27696:91::-;27752:27;27758:12;:10;:12::i;:::-;27772:6;27752:5;:27::i;:::-;27696:91;:::o;45807:35::-;;;:::o;44826:271::-;44886:7;44902:12;44929;:10;:12::i;:::-;44945:1;44929:17;:107;;44994:42;44929:107;;;44949:42;44929:107;45057:23;;-1:-1:-1;;;45057:23:0;;44902:141;;-1:-1:-1;;;;;;45057:17:0;;;;;:23;;45075:4;;45057:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;45057:28:0;;45086:4;45057:34;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45050:41;44826:271;-1:-1:-1;;;44826:271:0:o;35501:78::-;35564:7;;;;35501:78;:::o;45847:49::-;;;;;;;;;;;;;;;:::o;19637:119::-;-1:-1:-1;;;;;19730:18:0;19703:7;19730:18;;;;;;;;;;;;19637:119::o;28106:295::-;28183:26;28212:84;28249:6;28212:84;;;;;;;;;;;;;;;;;:32;28222:7;28231:12;:10;:12::i;28212:32::-;:36;:84;:36;:84::i;:::-;28183:113;;28309:51;28318:7;28327:12;:10;:12::i;:::-;28341:18;28309:8;:51::i;:::-;28371:22;28377:7;28386:6;28371:5;:22::i;:::-;28106:295;;;:::o;43392:95::-;-1:-1:-1;;;;;43467:14:0;43444:7;43467:14;;;:7;:14;;;;;;;43392:95::o;46792:245::-;46712:10;-1:-1:-1;;;;;46696:26:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;46696:26:0;;46688:84;;;;-1:-1:-1;;;46688:84:0;;;;;;;:::i;:::-;46894:15:::1;46875:16;:14;:16::i;:::-;:34;46867:86;;;;-1:-1:-1::0;;;46867:86:0::1;;;;;;;:::i;:::-;46964:8;46960:72;;;46983:10;:8;:10::i;:::-;46960:72;;;47016:8;:6;:8::i;47043:213::-:0;46712:10;-1:-1:-1;;;;;46696:26:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;46696:26:0;;46688:84;;;;-1:-1:-1;;;46688:84:0;;;;;;;:::i;:::-;47128:9:::1;47123:128;47147:6;:13;47143:1;:17;47123:128;;;47207:4;47176:17;:28;47194:6;47201:1;47194:9;;;;;;;;;;;;;;-1:-1:-1::0;;;;;47176:28:0::1;-1:-1:-1::0;;;;;47176:28:0::1;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;47225:18;47233:6;47240:1;47233:9;;;;;;;;;;;;;;47225:18;;;;;;:::i;:::-;;;;;;;;47162:3;;47123:128;;18601:87:::0;18673:7;18666:14;;;;;;;;-1:-1:-1;;18666:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18640:13;;18666:14;;18673:7;;18666:14;;18673:7;18666:14;;;;;;;;;;;;;;;;;;;;;;;;22599:269;22692:4;22709:129;22718:12;:10;:12::i;:::-;22732:7;22741:96;22780:15;22741:96;;;;;;;;;;;;;;;;;:11;:25;22753:12;:10;:12::i;:::-;-1:-1:-1;;;;;22741:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22741:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;19969:175::-;20055:4;20072:42;20082:12;:10;:12::i;:::-;20096:9;20107:6;20072:9;:42::i;44452:99::-;44530:15;44452:99;:::o;44322:124::-;44425:9;;44404:37::o;47880:729::-;46712:10;-1:-1:-1;;;;;46696:26:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;46696:26:0;;46688:84;;;;-1:-1:-1;;;46688:84:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48015:17:0;::::1;48007:64;;;;-1:-1:-1::0;;;48007:64:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48084:19:0;::::1;48080:524;;48157:21;48134:20;48205:13:::0;;:63:::1;;48236:32;48245:12;48259:8;48236;:32::i;:::-;48205:63;;;48221:12;48205:63;48277:21;::::0;48187:81;;-1:-1:-1;;;;;;48277:12:0;::::1;::::0;:21;::::1;;;::::0;48187:81;;48277:21:::1;::::0;;;48187:81;48277:12;:21;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48080:524;;;;;48370:31;::::0;-1:-1:-1;;;48370:31:0;;48347:20:::1;::::0;-1:-1:-1;;;;;48370:16:0;::::1;::::0;::::1;::::0;:31:::1;::::0;48395:4:::1;::::0;48370:31:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48347:54:::0;-1:-1:-1;48410:15:0::1;48428:13:::0;;:63:::1;;48459:32;48468:12;48482:8;48459;:32::i;:::-;48428:63;;;48444:12;48428:63;48410:81;;48518:1;48508:7;:11;48500:54;;;;-1:-1:-1::0;;;48500:54:0::1;;;;;;;:::i;:::-;48563:33;-1:-1:-1::0;;;;;48563:19:0;::::1;48583:3:::0;48588:7;48563:19:::1;:33::i;:::-;48080:524;;47880:729:::0;;;:::o;42688:644::-;42883:8;42863:16;:14;:16::i;:::-;:28;;42855:70;;;;-1:-1:-1;;;42855:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43018:14:0;;42934:18;43018:14;;;:7;:14;;;;;;;;;42965:78;;;;42053:105;;42994:5;;43001:7;;43010:6;;43018:14;43034:8;;42965:78;;:::i;:::-;;;;;;;;;;;;;42955:89;;;;;;42934:110;;43053:12;43102:6;43111:18;:16;:18::i;:::-;43131:10;43078:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43068:75;;;;;;43053:90;;43152:14;43169:28;43183:4;43189:1;43192;43195;43169:13;:28::i;:::-;43152:45;;43222:5;-1:-1:-1;;;;;43212:15:0;:6;-1:-1:-1;;;;;43212:15:0;;43204:58;;;;-1:-1:-1;;;43204:58:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43271:14:0;;;;;;:7;:14;;;;;:16;;;;;;43294:32;43279:5;43310:7;43319:6;43294:8;:32::i;:::-;42688:644;;;;;;;;;;:::o;45762:40::-;;;:::o;20207:151::-;-1:-1:-1;;;;;20323:18:0;;;20296:7;20323:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20207:151::o;45103:243::-;45171:23;45226:7;:14;45212:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45212:29:0;;45203:38;;45253:9;45248:93;45272:7;:14;45268:1;:18;45248:93;;;45314:19;45322:7;45330:1;45322:10;;;;;;;;;;;;;;45314:7;:19::i;:::-;45302:6;45309:1;45302:9;;;;;;;;-1:-1:-1;;;;;45302:31:0;;;:9;;;;;;;;;;;:31;45288:3;;45248:93;;;;45103:243;;;:::o;5505:181::-;5563:7;5595:5;;;5619:6;;;;5611:46;;;;-1:-1:-1;;;5611:46:0;;;;;;;:::i;4226:106::-;4314:10;4226:106;:::o;25746:346::-;-1:-1:-1;;;;;25848:19:0;;25840:68;;;;-1:-1:-1;;;25840:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25927:21:0;;25919:68;;;;-1:-1:-1;;;25919:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26000:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;26052:32;;;;;26030:6;;26052:32;:::i;:::-;;;;;;;;25746:346;;;:::o;23358:539::-;-1:-1:-1;;;;;23464:20:0;;23456:70;;;;-1:-1:-1;;;23456:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23545:23:0;;23537:71;;;;-1:-1:-1;;;23537:71:0;;;;;;;:::i;:::-;23621:47;23642:6;23650:9;23661:6;23621:20;:47::i;:::-;23701:71;23723:6;23701:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23701:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;23681:17:0;;;:9;:17;;;;;;;;;;;:91;;;;23806:20;;;;;;;:32;;23831:6;23806:24;:32::i;:::-;-1:-1:-1;;;;;23783:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;23854:35;;;;;;;;;;23882:6;;23854:35;:::i;6408:192::-;6494:7;6530:12;6522:6;;;;6514:29;;;;-1:-1:-1;;;6514:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;6566:5:0;;;6408:192::o;24888:418::-;-1:-1:-1;;;;;24972:21:0;;24964:67;;;;-1:-1:-1;;;24964:67:0;;;;;;;:::i;:::-;25044:49;25065:7;25082:1;25086:6;25044:20;:49::i;:::-;25127:68;25150:6;25127:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25127:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;25106:18:0;;:9;:18;;;;;;;;;;:89;25221:12;;:24;;25238:6;25221:16;:24::i;:::-;25206:12;:39;25261:37;;25287:1;;-1:-1:-1;;;;;25261:37:0;;;;;;;25291:6;;25261:37;:::i;:::-;;;;;;;;24888:418;;:::o;36550:120::-;36095:7;;;;36087:40;;;;-1:-1:-1;;;36087:40:0;;;;;;;:::i;:::-;36609:7:::1;:15:::0;;-1:-1:-1;;36609:15:0::1;::::0;;36640:22:::1;36649:12;:10;:12::i;:::-;36640:22;;;;;;:::i;:::-;;;;;;;;36550:120::o:0;36291:118::-;35819:7;;;;35818:8;35810:37;;;;-1:-1:-1;;;35810:37:0;;;;;;;:::i;:::-;36351:7:::1;:14:::0;;-1:-1:-1;;36351:14:0::1;36361:4;36351:14;::::0;;36381:20:::1;36388:12;:10;:12::i;37105:106::-:0;37163:7;37194:1;37190;:5;:13;;37202:1;37190:13;;;-1:-1:-1;37198:1:0;;37183:20;-1:-1:-1;37105:106:0:o;29066:177::-;29149:86;29169:5;29199:23;;;29224:2;29228:5;29176:58;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;29176:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;29176:58:0;-1:-1:-1;;;;;;29176:58:0;;;;;;;;;;29149:19;:86::i;44067:249::-;44112:7;44128:23;44154:17;:28;44172:9;:7;:9::i;:::-;44154:28;;;;;;;;;;;-1:-1:-1;44154:28:0;;;-1:-1:-1;44193:23:0;;44189:122;;44234:15;-1:-1:-1;44227:22:0;;44189:122;44279:24;:22;:24::i;:::-;44272:31;;;;;39497:1395;39607:7;40492:66;40478:80;;;40470:127;;;;-1:-1:-1;;;40470:127:0;;;;;;;:::i;:::-;40612:1;:7;;40617:2;40612:7;:18;;;;40623:1;:7;;40628:2;40623:7;40612:18;40604:65;;;;-1:-1:-1;;;40604:65:0;;;;;;;:::i;:::-;40759:14;40776:24;40786:4;40792:1;40795;40798;40776:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;40776:24:0;;-1:-1:-1;;40776:24:0;;;-1:-1:-1;;;;;;;40815:20:0;;40807:57;;;;-1:-1:-1;;;40807:57:0;;;;;;;:::i;:::-;40880:6;-1:-1:-1;39497:1395:0;;;;;;;:::o;47490:322::-;47607:44;47634:4;47640:2;47644:6;47607:26;:44::i;:::-;47667:8;:6;:8::i;:::-;47666:9;:36;;;-1:-1:-1;;;;;;47679:23:0;;;;;;:17;:23;;;;;;;;47666:36;:61;;;-1:-1:-1;;;;;;47706:21:0;;;;;;:17;:21;;;;;;;;47666:61;47658:86;;;;-1:-1:-1;;;47658:86:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47759:19:0;;47773:4;47759:19;;47751:55;;;;-1:-1:-1;;;47751:55:0;;;;;;;:::i;5969:136::-;6027:7;6054:43;6058:1;6061;6054:43;;;;;;;;;;;;;;;;;:3;:43::i;31371:761::-;31795:23;31821:69;31849:4;31821:69;;;;;;;;;;;;;;;;;31829:5;-1:-1:-1;;;;;31821:27:0;;;:69;;;;;:::i;:::-;31905:17;;31795:95;;-1:-1:-1;31905:21:0;31901:224;;32047:10;32036:30;;;;;;;;;;;;:::i;:::-;32028:85;;;;-1:-1:-1;;;32028:85:0;;;;;;;:::i;43493:501::-;43544:7;43560:16;43579:9;:7;:9::i;:::-;43560:28;;43597:26;43665:95;43787:6;:4;:6::i;:::-;43771:24;;;;;;;43816:10;;;;;;;;;;;-1:-1:-1;;;43816:10:0;;;;43644:246;;;;43806:21;;43849:8;;43876:4;;43644:246;;:::i;:::-;;;;-1:-1:-1;;43644:246:0;;;;;;;;;43626:271;;43644:246;43626:271;;;;43906:27;;;;:17;:27;;;;;;:48;;;-1:-1:-1;43626:271:0;-1:-1:-1;43493:501:0;:::o;13846:196::-;13949:12;13981:53;14004:6;14012:4;14018:1;14021:12;15353;15386:18;15397:6;15386:10;:18::i;:::-;15378:60;;;;-1:-1:-1;;;15378:60:0;;;;;;;:::i;:::-;15512:12;15526:23;15553:6;-1:-1:-1;;;;;15553:11:0;15573:8;15584:4;15553:36;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15511:78;;;;15604:7;15600:595;;;15635:10;-1:-1:-1;15628:17:0;;-1:-1:-1;15628:17:0;15600:595;15749:17;;:21;15745:439;;16012:10;16006:17;16073:15;16060:10;16056:2;16052:19;16045:44;15960:148;16155:12;16148:20;;-1:-1:-1;;;16148:20:0;;;;;;;;:::i;10731:619::-;10791:4;11259:20;;11102:66;11299:23;;;;;;:42;;-1:-1:-1;;11326:15:0;;;11291:51;-1:-1:-1;;10731:619:0:o;5:130:-1:-;72:20;;97:33;72:20;97:33;:::i;3054:241::-;;3158:2;3146:9;3137:7;3133:23;3129:32;3126:2;;;-1:-1;;3164:12;3126:2;85:6;72:20;97:33;124:5;97:33;:::i;3302:263::-;;3417:2;3405:9;3396:7;3392:23;3388:32;3385:2;;;-1:-1;;3423:12;3385:2;226:6;220:13;238:33;265:5;238:33;:::i;3572:366::-;;;3693:2;3681:9;3672:7;3668:23;3664:32;3661:2;;;-1:-1;;3699:12;3661:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;3751:63;-1:-1;3851:2;3890:22;;72:20;97:33;72:20;97:33;:::i;:::-;3859:63;;;;3655:283;;;;;:::o;3945:491::-;;;;4083:2;4071:9;4062:7;4058:23;4054:32;4051:2;;;-1:-1;;4089:12;4051:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;4141:63;-1:-1;4241:2;4280:22;;72:20;97:33;72:20;97:33;:::i;:::-;4045:391;;4249:63;;-1:-1;;;4349:2;4388:22;;;;2710:20;;4045:391::o;4443:991::-;;;;;;;;4647:3;4635:9;4626:7;4622:23;4618:33;4615:2;;;-1:-1;;4654:12;4615:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;4706:63;-1:-1;4806:2;4845:22;;72:20;97:33;72:20;97:33;:::i;:::-;4814:63;-1:-1;4914:2;4953:22;;2710:20;;-1:-1;5022:2;5061:22;;2710:20;;-1:-1;5130:3;5168:22;;2986:20;36179:4;36168:16;;38233:33;;38223:2;;-1:-1;;38270:12;38223:2;4609:825;;;;-1:-1;4609:825;;;;5139:61;5237:3;5277:22;;2235:20;;-1:-1;5346:3;5386:22;;;2235:20;;4609:825;-1:-1;;4609:825::o;5441:366::-;;;5562:2;5550:9;5541:7;5537:23;5533:32;5530:2;;;-1:-1;;5568:12;5530:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;5620:63;5720:2;5759:22;;;;2710:20;;-1:-1;;;5524:283::o;5814:377::-;;5943:2;;5931:9;5922:7;5918:23;5914:32;5911:2;;;-1:-1;;5949:12;5911:2;6007:17;5994:31;6045:18;6037:6;6034:30;6031:2;;;-1:-1;;6067:12;6031:2;6143:22;;564:4;552:17;;548:27;-1:-1;538:2;;-1:-1;;579:12;538:2;626:6;613:20;648:80;663:64;720:6;663:64;:::i;:::-;648:80;:::i;:::-;756:21;;;813:14;;;;788:17;;;902;;;893:27;;;;890:36;-1:-1;887:2;;;-1:-1;;929:12;887:2;-1:-1;955:10;;949:206;974:6;971:1;968:13;949:206;;;1054:37;1087:3;1075:10;1054:37;:::i;:::-;1042:50;;996:1;989:9;;;;;1106:14;;;;1134;;949:206;;;-1:-1;6087:88;5905:286;-1:-1;;;;;;;5905:286::o;6198:377::-;;6327:2;;6315:9;6306:7;6302:23;6298:32;6295:2;;;-1:-1;;6333:12;6295:2;6391:17;6378:31;6429:18;6421:6;6418:30;6415:2;;;-1:-1;;6451:12;6415:2;6527:22;;1297:4;1285:17;;1281:27;-1:-1;1271:2;;-1:-1;;1312:12;1271:2;1359:6;1346:20;1381:80;1396:64;1453:6;1396:64;:::i;1381:80::-;1489:21;;;1546:14;;;;1521:17;;;1635;;;1626:27;;;;1623:36;-1:-1;1620:2;;;-1:-1;;1662:12;1620:2;-1:-1;1688:10;;1682:206;1707:6;1704:1;1701:13;1682:206;;;2235:20;;1775:50;;1729:1;1722:9;;;;;1839:14;;;;1867;;1682:206;;6582:235;;6683:2;6671:9;6662:7;6658:23;6654:32;6651:2;;;-1:-1;;6689:12;6651:2;1979:6;1966:20;1991:30;2015:5;1991:30;:::i;6824:257::-;;6936:2;6924:9;6915:7;6911:23;6907:32;6904:2;;;-1:-1;;6942:12;6904:2;2114:6;2108:13;2126:30;2150:5;2126:30;:::i;7088:241::-;;7192:2;7180:9;7171:7;7167:23;7163:32;7160:2;;;-1:-1;;7198:12;7160:2;-1:-1;2235:20;;7154:175;-1:-1;7154:175::o;8428:263::-;;8543:2;8531:9;8522:7;8518:23;8514:32;8511:2;;;-1:-1;;8549:12;8511:2;-1:-1;2858:13;;8505:186;-1:-1;8505:186::o;19023:271::-;;10538:5;34284:12;10649:52;10694:6;10689:3;10682:4;10675:5;10671:16;10649:52;:::i;:::-;10713:16;;;;;19157:137;-1:-1;;19157:137::o;19301:526::-;37205:15;;;;;-1:-1;;;;;;37205:15;18721:56;;19578:1;19569:11;;10170:37;;;;19679:12;;;10170:37;19790:12;;;19471:356::o;19834:222::-;-1:-1;;;;;35963:54;;;;9090:37;;19961:2;19946:18;;19932:124::o;20308:333::-;-1:-1;;;;;35963:54;;;;9090:37;;20627:2;20612:18;;10170:37;20463:2;20448:18;;20434:207::o;20648:370::-;20825:2;20839:47;;;34284:12;;20810:18;;;34816:19;;;20648:370;;20825:2;34138:14;;;;34856;;;;20648:370;9698:260;9723:6;9720:1;9717:13;9698:260;;;9784:13;;-1:-1;;;;;35963:54;9090:37;;34671:14;;;;8852;;;;6045:18;9738:9;9698:260;;;-1:-1;20892:116;;20796:222;-1:-1;;;;;;20796:222::o;21025:210::-;35479:13;;35472:21;10053:34;;21146:2;21131:18;;21117:118::o;21242:222::-;10170:37;;;21369:2;21354:18;;21340:124::o;21471:780::-;10170:37;;;-1:-1;;;;;35963:54;;;21903:2;21888:18;;9090:37;35963:54;;;;21986:2;21971:18;;9090:37;22069:2;22054:18;;10170:37;22152:3;22137:19;;10170:37;;;;35974:42;22221:19;;10170:37;21738:3;21723:19;;21709:542::o;22258:668::-;10170:37;;;22662:2;22647:18;;10170:37;;;;22745:2;22730:18;;10170:37;;;;22828:2;22813:18;;10170:37;-1:-1;;;;;35963:54;22911:3;22896:19;;9090:37;22497:3;22482:19;;22468:458::o;22933:548::-;10170:37;;;36179:4;36168:16;;;;23301:2;23286:18;;18976:35;23384:2;23369:18;;10170:37;23467:2;23452:18;;10170:37;23140:3;23125:19;;23111:370::o;23488:310::-;;23635:2;23656:17;23649:47;10886:5;34284:12;34828:6;23635:2;23624:9;23620:18;34816:19;10980:52;11025:6;34856:14;23624:9;34856:14;23635:2;11006:5;11002:16;10980:52;:::i;:::-;37113:7;37097:14;-1:-1;;37093:28;11044:39;;;;34856:14;11044:39;;23606:192;-1:-1;;23606:192::o;23805:416::-;24005:2;24019:47;;;11320:2;23990:18;;;34816:19;11356:26;34856:14;;;11336:47;11402:12;;;23976:245::o;24228:416::-;24428:2;24442:47;;;11653:2;24413:18;;;34816:19;11689:34;34856:14;;;11669:55;-1:-1;;;11744:12;;;11737:27;11783:12;;;24399:245::o;24651:416::-;24851:2;24865:47;;;12034:2;24836:18;;;34816:19;-1:-1;;;34856:14;;;12050:43;12112:12;;;24822:245::o;25074:416::-;25274:2;25288:47;;;12363:2;25259:18;;;34816:19;12399:34;34856:14;;;12379:55;-1:-1;;;12454:12;;;12447:26;12492:12;;;25245:245::o;25497:416::-;25697:2;25711:47;;;12743:2;25682:18;;;34816:19;12779:29;34856:14;;;12759:50;12828:12;;;25668:245::o;25920:416::-;26120:2;26134:47;;;13079:2;26105:18;;;34816:19;13115:25;34856:14;;;13095:46;13160:12;;;26091:245::o;26343:416::-;26543:2;26557:47;;;13411:2;26528:18;;;34816:19;13447:31;34856:14;;;13427:52;13498:12;;;26514:245::o;26766:416::-;26966:2;26980:47;;;13749:2;26951:18;;;34816:19;-1:-1;;;34856:14;;;13765:35;13819:12;;;26937:245::o;27189:416::-;27389:2;27403:47;;;14070:2;27374:18;;;34816:19;14106:34;34856:14;;;14086:55;-1:-1;;;14161:12;;;14154:26;14199:12;;;27360:245::o;27612:416::-;27812:2;27826:47;;;14450:2;27797:18;;;34816:19;-1:-1;;;34856:14;;;14466:39;14524:12;;;27783:245::o;28035:416::-;28235:2;28249:47;;;14775:2;28220:18;;;34816:19;14811:34;34856:14;;;14791:55;-1:-1;;;14866:12;;;14859:26;14904:12;;;28206:245::o;28458:416::-;28658:2;28672:47;;;15155:2;28643:18;;;34816:19;15191:34;34856:14;;;15171:55;-1:-1;;;15246:12;;;15239:31;15289:12;;;28629:245::o;28881:416::-;29081:2;29095:47;;;15540:2;29066:18;;;34816:19;15576:32;34856:14;;;15556:53;15628:12;;;29052:245::o;29304:416::-;29504:2;29518:47;;;15879:2;29489:18;;;34816:19;15915:34;34856:14;;;15895:55;-1:-1;;;15970:12;;;15963:25;16007:12;;;29475:245::o;29727:416::-;29927:2;29941:47;;;16258:2;29912:18;;;34816:19;16294:34;34856:14;;;16274:55;-1:-1;;;16349:12;;;16342:29;16390:12;;;29898:245::o;30150:416::-;30350:2;30364:47;;;16641:2;30335:18;;;34816:19;16677:34;34856:14;;;16657:55;-1:-1;;;16732:12;;;16725:28;16772:12;;;30321:245::o;30573:416::-;30773:2;30787:47;;;17023:2;30758:18;;;34816:19;17059:31;34856:14;;;17039:52;17110:12;;;30744:245::o;30996:416::-;31196:2;31210:47;;;17361:2;31181:18;;;34816:19;17397:34;34856:14;;;17377:55;-1:-1;;;17452:12;;;17445:26;17490:12;;;31167:245::o;31419:416::-;31619:2;31633:47;;;17741:2;31604:18;;;34816:19;17777:34;34856:14;;;17757:55;-1:-1;;;17832:12;;;17825:34;17878:12;;;31590:245::o;31842:416::-;32042:2;32056:47;;;18129:2;32027:18;;;34816:19;18165:34;34856:14;;;18145:55;-1:-1;;;18220:12;;;18213:37;18269:12;;;32013:245::o;32265:416::-;32465:2;32479:47;;;18520:2;32450:18;;;34816:19;18556:32;34856:14;;;18536:53;18608:12;;;32436:245::o;32917:214::-;36179:4;36168:16;;;;18976:35;;33040:2;33025:18;;33011:120::o;33138:256::-;33200:2;33194:9;33226:17;;;33301:18;33286:34;;33322:22;;;33283:62;33280:2;;;33358:1;;33348:12;33280:2;33200;33367:22;33178:216;;-1:-1;33178:216::o;33401:304::-;;33560:18;33552:6;33549:30;33546:2;;;-1:-1;;33582:12;33546:2;-1:-1;33627:4;33615:17;;;33680:15;;33483:222::o;36576:268::-;36641:1;36648:101;36662:6;36659:1;36656:13;36648:101;;;36729:11;;;36723:18;36710:11;;;36703:39;36684:2;36677:10;36648:101;;;36764:6;36761:1;36758:13;36755:2;;;36641:1;36820:6;36815:3;36811:16;36804:27;36755:2;;36625:219;;;:::o;37238:117::-;-1:-1;;;;;35963:54;;37297:35;;37287:2;;37346:1;;37336:12;37502:111;37583:5;35479:13;35472:21;37561:5;37558:32;37548:2;;37604:1;;37594:12
Swarm Source
ipfs://043c43bde5b4acd90be7aee5944f4d06f58b795870731c1c144b7c808b4cf01f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.