Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 522 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer Pre Sig... | 10979839 | 1973 days ago | IN | 0 ETH | 0.00345769 | ||||
| Transfer Pre Sig... | 10979798 | 1973 days ago | IN | 0 ETH | 0.00403358 | ||||
| Transfer Pre Sig... | 10979332 | 1973 days ago | IN | 0 ETH | 0.00269224 | ||||
| Transfer Pre Sig... | 10979254 | 1973 days ago | IN | 0 ETH | 0.00428181 | ||||
| Transfer Pre Sig... | 10977986 | 1973 days ago | IN | 0 ETH | 0.00659912 | ||||
| Approve | 10977984 | 1973 days ago | IN | 0 ETH | 0.00286581 | ||||
| Transfer Pre Sig... | 10977327 | 1973 days ago | IN | 0 ETH | 0.0041864 | ||||
| Approve | 10977309 | 1973 days ago | IN | 0 ETH | 0.00233944 | ||||
| Transfer Pre Sig... | 10973612 | 1974 days ago | IN | 0 ETH | 0.00493908 | ||||
| Transfer Pre Sig... | 10973575 | 1974 days ago | IN | 0 ETH | 0.0058398 | ||||
| Transfer Pre Sig... | 10971752 | 1974 days ago | IN | 0 ETH | 0.00666775 | ||||
| Transfer Pre Sig... | 10971740 | 1974 days ago | IN | 0 ETH | 0.00797909 | ||||
| Transfer Pre Sig... | 10971590 | 1974 days ago | IN | 0 ETH | 0.00889034 | ||||
| Transfer Pre Sig... | 10969671 | 1974 days ago | IN | 0 ETH | 0.00370521 | ||||
| Transfer Pre Sig... | 10965886 | 1975 days ago | IN | 0 ETH | 0.00498727 | ||||
| Approve | 10965885 | 1975 days ago | IN | 0 ETH | 0.00228095 | ||||
| Transfer Pre Sig... | 10965452 | 1975 days ago | IN | 0 ETH | 0.0078631 | ||||
| Transfer Pre Sig... | 10964927 | 1975 days ago | IN | 0 ETH | 0.00859298 | ||||
| Transfer Pre Sig... | 10964875 | 1975 days ago | IN | 0 ETH | 0.00907418 | ||||
| Transfer Pre Sig... | 10964874 | 1975 days ago | IN | 0 ETH | 0.00956438 | ||||
| Transfer Pre Sig... | 10964859 | 1975 days ago | IN | 0 ETH | 0.00797031 | ||||
| Transfer Pre Sig... | 10964666 | 1975 days ago | IN | 0 ETH | 0.01094776 | ||||
| Transfer Pre Sig... | 10958986 | 1976 days ago | IN | 0 ETH | 0.0066003 | ||||
| Approve | 10958985 | 1976 days ago | IN | 0 ETH | 0.00286581 | ||||
| Transfer Pre Sig... | 10953205 | 1977 days ago | IN | 0 ETH | 0.00650312 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ARSCB
Compiler Version
v0.6.2+commit.bacdbe57
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-08-10
*/
// 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) {
// Solidity only automatically asserts when dividing by 0
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/cryptography/ECDSA.sol
pragma solidity ^0.6.0;
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library 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 := byte(0, mload(add(signature, 0x60)))
}
// 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.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
revert("ECDSA: invalid signature 's' value");
}
if (v != 27 && v != 28) {
revert("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: @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");
}
}
// 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.
*/
contract Context {
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
constructor () internal { }
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/token/ERC20/IERC20.sol
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/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 {ERC20MinterPauser}.
*
* 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: contracts/ERC865Plus677ish.sol
pragma solidity >=0.6.0 <0.7.0;
/**
* @title ERC677 transferAndCall token interface
* @dev See https://github.com/ethereum/EIPs/issues/677 for specification and
* discussion.
*
* We deviate from the specification and we don't define a tokenfallback. That means
* tranferAndCall can specify the function to call (bytes4(sha3("setN(uint256)")))
* and its arguments, and the respective function is called.
*
* If an invalid function is called, its default function (if implemented) is called.
*
* We also deviate from ERC865 and added a pre signed transaction for transferAndCall.
*/
/*
Notes on signature malleability: Ethereum took the same
precaution as in bitcoin was used to prevent that:
https://github.com/ethereum/go-ethereum/blob/master/vendor/github.com/btcsuite/btcd/btcec/signature.go#L48
https://github.com/ethereum/go-ethereum/blob/master/crypto/signature_test.go
https://github.com/ethereum/EIPs/blob/master/EIPS/eip-155.md
https://github.com/ethereum/EIPs/blob/master/EIPS/eip-2.md
However, ecrecover still allows ambigous signatures. Thus, recover that wraps ecrecover checks for ambigous
signatures and only allows unique signatures.
*/
abstract contract ERC865Plus677ish {
event TransferAndCall(address indexed _from, address indexed _to, uint256 _value, bytes4 _methodName, bytes _args);
function transferAndCall(address _to, uint256 _value, bytes4 _methodName, bytes memory _args) public virtual returns (bool);
event TransferPreSigned(address indexed _from, address indexed _to, address indexed _delegate,
uint256 _amount, uint256 _fee);
event TransferAndCallPreSigned(address indexed _from, address indexed _to, address indexed _delegate,
uint256 _amount, uint256 _fee, bytes4 _methodName, bytes _args);
function transferPreSigned(bytes memory _signature, address _from, address _to, uint256 _value,
uint256 _fee, uint256 _nonce) public virtual returns (bool);
function transferAndCallPreSigned(bytes memory _signature, address _from, address _to, uint256 _value,
uint256 _fee, uint256 _nonce, bytes4 _methodName, bytes memory _args) public virtual returns (bool);
}
// File: contracts/BaseToken.sol
pragma solidity >=0.6.0 <0.7.0;
abstract contract Basetoken is ERC20, ERC865Plus677ish {
using SafeMath for uint256;
using ECDSA for bytes32;
using Address for address;
/**
* Events
*/
event MyLog( address indexed _from, uint256 _value);
// ownership
address public owner;
uint8 private _decimals;
// nonces of transfers performed
mapping(bytes => bool) signatures;
constructor(string memory name, string memory symbol ) ERC20(name, symbol) public {
owner = msg.sender;
}
//**************** OVERRIDE ERC20 *******************************************************************************************
/**
* @dev Allows the current owner to transfer the ownership.
* @param _newOwner The address to transfer ownership to.
*/
function transferOwnership(address _newOwner) public onlyOwner {
require(owner == msg.sender,'Only owner can transfer the ownership');
owner = _newOwner;
}
/**
* Minting functionality to multiples recipients
*/
function mint(address[] memory _recipients, uint256[] memory _amounts) public onlyOwner {
require(owner == msg.sender,'Only owner can add new tokens');
require(_recipients.length == _amounts.length,'Invalid size of recipients|amount');
require(_recipients.length <= 10,'Only allow mint 10 recipients');
for (uint8 i = 0; i < _recipients.length; i++) {
address recipient = _recipients[i];
uint256 amount = _amounts[i];
_mint(recipient, amount);
}
}
function doTransfer(address _from, address _to, uint256 _value, uint256 _fee, address _feeAddress) internal {
emit MyLog(_from, _value);
require(_to != address(0),'Invalid recipient address');
uint256 total = _value.add(_fee);
require(total <= balanceOf(_from),'Insufficient funds');
emit MyLog(_from, _value);
myTransferFrom(_from,_to,_value);
//Agregar el fee a la address fee
if(_fee > 0 && _feeAddress != address(0)) {
myTransferFrom(_from,_feeAddress,_fee);
}
}
/**
* @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 myTransferFrom(address from, address to, uint256 amount) public onlyOwner returns (bool) {
_transfer(from, to, amount);
//Check if allow use amount to spent
uint256 allowed= allowance(msg.sender, from);
uint256 diff=allowed.sub(amount);
_approve(from, msg.sender, diff);
return true;
}
//**************** END OVERRIDE ERC20 *******************************************************************************************
//**************** FROM ERC865 *******************************************************************************************
function transferAndCall(address _to, uint256 _value, bytes4 _methodName, bytes memory _args) public override returns (bool) {
require(transferFromSender(_to, _value),'Invalid transfer from sender');
emit TransferAndCall(msg.sender, _to, _value, _methodName, _args);
// call receiver
require(Address.isContract(_to),'Address is not contract');
(bool success, ) = _to.call(abi.encodePacked(abi.encodeWithSelector(_methodName, msg.sender, _value), _args));
require(success, 'Transfer unsuccesfully');
return success;
}
//ERC 865 + delegate transfer and call
function transferPreSigned(bytes memory _signature, address _from, address _to, uint256 _value, uint256 _fee, uint256 _nonce) public override returns (bool) {
require(!signatures[_signature],'Signature already used');
bytes32 hashedTx = transferPreSignedHashing(address(this), _to, _value, _fee, _nonce);
address from = ECDSA.recover(hashedTx, _signature);
//if hashedTx does not fit to _signature Utils.recover resp. Solidity's ecrecover returns another (random) address,
//if this returned address does have enough tokens, they would be transferred, therefor we check if the retrieved
//signature is equal the specified one
require(from == _from,'Invalid sender1');
require(from != address(0),'Invalid sender address');
doTransfer(from, _to, _value, _fee, msg.sender);
signatures[_signature] = true;
emit TransferPreSigned(from, _to, msg.sender, _value, _fee);
return true;
}
function transferAndCallPreSigned(bytes memory _signature, address _from, address _to, uint256 _value, uint256 _fee, uint256 _nonce,
bytes4 _methodName, bytes memory _args) public override returns (bool) {
require(!signatures[_signature],'Signature already used');
bytes32 hashedTx = transferAndCallPreSignedHashing(address(this), _to, _value, _fee, _nonce, _methodName, _args);
address from = ECDSA.recover(hashedTx, _signature);
/**
*if hashedTx does not fit to _signature Utils.recover resp. Solidity's ecrecover returns another (random) address,
*if this returned address does have enough tokens, they would be transferred, therefor we check if the retrieved
*signature is equal the specified one
**/
require(from == _from,'Invalid sender');
require(from != address(0),'Invalid sender address');
doTransfer(from, _to, _value, _fee, msg.sender);
signatures[_signature] = true;
emit TransferAndCallPreSigned(from, _to, msg.sender, _value, _fee, _methodName, _args);
// call receiver
require(Address.isContract(_to),'Address is not contract');
//call on behalf of from and not msg.sender
(bool success, ) = _to.call(abi.encodePacked(abi.encodeWithSelector(_methodName, from, _value), _args));
require(success);
return success;
}
//**************** END FROM ERC865 *******************************************************************************************
//*****************************UTILS FUNCTIONS****************************************************************
/**
* From: https://github.com/PROPSProject/props-token-distribution/blob/master/contracts/token/ERC865Token.sol
* adapted to: https://solidity.readthedocs.io/en/v0.5.3/050-breaking-changes.html?highlight=abi%20encode
* @notice Hash (keccak256) of the payload used by transferPreSigned
* @param _token address The address of the token.
* @param _to address The address which you want to transfer to.
* @param _value uint256 The amount of tokens to be transferred.
* @param _fee uint256 The amount of tokens paid to msg.sender, by the owner.
*/
function transferAndCallPreSignedHashing(address _token, address _to, uint256 _value, uint256 _fee, uint256 _nonce,
bytes4 _methodName, bytes memory _args) internal pure returns (bytes32) {
/* "38980f82": transferAndCallPreSignedHashing(address,address,uint256,uint256,uint256,bytes4,bytes) */
return keccak256(abi.encode(bytes4(0x38980f82), _token, _to, _value, _fee, _nonce, _methodName, _args));
}
function transferPreSignedHashing(address _token, address _to, uint256 _value, uint256 _fee, uint256 _nonce)
internal pure returns (bytes32) {
/* "15420b71": transferPreSignedHashing(address,address,uint256,uint256,uint256) */
return keccak256(abi.encode(bytes4(0x15420b71), _token, _to, _value, _fee, _nonce));
}
function transferFromSender(address _to, uint256 _value) private returns (bool) {
doTransfer(msg.sender, _to, _value, 0, address(0));
return true;
}
modifier onlyOwner() {
require(msg.sender == owner, "Access denied");
_;
}
//*****************************END UTILS FUNCTIONS**********************************************************
}
// File: contracts/ARSCB.sol
pragma solidity >=0.6.0 <0.7.0;
contract ARSCB is Basetoken{
constructor() Basetoken("Pesos Argentinos", "ARSCB") public{
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"MyLog","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":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"},{"indexed":false,"internalType":"bytes4","name":"_methodName","type":"bytes4"},{"indexed":false,"internalType":"bytes","name":"_args","type":"bytes"}],"name":"TransferAndCall","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"address","name":"_delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_fee","type":"uint256"},{"indexed":false,"internalType":"bytes4","name":"_methodName","type":"bytes4"},{"indexed":false,"internalType":"bytes","name":"_args","type":"bytes"}],"name":"TransferAndCallPreSigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"address","name":"_delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"TransferPreSigned","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"myTransferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","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":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes4","name":"_methodName","type":"bytes4"},{"internalType":"bytes","name":"_args","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes4","name":"_methodName","type":"bytes4"},{"internalType":"bytes","name":"_args","type":"bytes"}],"name":"transferAndCallPreSigned","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"uint256","name":"_nonce","type":"uint256"}],"name":"transferPreSigned","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601081526020017f5065736f7320417267656e74696e6f73000000000000000000000000000000008152506040518060400160405280600581526020017f4152534342000000000000000000000000000000000000000000000000000000815250818181600390805190602001906200009892919062000119565b508060049080519060200190620000b192919062000119565b506012600560006101000a81548160ff021916908360ff160217905550505033600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620001c8565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200015c57805160ff19168380011785556200018d565b828001600101855582156200018d579182015b828111156200018c5782518255916020019190600101906200016f565b5b5090506200019c9190620001a0565b5090565b620001c591905b80821115620001c1576000816000905550600101620001a7565b5090565b90565b6136fc80620001d86000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d714610926578063a9059cbb1461098c578063dd62ed3e146109f2578063e467f7e014610a6a578063f2fde38b14610bb657610116565b806370a082311461060f5780638da5cb5b146106675780639378f7a4146106b157806395d89b41146108a357610116565b806323b872dd116100e957806323b872dd146102a8578063313ce5671461032e57806339509351146103525780633c4461be146103b8578063685e9960146104de57610116565b80630175b22f1461011b57806306fdde03146101a1578063095ea7b31461022457806318160ddd1461028a575b600080fd5b6101876004803603606081101561013157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bfa565b604051808215151515815260200191505060405180910390f35b6101a9610d07565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101e95780820151818401526020810190506101ce565b50505050905090810190601f1680156102165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102706004803603604081101561023a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610da9565b604051808215151515815260200191505060405180910390f35b610292610dc7565b6040518082815260200191505060405180910390f35b610314600480360360608110156102be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610dd1565b604051808215151515815260200191505060405180910390f35b610336610eaa565b604051808260ff1660ff16815260200191505060405180910390f35b61039e6004803603604081101561036857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ec1565b604051808215151515815260200191505060405180910390f35b6104c4600480360360808110156103ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291908035906020019064010000000081111561043e57600080fd5b82018360208201111561045057600080fd5b8035906020019184600183028401116401000000008311171561047257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050610f74565b604051808215151515815260200191505060405180910390f35b6105f5600480360360c08110156104f457600080fd5b810190808035906020019064010000000081111561051157600080fd5b82018360208201111561052357600080fd5b8035906020019184600183028401116401000000008311171561054557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291908035906020019092919050505061141b565b604051808215151515815260200191505060405180910390f35b6106516004803603602081101561062557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061178d565b6040518082815260200191505060405180910390f35b61066f6117d5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61088960048036036101008110156106c857600080fd5b81019080803590602001906401000000008111156106e557600080fd5b8201836020820111156106f757600080fd5b8035906020019184600183028401116401000000008311171561071957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291908035906020019092919080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291908035906020019064010000000081111561080357600080fd5b82018360208201111561081557600080fd5b8035906020019184600183028401116401000000008311171561083757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506117fb565b604051808215151515815260200191505060405180910390f35b6108ab611ec0565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108eb5780820151818401526020810190506108d0565b50505050905090810190601f1680156109185780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109726004803603604081101561093c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611f62565b604051808215151515815260200191505060405180910390f35b6109d8600480360360408110156109a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061202f565b604051808215151515815260200191505060405180910390f35b610a5460048036036040811015610a0857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061204d565b6040518082815260200191505060405180910390f35b610bb460048036036040811015610a8057600080fd5b8101908080359060200190640100000000811115610a9d57600080fd5b820183602082011115610aaf57600080fd5b80359060200191846020830284011164010000000083111715610ad157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610b3157600080fd5b820183602082011115610b4357600080fd5b80359060200191846020830284011164010000000083111715610b6557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506120d4565b005b610bf860048036036020811015610bcc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612392565b005b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f4163636573732064656e6965640000000000000000000000000000000000000081525060200191505060405180910390fd5b610cca84848461253f565b6000610cd6338661204d565b90506000610ced848361280090919063ffffffff16565b9050610cfa86338361284a565b6001925050509392505050565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d9f5780601f10610d7457610100808354040283529160200191610d9f565b820191906000526020600020905b815481529060010190602001808311610d8257829003601f168201915b5050505050905090565b6000610dbd610db6612a41565b848461284a565b6001905092915050565b6000600254905090565b6000610dde84848461253f565b610e9f84610dea612a41565b610e9a8560405180606001604052806028815260200161363160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e50612a41565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a499092919063ffffffff16565b61284a565b600190509392505050565b6000600560009054906101000a900460ff16905090565b6000610f6a610ece612a41565b84610f658560016000610edf612a41565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b0990919063ffffffff16565b61284a565b6001905092915050565b6000610f808585612b91565b610ff2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f496e76616c6964207472616e736665722066726f6d2073656e6465720000000081525060200191505060405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fdd3e0c228b64b39b4fe47dda02dba02d084503cb9a5692cb36a09c225376292786868660405180848152602001837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200180602001828103825283818151815260200191508051906020019080838360005b838110156110ce5780820151818401526020810190506110b3565b50505050905090810190601f1680156110fb5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a361111385612bab565b611185576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f41646472657373206973206e6f7420636f6e747261637400000000000000000081525060200191505060405180910390fd5b60008573ffffffffffffffffffffffffffffffffffffffff16843387604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050846040516020018083805190602001908083835b602083106112785780518252602082019150602081019050602083039250611255565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106112c957805182526020820191506020810190506020830392506112a6565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040526040518082805190602001908083835b60208310611331578051825260208201915060208101905060208303925061130e565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611393576040519150601f19603f3d011682016040523d82523d6000602084013e611398565b606091505b505090508061140f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f5472616e7366657220756e73756363657366756c6c790000000000000000000081525060200191505060405180910390fd5b80915050949350505050565b60006006876040518082805190602001908083835b602083106114535780518252602082019150602081019050602083039250611430565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060009054906101000a900460ff1615611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f5369676e617475726520616c726561647920757365640000000000000000000081525060200191505060405180910390fd5b60006115163087878787612bf6565b90506000611524828a612cef565b90508773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642073656e64657231000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561166a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f496e76616c69642073656e64657220616464726573730000000000000000000081525060200191505060405180910390fd5b6116778188888833612f8a565b600160068a6040518082805190602001908083835b602083106116af578051825260208201915060208101905060208303925061168c565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fec5a73fd1f178be20c1bca1b406cbf4b5c20d833b66e582fc122fb4baa0fc2a48989604051808381526020018281526020019250505060405180910390a46001925050509695505050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006006896040518082805190602001908083835b602083106118335780518252602082019150602081019050602083039250611810565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060009054906101000a900460ff16156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f5369676e617475726520616c726561647920757365640000000000000000000081525060200191505060405180910390fd5b60006118f8308989898989896131c1565b90506000611906828c612cef565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f496e76616c69642073656e64657200000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f496e76616c69642073656e64657220616464726573730000000000000000000081525060200191505060405180910390fd5b611a59818a8a8a33612f8a565b600160068c6040518082805190602001908083835b60208310611a915780518252602082019150602081019050602083039250611a6e565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f95f8bb1059e9b9dc861fa51f50b9143ef0101152bce82dd2760584849223d1f28b8b8a8a60405180858152602001848152602001837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611bd5578082015181840152602081019050611bba565b50505050905090810190601f168015611c025780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a4611c1b89612bab565b611c8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f41646472657373206973206e6f7420636f6e747261637400000000000000000081525060200191505060405180910390fd5b60008973ffffffffffffffffffffffffffffffffffffffff1686838b604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050866040516020018083805190602001908083835b60208310611d805780518252602082019150602081019050602083039250611d5d565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310611dd15780518252602082019150602081019050602083039250611dae565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040526040518082805190602001908083835b60208310611e395780518252602082019150602081019050602083039250611e16565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611e9b576040519150601f19603f3d011682016040523d82523d6000602084013e611ea0565b606091505b5050905080611eae57600080fd5b80935050505098975050505050505050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f585780601f10611f2d57610100808354040283529160200191611f58565b820191906000526020600020905b815481529060010190602001808311611f3b57829003601f168201915b5050505050905090565b6000612025611f6f612a41565b84612020856040518060600160405280602581526020016136a26025913960016000611f99612a41565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a499092919063ffffffff16565b61284a565b6001905092915050565b600061204361203c612a41565b848461253f565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f4163636573732064656e6965640000000000000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f4f6e6c79206f776e65722063616e20616464206e657720746f6b656e7300000081525060200191505060405180910390fd5b80518251146122b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806135a66021913960400191505060405180910390fd5b600a8251111561232c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f4f6e6c7920616c6c6f77206d696e7420313020726563697069656e747300000081525060200191505060405180910390fd5b60008090505b82518160ff16101561238d576000838260ff168151811061234f57fe5b602002602001015190506000838360ff168151811061236a57fe5b6020026020010151905061237e828261336f565b50508080600101915050612332565b505050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f4163636573732064656e6965640000000000000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061355f6025913960400191505060405180910390fd5b80600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806136596025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561264b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061353c6023913960400191505060405180910390fd5b612656838383613536565b6126c1816040518060600160405280602681526020016135c7602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a499092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612754816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b0990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600061284283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612a49565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061367e6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612956576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806135846022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600033905090565b6000838311158290612af6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612abb578082015181840152602081019050612aa0565b50505050905090810190601f168015612ae85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015612b87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000612ba1338484600080612f8a565b6001905092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015612bed57506000801b8214155b92505050919050565b60006315420b7160e01b868686868660405160200180877bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020018673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001848152602001838152602001828152602001965050505050505060405160208183030381529060405280519060200120905095945050505050565b60006041825114612d68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45434453413a20696e76616c6964207369676e6174757265206c656e6774680081525060200191505060405180910390fd5b60008060006020850151925060408501519150606085015160001a90507f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115612e01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806135ed6022913960400191505060405180910390fd5b601b8160ff1614158015612e195750601c8160ff1614155b15612e6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061360f6022913960400191505060405180910390fd5b600060018783868660405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015612ece573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f7d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f45434453413a20696e76616c6964207369676e6174757265000000000000000081525060200191505060405180910390fd5b8094505050505092915050565b8473ffffffffffffffffffffffffffffffffffffffff167f1a52b79939f1eb10a3119287e9a1a0697fe869450dc019cc7bd3ab983b79ef16846040518082815260200191505060405180910390a2600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561307b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f496e76616c696420726563697069656e7420616464726573730000000000000081525060200191505060405180910390fd5b60006130908385612b0990919063ffffffff16565b905061309b8661178d565b811115613110576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f496e73756666696369656e742066756e6473000000000000000000000000000081525060200191505060405180910390fd5b8573ffffffffffffffffffffffffffffffffffffffff167f1a52b79939f1eb10a3119287e9a1a0697fe869450dc019cc7bd3ab983b79ef16856040518082815260200191505060405180910390a2613169868686610bfa565b506000831180156131a75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131b9576131b7868385610bfa565b505b505050505050565b60006338980f8260e01b8888888888888860405160200180897bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020018873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001868152602001858152602001848152602001837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200180602001828103825283818151815260200191508051906020019080838360005b838110156133135780820151818401526020810190506132f8565b50505050905090810190601f1680156133405780820380516001836020036101000a031916815260200191505b509950505050505050505050604051602081830303815290604052805190602001209050979650505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61341e60008383613536565b61343381600254612b0990919063ffffffff16565b60028190555061348a816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b0990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f6e6c79206f776e65722063616e207472616e7366657220746865206f776e65727368697045524332303a20617070726f766520746f20746865207a65726f2061646472657373496e76616c69642073697a65206f6620726563697069656e74737c616d6f756e7445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545434453413a20696e76616c6964207369676e6174757265202773272076616c756545434453413a20696e76616c6964207369676e6174757265202776272076616c756545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c38dda79dd3b74c601fc52412b6718d25a2e000e4dd62d3184d9f6b2b44cf28064736f6c63430006020033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d714610926578063a9059cbb1461098c578063dd62ed3e146109f2578063e467f7e014610a6a578063f2fde38b14610bb657610116565b806370a082311461060f5780638da5cb5b146106675780639378f7a4146106b157806395d89b41146108a357610116565b806323b872dd116100e957806323b872dd146102a8578063313ce5671461032e57806339509351146103525780633c4461be146103b8578063685e9960146104de57610116565b80630175b22f1461011b57806306fdde03146101a1578063095ea7b31461022457806318160ddd1461028a575b600080fd5b6101876004803603606081101561013157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bfa565b604051808215151515815260200191505060405180910390f35b6101a9610d07565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101e95780820151818401526020810190506101ce565b50505050905090810190601f1680156102165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102706004803603604081101561023a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610da9565b604051808215151515815260200191505060405180910390f35b610292610dc7565b6040518082815260200191505060405180910390f35b610314600480360360608110156102be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610dd1565b604051808215151515815260200191505060405180910390f35b610336610eaa565b604051808260ff1660ff16815260200191505060405180910390f35b61039e6004803603604081101561036857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ec1565b604051808215151515815260200191505060405180910390f35b6104c4600480360360808110156103ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291908035906020019064010000000081111561043e57600080fd5b82018360208201111561045057600080fd5b8035906020019184600183028401116401000000008311171561047257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050610f74565b604051808215151515815260200191505060405180910390f35b6105f5600480360360c08110156104f457600080fd5b810190808035906020019064010000000081111561051157600080fd5b82018360208201111561052357600080fd5b8035906020019184600183028401116401000000008311171561054557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291908035906020019092919050505061141b565b604051808215151515815260200191505060405180910390f35b6106516004803603602081101561062557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061178d565b6040518082815260200191505060405180910390f35b61066f6117d5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61088960048036036101008110156106c857600080fd5b81019080803590602001906401000000008111156106e557600080fd5b8201836020820111156106f757600080fd5b8035906020019184600183028401116401000000008311171561071957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001909291908035906020019092919080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291908035906020019064010000000081111561080357600080fd5b82018360208201111561081557600080fd5b8035906020019184600183028401116401000000008311171561083757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506117fb565b604051808215151515815260200191505060405180910390f35b6108ab611ec0565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108eb5780820151818401526020810190506108d0565b50505050905090810190601f1680156109185780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109726004803603604081101561093c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611f62565b604051808215151515815260200191505060405180910390f35b6109d8600480360360408110156109a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061202f565b604051808215151515815260200191505060405180910390f35b610a5460048036036040811015610a0857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061204d565b6040518082815260200191505060405180910390f35b610bb460048036036040811015610a8057600080fd5b8101908080359060200190640100000000811115610a9d57600080fd5b820183602082011115610aaf57600080fd5b80359060200191846020830284011164010000000083111715610ad157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610b3157600080fd5b820183602082011115610b4357600080fd5b80359060200191846020830284011164010000000083111715610b6557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192905050506120d4565b005b610bf860048036036020811015610bcc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612392565b005b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f4163636573732064656e6965640000000000000000000000000000000000000081525060200191505060405180910390fd5b610cca84848461253f565b6000610cd6338661204d565b90506000610ced848361280090919063ffffffff16565b9050610cfa86338361284a565b6001925050509392505050565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d9f5780601f10610d7457610100808354040283529160200191610d9f565b820191906000526020600020905b815481529060010190602001808311610d8257829003601f168201915b5050505050905090565b6000610dbd610db6612a41565b848461284a565b6001905092915050565b6000600254905090565b6000610dde84848461253f565b610e9f84610dea612a41565b610e9a8560405180606001604052806028815260200161363160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e50612a41565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a499092919063ffffffff16565b61284a565b600190509392505050565b6000600560009054906101000a900460ff16905090565b6000610f6a610ece612a41565b84610f658560016000610edf612a41565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b0990919063ffffffff16565b61284a565b6001905092915050565b6000610f808585612b91565b610ff2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f496e76616c6964207472616e736665722066726f6d2073656e6465720000000081525060200191505060405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fdd3e0c228b64b39b4fe47dda02dba02d084503cb9a5692cb36a09c225376292786868660405180848152602001837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200180602001828103825283818151815260200191508051906020019080838360005b838110156110ce5780820151818401526020810190506110b3565b50505050905090810190601f1680156110fb5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a361111385612bab565b611185576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f41646472657373206973206e6f7420636f6e747261637400000000000000000081525060200191505060405180910390fd5b60008573ffffffffffffffffffffffffffffffffffffffff16843387604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050846040516020018083805190602001908083835b602083106112785780518252602082019150602081019050602083039250611255565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106112c957805182526020820191506020810190506020830392506112a6565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040526040518082805190602001908083835b60208310611331578051825260208201915060208101905060208303925061130e565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611393576040519150601f19603f3d011682016040523d82523d6000602084013e611398565b606091505b505090508061140f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f5472616e7366657220756e73756363657366756c6c790000000000000000000081525060200191505060405180910390fd5b80915050949350505050565b60006006876040518082805190602001908083835b602083106114535780518252602082019150602081019050602083039250611430565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060009054906101000a900460ff1615611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f5369676e617475726520616c726561647920757365640000000000000000000081525060200191505060405180910390fd5b60006115163087878787612bf6565b90506000611524828a612cef565b90508773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c69642073656e64657231000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561166a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f496e76616c69642073656e64657220616464726573730000000000000000000081525060200191505060405180910390fd5b6116778188888833612f8a565b600160068a6040518082805190602001908083835b602083106116af578051825260208201915060208101905060208303925061168c565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fec5a73fd1f178be20c1bca1b406cbf4b5c20d833b66e582fc122fb4baa0fc2a48989604051808381526020018281526020019250505060405180910390a46001925050509695505050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006006896040518082805190602001908083835b602083106118335780518252602082019150602081019050602083039250611810565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060009054906101000a900460ff16156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f5369676e617475726520616c726561647920757365640000000000000000000081525060200191505060405180910390fd5b60006118f8308989898989896131c1565b90506000611906828c612cef565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f496e76616c69642073656e64657200000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f496e76616c69642073656e64657220616464726573730000000000000000000081525060200191505060405180910390fd5b611a59818a8a8a33612f8a565b600160068c6040518082805190602001908083835b60208310611a915780518252602082019150602081019050602083039250611a6e565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f95f8bb1059e9b9dc861fa51f50b9143ef0101152bce82dd2760584849223d1f28b8b8a8a60405180858152602001848152602001837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611bd5578082015181840152602081019050611bba565b50505050905090810190601f168015611c025780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a4611c1b89612bab565b611c8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f41646472657373206973206e6f7420636f6e747261637400000000000000000081525060200191505060405180910390fd5b60008973ffffffffffffffffffffffffffffffffffffffff1686838b604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050866040516020018083805190602001908083835b60208310611d805780518252602082019150602081019050602083039250611d5d565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310611dd15780518252602082019150602081019050602083039250611dae565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040526040518082805190602001908083835b60208310611e395780518252602082019150602081019050602083039250611e16565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611e9b576040519150601f19603f3d011682016040523d82523d6000602084013e611ea0565b606091505b5050905080611eae57600080fd5b80935050505098975050505050505050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f585780601f10611f2d57610100808354040283529160200191611f58565b820191906000526020600020905b815481529060010190602001808311611f3b57829003601f168201915b5050505050905090565b6000612025611f6f612a41565b84612020856040518060600160405280602581526020016136a26025913960016000611f99612a41565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a499092919063ffffffff16565b61284a565b6001905092915050565b600061204361203c612a41565b848461253f565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f4163636573732064656e6965640000000000000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f4f6e6c79206f776e65722063616e20616464206e657720746f6b656e7300000081525060200191505060405180910390fd5b80518251146122b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806135a66021913960400191505060405180910390fd5b600a8251111561232c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f4f6e6c7920616c6c6f77206d696e7420313020726563697069656e747300000081525060200191505060405180910390fd5b60008090505b82518160ff16101561238d576000838260ff168151811061234f57fe5b602002602001015190506000838360ff168151811061236a57fe5b6020026020010151905061237e828261336f565b50508080600101915050612332565b505050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f4163636573732064656e6965640000000000000000000000000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061355f6025913960400191505060405180910390fd5b80600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806136596025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561264b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061353c6023913960400191505060405180910390fd5b612656838383613536565b6126c1816040518060600160405280602681526020016135c7602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a499092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612754816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b0990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600061284283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612a49565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061367e6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612956576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806135846022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600033905090565b6000838311158290612af6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612abb578082015181840152602081019050612aa0565b50505050905090810190601f168015612ae85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015612b87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000612ba1338484600080612f8a565b6001905092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015612bed57506000801b8214155b92505050919050565b60006315420b7160e01b868686868660405160200180877bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020018673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001848152602001838152602001828152602001965050505050505060405160208183030381529060405280519060200120905095945050505050565b60006041825114612d68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45434453413a20696e76616c6964207369676e6174757265206c656e6774680081525060200191505060405180910390fd5b60008060006020850151925060408501519150606085015160001a90507f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115612e01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806135ed6022913960400191505060405180910390fd5b601b8160ff1614158015612e195750601c8160ff1614155b15612e6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061360f6022913960400191505060405180910390fd5b600060018783868660405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015612ece573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f7d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f45434453413a20696e76616c6964207369676e6174757265000000000000000081525060200191505060405180910390fd5b8094505050505092915050565b8473ffffffffffffffffffffffffffffffffffffffff167f1a52b79939f1eb10a3119287e9a1a0697fe869450dc019cc7bd3ab983b79ef16846040518082815260200191505060405180910390a2600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561307b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f496e76616c696420726563697069656e7420616464726573730000000000000081525060200191505060405180910390fd5b60006130908385612b0990919063ffffffff16565b905061309b8661178d565b811115613110576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f496e73756666696369656e742066756e6473000000000000000000000000000081525060200191505060405180910390fd5b8573ffffffffffffffffffffffffffffffffffffffff167f1a52b79939f1eb10a3119287e9a1a0697fe869450dc019cc7bd3ab983b79ef16856040518082815260200191505060405180910390a2613169868686610bfa565b506000831180156131a75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131b9576131b7868385610bfa565b505b505050505050565b60006338980f8260e01b8888888888888860405160200180897bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020018873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001868152602001858152602001848152602001837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200180602001828103825283818151815260200191508051906020019080838360005b838110156133135780820151818401526020810190506132f8565b50505050905090810190601f1680156133405780820380516001836020036101000a031916815260200191505b509950505050505050505050604051602081830303815290604052805190602001209050979650505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61341e60008383613536565b61343381600254612b0990919063ffffffff16565b60028190555061348a816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b0990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f6e6c79206f776e65722063616e207472616e7366657220746865206f776e65727368697045524332303a20617070726f766520746f20746865207a65726f2061646472657373496e76616c69642073697a65206f6620726563697069656e74737c616d6f756e7445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545434453413a20696e76616c6964207369676e6174757265202773272076616c756545434453413a20696e76616c6964207369676e6174757265202776272076616c756545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c38dda79dd3b74c601fc52412b6718d25a2e000e4dd62d3184d9f6b2b44cf28064736f6c63430006020033
Deployed Bytecode Sourcemap
37745:108:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37745:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31884:353;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31884:353:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18014:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;18014:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20120:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20120:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19089:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20763:321;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20763:321:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18941:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21493:218;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21493:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32524:590;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;32524:590:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;32524:590:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;32524:590:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;32524:590:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;32524:590:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33166:1008;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;33166:1008:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;33166:1008:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;33166:1008:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;33166:1008:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;33166:1008:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19252:119;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19252:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29451:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;34184:1430;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;34184:1430:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;34184:1430:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34184:1430:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;34184:1430:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;34184:1430:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;34184:1430:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;34184:1430:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;34184:1430:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;34184:1430:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18216:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;18216:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22214:269;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22214:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19584:175;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19584:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19822:151;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19822:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30258:541;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30258:541:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;30258:541:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;30258:541:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;30258:541:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;30258:541:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;30258:541:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;30258:541:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;30258:541:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;30258:541:0;;;;;;;;;;;;;;;:::i;:::-;;29998:178;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29998:178:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;31884:353;31976:4;37505:5;;;;;;;;;;;37491:19;;:10;:19;;;37483:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31993:27:::1;32003:4;32009:2;32013:6;31993:9;:27::i;:::-;32077:15;32094:27;32104:10;32116:4;32094:9;:27::i;:::-;32077:44;;32132:12;32145:19;32157:6;32145:7;:11;;:19;;;;:::i;:::-;32132:32;;32175;32184:4;32190:10;32202:4;32175:8;:32::i;:::-;32225:4;32218:11;;;;31884:353:::0;;;;;:::o;18014:83::-;18051:13;18084:5;18077:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18014:83;:::o;20120:169::-;20203:4;20220:39;20229:12;:10;:12::i;:::-;20243:7;20252:6;20220:8;:39::i;:::-;20277:4;20270:11;;20120:169;;;;:::o;19089:100::-;19142:7;19169:12;;19162:19;;19089:100;:::o;20763:321::-;20869:4;20886:36;20896:6;20904:9;20915:6;20886:9;:36::i;:::-;20933:121;20942:6;20950:12;:10;:12::i;:::-;20964:89;21002:6;20964:89;;;;;;;;;;;;;;;;;:11;:19;20976:6;20964:19;;;;;;;;;;;;;;;:33;20984:12;:10;:12::i;:::-;20964:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;20933:8;:121::i;:::-;21072:4;21065:11;;20763:321;;;;;:::o;18941:83::-;18982:5;19007:9;;;;;;;;;;;19000:16;;18941:83;:::o;21493:218::-;21581:4;21598:83;21607:12;:10;:12::i;:::-;21621:7;21630:50;21669:10;21630:11;:25;21642:12;:10;:12::i;:::-;21630:25;;;;;;;;;;;;;;;:34;21656:7;21630:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;21598:8;:83::i;:::-;21699:4;21692:11;;21493:218;;;;:::o;32524:590::-;32643:4;32668:31;32687:3;32692:6;32668:18;:31::i;:::-;32660:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32777:3;32749:60;;32765:10;32749:60;;;32782:6;32790:11;32803:5;32749:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;32749:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32856:23;32875:3;32856:18;:23::i;:::-;32848:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32920:12;32938:3;:8;;32987:11;33000:10;33012:6;32964:55;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;32964:55:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;32964:55:0;33021:5;32947:80;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;32947:80:0;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;32947:80:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;32947:80:0;;;32938:90;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;32938:90:0;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;32919:109:0;;;33047:7;33039:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33099:7;33092:14;;;32524:590;;;;;;:::o;33166:1008::-;33317:4;33345:10;33356;33345:22;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;33345:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33344:23;33336:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33406:16;33425:66;33458:4;33465:3;33470:6;33478:4;33484:6;33425:24;:66::i;:::-;33406:85;;33504:12;33519:35;33533:8;33543:10;33519:13;:35::i;:::-;33504:50;;33879:5;33871:13;;:4;:13;;;33863:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33938:1;33922:18;;:4;:18;;;;33914:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33983:47;33994:4;34000:3;34005:6;34013:4;34019:10;33983;:47::i;:::-;34066:4;34041:10;34052;34041:22;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;34041:22:0;;;;;;;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34119:10;34090:54;;34114:3;34090:54;;34108:4;34090:54;;;34131:6;34139:4;34090:54;;;;;;;;;;;;;;;;;;;;;;;;34162:4;34155:11;;;;33166:1008;;;;;;;;:::o;19252:119::-;19318:7;19345:9;:18;19355:7;19345:18;;;;;;;;;;;;;;;;19338:25;;19252:119;;;:::o;29451:20::-;;;;;;;;;;;;;:::o;34184:1430::-;34391:4;34419:10;34430;34419:22;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;34419:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34418:23;34410:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34480:16;34499:93;34539:4;34546:3;34551:6;34559:4;34565:6;34573:11;34586:5;34499:31;:93::i;:::-;34480:112;;34603:12;34618:35;34632:8;34642:10;34618:13;:35::i;:::-;34603:50;;35001:5;34993:13;;:4;:13;;;34985:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35059:1;35043:18;;:4;:18;;;;35035:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35100:47;35111:4;35117:3;35122:6;35130:4;35136:10;35100;:47::i;:::-;35183:4;35158:10;35169;35158:22;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;35158:22:0;;;;;;;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35243:10;35207:81;;35238:3;35207:81;;35232:4;35207:81;;;35255:6;35263:4;35269:11;35282:5;35207:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;35207:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35335:23;35354:3;35335:18;:23::i;:::-;35327:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35452:12;35470:3;:8;;35519:11;35532:4;35538:6;35496:49;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;35496::0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;35496:49:0;35547:5;35479:74;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;35479:74:0;;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;35479:74:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;35479:74:0;;;35470:84;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;35470:84:0;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;35451:103:0;;;35573:7;35565:16;;;;;;35599:7;35592:14;;;;;34184:1430;;;;;;;;;;:::o;18216:87::-;18255:13;18288:7;18281:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18216:87;:::o;22214:269::-;22307:4;22324:129;22333:12;:10;:12::i;:::-;22347:7;22356:96;22395:15;22356:96;;;;;;;;;;;;;;;;;:11;:25;22368:12;:10;:12::i;:::-;22356:25;;;;;;;;;;;;;;;:34;22382:7;22356:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;22324:8;:129::i;:::-;22471:4;22464:11;;22214:269;;;;:::o;19584:175::-;19670:4;19687:42;19697:12;:10;:12::i;:::-;19711:9;19722:6;19687:9;:42::i;:::-;19747:4;19740:11;;19584:175;;;;:::o;19822:151::-;19911:7;19938:11;:18;19950:5;19938:18;;;;;;;;;;;;;;;:27;19957:7;19938:27;;;;;;;;;;;;;;;;19931:34;;19822:151;;;;:::o;30258:541::-;37505:5;;;;;;;;;;;37491:19;;:10;:19;;;37483:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30375:10:::1;30366:19;;:5;;;;;;;;;;;:19;;;30358:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;30459:8;:15;30437:11;:18;:37;30429:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30552:2;30530:11;:18;:24;;30522:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;30605:7;30615:1:::0;30605:11:::1;;30600:192;30622:11;:18;30618:1;:22;;;30600:192;;;30662:17;30682:11;30694:1;30682:14;;;;;;;;;;;;;;;;30662:34;;30711:14;30728:8;30737:1;30728:11;;;;;;;;;;;;;;;;30711:28;;30756:24;30762:9;30773:6;30756:5;:24::i;:::-;30600:192;;30642:3;;;;;;;30600:192;;;;30258:541:::0;;:::o;29998:178::-;37505:5;;;;;;;;;;;37491:19;;:10;:19;;;37483:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30089:10:::1;30080:19;;:5;;;;;;;;;;;:19;;;30072:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30159:9;30151:5;;:17;;;;;;;;;;;;;;;;;;29998:178:::0;:::o;22973:539::-;23097:1;23079:20;;:6;:20;;;;23071:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23181:1;23160:23;;:9;:23;;;;23152:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23236:47;23257:6;23265:9;23276:6;23236:20;:47::i;:::-;23316:71;23338:6;23316:71;;;;;;;;;;;;;;;;;:9;:17;23326:6;23316:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;23296:9;:17;23306:6;23296:17;;;;;;;;;;;;;;;:91;;;;23421:32;23446:6;23421:9;:20;23431:9;23421:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;23398:9;:20;23408:9;23398:20;;;;;;;;;;;;;;;:55;;;;23486:9;23469:35;;23478:6;23469:35;;;23497:6;23469:35;;;;;;;;;;;;;;;;;;22973:539;;;:::o;1369:136::-;1427:7;1454:43;1458:1;1461;1454:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1447:50;;1369:136;;;;:::o;25361:346::-;25480:1;25463:19;;:5;:19;;;;25455:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25561:1;25542:21;;:7;:21;;;;25534:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25645:6;25615:11;:18;25627:5;25615:18;;;;;;;;;;;;;;;:27;25634:7;25615:27;;;;;;;;;;;;;;;:36;;;;25683:7;25667:32;;25676:5;25667:32;;;25692:6;25667:32;;;;;;;;;;;;;;;;;;25361:346;;;:::o;12681:106::-;12734:15;12769:10;12762:17;;12681:106;:::o;1800:192::-;1886:7;1919:1;1914;:6;;1922:12;1906:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1906:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1946:9;1962:1;1958;:5;1946:17;;1983:1;1976:8;;;1800:192;;;;;:::o;913:181::-;971:7;991:9;1007:1;1003;:5;991:17;;1032:1;1027;:6;;1019:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1085:1;1078:8;;;913:181;;;;:::o;37272:171::-;37346:4;37363:50;37374:10;37386:3;37391:6;37399:1;37410;37363:10;:50::i;:::-;37431:4;37424:11;;37272:171;;;;:::o;9919:619::-;9979:4;10241:16;10268:19;10290:66;10268:88;;;;10459:7;10447:20;10435:32;;10499:11;10487:8;:23;;:42;;;;;10526:3;10514:15;;:8;:15;;10487:42;10479:51;;;;9919:619;;;:::o;36921:341::-;37058:7;37206:10;37199:18;;37219:6;37227:3;37232:6;37240:4;37246:6;37188:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;37188:65:0;;;37178:76;;;;;;37171:83;;36921:341;;;;;;;:::o;6497:2110::-;6575:7;6658:2;6638:9;:16;:22;6634:96;;6677:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6634:96;6799:9;6819;6839:7;7091:4;7080:9;7076:20;7070:27;7065:32;;7137:4;7126:9;7122:20;7116:27;7111:32;;7191:4;7180:9;7176:20;7170:27;7167:1;7162:36;7157:41;;8121:66;8116:1;8108:10;;:79;8104:156;;;8204:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8104:156;8281:2;8276:1;:7;;;;:18;;;;;8292:2;8287:1;:7;;;;8276:18;8272:95;;;8311:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8272:95;8464:14;8481:24;8491:4;8497:1;8500;8503;8481:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8481:24:0;;;;;;;;8464:41;;8542:1;8524:20;;:6;:20;;;;8516:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8593:6;8586:13;;;;;;6497:2110;;;;:::o;30817:582::-;30947:5;30941:21;;;30955:6;30941:21;;;;;;;;;;;;;;;;;;30998:1;30983:17;;:3;:17;;;;30975:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31042:13;31058:16;31069:4;31058:6;:10;;:16;;;;:::i;:::-;31042:32;;31102:16;31112:5;31102:9;:16::i;:::-;31093:5;:25;;31085:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31166:5;31160:20;;;31173:6;31160:20;;;;;;;;;;;;;;;;;;31191:32;31206:5;31212:3;31216:6;31191:14;:32::i;:::-;;31289:1;31282:4;:8;:37;;;;;31317:1;31294:25;;:11;:25;;;;31282:37;31279:109;;;31336:38;31351:5;31357:11;31369:4;31336:14;:38::i;:::-;;31279:109;30817:582;;;;;;:::o;36481:432::-;36669:7;36837:10;36830:18;;36850:6;36858:3;36863:6;36871:4;36877:6;36885:11;36898:5;36819:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;36819:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;36819:85:0;;;36809:96;;;;;;36802:103;;36481:432;;;;;;;;;:::o;23793:378::-;23896:1;23877:21;;:7;:21;;;;23869:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23947:49;23976:1;23980:7;23989:6;23947:20;:49::i;:::-;24024:24;24041:6;24024:12;;:16;;:24;;;;:::i;:::-;24009:12;:39;;;;24080:30;24103:6;24080:9;:18;24090:7;24080:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;24059:9;:18;24069:7;24059:18;;;;;;;;;;;;;;;:51;;;;24147:7;24126:37;;24143:1;24126:37;;;24156:6;24126:37;;;;;;;;;;;;;;;;;;23793:378;;:::o;26732:92::-;;;;:::o
Swarm Source
ipfs://c38dda79dd3b74c601fc52412b6718d25a2e000e4dd62d3184d9f6b2b44cf280
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.