This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"category_list": [ | |
"spirit", "wine", "beer", "cider", "non_alcoholic", "bitters", | |
"liqueur", "syrup", "cordial", "mixer", "other" | |
], | |
"spirit_dict": { | |
"rum": ["white", "gold", "dark", "spiced", "aged", "flavoured"], | |
"gin": ["london dry", "old tom", "pink", "navy strength", "genever", "flavoured"], | |
"vodka": ["plain", "flavoured"], | |
"whiskey": ["bourbon", "rye", "irish", "tennessee", "flavoured"], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts v4.3.2 (token/ERC20/ERC20.sol) | |
pragma solidity ^0.8.0; | |
import "./IERC20.sol"; | |
import "./extensions/IERC20Metadata.sol"; | |
import "../../utils/Context.sol"; | |
/** |