Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 121 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 416374704 | 46 days ago | IN | 0 ETH | 0.00000053 | ||||
| Approve | 392612113 | 115 days ago | IN | 0 ETH | 0.00000053 | ||||
| Transfer From | 213022581 | 636 days ago | IN | 0 ETH | 0.00000039 | ||||
| Permit | 213017152 | 636 days ago | IN | 0 ETH | 0.00000105 | ||||
| Approve | 203688007 | 664 days ago | IN | 0 ETH | 0.00000123 | ||||
| Approve | 166087539 | 776 days ago | IN | 0 ETH | 0.00004587 | ||||
| Approve | 138118323 | 863 days ago | IN | 0 ETH | 0.00003215 | ||||
| Approve | 123240519 | 910 days ago | IN | 0 ETH | 0.00002832 | ||||
| Approve | 118343786 | 925 days ago | IN | 0 ETH | 0.0000323 | ||||
| Initialize | 117246203 | 928 days ago | IN | 0 ETH | 0.00009936 | ||||
| Approve | 110224313 | 950 days ago | IN | 0 ETH | 0.00004203 | ||||
| Approve | 109922950 | 950 days ago | IN | 0 ETH | 0.00004162 | ||||
| Increase Allowan... | 109922157 | 950 days ago | IN | 0 ETH | 0.00004496 | ||||
| Approve | 109916042 | 951 days ago | IN | 0 ETH | 0.00005794 | ||||
| Approve | 109915770 | 951 days ago | IN | 0 ETH | 0.00005591 | ||||
| Approve | 109915536 | 951 days ago | IN | 0 ETH | 0.00005792 | ||||
| Approve | 109915088 | 951 days ago | IN | 0 ETH | 0.00005212 | ||||
| Approve | 109914787 | 951 days ago | IN | 0 ETH | 0.00005212 | ||||
| Approve | 107482729 | 958 days ago | IN | 0 ETH | 0.00006029 | ||||
| Approve | 104357739 | 967 days ago | IN | 0 ETH | 0.00004649 | ||||
| Increase Allowan... | 103449273 | 970 days ago | IN | 0 ETH | 0.00003165 | ||||
| Increase Allowan... | 103448899 | 970 days ago | IN | 0 ETH | 0.00002994 | ||||
| Increase Allowan... | 103448595 | 970 days ago | IN | 0 ETH | 0.0000315 | ||||
| Approve | 102897259 | 971 days ago | IN | 0 ETH | 0.00003128 | ||||
| Approve | 96837794 | 989 days ago | IN | 0 ETH | 0.00006295 |
Latest 25 internal transactions (View All)
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086670 | 1062 days ago | 0 ETH | ||||
| 72086664 | 1062 days ago | 0 ETH | ||||
| 72086664 | 1062 days ago | 0 ETH | ||||
| 72086664 | 1062 days ago | 0 ETH | ||||
| 72086664 | 1062 days ago | 0 ETH | ||||
| 72086662 | 1062 days ago | 0 ETH | ||||
| 72086662 | 1062 days ago | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ArbFiatToken
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
// Copyright (c) 2021 Coinbase, Inc.
pragma solidity 0.6.12;
import { StandardArbERC20 } from "./arbitrum/arbitrum/StandardArbERC20.sol";
import { Ownable } from "./lib/Ownable.sol";
import { Pausable } from "./lib/Pausable.sol";
import { Blacklistable } from "./lib/Blacklistable.sol";
contract ArbFiatToken is StandardArbERC20, Ownable, Pausable, Blacklistable {
function bridgeInit(address _l1Address, bytes memory _data) external {
revert("DO_NOT_USE");
}
function initialize(
address _gatewayAddress,
address _l1Address,
address owner,
string memory name,
string memory symbol,
uint8 decimals
) external {
gatewayAddress = _gatewayAddress;
l1Address = _l1Address;
_changeOwner(owner);
super.initialize(name, symbol, decimals);
}
function bridgeMint(address account, uint256 amount)
public
override
onlyGateway
whenNotPaused
notBlacklisted(account)
{
super.bridgeMint(account, amount);
}
function bridgeBurn(address account, uint256 amount)
public
override
onlyGateway
whenNotPaused
notBlacklisted(account)
{
super.bridgeBurn(account, amount);
}
function approve(address spender, uint256 amount)
public
override
whenNotPaused
notBlacklisted(msg.sender)
notBlacklisted(spender)
returns (bool)
{
return super.approve(spender, amount);
}
function increaseAllowance(address spender, uint256 addedValue)
public
override
whenNotPaused
notBlacklisted(msg.sender)
notBlacklisted(spender)
returns (bool)
{
return super.increaseAllowance(spender, addedValue);
}
function decreaseAllowance(address spender, uint256 subtractedValue)
public
override
whenNotPaused
notBlacklisted(msg.sender)
notBlacklisted(spender)
returns (bool)
{
return super.decreaseAllowance(spender, subtractedValue);
}
function transfer(address recipient, uint256 amount)
public
override
whenNotPaused
notBlacklisted(msg.sender)
notBlacklisted(recipient)
returns (bool)
{
return super.transfer(recipient, amount);
}
function transferFrom(
address sender,
address recipient,
uint256 amount
)
public
override
whenNotPaused
notBlacklisted(msg.sender)
notBlacklisted(sender)
notBlacklisted(recipient)
returns (bool)
{
return super.transferFrom(sender, recipient, amount);
}
function transferAndCall(
address to,
uint256 value,
bytes memory data
)
public
override
whenNotPaused
notBlacklisted(msg.sender)
notBlacklisted(to)
returns (bool success)
{
return super.transferAndCall(to, value, data);
}
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
)
public
override
whenNotPaused
notBlacklisted(msg.sender)
notBlacklisted(owner)
notBlacklisted(spender)
{
super.permit(owner, spender, value, deadline, v, r, s);
}
}// SPDX-License-Identifier: Apache-2.0
// Modifications:
// - No longer Cloneable
// - Remove bridgeInit function
// - Make bridge{Mint,Burn} virtual and public
/*
* Copyright 2020, Offchain Labs, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
pragma solidity ^0.6.11;
import "../libraries/aeERC20.sol";
import "./IArbToken.sol";
/**
* @title Standard (i.e., non-custom) contract deployed by L2Gateway.sol as L2 ERC20. Includes standard ERC20 interface plus additional methods for deposits/withdraws
*/
contract StandardArbERC20 is aeERC20, IArbToken {
address public gatewayAddress;
address public override l1Address;
modifier onlyGateway {
require(msg.sender == address(gatewayAddress), "ONLY_GATEWAY");
_;
}
/**
* @notice Mint tokens on L2. Callable path is L1Gateway depositToken (which handles L1 escrow), which triggers L2Gateway, which calls this
* @param account recipient of tokens
* @param amount amount of tokens minted
*/
function bridgeMint(address account, uint256 amount) public override virtual onlyGateway {
_mint(account, amount);
}
/**
* @notice Burn tokens on L2.
* @dev only the token bridge can call this
* @param account owner of tokens
* @param amount amount of tokens burnt
*/
function bridgeBurn(address account, uint256 amount) public override virtual onlyGateway {
_burn(account, amount);
}
}// SPDX-License-Identifier: MIT
// Copyright (c) 2021 Coinbase, Inc.
pragma solidity 0.6.12;
/**
* @notice Ownable
* @dev Similar to OpenZeppelin's Ownable.
* Differences:
* - An internally callable _changeOwner() function
* - No renounceOwnership() function
* - No constructor
* - No GSN support
*/
abstract contract Ownable {
address internal _owner;
/**
* @notice Emitted when the owner changes.
* @param previousOwner Previous owner's address
* @param newOwner New owner's address
*/
event OwnerChanged(address indexed previousOwner, address indexed newOwner);
/**
* @notice Throw if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == msg.sender, "caller is not the owner");
_;
}
/**
* @notice Return the address of the current owner.
* @return Owner's address
*/
function owner() external view returns (address) {
return _owner;
}
/**
* @notice Change the owner. Can only be called by the current owner.
* @param account New owner's address
*/
function changeOwner(address account) external onlyOwner {
_changeOwner(account);
}
/**
* @notice Internal function to change the owner.
* @param account New owner's address
*/
function _changeOwner(address account) internal {
require(account != address(0), "account is the zero address");
require(account != address(this), "account is this contract");
emit OwnerChanged(_owner, account);
_owner = account;
}
}// SPDX-License-Identifier: MIT
// Copyright (c) 2021 Coinbase, Inc.
pragma solidity 0.6.12;
import { Ownable } from "./Ownable.sol";
/**
* @notice Pausable
* @dev Similar to OpenZeppelin's Pausable.
* Differences:
* - Has the pauser role
* - External pause/unpause functions callable by the pauser
* - No constructor
* - No GSN support
*/
abstract contract Pausable is Ownable {
address private _pauser;
bool private _paused;
/**
* @notice Emitted when the pauser changes.
* @param previousPauser Previous pauser's address
* @param newPauser New pauser's address
*/
event PauserChanged(
address indexed previousPauser,
address indexed newPauser
);
/**
* @notice Emitted when the contract is paused.
* @param pauser Pauser's address
*/
event Paused(address pauser);
/**
* @notice Emitted when the contract is unpaused.
* @param pauser Pauser's address
*/
event Unpaused(address pauser);
/**
* @notice Callable only by the pauser.
*/
modifier onlyPauser() {
require(msg.sender == _pauser, "caller is not the pauser");
_;
}
/**
* @notice Callable only when the contract is not paused.
*/
modifier whenNotPaused() {
require(!_paused, "contract is paused");
_;
}
/**
* @notice Callable only when the contract is paused.
*/
modifier whenPaused() {
require(_paused, "contract is not paused");
_;
}
/**
* @notice Return the current pauser.
* @return Pauser's address
*/
function pauser() external view returns (address) {
return _pauser;
}
/**
* @notice Return whether the contract is paused.
* @return True if paused
*/
function paused() external view returns (bool) {
return _paused;
}
/**
* @notice Pause the contract.
*/
function pause() external onlyPauser {
_paused = true;
emit Paused(msg.sender);
}
/**
* @notice Unpause the contract.
*/
function unpause() external onlyPauser {
_paused = false;
emit Unpaused(msg.sender);
}
/**
* @notice Set a new pauser.
* @param account New pauser's address
*/
function setPauser(address account) external onlyOwner {
_setPauser(account);
}
/**
* @notice Initial function to set the pauser.
* @param account New pauser's address
*/
function _setPauser(address account) internal {
emit PauserChanged(_pauser, account);
_pauser = account;
}
}/**
* SPDX-License-Identifier: MIT
*
* Copyright (c) 2018-2020 CENTRE SECZ
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
pragma solidity 0.6.12;
import { Ownable } from "./Ownable.sol";
abstract contract Blacklistable is Ownable {
address internal _blacklister;
mapping(address => bool) internal _blacklisted;
event Blacklisted(address indexed account);
event UnBlacklisted(address indexed account);
event BlacklisterChanged(address indexed newBlacklister);
/**
* @notice Throw if called by any account other than the blacklister
*/
modifier onlyBlacklister() {
require(msg.sender == _blacklister, "caller is not the blacklister");
_;
}
/**
* @notice Throw if argument account is blacklisted
* @param account The address to check
*/
modifier notBlacklisted(address account) {
require(!_blacklisted[account], "account is blacklisted");
_;
}
/**
* @notice Blacklister address
* @return Address
*/
function blacklister() external view returns (address) {
return _blacklister;
}
/**
* @notice Check whether a given account is blacklisted
* @param account The address to check
*/
function isBlacklisted(address account) external view returns (bool) {
return _blacklisted[account];
}
/**
* @notice Add an account to blacklist
* @param account The address to blacklist
*/
function blacklist(address account) external onlyBlacklister {
_blacklisted[account] = true;
emit Blacklisted(account);
}
/**
* @notice Remove an account from blacklist
* @param account The address to remove from the blacklist
*/
function unBlacklist(address account) external onlyBlacklister {
_blacklisted[account] = false;
emit UnBlacklisted(account);
}
/**
* @notice Change the blacklister
* @param newBlacklister new blacklister's address
*/
function updateBlacklister(address newBlacklister) external onlyOwner {
require(
newBlacklister != address(0),
"new blacklister is the zero address"
);
_blacklister = newBlacklister;
emit BlacklisterChanged(_blacklister);
}
}// SPDX-License-Identifier: Apache-2.0
/*
* Copyright 2020, Offchain Labs, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
pragma solidity ^0.6.11;
import "@openzeppelin/contracts-upgradeable/drafts/ERC20PermitUpgradeable.sol";
import "./ERC677Token.sol";
/// @title Arbitrum extended ERC20
/// @notice The recommended ERC20 implementation for Layer 2 tokens
/// @dev This implements the ERC20 standard with extensions to improve UX (ERC677 & ERC2612)
contract aeERC20 is ERC20PermitUpgradeable, ERC677Token {
using AddressUpgradeable for address;
function initialize(
string memory name,
string memory symbol,
uint8 decimals
) public initializer {
__ERC20Permit_init(name);
__ERC20_init(name, symbol);
_setupDecimals(decimals);
}
}// SPDX-License-Identifier: Apache-2.0
/*
* Copyright 2020, Offchain Labs, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @title Minimum expected interface for L2 token that interacts with the L2 token bridge (this is the interface necessary
* for a custom token that interacts with the bridge, see TestArbCustomToken.sol for an example implementation).
*/
pragma solidity ^0.6.11;
interface IArbToken {
/**
* @notice should increase token supply by amount, and should (probably) only be callable by the L1 bridge.
*/
function bridgeMint(address account, uint256 amount) external;
/**
* @notice should decrease token supply by amount, and should (probably) only be callable by the L1 bridge.
*/
function bridgeBurn(address account, uint256 amount) external;
/**
* @return address of layer 1 token
*/
function l1Address() external view returns (address);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.5 <0.8.0;
import "../token/ERC20/ERC20Upgradeable.sol";
import "./IERC20PermitUpgradeable.sol";
import "../cryptography/ECDSAUpgradeable.sol";
import "../utils/CountersUpgradeable.sol";
import "./EIP712Upgradeable.sol";
import "../proxy/Initializable.sol";
/**
* @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* _Available since v3.4._
*/
abstract contract ERC20PermitUpgradeable is Initializable, ERC20Upgradeable, IERC20PermitUpgradeable, EIP712Upgradeable {
using CountersUpgradeable for CountersUpgradeable.Counter;
mapping (address => CountersUpgradeable.Counter) private _nonces;
// solhint-disable-next-line var-name-mixedcase
bytes32 private _PERMIT_TYPEHASH;
/**
* @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
*
* It's a good idea to use the same `name` that is defined as the ERC20 token name.
*/
function __ERC20Permit_init(string memory name) internal initializer {
__Context_init_unchained();
__EIP712_init_unchained(name, "1");
__ERC20Permit_init_unchained(name);
}
function __ERC20Permit_init_unchained(string memory name) internal initializer {
_PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
}
/**
* @dev See {IERC20Permit-permit}.
*/
function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public virtual override {
// solhint-disable-next-line not-rely-on-time
require(block.timestamp <= deadline, "ERC20Permit: expired deadline");
bytes32 structHash = keccak256(
abi.encode(
_PERMIT_TYPEHASH,
owner,
spender,
value,
_nonces[owner].current(),
deadline
)
);
bytes32 hash = _hashTypedDataV4(structHash);
address signer = ECDSAUpgradeable.recover(hash, v, r, s);
require(signer == owner, "ERC20Permit: invalid signature");
_nonces[owner].increment();
_approve(owner, spender, value);
}
/**
* @dev See {IERC20Permit-nonces}.
*/
function nonces(address owner) public view override returns (uint256) {
return _nonces[owner].current();
}
/**
* @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view override returns (bytes32) {
return _domainSeparatorV4();
}
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity >0.6.0 <0.8.0;
import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";
import "./IERC677.sol";
// Implementation from https://github.com/smartcontractkit/LinkToken/blob/master/contracts/v0.6/ERC677Token.sol
abstract contract ERC677Token is ERC20Upgradeable, IERC677 {
/**
* @dev transfer token to a contract address with additional data if the recipient is a contact.
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
* @param _data The extra data to be passed to the receiving contract.
*/
function transferAndCall(
address _to,
uint256 _value,
bytes memory _data
) public virtual override returns (bool success) {
super.transfer(_to, _value);
emit Transfer(msg.sender, _to, _value, _data);
if (isContract(_to)) {
contractFallback(_to, _value, _data);
}
return true;
}
// PRIVATE
function contractFallback(
address _to,
uint256 _value,
bytes memory _data
) private {
IERC677Receiver receiver = IERC677Receiver(_to);
receiver.onTokenTransfer(msg.sender, _value, _data);
}
function isContract(address _addr) private view returns (bool hasCode) {
uint256 length;
assembly {
length := extcodesize(_addr)
}
return length > 0;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../../utils/ContextUpgradeable.sol";
import "./IERC20Upgradeable.sol";
import "../../math/SafeMathUpgradeable.sol";
import "../../proxy/Initializable.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable {
using SafeMathUpgradeable for uint256;
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.
*/
function __ERC20_init(string memory name_, string memory symbol_) internal initializer {
__Context_init_unchained();
__ERC20_init_unchained(name_, symbol_);
}
function __ERC20_init_unchained(string memory name_, string memory symbol_) internal initializer {
_name = name_;
_symbol = symbol_;
_decimals = 18;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual 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 virtual returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_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 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 virtual {
_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 { }
uint256[44] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20PermitUpgradeable {
/**
* @dev Sets `value` as the allowance of `spender` over `owner`'s tokens,
* given `owner`'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for `permit`, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSAUpgradeable {
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
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)))
}
return recover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover-bytes32-bytes-} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value");
require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
require(signer != address(0), "ECDSA: invalid signature");
return signer;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* replicates the behavior of the
* https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign[`eth_sign`]
* JSON-RPC method.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../math/SafeMathUpgradeable.sol";
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
* Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath}
* overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
* directly accessed.
*/
library CountersUpgradeable {
using SafeMathUpgradeable for uint256;
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
// The {SafeMath} overflow check can be skipped here, see the comment at the top
counter._value += 1;
}
function decrement(Counter storage counter) internal {
counter._value = counter._value.sub(1);
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../proxy/Initializable.sol";
/**
* @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
*
* The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
* thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
* they need in their contracts using a combination of `abi.encode` and `keccak256`.
*
* This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
* ({_hashTypedDataV4}).
*
* The implementation of the domain separator was designed to be as efficient as possible while still properly updating
* the chain id to protect against replay attacks on an eventual fork of the chain.
*
* NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
*
* _Available since v3.4._
*/
abstract contract EIP712Upgradeable is Initializable {
/* solhint-disable var-name-mixedcase */
bytes32 private _HASHED_NAME;
bytes32 private _HASHED_VERSION;
bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
/* solhint-enable var-name-mixedcase */
/**
* @dev Initializes the domain separator and parameter caches.
*
* The meaning of `name` and `version` is specified in
* https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
*
* - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
* - `version`: the current major version of the signing domain.
*
* NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
* contract upgrade].
*/
function __EIP712_init(string memory name, string memory version) internal initializer {
__EIP712_init_unchained(name, version);
}
function __EIP712_init_unchained(string memory name, string memory version) internal initializer {
bytes32 hashedName = keccak256(bytes(name));
bytes32 hashedVersion = keccak256(bytes(version));
_HASHED_NAME = hashedName;
_HASHED_VERSION = hashedVersion;
}
/**
* @dev Returns the domain separator for the current chain.
*/
function _domainSeparatorV4() internal view returns (bytes32) {
return _buildDomainSeparator(_TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash());
}
function _buildDomainSeparator(bytes32 typeHash, bytes32 name, bytes32 version) private view returns (bytes32) {
return keccak256(
abi.encode(
typeHash,
name,
version,
_getChainId(),
address(this)
)
);
}
/**
* @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
* function returns the hash of the fully encoded EIP712 message for this domain.
*
* This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
*
* ```solidity
* bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
* keccak256("Mail(address to,string contents)"),
* mailTo,
* keccak256(bytes(mailContents))
* )));
* address signer = ECDSA.recover(digest, signature);
* ```
*/
function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x01", _domainSeparatorV4(), structHash));
}
function _getChainId() private view returns (uint256 chainId) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
// solhint-disable-next-line no-inline-assembly
assembly {
chainId := chainid()
}
}
/**
* @dev The hash of the name parameter for the EIP712 domain.
*
* NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs
* are a concern.
*/
function _EIP712NameHash() internal virtual view returns (bytes32) {
return _HASHED_NAME;
}
/**
* @dev The hash of the version parameter for the EIP712 domain.
*
* NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs
* are a concern.
*/
function _EIP712VersionHash() internal virtual view returns (bytes32) {
return _HASHED_VERSION;
}
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
// solhint-disable-next-line compiler-version
pragma solidity >=0.4.24 <0.8.0;
import "../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
*/
bool private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Modifier to protect an initializer function from being invoked twice.
*/
modifier initializer() {
require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized");
bool isTopLevelCall = !_initializing;
if (isTopLevelCall) {
_initializing = true;
_initialized = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
}
}
/// @dev Returns true if and only if the function is running in the constructor
function _isConstructor() private view returns (bool) {
return !AddressUpgradeable.isContract(address(this));
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../proxy/Initializable.sol";
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract ContextUpgradeable is Initializable {
function __Context_init() internal initializer {
__Context_init_unchained();
}
function __Context_init_unchained() internal initializer {
}
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;
}
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20Upgradeable {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.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 SafeMathUpgradeable {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b > a) return (false, 0);
return (true, a - b);
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a / b);
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a % b);
}
/**
* @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) {
require(b <= a, "SafeMath: subtraction overflow");
return a - b;
}
/**
* @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) {
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, reverting 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) {
require(b > 0, "SafeMath: division by zero");
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting 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) {
require(b > 0, "SafeMath: modulo by zero");
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* 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);
return a - b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryDiv}.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* 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;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @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) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity >0.6.0 <0.8.0;
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
interface IERC677 is IERC20Upgradeable {
function transferAndCall(
address to,
uint256 value,
bytes memory data
) external returns (bool success);
event Transfer(address indexed from, address indexed to, uint256 value, bytes data);
}
interface IERC677Receiver {
function onTokenTransfer(
address _sender,
uint256 _value,
bytes memory _data
) external;
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Blacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newBlacklister","type":"address"}],"name":"BlacklisterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pauser","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousPauser","type":"address"},{"indexed":true,"internalType":"address","name":"newPauser","type":"address"}],"name":"PauserChanged","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":"bytes","name":"data","type":"bytes"}],"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"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"UnBlacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pauser","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklister","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bridgeBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_l1Address","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"bridgeInit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bridgeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gatewayAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_gatewayAddress","type":"address"},{"internalType":"address","name":"_l1Address","type":"address"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l1Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauser","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setPauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"success","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":"account","type":"address"}],"name":"unBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newBlacklister","type":"address"}],"name":"updateBlacklister","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50613282806100206000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c80637ecebe001161011a578063a6f9dae1116100ad578063c2eeeebd1161007c578063c2eeeebd14610946578063d505accf1461094e578063dd62ed3e1461099f578063f9f92be4146109cd578063fe575a87146109f357610206565b8063a6f9dae1146108c6578063a9059cbb146108ec578063ad38bf2214610918578063bd1024301461093e57610206565b80638da5cb5b116100e95780638da5cb5b1461088257806395d89b411461088a5780639fd0506d14610892578063a457c2d71461089a57610206565b80637ecebe00146108045780638456cb591461082a5780638b851b95146108325780638c2a993e1461085657610206565b80632d88af4a1161019d5780633f4ba83a1161016c5780633f4ba83a146106e95780634000aea0146106f15780635c975abb146107aa57806370a08231146107b257806374f4f547146107d857610206565b80632d88af4a14610671578063313ce567146106975780633644e515146106b557806339509351146106bd57610206565b8063189db7d2116101d9578063189db7d2146104125780631a895266146104c6578063238b4bc5146104ec57806323b872dd1461063b57610206565b806306fdde031461020b578063095ea7b3146102885780631624f6c6146102c857806318160ddd146103f8575b600080fd5b610213610a19565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024d578181015183820152602001610235565b50505050905090810190601f16801561027a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102b46004803603604081101561029e57600080fd5b506001600160a01b038135169060200135610aaf565b604080519115158252519081900360200190f35b6103f6600480360360608110156102de57600080fd5b810190602081018135600160201b8111156102f857600080fd5b82018360208201111561030a57600080fd5b803590602001918460018302840111600160201b8311171561032b57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561037d57600080fd5b82018360208201111561038f57600080fd5b803590602001918460018302840111600160201b831117156103b057600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610bca9050565b005b610400610c8b565b60408051918252519081900360200190f35b6103f66004803603604081101561042857600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561045257600080fd5b82018360208201111561046457600080fd5b803590602001918460018302840111600160201b8311171561048557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610c91945050505050565b6103f6600480360360208110156104dc57600080fd5b50356001600160a01b0316610ccb565b6103f6600480360360c081101561050257600080fd5b6001600160a01b0382358116926020810135821692604082013590921691810190608081016060820135600160201b81111561053d57600080fd5b82018360208201111561054f57600080fd5b803590602001918460018302840111600160201b8311171561057057600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156105c257600080fd5b8201836020820111156105d457600080fd5b803590602001918460018302840111600160201b831117156105f557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610d739050565b6102b46004803603606081101561065157600080fd5b506001600160a01b03813581169160208101359091169060400135610dbf565b6103f66004803603602081101561068757600080fd5b50356001600160a01b0316610f3b565b61069f610fa0565b6040805160ff9092168252519081900360200190f35b610400610fa9565b6102b4600480360360408110156106d357600080fd5b506001600160a01b038135169060200135610fb8565b6103f66110ca565b6102b46004803603606081101561070757600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561073657600080fd5b82018360208201111561074857600080fd5b803590602001918460018302840111600160201b8311171561076957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611166945050505050565b6102b4611283565b610400600480360360208110156107c857600080fd5b50356001600160a01b0316611293565b6103f6600480360360408110156107ee57600080fd5b506001600160a01b0381351690602001356112ae565b6104006004803603602081101561081a57600080fd5b50356001600160a01b03166113bd565b6103f66113e4565b61083a611486565b604080516001600160a01b039092168252519081900360200190f35b6103f66004803603604081101561086c57600080fd5b506001600160a01b038135169060200135611495565b61083a61159f565b6102136115ae565b61083a61160f565b6102b4600480360360408110156108b057600080fd5b506001600160a01b03813516906020013561161e565b6103f6600480360360208110156108dc57600080fd5b50356001600160a01b0316611730565b6102b46004803603604081101561090257600080fd5b506001600160a01b038135169060200135611792565b6103f66004803603602081101561092e57600080fd5b50356001600160a01b03166118a4565b61083a611992565b61083a6119a1565b6103f6600480360360e081101561096457600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c001356119b0565b610400600480360360408110156109b557600080fd5b506001600160a01b0381358116916020013516611b2e565b6103f6600480360360208110156109e357600080fd5b50356001600160a01b0316611b59565b6102b460048036036020811015610a0957600080fd5b50356001600160a01b0316611c04565b60368054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610aa55780601f10610a7a57610100808354040283529160200191610aa5565b820191906000526020600020905b815481529060010190602001808311610a8857829003601f168201915b5050505050905090565b60cf54600090600160a01b900460ff1615610b06576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b33600081815260d1602052604090205460ff1615610b59576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038416600090815260d16020526040902054849060ff1615610bb7576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b610bc18585611c22565b95945050505050565b600054610100900460ff1680610be35750610be3611c3f565b80610bf1575060005460ff16155b610c2c5760405162461bcd60e51b815260040180806020018281038252602e815260200180613123602e913960400191505060405180910390fd5b600054610100900460ff16158015610c57576000805460ff1961ff0019909116610100171660011790555b610c6084611c50565b610c6a8484611d27565b610c7382611ddc565b8015610c85576000805461ff00191690555b50505050565b60355490565b6040805162461bcd60e51b815260206004820152600a602482015269444f5f4e4f545f55534560b01b604482015290519081900360640190fd5b60d0546001600160a01b03163314610d2a576040805162461bcd60e51b815260206004820152601d60248201527f63616c6c6572206973206e6f742074686520626c61636b6c6973746572000000604482015290519081900360640190fd5b6001600160a01b038116600081815260d16020526040808220805460ff19169055517f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e9190a250565b60cc80546001600160a01b038089166001600160a01b03199283161790925560cd805492881692909116919091179055610dac84611df2565b610db7838383610bca565b505050505050565b60cf54600090600160a01b900460ff1615610e16576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b33600081815260d1602052604090205460ff1615610e69576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038516600090815260d16020526040902054859060ff1615610ec7576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038516600090815260d16020526040902054859060ff1615610f25576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b610f30878787611f07565b979650505050505050565b60ce546001600160a01b03163314610f94576040805162461bcd60e51b815260206004820152601760248201527631b0b63632b91034b9903737ba103a34329037bbb732b960491b604482015290519081900360640190fd5b610f9d81611f8e565b50565b60385460ff1690565b6000610fb3611fea565b905090565b60cf54600090600160a01b900460ff161561100f576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b33600081815260d1602052604090205460ff1615611062576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038416600090815260d16020526040902054849060ff16156110c0576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b610bc18585612025565b60cf546001600160a01b03163314611124576040805162461bcd60e51b815260206004820152601860248201527731b0b63632b91034b9903737ba103a3432903830bab9b2b960411b604482015290519081900360640190fd5b60cf805460ff60a01b191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60cf54600090600160a01b900460ff16156111bd576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b33600081815260d1602052604090205460ff1615611210576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038516600090815260d16020526040902054859060ff161561126e576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b611279868686612073565b9695505050505050565b60cf54600160a01b900460ff1690565b6001600160a01b031660009081526033602052604090205490565b60cc546001600160a01b031633146112fc576040805162461bcd60e51b815260206004820152600c60248201526b4f4e4c595f4741544557415960a01b604482015290519081900360640190fd5b60cf54600160a01b900460ff1615611350576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b6001600160a01b038216600090815260d16020526040902054829060ff16156113ae576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6113b8838361214e565b505050565b6001600160a01b03811660009081526099602052604081206113de906121a6565b92915050565b60cf546001600160a01b0316331461143e576040805162461bcd60e51b815260206004820152601860248201527731b0b63632b91034b9903737ba103a3432903830bab9b2b960411b604482015290519081900360640190fd5b60cf805460ff60a01b1916600160a01b1790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60cc546001600160a01b031681565b60cc546001600160a01b031633146114e3576040805162461bcd60e51b815260206004820152600c60248201526b4f4e4c595f4741544557415960a01b604482015290519081900360640190fd5b60cf54600160a01b900460ff1615611537576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b6001600160a01b038216600090815260d16020526040902054829060ff1615611595576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6113b883836121aa565b60ce546001600160a01b031690565b60378054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610aa55780601f10610a7a57610100808354040283529160200191610aa5565b60cf546001600160a01b031690565b60cf54600090600160a01b900460ff1615611675576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b33600081815260d1602052604090205460ff16156116c8576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038416600090815260d16020526040902054849060ff1615611726576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b610bc18585612202565b60ce546001600160a01b03163314611789576040805162461bcd60e51b815260206004820152601760248201527631b0b63632b91034b9903737ba103a34329037bbb732b960491b604482015290519081900360640190fd5b610f9d81611df2565b60cf54600090600160a01b900460ff16156117e9576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b33600081815260d1602052604090205460ff161561183c576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038416600090815260d16020526040902054849060ff161561189a576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b610bc1858561226a565b60ce546001600160a01b031633146118fd576040805162461bcd60e51b815260206004820152601760248201527631b0b63632b91034b9903737ba103a34329037bbb732b960491b604482015290519081900360640190fd5b6001600160a01b0381166119425760405162461bcd60e51b81526004018080602001828103825260238152602001806131516023913960400191505060405180910390fd5b60d080546001600160a01b0319166001600160a01b0383811691909117918290556040519116907fc67398012c111ce95ecb7429b933096c977380ee6c421175a71a4a4c6c88c06e90600090a250565b60d0546001600160a01b031690565b60cd546001600160a01b031681565b60cf54600160a01b900460ff1615611a04576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b33600081815260d1602052604090205460ff1615611a57576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038816600090815260d16020526040902054889060ff1615611ab5576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038816600090815260d16020526040902054889060ff1615611b13576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b611b228a8a8a8a8a8a8a61227e565b50505050505050505050565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b60d0546001600160a01b03163314611bb8576040805162461bcd60e51b815260206004820152601d60248201527f63616c6c6572206973206e6f742074686520626c61636b6c6973746572000000604482015290519081900360640190fd5b6001600160a01b038116600081815260d16020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6001600160a01b0316600090815260d1602052604090205460ff1690565b6000611c36611c2f612415565b8484612419565b50600192915050565b6000611c4a30612505565b15905090565b600054610100900460ff1680611c695750611c69611c3f565b80611c77575060005460ff16155b611cb25760405162461bcd60e51b815260040180806020018281038252602e815260200180613123602e913960400191505060405180910390fd5b600054610100900460ff16158015611cdd576000805460ff1961ff0019909116610100171660011790555b611ce561250b565b611d0882604051806040016040528060018152602001603160f81b8152506125ac565b611d118261266c565b8015611d23576000805461ff00191690555b5050565b600054610100900460ff1680611d405750611d40611c3f565b80611d4e575060005460ff16155b611d895760405162461bcd60e51b815260040180806020018281038252602e815260200180613123602e913960400191505060405180910390fd5b600054610100900460ff16158015611db4576000805460ff1961ff0019909116610100171660011790555b611dbc61250b565b611dc68383612732565b80156113b8576000805461ff0019169055505050565b6038805460ff191660ff92909216919091179055565b6001600160a01b038116611e4d576040805162461bcd60e51b815260206004820152601b60248201527f6163636f756e7420697320746865207a65726f20616464726573730000000000604482015290519081900360640190fd5b6001600160a01b038116301415611eab576040805162461bcd60e51b815260206004820152601860248201527f6163636f756e74206973207468697320636f6e74726163740000000000000000604482015290519081900360640190fd5b60ce546040516001600160a01b038084169216907fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c90600090a360ce80546001600160a01b0319166001600160a01b0392909216919091179055565b6000611f1484848461280a565b611f8484611f20612415565b611f7f85604051806060016040528060288152602001613196602891396001600160a01b038a16600090815260346020526040812090611f5e612415565b6001600160a01b031681526020810191909152604001600020549190612967565b612419565b5060019392505050565b60cf546040516001600160a01b038084169216907f95bb211a5a393c4d30c3edc9a745825fba4e6ad3e3bb949e6bf8ccdfe431a81190600090a360cf80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610fb37f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6120186129fe565b612020612a04565b612a0a565b6000611c36612032612415565b84611f7f8560346000612043612415565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612a6c565b600061207f848461226a565b50836001600160a01b0316336001600160a01b03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156120fa5781810151838201526020016120e2565b50505050905090810190601f1680156121275780820380516001836020036101000a031916815260200191505b50935050505060405180910390a361213e84612505565b15611f8457611f84848484612acd565b60cc546001600160a01b0316331461219c576040805162461bcd60e51b815260206004820152600c60248201526b4f4e4c595f4741544557415960a01b604482015290519081900360640190fd5b611d238282612ba7565b5490565b60cc546001600160a01b031633146121f8576040805162461bcd60e51b815260206004820152600c60248201526b4f4e4c595f4741544557415960a01b604482015290519081900360640190fd5b611d238282612ca3565b6000611c3661220f612415565b84611f7f856040518060600160405280602581526020016132286025913960346000612239612415565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612967565b6000611c36612277612415565b848461280a565b834211156122d3576040805162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015290519081900360640190fd5b6000609a54888888612308609960008e6001600160a01b03166001600160a01b031681526020019081526020016000206121a6565b8960405160200180878152602001866001600160a01b03168152602001856001600160a01b031681526020018481526020018381526020018281526020019650505050505050604051602081830303815290604052805190602001209050600061237182612d95565b9050600061238182878787612de1565b9050896001600160a01b0316816001600160a01b0316146123e9576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b6001600160a01b038a16600090815260996020526040902061240a90612f56565b611b228a8a8a612419565b3390565b6001600160a01b03831661245e5760405162461bcd60e51b81526004018080602001828103825260248152602001806132046024913960400191505060405180910390fd5b6001600160a01b0382166124a35760405162461bcd60e51b81526004018080602001828103825260228152602001806130996022913960400191505060405180910390fd5b6001600160a01b03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b3b151590565b600054610100900460ff16806125245750612524611c3f565b80612532575060005460ff16155b61256d5760405162461bcd60e51b815260040180806020018281038252602e815260200180613123602e913960400191505060405180910390fd5b600054610100900460ff16158015612598576000805460ff1961ff0019909116610100171660011790555b8015610f9d576000805461ff001916905550565b600054610100900460ff16806125c557506125c5611c3f565b806125d3575060005460ff16155b61260e5760405162461bcd60e51b815260040180806020018281038252602e815260200180613123602e913960400191505060405180910390fd5b600054610100900460ff16158015612639576000805460ff1961ff0019909116610100171660011790555b825160208085019190912083519184019190912060659190915560665580156113b8576000805461ff0019169055505050565b600054610100900460ff16806126855750612685611c3f565b80612693575060005460ff16155b6126ce5760405162461bcd60e51b815260040180806020018281038252602e815260200180613123602e913960400191505060405180910390fd5b600054610100900460ff161580156126f9576000805460ff1961ff0019909116610100171660011790555b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9609a558015611d23576000805461ff00191690555050565b600054610100900460ff168061274b575061274b611c3f565b80612759575060005460ff16155b6127945760405162461bcd60e51b815260040180806020018281038252602e815260200180613123602e913960400191505060405180910390fd5b600054610100900460ff161580156127bf576000805460ff1961ff0019909116610100171660011790555b82516127d2906036906020860190612fc0565b5081516127e6906037906020850190612fc0565b506038805460ff1916601217905580156113b8576000805461ff0019169055505050565b6001600160a01b03831661284f5760405162461bcd60e51b81526004018080602001828103825260258152602001806131df6025913960400191505060405180910390fd5b6001600160a01b0382166128945760405162461bcd60e51b81526004018080602001828103825260238152602001806130546023913960400191505060405180910390fd5b61289f8383836113b8565b6128dc816040518060600160405280602681526020016130bb602691396001600160a01b0386166000908152603360205260409020549190612967565b6001600160a01b03808516600090815260336020526040808220939093559084168152205461290b9082612a6c565b6001600160a01b0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156129f65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129bb5781810151838201526020016129a3565b50505050905090810190601f1680156129e85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60655490565b60665490565b6000838383612a17612f5f565b3060405160200180868152602001858152602001848152602001838152602001826001600160a01b03168152602001955050505050506040516020818303038152906040528051906020012090509392505050565b600082820183811015612ac6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b604051635260769b60e11b815233600482018181526024830185905260606044840190815284516064850152845187946001600160a01b0386169463a4c0ed369490938993899360840190602085019080838360005b83811015612b3b578181015183820152602001612b23565b50505050905090810190601f168015612b685780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b158015612b8957600080fd5b505af1158015612b9d573d6000803e3d6000fd5b5050505050505050565b6001600160a01b038216612bec5760405162461bcd60e51b81526004018080602001828103825260218152602001806131be6021913960400191505060405180910390fd5b612bf8826000836113b8565b612c3581604051806060016040528060228152602001613077602291396001600160a01b0385166000908152603360205260409020549190612967565b6001600160a01b038316600090815260336020526040902055603554612c5b9082612f63565b6035556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216612cfe576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612d0a600083836113b8565b603554612d179082612a6c565b6035556001600160a01b038216600090815260336020526040902054612d3d9082612a6c565b6001600160a01b03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000612d9f611fea565b82604051602001808061190160f01b81525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115612e425760405162461bcd60e51b81526004018080602001828103825260228152602001806130e16022913960400191505060405180910390fd5b8360ff16601b1480612e5757508360ff16601c145b612e925760405162461bcd60e51b81526004018080602001828103825260228152602001806131746022913960400191505060405180910390fd5b600060018686868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015612eee573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610bc1576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b80546001019055565b4690565b600082821115612fba576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061300157805160ff191683800117855561302e565b8280016001018555821561302e579182015b8281111561302e578251825591602001919060010190613013565b5061303a92915061303e565b5090565b5b8082111561303a576000815560010161303f56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545434453413a20696e76616c6964207369676e6174757265202773272076616c75656163636f756e7420697320626c61636b6c697374656400000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a65646e657720626c61636b6c697374657220697320746865207a65726f206164647265737345434453413a20696e76616c6964207369676e6174757265202776272076616c756545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203816ea8d1fe3be74eb480ddec286dd1ea59a6fcb60be994dc0580acc187956e964736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102065760003560e01c80637ecebe001161011a578063a6f9dae1116100ad578063c2eeeebd1161007c578063c2eeeebd14610946578063d505accf1461094e578063dd62ed3e1461099f578063f9f92be4146109cd578063fe575a87146109f357610206565b8063a6f9dae1146108c6578063a9059cbb146108ec578063ad38bf2214610918578063bd1024301461093e57610206565b80638da5cb5b116100e95780638da5cb5b1461088257806395d89b411461088a5780639fd0506d14610892578063a457c2d71461089a57610206565b80637ecebe00146108045780638456cb591461082a5780638b851b95146108325780638c2a993e1461085657610206565b80632d88af4a1161019d5780633f4ba83a1161016c5780633f4ba83a146106e95780634000aea0146106f15780635c975abb146107aa57806370a08231146107b257806374f4f547146107d857610206565b80632d88af4a14610671578063313ce567146106975780633644e515146106b557806339509351146106bd57610206565b8063189db7d2116101d9578063189db7d2146104125780631a895266146104c6578063238b4bc5146104ec57806323b872dd1461063b57610206565b806306fdde031461020b578063095ea7b3146102885780631624f6c6146102c857806318160ddd146103f8575b600080fd5b610213610a19565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024d578181015183820152602001610235565b50505050905090810190601f16801561027a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102b46004803603604081101561029e57600080fd5b506001600160a01b038135169060200135610aaf565b604080519115158252519081900360200190f35b6103f6600480360360608110156102de57600080fd5b810190602081018135600160201b8111156102f857600080fd5b82018360208201111561030a57600080fd5b803590602001918460018302840111600160201b8311171561032b57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561037d57600080fd5b82018360208201111561038f57600080fd5b803590602001918460018302840111600160201b831117156103b057600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610bca9050565b005b610400610c8b565b60408051918252519081900360200190f35b6103f66004803603604081101561042857600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561045257600080fd5b82018360208201111561046457600080fd5b803590602001918460018302840111600160201b8311171561048557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610c91945050505050565b6103f6600480360360208110156104dc57600080fd5b50356001600160a01b0316610ccb565b6103f6600480360360c081101561050257600080fd5b6001600160a01b0382358116926020810135821692604082013590921691810190608081016060820135600160201b81111561053d57600080fd5b82018360208201111561054f57600080fd5b803590602001918460018302840111600160201b8311171561057057600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156105c257600080fd5b8201836020820111156105d457600080fd5b803590602001918460018302840111600160201b831117156105f557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610d739050565b6102b46004803603606081101561065157600080fd5b506001600160a01b03813581169160208101359091169060400135610dbf565b6103f66004803603602081101561068757600080fd5b50356001600160a01b0316610f3b565b61069f610fa0565b6040805160ff9092168252519081900360200190f35b610400610fa9565b6102b4600480360360408110156106d357600080fd5b506001600160a01b038135169060200135610fb8565b6103f66110ca565b6102b46004803603606081101561070757600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561073657600080fd5b82018360208201111561074857600080fd5b803590602001918460018302840111600160201b8311171561076957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611166945050505050565b6102b4611283565b610400600480360360208110156107c857600080fd5b50356001600160a01b0316611293565b6103f6600480360360408110156107ee57600080fd5b506001600160a01b0381351690602001356112ae565b6104006004803603602081101561081a57600080fd5b50356001600160a01b03166113bd565b6103f66113e4565b61083a611486565b604080516001600160a01b039092168252519081900360200190f35b6103f66004803603604081101561086c57600080fd5b506001600160a01b038135169060200135611495565b61083a61159f565b6102136115ae565b61083a61160f565b6102b4600480360360408110156108b057600080fd5b506001600160a01b03813516906020013561161e565b6103f6600480360360208110156108dc57600080fd5b50356001600160a01b0316611730565b6102b46004803603604081101561090257600080fd5b506001600160a01b038135169060200135611792565b6103f66004803603602081101561092e57600080fd5b50356001600160a01b03166118a4565b61083a611992565b61083a6119a1565b6103f6600480360360e081101561096457600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c001356119b0565b610400600480360360408110156109b557600080fd5b506001600160a01b0381358116916020013516611b2e565b6103f6600480360360208110156109e357600080fd5b50356001600160a01b0316611b59565b6102b460048036036020811015610a0957600080fd5b50356001600160a01b0316611c04565b60368054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610aa55780601f10610a7a57610100808354040283529160200191610aa5565b820191906000526020600020905b815481529060010190602001808311610a8857829003601f168201915b5050505050905090565b60cf54600090600160a01b900460ff1615610b06576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b33600081815260d1602052604090205460ff1615610b59576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038416600090815260d16020526040902054849060ff1615610bb7576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b610bc18585611c22565b95945050505050565b600054610100900460ff1680610be35750610be3611c3f565b80610bf1575060005460ff16155b610c2c5760405162461bcd60e51b815260040180806020018281038252602e815260200180613123602e913960400191505060405180910390fd5b600054610100900460ff16158015610c57576000805460ff1961ff0019909116610100171660011790555b610c6084611c50565b610c6a8484611d27565b610c7382611ddc565b8015610c85576000805461ff00191690555b50505050565b60355490565b6040805162461bcd60e51b815260206004820152600a602482015269444f5f4e4f545f55534560b01b604482015290519081900360640190fd5b60d0546001600160a01b03163314610d2a576040805162461bcd60e51b815260206004820152601d60248201527f63616c6c6572206973206e6f742074686520626c61636b6c6973746572000000604482015290519081900360640190fd5b6001600160a01b038116600081815260d16020526040808220805460ff19169055517f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e9190a250565b60cc80546001600160a01b038089166001600160a01b03199283161790925560cd805492881692909116919091179055610dac84611df2565b610db7838383610bca565b505050505050565b60cf54600090600160a01b900460ff1615610e16576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b33600081815260d1602052604090205460ff1615610e69576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038516600090815260d16020526040902054859060ff1615610ec7576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038516600090815260d16020526040902054859060ff1615610f25576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b610f30878787611f07565b979650505050505050565b60ce546001600160a01b03163314610f94576040805162461bcd60e51b815260206004820152601760248201527631b0b63632b91034b9903737ba103a34329037bbb732b960491b604482015290519081900360640190fd5b610f9d81611f8e565b50565b60385460ff1690565b6000610fb3611fea565b905090565b60cf54600090600160a01b900460ff161561100f576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b33600081815260d1602052604090205460ff1615611062576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038416600090815260d16020526040902054849060ff16156110c0576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b610bc18585612025565b60cf546001600160a01b03163314611124576040805162461bcd60e51b815260206004820152601860248201527731b0b63632b91034b9903737ba103a3432903830bab9b2b960411b604482015290519081900360640190fd5b60cf805460ff60a01b191690556040805133815290517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9181900360200190a1565b60cf54600090600160a01b900460ff16156111bd576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b33600081815260d1602052604090205460ff1615611210576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038516600090815260d16020526040902054859060ff161561126e576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b611279868686612073565b9695505050505050565b60cf54600160a01b900460ff1690565b6001600160a01b031660009081526033602052604090205490565b60cc546001600160a01b031633146112fc576040805162461bcd60e51b815260206004820152600c60248201526b4f4e4c595f4741544557415960a01b604482015290519081900360640190fd5b60cf54600160a01b900460ff1615611350576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b6001600160a01b038216600090815260d16020526040902054829060ff16156113ae576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6113b8838361214e565b505050565b6001600160a01b03811660009081526099602052604081206113de906121a6565b92915050565b60cf546001600160a01b0316331461143e576040805162461bcd60e51b815260206004820152601860248201527731b0b63632b91034b9903737ba103a3432903830bab9b2b960411b604482015290519081900360640190fd5b60cf805460ff60a01b1916600160a01b1790556040805133815290517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2589181900360200190a1565b60cc546001600160a01b031681565b60cc546001600160a01b031633146114e3576040805162461bcd60e51b815260206004820152600c60248201526b4f4e4c595f4741544557415960a01b604482015290519081900360640190fd5b60cf54600160a01b900460ff1615611537576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b6001600160a01b038216600090815260d16020526040902054829060ff1615611595576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6113b883836121aa565b60ce546001600160a01b031690565b60378054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610aa55780601f10610a7a57610100808354040283529160200191610aa5565b60cf546001600160a01b031690565b60cf54600090600160a01b900460ff1615611675576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b33600081815260d1602052604090205460ff16156116c8576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038416600090815260d16020526040902054849060ff1615611726576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b610bc18585612202565b60ce546001600160a01b03163314611789576040805162461bcd60e51b815260206004820152601760248201527631b0b63632b91034b9903737ba103a34329037bbb732b960491b604482015290519081900360640190fd5b610f9d81611df2565b60cf54600090600160a01b900460ff16156117e9576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b33600081815260d1602052604090205460ff161561183c576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038416600090815260d16020526040902054849060ff161561189a576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b610bc1858561226a565b60ce546001600160a01b031633146118fd576040805162461bcd60e51b815260206004820152601760248201527631b0b63632b91034b9903737ba103a34329037bbb732b960491b604482015290519081900360640190fd5b6001600160a01b0381166119425760405162461bcd60e51b81526004018080602001828103825260238152602001806131516023913960400191505060405180910390fd5b60d080546001600160a01b0319166001600160a01b0383811691909117918290556040519116907fc67398012c111ce95ecb7429b933096c977380ee6c421175a71a4a4c6c88c06e90600090a250565b60d0546001600160a01b031690565b60cd546001600160a01b031681565b60cf54600160a01b900460ff1615611a04576040805162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015290519081900360640190fd5b33600081815260d1602052604090205460ff1615611a57576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038816600090815260d16020526040902054889060ff1615611ab5576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b6001600160a01b038816600090815260d16020526040902054889060ff1615611b13576040805162461bcd60e51b81526020600482015260166024820152600080516020613103833981519152604482015290519081900360640190fd5b611b228a8a8a8a8a8a8a61227e565b50505050505050505050565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b60d0546001600160a01b03163314611bb8576040805162461bcd60e51b815260206004820152601d60248201527f63616c6c6572206973206e6f742074686520626c61636b6c6973746572000000604482015290519081900360640190fd5b6001600160a01b038116600081815260d16020526040808220805460ff19166001179055517fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8559190a250565b6001600160a01b0316600090815260d1602052604090205460ff1690565b6000611c36611c2f612415565b8484612419565b50600192915050565b6000611c4a30612505565b15905090565b600054610100900460ff1680611c695750611c69611c3f565b80611c77575060005460ff16155b611cb25760405162461bcd60e51b815260040180806020018281038252602e815260200180613123602e913960400191505060405180910390fd5b600054610100900460ff16158015611cdd576000805460ff1961ff0019909116610100171660011790555b611ce561250b565b611d0882604051806040016040528060018152602001603160f81b8152506125ac565b611d118261266c565b8015611d23576000805461ff00191690555b5050565b600054610100900460ff1680611d405750611d40611c3f565b80611d4e575060005460ff16155b611d895760405162461bcd60e51b815260040180806020018281038252602e815260200180613123602e913960400191505060405180910390fd5b600054610100900460ff16158015611db4576000805460ff1961ff0019909116610100171660011790555b611dbc61250b565b611dc68383612732565b80156113b8576000805461ff0019169055505050565b6038805460ff191660ff92909216919091179055565b6001600160a01b038116611e4d576040805162461bcd60e51b815260206004820152601b60248201527f6163636f756e7420697320746865207a65726f20616464726573730000000000604482015290519081900360640190fd5b6001600160a01b038116301415611eab576040805162461bcd60e51b815260206004820152601860248201527f6163636f756e74206973207468697320636f6e74726163740000000000000000604482015290519081900360640190fd5b60ce546040516001600160a01b038084169216907fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c90600090a360ce80546001600160a01b0319166001600160a01b0392909216919091179055565b6000611f1484848461280a565b611f8484611f20612415565b611f7f85604051806060016040528060288152602001613196602891396001600160a01b038a16600090815260346020526040812090611f5e612415565b6001600160a01b031681526020810191909152604001600020549190612967565b612419565b5060019392505050565b60cf546040516001600160a01b038084169216907f95bb211a5a393c4d30c3edc9a745825fba4e6ad3e3bb949e6bf8ccdfe431a81190600090a360cf80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610fb37f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6120186129fe565b612020612a04565b612a0a565b6000611c36612032612415565b84611f7f8560346000612043612415565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612a6c565b600061207f848461226a565b50836001600160a01b0316336001600160a01b03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b838110156120fa5781810151838201526020016120e2565b50505050905090810190601f1680156121275780820380516001836020036101000a031916815260200191505b50935050505060405180910390a361213e84612505565b15611f8457611f84848484612acd565b60cc546001600160a01b0316331461219c576040805162461bcd60e51b815260206004820152600c60248201526b4f4e4c595f4741544557415960a01b604482015290519081900360640190fd5b611d238282612ba7565b5490565b60cc546001600160a01b031633146121f8576040805162461bcd60e51b815260206004820152600c60248201526b4f4e4c595f4741544557415960a01b604482015290519081900360640190fd5b611d238282612ca3565b6000611c3661220f612415565b84611f7f856040518060600160405280602581526020016132286025913960346000612239612415565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612967565b6000611c36612277612415565b848461280a565b834211156122d3576040805162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015290519081900360640190fd5b6000609a54888888612308609960008e6001600160a01b03166001600160a01b031681526020019081526020016000206121a6565b8960405160200180878152602001866001600160a01b03168152602001856001600160a01b031681526020018481526020018381526020018281526020019650505050505050604051602081830303815290604052805190602001209050600061237182612d95565b9050600061238182878787612de1565b9050896001600160a01b0316816001600160a01b0316146123e9576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b6001600160a01b038a16600090815260996020526040902061240a90612f56565b611b228a8a8a612419565b3390565b6001600160a01b03831661245e5760405162461bcd60e51b81526004018080602001828103825260248152602001806132046024913960400191505060405180910390fd5b6001600160a01b0382166124a35760405162461bcd60e51b81526004018080602001828103825260228152602001806130996022913960400191505060405180910390fd5b6001600160a01b03808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b3b151590565b600054610100900460ff16806125245750612524611c3f565b80612532575060005460ff16155b61256d5760405162461bcd60e51b815260040180806020018281038252602e815260200180613123602e913960400191505060405180910390fd5b600054610100900460ff16158015612598576000805460ff1961ff0019909116610100171660011790555b8015610f9d576000805461ff001916905550565b600054610100900460ff16806125c557506125c5611c3f565b806125d3575060005460ff16155b61260e5760405162461bcd60e51b815260040180806020018281038252602e815260200180613123602e913960400191505060405180910390fd5b600054610100900460ff16158015612639576000805460ff1961ff0019909116610100171660011790555b825160208085019190912083519184019190912060659190915560665580156113b8576000805461ff0019169055505050565b600054610100900460ff16806126855750612685611c3f565b80612693575060005460ff16155b6126ce5760405162461bcd60e51b815260040180806020018281038252602e815260200180613123602e913960400191505060405180910390fd5b600054610100900460ff161580156126f9576000805460ff1961ff0019909116610100171660011790555b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9609a558015611d23576000805461ff00191690555050565b600054610100900460ff168061274b575061274b611c3f565b80612759575060005460ff16155b6127945760405162461bcd60e51b815260040180806020018281038252602e815260200180613123602e913960400191505060405180910390fd5b600054610100900460ff161580156127bf576000805460ff1961ff0019909116610100171660011790555b82516127d2906036906020860190612fc0565b5081516127e6906037906020850190612fc0565b506038805460ff1916601217905580156113b8576000805461ff0019169055505050565b6001600160a01b03831661284f5760405162461bcd60e51b81526004018080602001828103825260258152602001806131df6025913960400191505060405180910390fd5b6001600160a01b0382166128945760405162461bcd60e51b81526004018080602001828103825260238152602001806130546023913960400191505060405180910390fd5b61289f8383836113b8565b6128dc816040518060600160405280602681526020016130bb602691396001600160a01b0386166000908152603360205260409020549190612967565b6001600160a01b03808516600090815260336020526040808220939093559084168152205461290b9082612a6c565b6001600160a01b0380841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156129f65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129bb5781810151838201526020016129a3565b50505050905090810190601f1680156129e85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60655490565b60665490565b6000838383612a17612f5f565b3060405160200180868152602001858152602001848152602001838152602001826001600160a01b03168152602001955050505050506040516020818303038152906040528051906020012090509392505050565b600082820183811015612ac6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b604051635260769b60e11b815233600482018181526024830185905260606044840190815284516064850152845187946001600160a01b0386169463a4c0ed369490938993899360840190602085019080838360005b83811015612b3b578181015183820152602001612b23565b50505050905090810190601f168015612b685780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b158015612b8957600080fd5b505af1158015612b9d573d6000803e3d6000fd5b5050505050505050565b6001600160a01b038216612bec5760405162461bcd60e51b81526004018080602001828103825260218152602001806131be6021913960400191505060405180910390fd5b612bf8826000836113b8565b612c3581604051806060016040528060228152602001613077602291396001600160a01b0385166000908152603360205260409020549190612967565b6001600160a01b038316600090815260336020526040902055603554612c5b9082612f63565b6035556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216612cfe576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612d0a600083836113b8565b603554612d179082612a6c565b6035556001600160a01b038216600090815260336020526040902054612d3d9082612a6c565b6001600160a01b03831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000612d9f611fea565b82604051602001808061190160f01b81525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050919050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115612e425760405162461bcd60e51b81526004018080602001828103825260228152602001806130e16022913960400191505060405180910390fd5b8360ff16601b1480612e5757508360ff16601c145b612e925760405162461bcd60e51b81526004018080602001828103825260228152602001806131746022913960400191505060405180910390fd5b600060018686868660405160008152602001604052604051808581526020018460ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015612eee573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610bc1576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b80546001019055565b4690565b600082821115612fba576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061300157805160ff191683800117855561302e565b8280016001018555821561302e579182015b8281111561302e578251825591602001919060010190613013565b5061303a92915061303e565b5090565b5b8082111561303a576000815560010161303f56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545434453413a20696e76616c6964207369676e6174757265202773272076616c75656163636f756e7420697320626c61636b6c697374656400000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a65646e657720626c61636b6c697374657220697320746865207a65726f206164647265737345434453413a20696e76616c6964207369676e6174757265202776272076616c756545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203816ea8d1fe3be74eb480ddec286dd1ea59a6fcb60be994dc0580acc187956e964736f6c634300060c0033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$1.00
Net Worth in ETH
0.000509
Token Allocations
USDC.E
100.00%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ARB | 100.00% | $0.99994 | 1 | $0.9999 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.
${zeroWidthWarningMessage} Check the actual text at ENS.
`;
}
const ensOnL2NoteHtml = ensOnL2Note != "" ? `Additional Info
Full Name:
${ensNameForkIconSrc}
Note:
- Name tag is displayed due to forward and reverse resolution. Find out more.
- ${ensOnL2NoteHtml}
Other names resolving to this address:
${listOtherENSNames}
${moreOtherENSNames}
`;
return result;
}
// ===== UD name tag
const displayUDName = '';
const primaryUDName = '';
const showUDPublicNote = 'false';
let otherUDNamesHtml = "";
function initUDNamePopOver() {
//required to allow bootstrap popover to support table
$.fn.popover.Constructor.Default.allowList.table = [];
$.fn.popover.Constructor.Default.allowList.tr = [];
$.fn.popover.Constructor.Default.allowList.td = [];
$.fn.popover.Constructor.Default.allowList.th = [];
$.fn.popover.Constructor.Default.allowList.div = [];
$.fn.popover.Constructor.Default.allowList.tbody = [];
$.fn.popover.Constructor.Default.allowList.thead = [];
//allowList my inline styling for bootstrap
$.fn.popover.Constructor.Default.allowList['*'].push('style')
let unicodeWarningHtml = "";
if ($("#hdnIsUDContainUnicodeChars").val() == "true") {
unicodeWarningHtml =
`
${unicodeWarningMessage} Check the actual text at Unstoppable Domains.
`;
}
let zeroWidthWarningHtml = "";
if ($("#hdnIsUDContainZeroWidthChars").val() == "true") {
zeroWidthWarningHtml =
`
${unicodeWarningMessage} Check the actual text at Unstoppable Domains.
`;
}
const contentHtml =
`Additional Info
Full Name:
Note:
- Name tag is displayed due to forward and reverse resolution. Find out more
Other names resolving to this address:
${listOtherUDNames}
${moreOtherUDNames}
`;
return result;
}
// ===== end UD name tag
const tooltipForTokenHolding = '1 Token Contract';
var adjustPosition = 0;
$(document).ready(function () {
switchAmountToValue(document.getElementById("headerAmountValue"), 'Value (USD)', 'Amount', true);
switchAmountToValue(document.getElementById("headerIntAmountValue"), 'Value (USD)', 'Amount', true);
switchMethodColumn(document.getElementById("headerMethod"), 'Method', 'Action', true);
onDocumentReady();
$("[rel='tooltip']").tooltip();
$("[data-bs-toggle-second='tooltip']").tooltip({ trigger: 'hover' });
$("[rel='tooltipEns']").each(function () {
$(this).tooltip({ title: $(this).attr("tooltip-title") });
});
if (hash != '') {
activaTab(hash);
};
onAddressDocReady();
// Note: this is causing "Copied" tooltip not showing when copy button is clicked in V3, and seems like not applicable to v3, comment out first in case there is issue
//$('[data-bs-toggle="tooltip"]').click(function () {
// $('[data-bs-toggle="tooltip"]').tooltip("hide");
//});
document.getElementById("copyaddressbutton").classList.remove("disabled");
if ($("#txtSearchContract").length) {
initialiseKeyupOnDocReady();
}
if (!!$('#ensName')[0]) {
initEnsNamePopOver();
}
if (!!$("#udName")[0]) {
initUDNamePopOver();
}
handleToggle();
if (window.matchMedia("(max-width: 767px)").matches) {
// Mobile
adjustPosition = 90;
} else {
// Others
adjustPosition = 50;
}
if (tooltipForTokenHolding) {
const dropdownMenuBalance = document.getElementById("dropdownMenuBalance");
if (dropdownMenuBalance) {
const dropdownWrapper = dropdownMenuBalance.closest(".dropdown");
if (dropdownWrapper) {
dropdownWrapper.setAttribute("title", tooltipForTokenHolding);
new bootstrap.Tooltip(dropdownWrapper);
}
}
}
});
function displayAudit() {
$('html, body').animate({
scrollTop: $("#auditReportId").offset().top - adjustPosition
});
}
var cThemeMode = getCookie('displaymode');
function handleToggle() {
var className = document.getElementsByClassName('editor');
var classNameCount = className.length;
for (var j = 0; j t.innerWidth()) {
if (mb + d > tb) {
t.css('padding-bottom', ((mb + d) - tb));
}
}
else {
t.css('overflow', 'visible');
}
}).on('hidden.bs.dropdown', function () {
$(this).css({ 'padding-bottom': '', 'overflow': '' });
});
var btn_ERC20_sort = {
count: 0,
reminder_count: 2,
list: [],
default_list: [],
ERC20_sort_start: function (count) {
if (document.getElementsByClassName('list-custom-divider-ERC20')[0]) {
var self = this
if (count != undefined) {
self.count = count
}
var before_el = document.getElementsByClassName('list-custom-divider-ERC20')[0]
var parent_el = before_el.parentNode
var element_selector = parent_el.querySelectorAll(".list-custom-ERC20");
if (self.list.length == 0) {
element_selector.forEach(function (e) {
self.list.push(e);
self.default_list.push(e);
});
}
$(".list-custom-ERC20").remove()
var type = self.count % self.reminder_count
self.sortList(type, parent_el, before_el);
self.count++
}
},
sortList: function (type, parent_el, before_el) {
var self = this
var sorted_list = []
var icon_el = $(before_el).find('button').find('i')
switch (type) {
case 1:
icon_el.attr("class", "fad fa-sort-up")
sorted_list = self.sortUsdAsc()
break;
default:
icon_el.attr("class", "fad fa-sort-down")
sorted_list = self.sortUsdDesc()
}
for (var i = sorted_list.length - 1; i >= 0; i--) {
before_el.insertAdjacentElement('afterend', sorted_list[i])
}
},
sortUsdAsc: function () {
var self = this
var sort_list = self.list
sort_list.sort(function (a, b) {
var target_a_value = self.formatCurrencyToNumber(a.querySelector('.list-usd-value').textContent.trim() || -1);
var target_b_value = self.formatCurrencyToNumber(b.querySelector('.list-usd-value').textContent.trim() || -1);
if (target_a_value == -1 || target_b_value == -1) {
return 1;
}
if (target_a_value target_b_value) {
return 1;
}
return 0
});
return sort_list
},
sortUsdDesc: function () {
var self = this
var sort_list = self.list
sort_list.sort(function (a, b) {
var target_a_value = self.formatCurrencyToNumber(a.querySelector('.list-usd-value').textContent.trim() || -1);
var target_b_value = self.formatCurrencyToNumber(b.querySelector('.list-usd-value').textContent.trim() || -1);
if (target_a_value target_b_value) {
return -1;
}
return 0
});
return sort_list
},
formatCurrencyToNumber: function (strCurrency) {
if (typeof strCurrency == "number")
return strCurrency
else
return Number(strCurrency.replace(/[^0-9.-]+/g, ""));
},
}
function hrefTokenHolding() {
var location = "/tokenholdings?a=0x1efb3f88bc88f03fd1804a5c53b7141bbef5ded8"
var queryString = $("input.form-control.form-control-xs.search.mb-3")[0].value
if (queryString) {
location += "&q=" + queryString
}
window.location.href = location
}
$(document).ready(function () {
$("#btn_ERC20_sort").on("click", function (event) {
event.preventDefault();
setTimeout(function () {
btn_ERC20_sort.ERC20_sort_start()
}, 10)
})
btn_ERC20_sort.ERC20_sort_start()
var mainAddress = $("#hdnAddress").val();
// user search for method filters
var searchFuncTimeOut;
$("#ContentPlaceHolder1_inputMethodName").on("keyup", function ($event) {
if (searchFuncTimeOut) {
clearTimeout(searchFuncTimeOut)
}
var searchTerm = $(this).val();
searchFuncTimeOut = setTimeout(function () {
searchFunctions( searchTerm);
}, 350);
});
var isSearchFunctions = false;
$("#dropdownMethod").on("click", function (e) {
if (isSearchFunctions === false) {
searchFunctions('');
isSearchFunctions = true;
}
});
const litDefaultMethodFilterHtml = '';
function searchFunctions(searchTerm) {
if (searchTerm === '' || searchTerm.length > 3) {
const curPath = encodeURIComponent(window.location.search);
$.ajax({
type: 'Get',
url: `/functionSearchHandler.ashx?ca=${mainAddress}&func=${searchTerm ?? ''}&curPath=${curPath}`,
success: function (response) {
$("#searchFunctionResult").html('');
if (response && response.length > 0) {
for (var i = 0; i
${response[i].name}
${response[i].methodId}
`
);
}
$("[data-bs-toggle='tooltip']").tooltip();
}
else {
$("#searchFunctionResult").append(
`