_itn;\n}\n\n+ (void)initialize;\n- (id).cxx_construct;\n- (void).cxx_destruct;\n- (basic_string_805fe43b)getOrthography:(const vector_07ad5caa *)arg1;\n- (vector_07ad5caa)formatWords:(vector_07ad5caa)arg1;\n- (id)initWithGeneralVoc:(id)arg1 withLexiconEnh:(id)arg2 withItnEnh:(id)arg3;\n- (id)initWithLanguage:(id)arg1 withSdapiConfig:(id)arg2;\n\n@end\n\n"}
{"text": "\n\n\n\nGet help
\n\n\n\n{{if not $.GoogleCN}}\n\n\nGet help from Go users, and share your work on the official mailing list.\n
\n\nSearch the golang-nuts\narchives and consult the FAQ and\nwiki before posting.\n
\n\n\n\nThe Go Forum is a discussion\nforum for Go programmers.\n
\n\n\n\nGet live support and talk with other gophers on the Go Discord.\n
\n\n\nGet live support from other users in the Go slack channel.
\n\n\nGet live support at #go-nuts on irc.freenode.net, the official\nGo IRC channel.
\n{{end}}\n\n\nAnswers to common questions about Go.
\n\n{{if not $.GoogleCN}}\n\n\n\n\nSubscribe to\ngolang-announce\nfor important announcements, such as the availability of new Go releases.\n
\n\n\nThe Go project's official blog.
\n\n\nThe Go project's official Twitter account.
\n\n\n\nThe golang sub-Reddit is a place\nfor Go news and discussion.\n
\n\n\n\nThe Go Time podcast is a panel of Go experts and special guests\ndiscussing the Go programming language, the community, and everything in between.\n
\n{{end}}\n\n\n\n\n\nEach month in places around the world, groups of Go programmers (\"gophers\")\nmeet to talk about Go. Find a chapter near you.\n
\n\n{{if not $.GoogleCN}}\n\nA place to write, run, and share Go code.
\n\n\nA wiki maintained by the Go community.
\n{{end}}\n\n\n\nGuidelines for participating in Go community spaces\nand a reporting process for handling issues.\n
\n\n"}
{"text": "\n\nArray Grid DropZone Example\n \n \n \n \n \n \n \n\n\n\nUsing a GridPanel as a DropZone managing each grid cell as a target
\nThis example assumes prior knowledge of using a GridPanel.
\nThis illustrates how a DragZone can manage an arbitrary number of drag sources, and\nhow a DropZone can manage an arbitrary number of targets.
\nNote that the js is not minified so it is readable. See field-to-grid-dd.js.
\n\n\n\n"}
{"text": "/*\n * Copyright (c) 2002 - 2003\n * NetGroup, Politecnico di Torino (Italy)\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions\n * are met:\n *\n * 1. Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * 2. Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * 3. Neither the name of the Politecnico di Torino nor the names of its\n * contributors may be used to endorse or promote products derived from\n * this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n/*\n * Include the appropriate OS header files on Windows and various flavors\n * of UNIX, include various non-OS header files on Windows, and define\n * various items as needed, to isolate most of netdissect's platform\n * differences to this one file.\n */\n\n#ifndef netdissect_stdinc_h\n#define netdissect_stdinc_h\n\n#include \n\n#include \"compiler-tests.h\"\n\n#include \"varattrs.h\"\n\n/*\n * If we're compiling with Visual Studio, make sure we have at least\n * VS 2015 or later, so we have sufficient C99 support.\n *\n * XXX - verify that we have at least C99 support on UN*Xes?\n *\n * What about MinGW or various DOS toolchains? We're currently assuming\n * sufficient C99 support there.\n */\n#if defined(_MSC_VER)\n /*\n * Make sure we have VS 2015 or later.\n */\n #if _MSC_VER < 1900\n #error \"Building tcpdump requires VS 2015 or later\"\n #endif\n#endif\n\n/*\n * Get the C99 types, and the PRI[doux]64 format strings, defined.\n */\n#ifdef HAVE_PCAP_PCAP_INTTYPES_H\n /*\n * We have pcap/pcap-inttypes.h; use that, as it'll do all the\n * work, and won't cause problems if a file includes this file\n * and later includes a pcap header file that also includes\n * pcap/pcap-inttypes.h.\n */\n #include \n#else\n /*\n * OK, we don't have pcap/pcap-inttypes.h, so we'll have to\n * do the work ourselves, but at least we don't have to\n * worry about other headers including it and causing\n * clashes.\n */\n\n /*\n * Include to get the integer types and PRi[doux]64 values\n * defined.\n *\n * If the compiler is MSVC, we require VS 2015 or newer, so we\n * have - and support for %zu in the formatted\n * printing functions.\n *\n * If the compiler is MinGW, we assume we have - and\n * support for %zu in the formatted printing functions.\n *\n * If the target is UN*X, we assume we have a C99-or-later development\n * environment, and thus have - and support for %zu in\n * the formatted printing functions.\n *\n * If the target is MS-DOS, we assume we have - and support\n * for %zu in the formatted printing functions.\n */\n #include \n\n #if defined(_MSC_VER)\n /*\n * Suppress definition of intN_t in bittypes.h, which might be included\n * by in older versions of WinPcap.\n * (Yes, HAVE_U_INTn_T, as the definition guards are UN*X-oriented.)\n */\n #define HAVE_U_INT8_T\n #define HAVE_U_INT16_T\n #define HAVE_U_INT32_T\n #define HAVE_U_INT64_T\n #endif\n#endif /* HAVE_PCAP_PCAP_INTTYPES_H */\n\n#ifdef _WIN32\n\n/*\n * Includes and definitions for Windows.\n */\n\n#include \n#include \n#include \n#include \n#include \n#include \n#include \n\n#ifdef _MSC_VER\n /*\n * Compiler is MSVC.\n *\n * We require VS 2015 or newer, so we have strtoll(). Use that for\n * strtoint64_t().\n */\n #define strtoint64_t\tstrtoll\n\n /*\n * And we have LL as a suffix for constants, so use that.\n */\n #define INT64_T_CONSTANT(constant)\t(constant##LL)\n#else\n /*\n * Non-Microsoft compiler.\n *\n * XXX - should we use strtoll or should we use _strtoi64()?\n */\n #define strtoint64_t\t\tstrtoll\n\n /*\n * Assume LL works.\n */\n #define INT64_T_CONSTANT(constant)\t(constant##LL)\n#endif\n\n#ifdef _MSC_VER\n /*\n * Microsoft tries to avoid polluting the C namespace with UN*Xisms,\n * by adding a preceding underscore; we *want* the UN*Xisms, so add\n * #defines to let us use them.\n */\n #define isatty _isatty\n #define stat _stat\n #define strdup _strdup\n #define open _open\n #define fstat _fstat\n #define read _read\n #define close _close\n #define O_RDONLY _O_RDONLY\n\n /*\n * If has been included, and _DEBUG is defined, and\n * __STDC__ is zero, will define strdup() to call\n * _strdup_dbg(). So if it's already defined, don't redefine\n * it.\n */\n #ifndef strdup\n #define strdup _strdup\n #endif\n\n /*\n * Windows doesn't have ssize_t; routines such as _read() return int.\n */\n typedef int ssize_t;\n#endif /* _MSC_VER */\n\n/*\n * With MSVC, for C, __inline is used to make a function an inline.\n */\n#ifdef _MSC_VER\n#define inline __inline\n#endif\n\n#if defined(AF_INET6) && !defined(HAVE_OS_IPV6_SUPPORT)\n#define HAVE_OS_IPV6_SUPPORT\n#endif\n\n#ifndef INET6_ADDRSTRLEN\n#define INET6_ADDRSTRLEN 46\n#endif\n\n/* It is in MSVC's , but not defined in MingW+Watcom.\n */\n#ifndef EAFNOSUPPORT\n#define EAFNOSUPPORT WSAEAFNOSUPPORT\n#endif\n\n#ifndef caddr_t\ntypedef char* caddr_t;\n#endif /* caddr_t */\n\n#define MAXHOSTNAMELEN\t64\n\n#else /* _WIN32 */\n\n/*\n * Includes and definitions for various flavors of UN*X.\n */\n\n#include \n#include \n#include \n#include \t\t\t/* concession to AIX */\n#include \n#include \n#include \n\n#include \n\n#include \n\n/*\n * Assume all UN*Xes have strtoll(), and use it for strtoint64_t().\n */\n#define strtoint64_t\tstrtoll\n\n/*\n * Assume LL works.\n */\n#define INT64_T_CONSTANT(constant)\t(constant##LL)\n\n#endif /* _WIN32 */\n\n/*\n * Function attributes, for various compilers.\n */\n#include \"funcattrs.h\"\n\n/*\n * fopen() read and write modes for text files and binary files.\n */\n#if defined(_WIN32) || defined(MSDOS)\n #define FOPEN_READ_TXT \"rt\"\n #define FOPEN_READ_BIN \"rb\"\n #define FOPEN_WRITE_TXT \"wt\"\n #define FOPEN_WRITE_BIN \"wb\"\n#else\n #define FOPEN_READ_TXT \"r\"\n #define FOPEN_READ_BIN FOPEN_READ_TXT\n #define FOPEN_WRITE_TXT \"w\"\n #define FOPEN_WRITE_BIN FOPEN_WRITE_TXT\n#endif\n\n/*\n * Inline x86 assembler-language versions of ntoh[ls]() and hton[ls](),\n * defined if the OS doesn't provide them. These assume no more than\n * an 80386, so, for example, it avoids the bswap instruction added in\n * the 80486.\n *\n * (We don't use them on macOS; Apple provides their own, which *doesn't*\n * avoid the bswap instruction, as macOS only supports machines that\n * have it.)\n */\n#if defined(__GNUC__) && defined(__i386__) && !defined(__APPLE__) && !defined(__ntohl)\n #undef ntohl\n #undef ntohs\n #undef htonl\n #undef htons\n\n static __inline__ unsigned long __ntohl (unsigned long x);\n static __inline__ unsigned short __ntohs (unsigned short x);\n\n #define ntohl(x) __ntohl(x)\n #define ntohs(x) __ntohs(x)\n #define htonl(x) __ntohl(x)\n #define htons(x) __ntohs(x)\n\n static __inline__ unsigned long __ntohl (unsigned long x)\n {\n __asm__ (\"xchgb %b0, %h0\\n\\t\" /* swap lower bytes */\n \"rorl $16, %0\\n\\t\" /* swap words */\n \"xchgb %b0, %h0\" /* swap higher bytes */\n : \"=q\" (x) : \"0\" (x));\n return (x);\n }\n\n static __inline__ unsigned short __ntohs (unsigned short x)\n {\n __asm__ (\"xchgb %b0, %h0\" /* swap bytes */\n : \"=q\" (x) : \"0\" (x));\n return (x);\n }\n#endif\n\n/*\n * If the OS doesn't define AF_INET6 and struct in6_addr:\n *\n * define AF_INET6, so we can use it internally as a \"this is an\n * IPv6 address\" indication;\n *\n * define struct in6_addr so that we can use it for IPv6 addresses.\n */\n#ifndef HAVE_OS_IPV6_SUPPORT\n#ifndef AF_INET6\n#define AF_INET6\t24\n\nstruct in6_addr {\n\tunion {\n\t\t__uint8_t __u6_addr8[16];\n\t\t__uint16_t __u6_addr16[8];\n\t\t__uint32_t __u6_addr32[4];\n\t} __u6_addr;\t\t\t/* 128-bit IP6 address */\n};\n#endif\n#endif\n\n#ifndef NI_MAXHOST\n#define\tNI_MAXHOST\t1025\n#endif\n\n#ifndef INET_ADDRSTRLEN\n#define INET_ADDRSTRLEN 16\n#endif\n\n#ifndef TRUE\n#define TRUE 1\n#endif\n\n#ifndef FALSE\n#define FALSE 0\n#endif\n\n/*\n * The Apple deprecation workaround macros below were adopted from the\n * FreeRADIUS server code under permission of Alan DeKok and Arran Cudbard-Bell.\n */\n\n#define XSTRINGIFY(x) #x\n\n/*\n *\tMacros for controlling warnings in GCC >= 4.2 and clang >= 2.8\n */\n#define DIAG_JOINSTR(x,y) XSTRINGIFY(x ## y)\n#define DIAG_DO_PRAGMA(x) _Pragma (#x)\n\n/*\n * The current clang compilers also define __GNUC__ and __GNUC_MINOR__\n * thus we need to test the clang case before the GCC one\n */\n#if defined(__clang__)\n# if (__clang_major__ * 100) + __clang_minor__ >= 208\n# define DIAG_PRAGMA(x) DIAG_DO_PRAGMA(clang diagnostic x)\n# define DIAG_OFF(x) DIAG_PRAGMA(push) DIAG_PRAGMA(ignored DIAG_JOINSTR(-W,x))\n# define DIAG_ON(x) DIAG_PRAGMA(pop)\n# else\n# define DIAG_OFF(x)\n# define DIAG_ON(x)\n# endif\n#elif defined(__GNUC__) && ((__GNUC__ * 100) + __GNUC_MINOR__) >= 402\n# define DIAG_PRAGMA(x) DIAG_DO_PRAGMA(GCC diagnostic x)\n# if ((__GNUC__ * 100) + __GNUC_MINOR__) >= 406\n# define DIAG_OFF(x) DIAG_PRAGMA(push) DIAG_PRAGMA(ignored DIAG_JOINSTR(-W,x))\n# define DIAG_ON(x) DIAG_PRAGMA(pop)\n# else\n# define DIAG_OFF(x) DIAG_PRAGMA(ignored DIAG_JOINSTR(-W,x))\n# define DIAG_ON(x) DIAG_PRAGMA(warning DIAG_JOINSTR(-W,x))\n# endif\n#else\n# define DIAG_OFF(x)\n# define DIAG_ON(x)\n#endif\n\n/* Use for clang specific warnings */\n#ifdef __clang__\n# define DIAG_OFF_CLANG(x) DIAG_OFF(x)\n# define DIAG_ON_CLANG(x) DIAG_ON(x)\n#else\n# define DIAG_OFF_CLANG(x)\n# define DIAG_ON_CLANG(x)\n#endif\n\n/*\n *\tFor dealing with APIs which are only deprecated in OSX (like the OpenSSL API)\n */\n#ifdef __APPLE__\n# define USES_APPLE_DEPRECATED_API DIAG_OFF(deprecated-declarations)\n# define USES_APPLE_RST DIAG_ON(deprecated-declarations)\n#else\n# define USES_APPLE_DEPRECATED_API\n# define USES_APPLE_RST\n#endif\n\n/*\n * end of Apple deprecation workaround macros\n */\n\n/*\n * Statement attributes, for various compilers.\n *\n * This was introduced sufficiently recently that compilers implementing\n * it also implement __has_attribute() (for example, GCC 5.0 and later\n * have __has_attribute(), and the \"fallthrough\" attribute was introduced\n * in GCC 7).\n *\n * Unfortunately, Clang does this wrong - a statement\n *\n * __attribute__ ((fallthrough));\n *\n * produces bogus -Wmissing-declaration \"declaration does not declare\n * anything\" warnings (dear Clang: that's not a declaration, it's an\n * empty statement). GCC, however, has no trouble with this.\n */\n#if __has_attribute(fallthrough) && !defined(__clang__)\n# define ND_FALL_THROUGH __attribute__ ((fallthrough))\n#else\n# define ND_FALL_THROUGH\n#endif /* __has_attribute(fallthrough) */\n\n#endif /* netdissect_stdinc_h */\n"}
{"text": "float theta = 0.01;\n\nvoid setup() {\n size(500, 500);\n frameRate(30);\n smooth();\n stroke(255);\n \n}\n\nvoid draw() {\n// saveFrame(\"output/frames#################.tif\");\n\n background(0);\n\n for (int y = 0; y < height; y += 10) {\n for(int x = 0; x < width; x += 10) {\n pushMatrix();\n translate(width/2, height/2);\n rotate(theta);\n strokeWeight(1);\n point(mouseX, y);\n strokeWeight(3);\n point(x, mouseY);\n theta++;\n popMatrix();\n }\n }\n}\n"}
{"text": "/* \n * DateJS Culture String File\n * Country Code: lt-LT\n * Name: Lithuanian (Lithuania)\n * Format: \"key\" : \"value\"\n * Key is the en-US term, Value is the Key in the current language.\n */\nDate.CultureStrings = Date.CultureStrings || {};\nDate.CultureStrings[\"lt-LT\"] = {\n \"name\": \"lt-LT\",\n \"englishName\": \"Lithuanian (Lithuania)\",\n \"nativeName\": \"lietuvių (Lietuva)\",\n \"Sunday\": \"sekmadienis\",\n \"Monday\": \"pirmadienis\",\n \"Tuesday\": \"antradienis\",\n \"Wednesday\": \"trečiadienis\",\n \"Thursday\": \"ketvirtadienis\",\n \"Friday\": \"penktadienis\",\n \"Saturday\": \"šeštadienis\",\n \"Sun\": \"Sk\",\n \"Mon\": \"Pr\",\n \"Tue\": \"An\",\n \"Wed\": \"Tr\",\n \"Thu\": \"Kt\",\n \"Fri\": \"Pn\",\n \"Sat\": \"Št\",\n \"Su\": \"S\",\n \"Mo\": \"P\",\n \"Tu\": \"A\",\n \"We\": \"T\",\n \"Th\": \"K\",\n \"Fr\": \"Pn\",\n \"Sa\": \"Š\",\n \"S_Sun_Initial\": \"S\",\n \"M_Mon_Initial\": \"P\",\n \"T_Tue_Initial\": \"A\",\n \"W_Wed_Initial\": \"T\",\n \"T_Thu_Initial\": \"K\",\n \"F_Fri_Initial\": \"P\",\n \"S_Sat_Initial\": \"Š\",\n \"January\": \"sausis\",\n \"February\": \"vasaris\",\n \"March\": \"kovas\",\n \"April\": \"balandis\",\n \"May\": \"gegužė\",\n \"June\": \"birželis\",\n \"July\": \"liepa\",\n \"August\": \"rugpjūtis\",\n \"September\": \"rugsėjis\",\n \"October\": \"spalis\",\n \"November\": \"lapkritis\",\n \"December\": \"gruodis\",\n \"Jan_Abbr\": \"Sau\",\n \"Feb_Abbr\": \"Vas\",\n \"Mar_Abbr\": \"Kov\",\n \"Apr_Abbr\": \"Bal\",\n \"May_Abbr\": \"Geg\",\n \"Jun_Abbr\": \"Bir\",\n \"Jul_Abbr\": \"Lie\",\n \"Aug_Abbr\": \"Rgp\",\n \"Sep_Abbr\": \"Rgs\",\n \"Oct_Abbr\": \"Spl\",\n \"Nov_Abbr\": \"Lap\",\n \"Dec_Abbr\": \"Grd\",\n \"AM\": \"\",\n \"PM\": \"\",\n \"firstDayOfWeek\": 1,\n \"twoDigitYearMax\": 2029,\n \"mdy\": \"ymd\",\n \"M/d/yyyy\": \"yyyy.MM.dd\",\n \"dddd, MMMM dd, yyyy\": \"yyyy 'm.' MMMM d 'd.'\",\n \"h:mm tt\": \"HH:mm\",\n \"h:mm:ss tt\": \"HH:mm:ss\",\n \"dddd, MMMM dd, yyyy h:mm:ss tt\": \"yyyy 'm.' MMMM d 'd.' HH:mm:ss\",\n \"yyyy-MM-ddTHH:mm:ss\": \"yyyy-MM-ddTHH:mm:ss\",\n \"yyyy-MM-dd HH:mm:ssZ\": \"yyyy-MM-dd HH:mm:ssZ\",\n \"ddd, dd MMM yyyy HH:mm:ss\": \"ddd, dd MMM yyyy HH:mm:ss\",\n \"MMMM dd\": \"MMMM d 'd.'\",\n \"MMMM, yyyy\": \"yyyy 'm.' MMMM\",\n \"/jan(uary)?/\": \"sau(sis)?\",\n \"/feb(ruary)?/\": \"vas(aris)?\",\n \"/mar(ch)?/\": \"kov(as)?\",\n \"/apr(il)?/\": \"bal(andis)?\",\n \"/may/\": \"geg(užė)?\",\n \"/jun(e)?/\": \"bir(želis)?\",\n \"/jul(y)?/\": \"lie(pa)?\",\n \"/aug(ust)?/\": \"rugpjūtis\",\n \"/sep(t(ember)?)?/\": \"rugsėjis\",\n \"/oct(ober)?/\": \"spalis\",\n \"/nov(ember)?/\": \"lap(kritis)?\",\n \"/dec(ember)?/\": \"gruodis\",\n \"/^su(n(day)?)?/\": \"^s(k(kmadienis)?)?\",\n \"/^mo(n(day)?)?/\": \"^p(r(rmadienis)?)?\",\n \"/^tu(e(s(day)?)?)?/\": \"^a(n(tradienis)?)?\",\n \"/^we(d(nesday)?)?/\": \"^t(r(ečiadienis)?)?\",\n \"/^th(u(r(s(day)?)?)?)?/\": \"^k(t(tvirtadienis)?)?\",\n \"/^fr(i(day)?)?/\": \"^penktadienis\",\n \"/^sa(t(urday)?)?/\": \"^š(t(štadienis)?)?\",\n \"/^next/\": \"^next\",\n \"/^last|past|prev(ious)?/\": \"^last|past|prev(ious)?\",\n \"/^(\\\\+|aft(er)?|from|hence)/\": \"^(\\\\+|aft(er)?|from|hence)\",\n \"/^(\\\\-|bef(ore)?|ago)/\": \"^(\\\\-|bef(ore)?|ago)\",\n \"/^yes(terday)?/\": \"^yes(terday)?\",\n \"/^t(od(ay)?)?/\": \"^t(od(ay)?)?\",\n \"/^tom(orrow)?/\": \"^tom(orrow)?\",\n \"/^n(ow)?/\": \"^n(ow)?\",\n \"/^ms|milli(second)?s?/\": \"^ms|milli(second)?s?\",\n \"/^sec(ond)?s?/\": \"^sec(ond)?s?\",\n \"/^mn|min(ute)?s?/\": \"^mn|min(ute)?s?\",\n \"/^h(our)?s?/\": \"^h(our)?s?\",\n \"/^w(eek)?s?/\": \"^w(eek)?s?\",\n \"/^m(onth)?s?/\": \"^m(onth)?s?\",\n \"/^d(ay)?s?/\": \"^d(ay)?s?\",\n \"/^y(ear)?s?/\": \"^y(ear)?s?\",\n \"/^(a|p)/\": \"^(a|p)\",\n \"/^(a\\\\.?m?\\\\.?|p\\\\.?m?\\\\.?)/\": \"^(a\\\\.?m?\\\\.?|p\\\\.?m?\\\\.?)\",\n \"/^((e(s|d)t|c(s|d)t|m(s|d)t|p(s|d)t)|((gmt)?\\\\s*(\\\\+|\\\\-)\\\\s*\\\\d\\\\d\\\\d\\\\d?)|gmt|utc)/\": \"^((e(s|d)t|c(s|d)t|m(s|d)t|p(s|d)t)|((gmt)?\\\\s*(\\\\+|\\\\-)\\\\s*\\\\d\\\\d\\\\d\\\\d?)|gmt|utc)\",\n \"/^\\\\s*(st|nd|rd|th)/\": \"^\\\\s*(st|nd|rd|th)\",\n \"/^\\\\s*(\\\\:|a(?!u|p)|p)/\": \"^\\\\s*(\\\\:|a(?!u|p)|p)\",\n \"LINT\": \"LINT\",\n \"TOT\": \"TOT\",\n \"CHAST\": \"CHAST\",\n \"NZST\": \"NZST\",\n \"NFT\": \"NFT\",\n \"SBT\": \"SBT\",\n \"AEST\": \"AEST\",\n \"ACST\": \"ACST\",\n \"JST\": \"JST\",\n \"CWST\": \"CWST\",\n \"CT\": \"CT\",\n \"ICT\": \"ICT\",\n \"MMT\": \"MMT\",\n \"BIOT\": \"BST\",\n \"NPT\": \"NPT\",\n \"IST\": \"IST\",\n \"PKT\": \"PKT\",\n \"AFT\": \"AFT\",\n \"MSK\": \"MSK\",\n \"IRST\": \"IRST\",\n \"FET\": \"FET\",\n \"EET\": \"EET\",\n \"CET\": \"CET\",\n \"UTC\": \"UTC\",\n \"GMT\": \"GMT\",\n \"CVT\": \"CVT\",\n \"GST\": \"GST\",\n \"BRT\": \"BRT\",\n \"NST\": \"NST\",\n \"AST\": \"AST\",\n \"EST\": \"EST\",\n \"CST\": \"CST\",\n \"MST\": \"MST\",\n \"PST\": \"PST\",\n \"AKST\": \"AKST\",\n \"MIT\": \"MIT\",\n \"HST\": \"HST\",\n \"SST\": \"SST\",\n \"BIT\": \"BIT\",\n \"CHADT\": \"CHADT\",\n \"NZDT\": \"NZDT\",\n \"AEDT\": \"AEDT\",\n \"ACDT\": \"ACDT\",\n \"AZST\": \"AZST\",\n \"IRDT\": \"IRDT\",\n \"EEST\": \"EEST\",\n \"CEST\": \"CEST\",\n \"BST\": \"BST\",\n \"PMDT\": \"PMDT\",\n \"ADT\": \"ADT\",\n \"NDT\": \"NDT\",\n \"EDT\": \"EDT\",\n \"CDT\": \"CDT\",\n \"MDT\": \"MDT\",\n \"PDT\": \"PDT\",\n \"AKDT\": \"AKDT\",\n \"HADT\": \"HADT\"\n};\nDate.CultureStrings.lang = \"lt-LT\";\n"}
{"text": "---\ntitle: AppointmentItem.Move Method (Outlook)\nkeywords: vbaol11.chm872\nf1_keywords:\n- vbaol11.chm872\nms.prod: outlook\napi_name:\n- Outlook.AppointmentItem.Move\nms.assetid: 29f3a845-cf7d-e598-45c5-1e67e8985215\nms.date: 06/08/2017\n---\n\n\n# AppointmentItem.Move Method (Outlook)\n\nMoves a Microsoft Outlook item to a new folder.\n\n\n## Syntax\n\n _expression_ . **Move**( **_DestFldr_** )\n\n _expression_ A variable that represents an **AppointmentItem** object.\n\n\n### Parameters\n\n\n\n|**Name**|**Required/Optional**|**Data Type**|**Description**|\n|:-----|:-----|:-----|:-----|\n| _DestFldr_|Required| **[Folder](folder-object-outlook.md)**|The destination folder.|\n\n### Return Value\n\nAn **Object** value that represents the item which has been moved to the designated folder.\n\n\n## See also\n\n\n#### Concepts\n\n\n[AppointmentItem Object](appointmentitem-object-outlook.md)\n\n"}
{"text": "config BR2_PACKAGE_XLIB_LIBXFT\n\tbool \"libXft\"\n\tselect BR2_PACKAGE_FONTCONFIG\n\tselect BR2_PACKAGE_FREETYPE\n\tselect BR2_PACKAGE_XLIB_LIBX11\n\tselect BR2_PACKAGE_XLIB_LIBXEXT\n\tselect BR2_PACKAGE_XLIB_LIBXRENDER\n\tselect BR2_PACKAGE_XORGPROTO\n\thelp\n\t X.Org Xft library\n"}
{"text": "/***********************************************************************\n * Copyright (c) 2004 Actuate Corporation.\n * All rights reserved. This program and the accompanying materials\n * are made available under the terms of the Eclipse Public License v1.0\n * which accompanies this distribution, and is available at\n * http://www.eclipse.org/legal/epl-v10.html\n *\n * Contributors:\n * Actuate Corporation - initial API and implementation\n ***********************************************************************/\n\npackage org.eclipse.birt.chart.computation.withoutaxes;\n\nimport org.eclipse.birt.chart.computation.DataPointHints;\nimport org.eclipse.birt.chart.computation.DataSetIterator;\nimport org.eclipse.birt.chart.computation.GObjectFactory;\nimport org.eclipse.birt.chart.computation.IGObjectFactory;\nimport org.eclipse.birt.chart.engine.i18n.Messages;\nimport org.eclipse.birt.chart.exception.ChartException;\nimport org.eclipse.birt.chart.model.attribute.Bounds;\nimport org.eclipse.birt.chart.model.data.NumberDataElement;\nimport org.eclipse.birt.chart.plugin.ChartEnginePlugin;\nimport org.eclipse.birt.chart.render.ISeriesRenderingHints;\n\n/**\n * SeriesRenderingHints\n */\npublic class SeriesRenderingHints implements ISeriesRenderingHints\n{\n\n\tprivate int iDataSetStructure = UNDEFINED;\n\n\tprivate final DataSetIterator dsiBase;\n\n\tprivate final DataSetIterator dsiOrthogonal;\n\n\tprivate final DataPointHints[] dpha;\n\n\tprivate final PlotWithoutAxes pwoa;\n\n\tprivate final static IGObjectFactory goFactory = GObjectFactory.instance( );\n\n\t/**\n\t * The constructor.\n\t * \n\t * @param pwoa\n\t * @param dpha\n\t * @param dsiBase\n\t * @param dsiOrthogonal\n\t */\n\tSeriesRenderingHints( PlotWithoutAxes pwoa, DataPointHints[] dpha,\n\t\t\tDataSetIterator dsiBase, DataSetIterator dsiOrthogonal )\n\t{\n\t\tthis.pwoa = pwoa;\n\t\tthis.dpha = dpha;\n\t\tthis.dsiBase = dsiBase;\n\t\tthis.dsiOrthogonal = dsiOrthogonal;\n\n\t\t// DEFINE THE DATA SET STRUCTURES\n\t\tif ( dsiBase.size( ) != dsiOrthogonal.size( ) )\n\t\t{\n\t\t\tiDataSetStructure |= BASE_ORTHOGONAL_OUT_OF_SYNC;\n\t\t}\n\t\telse\n\t\t{\n\t\t\tiDataSetStructure = BASE_ORTHOGONAL_IN_SYNC;\n\t\t}\n\t\tif ( dsiBase.isEmpty( ) )\n\t\t{\n\t\t\tiDataSetStructure |= BASE_EMPTY;\n\t\t}\n\t\tif ( dsiOrthogonal.isEmpty( ) )\n\t\t{\n\t\t\tiDataSetStructure |= ORTHOGONAL_EMPTY;\n\t\t}\n\t}\n\n\tpublic final DataPointHints[] getDataPoints( )\n\t{\n\t\treturn dpha;\n\t}\n\n\tpublic final Double[] asDoubleValues( ) throws ChartException\n\t{\n\t\tfinal int iCount = dpha.length;\n\t\tfinal Double[] doa = new Double[iCount];\n\t\tNumberDataElement nde;\n\t\tObject o;\n\n\t\tfor ( int i = 0; i < iCount; i++ )\n\t\t{\n\t\t\to = dpha[i].getOrthogonalValue( );\n\t\t\tif ( o instanceof NumberDataElement )\n\t\t\t{\n\t\t\t\tnde = (NumberDataElement) o;\n\t\t\t\tdoa[i] = new Double( nde.getValue( ) );\n\t\t\t}\n\t\t\telse if ( o == null )\n\t\t\t{\n\t\t\t\tdoa[i] = null;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tthrow new ChartException( ChartEnginePlugin.ID,\n\t\t\t\t\t\tChartException.DATA_FORMAT,\n\t\t\t\t\t\t\"exception.dataset.non.numerical.to.numerical\", //$NON-NLS-1$\n\t\t\t\t\t\tnew Object[]{\n\t\t\t\t\t\t\to\n\t\t\t\t\t\t},\n\t\t\t\t\t\tMessages.getResourceBundle( pwoa.getRunTimeContext( )\n\t\t\t\t\t\t\t\t.getULocale( ) ) );\n\t\t\t}\n\t\t}\n\t\treturn doa;\n\t}\n\n\tpublic final double[] asPrimitiveDoubleValues( ) throws ChartException\n\t{\n\t\tfinal int iCount = dpha.length;\n\t\tfinal double[] doa = new double[iCount];\n\t\tObject o;\n\n\t\tfor ( int i = 0; i < iCount; i++ )\n\t\t{\n\t\t\to = dpha[i].getOrthogonalValue( );\n\t\t\tif ( o instanceof Number )\n\t\t\t{\n\t\t\t\tdoa[i] = ( (Number) o ).doubleValue( );\n\t\t\t}\n\t\t\telse if ( o == null )\n\t\t\t{\n\t\t\t\tdoa[i] = Double.NaN;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tthrow new ChartException( ChartEnginePlugin.ID,\n\t\t\t\t\t\tChartException.DATA_FORMAT,\n\t\t\t\t\t\t\"exception.dataset.non.numerical.to.numerical\", //$NON-NLS-1$\n\t\t\t\t\t\tnew Object[]{\n\t\t\t\t\t\t\to\n\t\t\t\t\t\t},\n\t\t\t\t\t\tMessages.getResourceBundle( pwoa.getRunTimeContext( )\n\t\t\t\t\t\t\t\t.getULocale( ) ) );\n\t\t\t}\n\t\t}\n\t\treturn doa;\n\t}\n\n\t/*\n\t * (non-Javadoc)\n\t * \n\t * @see org.eclipse.birt.chart.render.ISeriesRenderingHints#getDataSetStructure()\n\t */\n\tpublic int getDataSetStructure( )\n\t{\n\t\treturn iDataSetStructure;\n\t}\n\n\t/*\n\t * (non-Javadoc)\n\t * \n\t * @see org.eclipse.birt.chart.render.ISeriesRenderingHints#getBaseDataSet()\n\t */\n\tpublic DataSetIterator getBaseDataSet( )\n\t{\n\t\treturn dsiBase;\n\t}\n\n\t/*\n\t * (non-Javadoc)\n\t * \n\t * @see org.eclipse.birt.chart.render.ISeriesRenderingHints#getOrthogonalDataSet()\n\t */\n\tpublic DataSetIterator getOrthogonalDataSet( )\n\t{\n\t\treturn dsiOrthogonal;\n\t}\n\n\t/*\n\t * (non-Javadoc)\n\t * \n\t * @see org.eclipse.birt.chart.render.ISeriesRenderingHints#getClientAreaBounds(boolean)\n\t */\n\tpublic Bounds getClientAreaBounds( boolean bReduceByInsets )\n\t{\n\t\tfinal Bounds boClientArea = goFactory.copyOf( pwoa.getPlotBounds( ) );\n\t\tif ( bReduceByInsets )\n\t\t{\n\t\t\tboClientArea.adjust( pwoa.getPlotInsets( ) );\n\t\t}\n\t\treturn boClientArea;\n\t}\n}"}
{"text": "package suanfa;\n\nimport java.util.HashMap;\n\n/**\n * @auther: TKQ\n * @Title: LeetCode_387_346\n * @Copyright: Copyright (c) 2019\n * @Description:\n * @Company:\n * @Created: 2019-12-08 17:41\n */\npublic class LeetCode_387_346 {\n\n public int firstUniqChar(String s) {\n HashMap hm = new HashMap();\n for (int i = 0; i < s.length(); i++) {\n hm.put(s.charAt(i), hm.getOrDefault(s.charAt(i), 0) + 1);\n }\n for (int i = 0; i < s.length(); i++) {\n if (hm.get(s.charAt(i)) == 1) {\n return i;\n }\n }\n return -1;\n }\n}\n"}
{"text": "assertSame('😀', Emoji::CHARACTER_GRINNING_FACE);\n $this->assertSame('🥰', Emoji::CHARACTER_SMILING_FACE_WITH_HEARTS);\n $this->assertSame('🔟', Emoji::CHARACTER_KEYCAP_10);\n }\n\n /** @test */\n public function it_provides_a_convenience_method_to_return_emoji_characters()\n {\n $this->assertSame('😀', Emoji::grinningFace());\n $this->assertSame('🥰', Emoji::smilingFaceWithHearts());\n $this->assertSame('🔟', Emoji::keycap10());\n $this->assertSame('🥇', Emoji::firstPlaceMedal());\n $this->assertSame('🥈', Emoji::secondPlaceMedal());\n $this->assertSame('🥉', Emoji::thirdPlaceMedal());\n }\n\n /** @test */\n public function it_can_return_the_skin_tone_component_emoji()\n {\n $this->assertSame('🏻', Emoji::lightSkinTone());\n }\n\n /** @test */\n public function it_will_throw_an_exception_when_getting_unknown_characters()\n {\n $this->expectException(UnknownCharacter::class);\n\n Emoji::thisCharacterDoesNotExist();\n }\n\n /** @test */\n public function it_will_return_an_emoji_character_when_given_a_language_code()\n {\n $this->assertSame('🇧🇪', Emoji::countryFlag('BE'));\n $this->assertSame('🇧🇪', Emoji::countryFlag('be'));\n $this->assertSame('🇦🇦', Emoji::countryFlag('AA'));\n }\n\n /**\n * @test\n *\n * @dataProvider invalidCountryCodeProvider\n */\n public function it_will_throw_an_exception_when_try_to_get_a_flag_for_a_string_that_doesnt_have_two_characters(string $invalidCountryCode)\n {\n $this->expectException(CouldNotDetermineFlag::class);\n\n Emoji::countryFlag($invalidCountryCode);\n }\n\n /**\n * @test\n *\n * @dataProvider codeToCallableProvider\n */\n public function can_access_emoji_by_constant($name, $code, $cleanName, $const, $method)\n {\n $this->assertEquals($this->unicodeHexToEmoji($code), Emoji::{$method}());\n }\n\n /**\n * @test\n *\n * @dataProvider codeToCallableProvider\n */\n public function can_access_emoji_by_method($name, $code, $cleanName, $const, $method)\n {\n $this->assertEquals($this->unicodeHexToEmoji($code), constant(Emoji::class.'::'.$const));\n }\n\n public function invalidCountryCodeProvider()\n {\n return [\n [''],\n ['a'],\n ['aaa'],\n ];\n }\n\n public function codeToCallableProvider(): array\n {\n return json_decode(file_get_contents(__DIR__.'/emojis.json'), true);\n }\n\n private function unicodeHexToEmoji(string $code)\n {\n return mb_convert_encoding(hex2bin(implode('', array_map(function ($hex) {\n return str_pad($hex, 8, '0', STR_PAD_LEFT);\n }, explode(' ', trim(str_replace('}\\u{', ' ', $code), '}\\u{'))))), 'UTF-8', 'UTF-32');\n }\n}\n"}
{"text": "//\n// Generated by class-dump 3.5 (64 bit).\n//\n// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2015 by Steve Nygard.\n//\n\n#import \n\n@class NSOperationQueue, SKUIClientContext, SKUIITunesPassConfiguration, UIImage;\n\n@interface SKUIRedeemConfiguration : NSObject\n{\n long long _category;\n SKUIClientContext *_clientContext;\n UIImage *_inputImage;\n SKUIITunesPassConfiguration *_itunesPassConfiguration;\n UIImage *_landingImage;\n NSOperationQueue *_operationQueue;\n UIImage *_successImage;\n}\n\n@property(readonly, nonatomic) UIImage *successImage; // @synthesize successImage=_successImage;\n@property(readonly, nonatomic) NSOperationQueue *operationQueue; // @synthesize operationQueue=_operationQueue;\n@property(readonly, nonatomic) UIImage *landingImage; // @synthesize landingImage=_landingImage;\n@property(readonly, nonatomic) SKUIITunesPassConfiguration *ITunesPassConfiguration; // @synthesize ITunesPassConfiguration=_itunesPassConfiguration;\n@property(readonly, nonatomic) UIImage *inputImage; // @synthesize inputImage=_inputImage;\n@property(readonly, nonatomic) SKUIClientContext *clientContext; // @synthesize clientContext=_clientContext;\n@property(readonly, nonatomic) long long category; // @synthesize category=_category;\n- (void).cxx_destruct;\n- (void)_setSuccessImage:(id)arg1;\n- (void)_setLandingImage:(id)arg1;\n- (void)_setInputImage:(id)arg1;\n- (id)_redeemPreflightRequestBodyData;\n- (void)_loadDefaultImages;\n- (void)_loadConfigurationWithURLBagDictionary:(id)arg1 completionBlock:(CDUnknownBlockType)arg2;\n- (void)_didLoadWithResponseDictionary:(id)arg1;\n- (void)loadConfigurationWithCompletionBlock:(CDUnknownBlockType)arg1;\n- (id)initWithOperationQueue:(id)arg1 category:(long long)arg2 clientContext:(id)arg3;\n\n@end\n\n"}
{"text": "// Copyright 2019-present Facebook Inc. All rights reserved.\n// This source code is licensed under the Apache 2.0 license found\n// in the LICENSE file in the root directory of this source tree.\n\npackage ocgremlin\n\nimport (\n\t\"context\"\n\t\"strconv\"\n\t\"time\"\n\n\t\"github.com/facebook/ent/dialect/gremlin\"\n\n\t\"go.opencensus.io/stats\"\n\t\"go.opencensus.io/stats/view\"\n\t\"go.opencensus.io/tag\"\n)\n\n// The following measures are supported for use in custom views.\nvar (\n\tRequestCount = stats.Int64(\n\t\t\"gremlin/request_count\",\n\t\t\"Number of Gremlin requests started\",\n\t\tstats.UnitDimensionless,\n\t)\n\tResponseBytes = stats.Int64(\n\t\t\"gremlin/response_bytes\",\n\t\t\"Total number of bytes in response data\",\n\t\tstats.UnitBytes,\n\t)\n\tRoundTripLatency = stats.Float64(\n\t\t\"gremlin/roundtrip_latency\",\n\t\t\"End-to-end latency\",\n\t\tstats.UnitMilliseconds,\n\t)\n)\n\n// The following tags are applied to stats recorded by this package.\nvar (\n\t// StatusCode is the numeric Gremlin response status code,\n\t// or \"error\" if a transport error occurred and no status code was read.\n\tStatusCode, _ = tag.NewKey(\"gremlin_status_code\")\n)\n\n// Default distributions used by views in this package.\nvar (\n\tDefaultSizeDistribution = view.Distribution(32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536, 131072, 262144, 524288, 1048576)\n\tDefaultLatencyDistribution = view.Distribution(1, 2, 3, 4, 5, 6, 8, 10, 13, 16, 20, 25, 30, 40, 50, 65, 80, 100, 130, 160, 200, 250, 300, 400, 500, 650, 800, 1000, 2000, 5000, 10000, 20000, 50000, 100000)\n)\n\n// Package ocgremlin provides some convenience views for measures.\n// You still need to register these views for data to actually be collected.\nvar (\n\tRequestCountView = &view.View{\n\t\tName: \"gremlin/request_count\",\n\t\tMeasure: RequestCount,\n\t\tAggregation: view.Count(),\n\t\tDescription: \"Count of Gremlin requests started\",\n\t}\n\n\tResponseCountView = &view.View{\n\t\tName: \"gremlin/response_count\",\n\t\tMeasure: RoundTripLatency,\n\t\tAggregation: view.Count(),\n\t\tDescription: \"Count of responses received, by response status\",\n\t\tTagKeys: []tag.Key{StatusCode},\n\t}\n\n\tResponseBytesView = &view.View{\n\t\tName: \"gremlin/response_bytes\",\n\t\tMeasure: ResponseBytes,\n\t\tAggregation: DefaultSizeDistribution,\n\t\tDescription: \"Total number of bytes in response data\",\n\t}\n\n\tRoundTripLatencyView = &view.View{\n\t\tName: \"gremlin/roundtrip_latency\",\n\t\tMeasure: RoundTripLatency,\n\t\tAggregation: DefaultLatencyDistribution,\n\t\tDescription: \"End-to-end latency, by response code\",\n\t\tTagKeys: []tag.Key{StatusCode},\n\t}\n)\n\n// Views are the default views provided by this package.\nfunc Views() []*view.View {\n\treturn []*view.View{\n\t\tRequestCountView,\n\t\tResponseCountView,\n\t\tResponseBytesView,\n\t\tRoundTripLatencyView,\n\t}\n}\n\n// statsTransport is an gremlin.RoundTripper that collects stats for the outgoing requests.\ntype statsTransport struct {\n\tbase gremlin.RoundTripper\n}\n\nfunc (t statsTransport) RoundTrip(ctx context.Context, req *gremlin.Request) (*gremlin.Response, error) {\n\tstats.Record(ctx, RequestCount.M(1))\n\tstart := time.Now()\n\trsp, err := t.base.RoundTrip(ctx, req)\n\tlatency := float64(time.Since(start)) / float64(time.Millisecond)\n\tvar (\n\t\ttags = make([]tag.Mutator, 1)\n\t\tms = []stats.Measurement{RoundTripLatency.M(latency)}\n\t)\n\tif err == nil {\n\t\ttags[0] = tag.Upsert(StatusCode, strconv.Itoa(rsp.Status.Code))\n\t\tms = append(ms, ResponseBytes.M(int64(len(rsp.Result.Data))))\n\t} else {\n\t\ttags[0] = tag.Upsert(StatusCode, \"error\")\n\t}\n\t_ = stats.RecordWithTags(ctx, tags, ms...)\n\treturn rsp, err\n}\n"}
{"text": "/*\n * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH\n * under one or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information regarding copyright\n * ownership. Camunda licenses this file to you under the Apache License,\n * Version 2.0; you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.camunda.bpm.engine.rest.history;\n\nimport io.restassured.http.ContentType;\nimport io.restassured.response.Response;\nimport org.camunda.bpm.engine.AuthorizationException;\nimport org.camunda.bpm.engine.BadUserRequestException;\nimport org.camunda.bpm.engine.HistoryService;\nimport org.camunda.bpm.engine.ProcessEngineException;\nimport org.camunda.bpm.engine.batch.Batch;\nimport org.camunda.bpm.engine.exception.NotFoundException;\nimport org.camunda.bpm.engine.history.HistoricProcessInstance;\nimport org.camunda.bpm.engine.history.HistoricProcessInstanceQuery;\nimport org.camunda.bpm.engine.history.SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder;\nimport org.camunda.bpm.engine.history.SetRemovalTimeToHistoricProcessInstancesBuilder;\nimport org.camunda.bpm.engine.impl.HistoricProcessInstanceQueryImpl;\nimport org.camunda.bpm.engine.rest.AbstractRestServiceTest;\nimport org.camunda.bpm.engine.rest.dto.batch.BatchDto;\nimport org.camunda.bpm.engine.rest.dto.history.HistoricProcessInstanceQueryDto;\nimport org.camunda.bpm.engine.rest.exception.InvalidRequestException;\nimport org.camunda.bpm.engine.rest.helper.MockProvider;\nimport org.camunda.bpm.engine.rest.util.JsonPathUtil;\nimport org.camunda.bpm.engine.rest.util.container.TestContainerRule;\nimport org.junit.Assert;\nimport org.junit.Before;\nimport org.junit.ClassRule;\nimport org.junit.Test;\nimport org.mockito.ArgumentCaptor;\nimport org.mockito.Mockito;\n\nimport javax.ws.rs.core.Response.Status;\nimport java.util.Arrays;\nimport java.util.Collections;\nimport java.util.Date;\nimport java.util.HashMap;\nimport java.util.List;\nimport java.util.Map;\n\nimport static io.restassured.RestAssured.given;\nimport static io.restassured.path.json.JsonPath.from;\nimport static org.assertj.core.api.Assertions.assertThat;\nimport static org.camunda.bpm.engine.rest.helper.MockProvider.EXAMPLE_DECISION_INSTANCE_ID;\nimport static org.hamcrest.Matchers.containsString;\nimport static org.hamcrest.Matchers.equalTo;\nimport static org.junit.Assert.assertEquals;\nimport static org.junit.Assert.assertNotNull;\nimport static org.mockito.Matchers.any;\nimport static org.mockito.Matchers.anyListOf;\nimport static org.mockito.Matchers.anyString;\nimport static org.mockito.Matchers.eq;\nimport static org.mockito.Mockito.RETURNS_DEEP_STUBS;\nimport static org.mockito.Mockito.doThrow;\nimport static org.mockito.Mockito.mock;\nimport static org.mockito.Mockito.times;\nimport static org.mockito.Mockito.verify;\nimport static org.mockito.Mockito.verifyNoMoreInteractions;\nimport static org.mockito.Mockito.when;\n\npublic class HistoricProcessInstanceRestServiceInteractionTest extends AbstractRestServiceTest {\n\n @ClassRule\n public static TestContainerRule rule = new TestContainerRule();\n \n protected static final String DELETE_REASON = \"deleteReason\";\n protected static final String TEST_DELETE_REASON = \"test\";\n protected static final String FAIL_IF_NOT_EXISTS = \"failIfNotExists\";\n protected static final String HISTORIC_PROCESS_INSTANCE_URL = TEST_RESOURCE_ROOT_PATH + \"/history/process-instance\";\n protected static final String HISTORIC_SINGLE_PROCESS_INSTANCE_URL = HISTORIC_PROCESS_INSTANCE_URL + \"/{id}\";\n protected static final String DELETE_HISTORIC_PROCESS_INSTANCES_ASYNC_URL = HISTORIC_PROCESS_INSTANCE_URL + \"/delete\";\n protected static final String SET_REMOVAL_TIME_HISTORIC_PROCESS_INSTANCES_ASYNC_URL = HISTORIC_PROCESS_INSTANCE_URL + \"/set-removal-time\";\n protected static final String HISTORIC_SINGLE_PROCESS_INSTANCE_VARIABLES_URL = HISTORIC_PROCESS_INSTANCE_URL + \"/{id}/variable-instances\";\n\n private HistoryService historyServiceMock;\n\n @Before\n public void setUpRuntimeData() {\n historyServiceMock = mock(HistoryService.class);\n\n // runtime service\n when(processEngine.getHistoryService()).thenReturn(historyServiceMock);\n }\n\n @Test\n public void testGetSingleInstance() {\n HistoricProcessInstance mockInstance = MockProvider.createMockHistoricProcessInstance();\n HistoricProcessInstanceQuery sampleInstanceQuery = mock(HistoricProcessInstanceQuery.class);\n\n when(historyServiceMock.createHistoricProcessInstanceQuery()).thenReturn(sampleInstanceQuery);\n when(sampleInstanceQuery.processInstanceId(MockProvider.EXAMPLE_PROCESS_INSTANCE_ID)).thenReturn(sampleInstanceQuery);\n when(sampleInstanceQuery.singleResult()).thenReturn(mockInstance);\n\n Response response = given().pathParam(\"id\", MockProvider.EXAMPLE_PROCESS_INSTANCE_ID)\n .then().expect().statusCode(Status.OK.getStatusCode())\n .when().get(HISTORIC_SINGLE_PROCESS_INSTANCE_URL);\n\n String content = response.asString();\n\n String returnedProcessInstanceId = from(content).getString(\"id\");\n String returnedProcessInstanceBusinessKey = from(content).getString(\"businessKey\");\n String returnedProcessDefinitionId = from(content).getString(\"processDefinitionId\");\n String returnedProcessDefinitionKey = from(content).getString(\"processDefinitionKey\");\n String returnedStartTime = from(content).getString(\"startTime\");\n String returnedEndTime = from(content).getString(\"endTime\");\n long returnedDurationInMillis = from(content).getLong(\"durationInMillis\");\n String returnedStartUserId = from(content).getString(\"startUserId\");\n String returnedStartActivityId = from(content).getString(\"startActivityId\");\n String returnedDeleteReason = from(content).getString(DELETE_REASON);\n String returnedSuperProcessInstanceId = from(content).getString(\"superProcessInstanceId\");\n String returnedSuperCaseInstanceId = from(content).getString(\"superCaseInstanceId\");\n String returnedCaseInstanceId = from(content).getString(\"caseInstanceId\");\n String returnedTenantId = from(content).getString(\"tenantId\");\n String returnedState = from(content).getString(\"state\");\n\n Assert.assertEquals(MockProvider.EXAMPLE_PROCESS_INSTANCE_ID, returnedProcessInstanceId);\n Assert.assertEquals(MockProvider.EXAMPLE_PROCESS_INSTANCE_BUSINESS_KEY, returnedProcessInstanceBusinessKey);\n Assert.assertEquals(MockProvider.EXAMPLE_PROCESS_DEFINITION_ID, returnedProcessDefinitionId);\n Assert.assertEquals(MockProvider.EXAMPLE_PROCESS_DEFINITION_KEY, returnedProcessDefinitionKey);\n Assert.assertEquals(MockProvider.EXAMPLE_HISTORIC_PROCESS_INSTANCE_START_TIME, returnedStartTime);\n Assert.assertEquals(MockProvider.EXAMPLE_HISTORIC_PROCESS_INSTANCE_END_TIME, returnedEndTime);\n Assert.assertEquals(MockProvider.EXAMPLE_HISTORIC_PROCESS_INSTANCE_DURATION_MILLIS, returnedDurationInMillis);\n Assert.assertEquals(MockProvider.EXAMPLE_HISTORIC_PROCESS_INSTANCE_START_USER_ID, returnedStartUserId);\n Assert.assertEquals(MockProvider.EXAMPLE_HISTORIC_PROCESS_INSTANCE_START_ACTIVITY_ID, returnedStartActivityId);\n Assert.assertEquals(MockProvider.EXAMPLE_HISTORIC_PROCESS_INSTANCE_DELETE_REASON, returnedDeleteReason);\n Assert.assertEquals(MockProvider.EXAMPLE_HISTORIC_PROCESS_INSTANCE_SUPER_PROCESS_INSTANCE_ID, returnedSuperProcessInstanceId);\n Assert.assertEquals(MockProvider.EXAMPLE_HISTORIC_PROCESS_INSTANCE_SUPER_CASE_INSTANCE_ID, returnedSuperCaseInstanceId);\n Assert.assertEquals(MockProvider.EXAMPLE_HISTORIC_PROCESS_INSTANCE_CASE_INSTANCE_ID, returnedCaseInstanceId);\n Assert.assertEquals(MockProvider.EXAMPLE_TENANT_ID, returnedTenantId);\n Assert.assertEquals(MockProvider.EXAMPLE_HISTORIC_PROCESS_INSTANCE_STATE, returnedState);\n\n }\n\n @Test\n public void testGetNonExistingProcessInstance() {\n HistoricProcessInstanceQuery sampleInstanceQuery = mock(HistoricProcessInstanceQuery.class);\n\n when(historyServiceMock.createHistoricProcessInstanceQuery()).thenReturn(sampleInstanceQuery);\n when(sampleInstanceQuery.processInstanceId(anyString())).thenReturn(sampleInstanceQuery);\n when(sampleInstanceQuery.singleResult()).thenReturn(null);\n\n given().pathParam(\"id\", \"aNonExistingInstanceId\")\n .then().expect().statusCode(Status.NOT_FOUND.getStatusCode()).contentType(ContentType.JSON)\n .body(\"type\", equalTo(InvalidRequestException.class.getSimpleName()))\n .body(\"message\", equalTo(\"Historic process instance with id aNonExistingInstanceId does not exist\"))\n .when().get(HISTORIC_SINGLE_PROCESS_INSTANCE_URL);\n }\n\n @Test\n public void testDeleteProcessInstance() {\n given().pathParam(\"id\", MockProvider.EXAMPLE_PROCESS_INSTANCE_ID)\n .then().expect().statusCode(Status.NO_CONTENT.getStatusCode())\n .when().delete(HISTORIC_SINGLE_PROCESS_INSTANCE_URL);\n\n verify(historyServiceMock).deleteHistoricProcessInstance(MockProvider.EXAMPLE_PROCESS_INSTANCE_ID);\n }\n\n @Test\n public void testDeleteNonExistingProcessInstance() {\n doThrow(new ProcessEngineException(\"expected exception\")).when(historyServiceMock).deleteHistoricProcessInstance(anyString());\n\n given().pathParam(\"id\", MockProvider.EXAMPLE_PROCESS_INSTANCE_ID)\n .then().expect().statusCode(Status.NOT_FOUND.getStatusCode()).contentType(ContentType.JSON)\n .body(\"type\", equalTo(InvalidRequestException.class.getSimpleName()))\n .body(\"message\", equalTo(\"Historic process instance with id \" + MockProvider.EXAMPLE_PROCESS_INSTANCE_ID + \" does not exist\"))\n .when().delete(HISTORIC_SINGLE_PROCESS_INSTANCE_URL);\n }\n\n @Test\n public void testDeleteNonExistingProcessInstanceIfExists() {\n given().pathParam(\"id\", MockProvider.EXAMPLE_PROCESS_INSTANCE_ID).queryParam(\"failIfNotExists\", false)\n .then().expect().statusCode(Status.NO_CONTENT.getStatusCode())\n .when().delete(HISTORIC_SINGLE_PROCESS_INSTANCE_URL);\n \n verify(historyServiceMock).deleteHistoricProcessInstanceIfExists(MockProvider.EXAMPLE_PROCESS_INSTANCE_ID);\n }\n\n @Test\n public void testDeleteProcessInstanceThrowsAuthorizationException() {\n String message = \"expected exception\";\n doThrow(new AuthorizationException(message)).when(historyServiceMock).deleteHistoricProcessInstance(anyString());\n\n given()\n .pathParam(\"id\", MockProvider.EXAMPLE_PROCESS_INSTANCE_ID)\n .then().expect()\n .statusCode(Status.FORBIDDEN.getStatusCode())\n .contentType(ContentType.JSON)\n .body(\"type\", equalTo(AuthorizationException.class.getSimpleName()))\n .body(\"message\", equalTo(message))\n .when()\n .delete(HISTORIC_SINGLE_PROCESS_INSTANCE_URL);\n }\n\n @Test\n public void testDeleteAsync() {\n List ids = Arrays.asList(MockProvider.EXAMPLE_PROCESS_INSTANCE_ID);\n Batch batchEntity = MockProvider.createMockBatch();\n when(historyServiceMock.deleteHistoricProcessInstancesAsync(\n anyListOf(String.class),\n any(HistoricProcessInstanceQuery.class),\n anyString())\n ).thenReturn(batchEntity);\n\n Map messageBodyJson = new HashMap();\n messageBodyJson.put(\"historicProcessInstanceIds\", ids);\n messageBodyJson.put(DELETE_REASON, TEST_DELETE_REASON);\n\n Response response = given()\n .contentType(ContentType.JSON).body(messageBodyJson)\n .then().expect()\n .statusCode(Status.OK.getStatusCode())\n .when().post(DELETE_HISTORIC_PROCESS_INSTANCES_ASYNC_URL);\n\n verifyBatchJson(response.asString());\n\n verify(historyServiceMock, times(1)).deleteHistoricProcessInstancesAsync(\n eq(ids), eq((HistoricProcessInstanceQuery) null), eq(TEST_DELETE_REASON));\n }\n\n @Test\n public void testDeleteAsyncWithQuery() {\n Batch batchEntity = MockProvider.createMockBatch();\n when(historyServiceMock.deleteHistoricProcessInstancesAsync(\n anyListOf(String.class),\n any(HistoricProcessInstanceQuery.class),\n anyString())\n ).thenReturn(batchEntity);\n\n Map messageBodyJson = new HashMap();\n messageBodyJson.put(DELETE_REASON, TEST_DELETE_REASON);\n HistoricProcessInstanceQueryDto query = new HistoricProcessInstanceQueryDto();\n messageBodyJson.put(\"historicProcessInstanceQuery\", query);\n\n Response response = given()\n .contentType(ContentType.JSON).body(messageBodyJson)\n .then().expect()\n .statusCode(Status.OK.getStatusCode())\n .when().post(DELETE_HISTORIC_PROCESS_INSTANCES_ASYNC_URL);\n\n verifyBatchJson(response.asString());\n\n verify(historyServiceMock, times(1)).deleteHistoricProcessInstancesAsync(\n eq((List) null), any(HistoricProcessInstanceQuery.class), Mockito.eq(TEST_DELETE_REASON));\n }\n\n\n @Test\n public void testDeleteAsyncWithBadRequestQuery() {\n doThrow(new BadUserRequestException(\"process instance ids are empty\"))\n .when(historyServiceMock).deleteHistoricProcessInstancesAsync(eq((List) null), eq((HistoricProcessInstanceQuery) null), anyString());\n\n Map messageBodyJson = new HashMap();\n messageBodyJson.put(DELETE_REASON, TEST_DELETE_REASON);\n\n given()\n .contentType(ContentType.JSON).body(messageBodyJson)\n .then().expect()\n .statusCode(Status.BAD_REQUEST.getStatusCode())\n .when().post(DELETE_HISTORIC_PROCESS_INSTANCES_ASYNC_URL);\n }\n \n @Test\n public void testDeleteAllVariablesByProcessInstanceId() {\n given()\n .pathParam(\"id\", EXAMPLE_PROCESS_INSTANCE_ID)\n .expect()\n .statusCode(Status.NO_CONTENT.getStatusCode())\n .when()\n .delete(HISTORIC_SINGLE_PROCESS_INSTANCE_VARIABLES_URL);\n\n verify(historyServiceMock).deleteHistoricVariableInstancesByProcessInstanceId(EXAMPLE_PROCESS_INSTANCE_ID);\n }\n \n @Test\n public void testDeleteAllVariablesForNonExistingProcessInstance() {\n doThrow(new NotFoundException(\"No historic process instance found with id: 'NON_EXISTING_ID'\"))\n .when(historyServiceMock).deleteHistoricVariableInstancesByProcessInstanceId(\"NON_EXISTING_ID\");\n \n given()\n .pathParam(\"id\", \"NON_EXISTING_ID\")\n .expect()\n .statusCode(Status.NOT_FOUND.getStatusCode())\n .body(containsString(\"No historic process instance found with id: 'NON_EXISTING_ID'\"))\n .when()\n .delete(HISTORIC_SINGLE_PROCESS_INSTANCE_VARIABLES_URL);\n }\n\n @Test\n public void shouldSetRemovalTime_ByIds() {\n SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder builderMock =\n mock(SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder.class, RETURNS_DEEP_STUBS);\n\n when(historyServiceMock.setRemovalTimeToHistoricProcessInstances()).thenReturn(builderMock);\n\n Map payload = new HashMap<>();\n payload.put(\"historicProcessInstanceIds\", Collections.singletonList(EXAMPLE_PROCESS_INSTANCE_ID));\n payload.put(\"calculatedRemovalTime\", true);\n\n given()\n .contentType(ContentType.JSON)\n .body(payload)\n .then()\n .expect().statusCode(Status.OK.getStatusCode())\n .when()\n .post(SET_REMOVAL_TIME_HISTORIC_PROCESS_INSTANCES_ASYNC_URL);\n\n SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder builder =\n historyServiceMock.setRemovalTimeToHistoricProcessInstances();\n\n verify(builder).calculatedRemovalTime();\n verify(builder).byIds(EXAMPLE_PROCESS_INSTANCE_ID);\n verify(builder).byQuery(null);\n verify(builder).executeAsync();\n verifyNoMoreInteractions(builder);\n }\n\n @Test\n public void shouldSetRemovalTime_ByQuery() {\n SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder builderMock =\n mock(SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder.class, RETURNS_DEEP_STUBS);\n\n when(historyServiceMock.setRemovalTimeToHistoricProcessInstances()).thenReturn(builderMock);\n\n HistoricProcessInstanceQuery query = mock(HistoricProcessInstanceQueryImpl.class, RETURNS_DEEP_STUBS);\n when(historyServiceMock.createHistoricProcessInstanceQuery()).thenReturn(query);\n\n Map payload = new HashMap<>();\n payload.put(\"calculatedRemovalTime\", true);\n payload.put(\"historicProcessInstanceQuery\", Collections.singletonMap(\"processDefinitionId\", EXAMPLE_PROCESS_DEFINITION_ID));\n\n given()\n .contentType(ContentType.JSON)\n .body(payload)\n .then()\n .expect().statusCode(Status.OK.getStatusCode())\n .when()\n .post(SET_REMOVAL_TIME_HISTORIC_PROCESS_INSTANCES_ASYNC_URL);\n\n SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder builder =\n historyServiceMock.setRemovalTimeToHistoricProcessInstances();\n\n verify(query).processDefinitionId(EXAMPLE_PROCESS_DEFINITION_ID);\n\n verify(builder).calculatedRemovalTime();\n verify(builder).byIds(null);\n verify(builder).byQuery(query);\n verify(builder).executeAsync();\n verifyNoMoreInteractions(builder);\n }\n\n @Test\n public void shouldSetRemovalTime_Absolute() {\n Date removalTime = new Date();\n\n SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder builderMock =\n mock(SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder.class, RETURNS_DEEP_STUBS);\n\n when(historyServiceMock.setRemovalTimeToHistoricProcessInstances()).thenReturn(builderMock);\n\n Map payload = new HashMap<>();\n payload.put(\"historicProcessInstanceIds\", Collections.singletonList(EXAMPLE_PROCESS_INSTANCE_ID));\n payload.put(\"absoluteRemovalTime\", removalTime);\n\n given()\n .contentType(ContentType.JSON)\n .body(payload)\n .then()\n .expect().statusCode(Status.OK.getStatusCode())\n .when()\n .post(SET_REMOVAL_TIME_HISTORIC_PROCESS_INSTANCES_ASYNC_URL);\n\n SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder builder =\n historyServiceMock.setRemovalTimeToHistoricProcessInstances();\n\n verify(builder).absoluteRemovalTime(removalTime);\n verify(builder).byIds(EXAMPLE_PROCESS_INSTANCE_ID);\n verify(builder).byQuery(null);\n verify(builder).executeAsync();\n verifyNoMoreInteractions(builder);\n }\n\n @Test\n public void shouldNotSetRemovalTime_Absolute() {\n SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder builderMock =\n mock(SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder.class, RETURNS_DEEP_STUBS);\n\n when(historyServiceMock.setRemovalTimeToHistoricProcessInstances()).thenReturn(builderMock);\n\n Map payload = new HashMap<>();\n payload.put(\"historicProcessInstanceIds\", Collections.singletonList(EXAMPLE_PROCESS_INSTANCE_ID));\n payload.put(\"absoluteRemovalTime\", null);\n\n given()\n .contentType(ContentType.JSON)\n .body(payload)\n .then()\n .expect().statusCode(Status.OK.getStatusCode())\n .when()\n .post(SET_REMOVAL_TIME_HISTORIC_PROCESS_INSTANCES_ASYNC_URL);\n\n SetRemovalTimeToHistoricProcessInstancesBuilder builder =\n historyServiceMock.setRemovalTimeToHistoricProcessInstances();\n\n verify(builder).byIds(EXAMPLE_PROCESS_INSTANCE_ID);\n verify(builder).byQuery(null);\n verify(builder).executeAsync();\n verifyNoMoreInteractions(builder);\n }\n\n @Test\n public void shouldClearRemovalTime() {\n SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder builderMock =\n mock(SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder.class, RETURNS_DEEP_STUBS);\n\n when(historyServiceMock.setRemovalTimeToHistoricProcessInstances())\n .thenReturn(builderMock);\n\n Map payload = new HashMap<>();\n payload.put(\"historicProcessInstanceIds\", Collections.singletonList(EXAMPLE_PROCESS_INSTANCE_ID));\n payload.put(\"clearedRemovalTime\", true);\n\n given()\n .contentType(ContentType.JSON)\n .body(payload)\n .then()\n .expect().statusCode(Status.OK.getStatusCode())\n .when()\n .post(SET_REMOVAL_TIME_HISTORIC_PROCESS_INSTANCES_ASYNC_URL);\n\n SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder builder =\n historyServiceMock.setRemovalTimeToHistoricProcessInstances();\n\n verify(builder).clearedRemovalTime();\n verify(builder).byIds(EXAMPLE_PROCESS_INSTANCE_ID);\n verify(builder).byQuery(null);\n verify(builder).executeAsync();\n verifyNoMoreInteractions(builder);\n }\n\n @Test\n public void shouldSetRemovalTime_Response() {\n SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder builderMock =\n mock(SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder.class, RETURNS_DEEP_STUBS);\n\n when(historyServiceMock.setRemovalTimeToHistoricProcessInstances()).thenReturn(builderMock);\n\n Batch batchEntity = MockProvider.createMockBatch();\n when(builderMock.executeAsync()).thenReturn(batchEntity);\n\n Response response = given()\n .contentType(ContentType.JSON)\n .body(Collections.emptyMap())\n .then()\n .expect().statusCode(Status.OK.getStatusCode())\n .when()\n .post(SET_REMOVAL_TIME_HISTORIC_PROCESS_INSTANCES_ASYNC_URL);\n\n verifyBatchJson(response.asString());\n }\n\n @Test\n public void shouldSetRemovalTime_ThrowBadUserException() {\n SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder builderMock =\n mock(SetRemovalTimeSelectModeForHistoricProcessInstancesBuilder.class, RETURNS_DEEP_STUBS);\n\n when(historyServiceMock.setRemovalTimeToHistoricProcessInstances()).thenReturn(builderMock);\n\n doThrow(BadUserRequestException.class).when(builderMock).executeAsync();\n\n given()\n .contentType(ContentType.JSON)\n .body(Collections.emptyMap())\n .then()\n .expect().statusCode(Status.BAD_REQUEST.getStatusCode())\n .when()\n .post(SET_REMOVAL_TIME_HISTORIC_PROCESS_INSTANCES_ASYNC_URL);\n }\n\n @Test\n public void testOrQuery() {\n // given\n HistoricProcessInstanceQueryImpl mockedQuery = mock(HistoricProcessInstanceQueryImpl.class);\n when(historyServiceMock.createHistoricProcessInstanceQuery()).thenReturn(mockedQuery);\n\n String payload = \"{ \\\"orQueries\\\": [{\" +\n \"\\\"processDefinitionKey\\\": \\\"aKey\\\", \" +\n \"\\\"processInstanceBusinessKey\\\": \\\"aBusinessKey\\\"}] }\";\n\n // when\n given()\n .contentType(POST_JSON_CONTENT_TYPE)\n .header(ACCEPT_JSON_HEADER)\n .body(payload)\n .then().expect()\n .statusCode(Status.OK.getStatusCode())\n .when()\n .post(HISTORIC_PROCESS_INSTANCE_URL);\n\n ArgumentCaptor argument =\n ArgumentCaptor.forClass(HistoricProcessInstanceQueryImpl.class);\n\n verify(mockedQuery).addOrQuery(argument.capture());\n\n // then\n assertThat(argument.getValue().getProcessDefinitionKey()).isEqualTo(\"aKey\");\n assertThat(argument.getValue().getBusinessKey()).isEqualTo(\"aBusinessKey\");\n }\n\n protected void verifyBatchJson(String batchJson) {\n BatchDto batch = JsonPathUtil.from(batchJson).getObject(\"\", BatchDto.class);\n assertNotNull(\"The returned batch should not be null.\", batch);\n assertEquals(MockProvider.EXAMPLE_BATCH_ID, batch.getId());\n assertEquals(MockProvider.EXAMPLE_BATCH_TYPE, batch.getType());\n assertEquals(MockProvider.EXAMPLE_BATCH_TOTAL_JOBS, batch.getTotalJobs());\n assertEquals(MockProvider.EXAMPLE_BATCH_JOBS_PER_SEED, batch.getBatchJobsPerSeed());\n assertEquals(MockProvider.EXAMPLE_INVOCATIONS_PER_BATCH_JOB, batch.getInvocationsPerBatchJob());\n assertEquals(MockProvider.EXAMPLE_SEED_JOB_DEFINITION_ID, batch.getSeedJobDefinitionId());\n assertEquals(MockProvider.EXAMPLE_MONITOR_JOB_DEFINITION_ID, batch.getMonitorJobDefinitionId());\n assertEquals(MockProvider.EXAMPLE_BATCH_JOB_DEFINITION_ID, batch.getBatchJobDefinitionId());\n assertEquals(MockProvider.EXAMPLE_TENANT_ID, batch.getTenantId());\n }\n\n\n}\n"}
{"text": "/*!\n * Material Design Iconic Font 1.0.1 by Sergey Kupletsky (@zavoloklom) - http://zavoloklom.github.io/material-design-iconic-font/\n * License - https://github.com/zavoloklom/material-design-iconic-font/blob/gh-pages/License.md (Attribution-ShareAlike 4.0 International license)\n */\n@font-face {\n font-family: 'Material Design Iconic Font';\n src: url('../fonts/Material-Design-Iconic-Font.eot?v=1.0.1');\n src: url('../fonts/Material-Design-Iconic-Font.eot?#iefix&v=1.0.1') format('embedded-opentype'), url('../fonts/Material-Design-Iconic-Font.woff?v=1.0.1') format('woff'), url('../fonts/Material-Design-Iconic-Font.ttf?v=1.0.1') format('truetype'), url('../fonts/Material-Design-Iconic-Font.svg?v=1.0.1#Material-Design-Iconic-Font') format('svg');\n font-weight: normal;\n font-style: normal;\n}\n[class^=\"md-\"],\n[class*=\" md-\"] {\n display: inline-block;\n font: normal normal normal 14px/1 'Material Design Iconic Font';\n font-size: inherit;\n speak: none;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.md {\n line-height: inherit;\n vertical-align: bottom;\n}\n.md-lg {\n font-size: 1.5em;\n line-height: .5em;\n vertical-align: -35%;\n}\n.md-2x {\n font-size: 2em;\n}\n.md-3x {\n font-size: 3em;\n}\n.md-4x {\n font-size: 4em;\n}\n.md-5x {\n font-size: 5em;\n}\n.md-border {\n padding: .2em .25em .15em;\n border: solid 0.08em #808080;\n border-radius: .1em;\n}\n.md-border-circle {\n padding: .2em .25em .15em;\n border: solid 0.08em #808080;\n border-radius: 50%;\n}\n[class^=\"md-\"].pull-left,\n[class*=\" md-\"].pull-left {\n float: left;\n margin-right: .3em;\n}\n[class^=\"md-\"].pull-right,\n[class*=\" md-\"].pull-right {\n float: right;\n margin-left: .3em;\n}\n.md-spin {\n -webkit-animation: md-spin 1.5s infinite linear;\n animation: md-spin 1.5s infinite linear;\n}\n.md-spin-reverse {\n -webkit-animation: md-spin-reverse 1.5s infinite linear;\n animation: md-spin-reverse 1.5s infinite linear;\n}\n@-webkit-keyframes md-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n@keyframes md-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n@-webkit-keyframes md-spin-reverse {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(-359deg);\n transform: rotate(-359deg);\n }\n}\n@keyframes md-spin-reverse {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(-359deg);\n transform: rotate(-359deg);\n }\n}\n.md-rotate-90 {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);\n -webkit-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n.md-rotate-180 {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);\n -webkit-transform: rotate(180deg);\n -ms-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n.md-rotate-270 {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);\n -webkit-transform: rotate(270deg);\n -ms-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n.md-flip-horizontal {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);\n -webkit-transform: scale(-1, 1);\n -ms-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n.md-flip-vertical {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);\n -webkit-transform: scale(1, -1);\n -ms-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n:root .md-rotate-90,\n:root .md-rotate-180,\n:root .md-rotate-270,\n:root .md-flip-horizontal,\n:root .md-flip-vertical {\n filter: none;\n}\n/* Material Design Iconic Font uses the Unicode Private Use Area (PUA) to ensure screen\n readers do not read off random characters that represent icons */\n/* If you do not want use all icons you can disable icon set here */\n.md-3d-rotation:before {\n content: \"\\f000\";\n}\n.md-accessibility:before {\n content: \"\\f001\";\n}\n.md-account-balance:before {\n content: \"\\f002\";\n}\n.md-account-balance-wallet:before {\n content: \"\\f003\";\n}\n.md-account-box:before {\n content: \"\\f004\";\n}\n.md-account-child:before {\n content: \"\\f005\";\n}\n.md-account-circle:before {\n content: \"\\f006\";\n}\n.md-add-shopping-cart:before {\n content: \"\\f007\";\n}\n.md-alarm:before {\n content: \"\\f008\";\n}\n.md-alarm-add:before {\n content: \"\\f009\";\n}\n.md-alarm-off:before {\n content: \"\\f00a\";\n}\n.md-alarm-on:before {\n content: \"\\f00b\";\n}\n.md-android:before {\n content: \"\\f00c\";\n}\n.md-announcement:before {\n content: \"\\f00d\";\n}\n.md-aspect-ratio:before {\n content: \"\\f00e\";\n}\n.md-assessment:before {\n content: \"\\f00f\";\n}\n.md-assignment:before {\n content: \"\\f010\";\n}\n.md-assignment-ind:before {\n content: \"\\f011\";\n}\n.md-assignment-late:before {\n content: \"\\f012\";\n}\n.md-assignment-return:before {\n content: \"\\f013\";\n}\n.md-assignment-returned:before {\n content: \"\\f014\";\n}\n.md-assignment-turned-in:before {\n content: \"\\f015\";\n}\n.md-autorenew:before {\n content: \"\\f016\";\n}\n.md-backup:before {\n content: \"\\f017\";\n}\n.md-book:before {\n content: \"\\f018\";\n}\n.md-bookmark:before {\n content: \"\\f019\";\n}\n.md-bookmark-outline:before {\n content: \"\\f01a\";\n}\n.md-bug-report:before {\n content: \"\\f01b\";\n}\n.md-cached:before {\n content: \"\\f01c\";\n}\n.md-class:before {\n content: \"\\f01d\";\n}\n.md-credit-card:before {\n content: \"\\f01e\";\n}\n.md-dashboard:before {\n content: \"\\f01f\";\n}\n.md-delete:before {\n content: \"\\f020\";\n}\n.md-description:before {\n content: \"\\f021\";\n}\n.md-dns:before {\n content: \"\\f022\";\n}\n.md-done:before {\n content: \"\\f023\";\n}\n.md-done-all:before {\n content: \"\\f024\";\n}\n.md-event:before {\n content: \"\\f025\";\n}\n.md-exit-to-app:before {\n content: \"\\f026\";\n}\n.md-explore:before {\n content: \"\\f027\";\n}\n.md-extension:before {\n content: \"\\f028\";\n}\n.md-face-unlock:before {\n content: \"\\f029\";\n}\n.md-favorite:before {\n content: \"\\f02a\";\n}\n.md-favorite-outline:before {\n content: \"\\f02b\";\n}\n.md-find-in-page:before {\n content: \"\\f02c\";\n}\n.md-find-replace:before {\n content: \"\\f02d\";\n}\n.md-flip-to-back:before {\n content: \"\\f02e\";\n}\n.md-flip-to-front:before {\n content: \"\\f02f\";\n}\n.md-get-app:before {\n content: \"\\f030\";\n}\n.md-grade:before {\n content: \"\\f031\";\n}\n.md-group-work:before {\n content: \"\\f032\";\n}\n.md-help:before {\n content: \"\\f033\";\n}\n.md-highlight-remove:before {\n content: \"\\f034\";\n}\n.md-history:before {\n content: \"\\f035\";\n}\n.md-home:before {\n content: \"\\f036\";\n}\n.md-https:before {\n content: \"\\f037\";\n}\n.md-info:before {\n content: \"\\f038\";\n}\n.md-info-outline:before {\n content: \"\\f039\";\n}\n.md-input:before {\n content: \"\\f03a\";\n}\n.md-invert-colors:before {\n content: \"\\f03b\";\n}\n.md-label:before {\n content: \"\\f03c\";\n}\n.md-label-outline:before {\n content: \"\\f03d\";\n}\n.md-language:before {\n content: \"\\f03e\";\n}\n.md-launch:before {\n content: \"\\f03f\";\n}\n.md-list:before {\n content: \"\\f040\";\n}\n.md-lock:before {\n content: \"\\f041\";\n}\n.md-lock-open:before {\n content: \"\\f042\";\n}\n.md-lock-outline:before {\n content: \"\\f043\";\n}\n.md-loyalty:before {\n content: \"\\f044\";\n}\n.md-markunread-mailbox:before {\n content: \"\\f045\";\n}\n.md-note-add:before {\n content: \"\\f046\";\n}\n.md-open-in-browser:before {\n content: \"\\f047\";\n}\n.md-open-in-new:before {\n content: \"\\f048\";\n}\n.md-open-with:before {\n content: \"\\f049\";\n}\n.md-pageview:before {\n content: \"\\f04a\";\n}\n.md-payment:before {\n content: \"\\f04b\";\n}\n.md-perm-camera-mic:before {\n content: \"\\f04c\";\n}\n.md-perm-contact-cal:before {\n content: \"\\f04d\";\n}\n.md-perm-data-setting:before {\n content: \"\\f04e\";\n}\n.md-perm-device-info:before {\n content: \"\\f04f\";\n}\n.md-perm-identity:before {\n content: \"\\f050\";\n}\n.md-perm-media:before {\n content: \"\\f051\";\n}\n.md-perm-phone-msg:before {\n content: \"\\f052\";\n}\n.md-perm-scan-wifi:before {\n content: \"\\f053\";\n}\n.md-picture-in-picture:before {\n content: \"\\f054\";\n}\n.md-polymer:before {\n content: \"\\f055\";\n}\n.md-print:before {\n content: \"\\f056\";\n}\n.md-query-builder:before {\n content: \"\\f057\";\n}\n.md-question-answer:before {\n content: \"\\f058\";\n}\n.md-receipt:before {\n content: \"\\f059\";\n}\n.md-redeem:before {\n content: \"\\f05a\";\n}\n.md-report-problem:before {\n content: \"\\f05b\";\n}\n.md-restore:before {\n content: \"\\f05c\";\n}\n.md-room:before {\n content: \"\\f05d\";\n}\n.md-schedule:before {\n content: \"\\f05e\";\n}\n.md-search:before {\n content: \"\\f05f\";\n}\n.md-settings:before {\n content: \"\\f060\";\n}\n.md-settings-applications:before {\n content: \"\\f061\";\n}\n.md-settings-backup-restore:before {\n content: \"\\f062\";\n}\n.md-settings-bluetooth:before {\n content: \"\\f063\";\n}\n.md-settings-cell:before {\n content: \"\\f064\";\n}\n.md-settings-display:before {\n content: \"\\f065\";\n}\n.md-settings-ethernet:before {\n content: \"\\f066\";\n}\n.md-settings-input-antenna:before {\n content: \"\\f067\";\n}\n.md-settings-input-component:before {\n content: \"\\f068\";\n}\n.md-settings-input-composite:before {\n content: \"\\f069\";\n}\n.md-settings-input-hdmi:before {\n content: \"\\f06a\";\n}\n.md-settings-input-svideo:before {\n content: \"\\f06b\";\n}\n.md-settings-overscan:before {\n content: \"\\f06c\";\n}\n.md-settings-phone:before {\n content: \"\\f06d\";\n}\n.md-settings-power:before {\n content: \"\\f06e\";\n}\n.md-settings-remote:before {\n content: \"\\f06f\";\n}\n.md-settings-voice:before {\n content: \"\\f070\";\n}\n.md-shop:before {\n content: \"\\f071\";\n}\n.md-shopping-basket:before {\n content: \"\\f072\";\n}\n.md-shopping-cart:before {\n content: \"\\f073\";\n}\n.md-shop-two:before {\n content: \"\\f074\";\n}\n.md-speaker-notes:before {\n content: \"\\f075\";\n}\n.md-spellcheck:before {\n content: \"\\f076\";\n}\n.md-star-rate:before {\n content: \"\\f077\";\n}\n.md-stars:before {\n content: \"\\f078\";\n}\n.md-store:before {\n content: \"\\f079\";\n}\n.md-subject:before {\n content: \"\\f07a\";\n}\n.md-swap-horiz:before {\n content: \"\\f07b\";\n}\n.md-swap-vert:before {\n content: \"\\f07c\";\n}\n.md-swap-vert-circle:before {\n content: \"\\f07d\";\n}\n.md-system-update-tv:before {\n content: \"\\f07e\";\n}\n.md-tab:before {\n content: \"\\f07f\";\n}\n.md-tab-unselected:before {\n content: \"\\f080\";\n}\n.md-theaters:before {\n content: \"\\f081\";\n}\n.md-thumb-down:before {\n content: \"\\f082\";\n}\n.md-thumbs-up-down:before {\n content: \"\\f083\";\n}\n.md-thumb-up:before {\n content: \"\\f084\";\n}\n.md-toc:before {\n content: \"\\f085\";\n}\n.md-today:before {\n content: \"\\f086\";\n}\n.md-track-changes:before {\n content: \"\\f087\";\n}\n.md-translate:before {\n content: \"\\f088\";\n}\n.md-trending-down:before {\n content: \"\\f089\";\n}\n.md-trending-neutral:before {\n content: \"\\f08a\";\n}\n.md-trending-up:before {\n content: \"\\f08b\";\n}\n.md-turned-in:before {\n content: \"\\f08c\";\n}\n.md-turned-in-not:before {\n content: \"\\f08d\";\n}\n.md-verified-user:before {\n content: \"\\f08e\";\n}\n.md-view-agenda:before {\n content: \"\\f08f\";\n}\n.md-view-array:before {\n content: \"\\f090\";\n}\n.md-view-carousel:before {\n content: \"\\f091\";\n}\n.md-view-column:before {\n content: \"\\f092\";\n}\n.md-view-day:before {\n content: \"\\f093\";\n}\n.md-view-headline:before {\n content: \"\\f094\";\n}\n.md-view-list:before {\n content: \"\\f095\";\n}\n.md-view-module:before {\n content: \"\\f096\";\n}\n.md-view-quilt:before {\n content: \"\\f097\";\n}\n.md-view-stream:before {\n content: \"\\f098\";\n}\n.md-view-week:before {\n content: \"\\f099\";\n}\n.md-visibility:before {\n content: \"\\f09a\";\n}\n.md-visibility-off:before {\n content: \"\\f09b\";\n}\n.md-wallet-giftcard:before {\n content: \"\\f09c\";\n}\n.md-wallet-membership:before {\n content: \"\\f09d\";\n}\n.md-wallet-travel:before {\n content: \"\\f09e\";\n}\n.md-work:before {\n content: \"\\f09f\";\n}\n.md-error:before {\n content: \"\\f0a0\";\n}\n.md-warning:before {\n content: \"\\f0a1\";\n}\n.md-album:before {\n content: \"\\f0a2\";\n}\n.md-av-timer:before {\n content: \"\\f0a3\";\n}\n.md-closed-caption:before {\n content: \"\\f0a4\";\n}\n.md-equalizer:before {\n content: \"\\f0a5\";\n}\n.md-explicit:before {\n content: \"\\f0a6\";\n}\n.md-fast-forward:before {\n content: \"\\f0a7\";\n}\n.md-fast-rewind:before {\n content: \"\\f0a8\";\n}\n.md-games:before {\n content: \"\\f0a9\";\n}\n.md-hearing:before {\n content: \"\\f0aa\";\n}\n.md-high-quality:before {\n content: \"\\f0ab\";\n}\n.md-loop:before {\n content: \"\\f0ac\";\n}\n.md-mic:before {\n content: \"\\f0ad\";\n}\n.md-mic-none:before {\n content: \"\\f0ae\";\n}\n.md-mic-off:before {\n content: \"\\f0af\";\n}\n.md-movie:before {\n content: \"\\f0b0\";\n}\n.md-my-library-add:before {\n content: \"\\f0b1\";\n}\n.md-my-library-books:before {\n content: \"\\f0b2\";\n}\n.md-my-library-music:before {\n content: \"\\f0b3\";\n}\n.md-new-releases:before {\n content: \"\\f0b4\";\n}\n.md-not-interested:before {\n content: \"\\f0b5\";\n}\n.md-pause:before {\n content: \"\\f0b6\";\n}\n.md-pause-circle-fill:before {\n content: \"\\f0b7\";\n}\n.md-pause-circle-outline:before {\n content: \"\\f0b8\";\n}\n.md-play-arrow:before {\n content: \"\\f0b9\";\n}\n.md-play-circle-fill:before {\n content: \"\\f0ba\";\n}\n.md-play-circle-outline:before {\n content: \"\\f0bb\";\n}\n.md-playlist-add:before {\n content: \"\\f0bc\";\n}\n.md-play-shopping-bag:before {\n content: \"\\f0bd\";\n}\n.md-queue:before {\n content: \"\\f0be\";\n}\n.md-queue-music:before {\n content: \"\\f0bf\";\n}\n.md-radio:before {\n content: \"\\f0c0\";\n}\n.md-recent-actors:before {\n content: \"\\f0c1\";\n}\n.md-repeat:before {\n content: \"\\f0c2\";\n}\n.md-repeat-one:before {\n content: \"\\f0c3\";\n}\n.md-replay:before {\n content: \"\\f0c4\";\n}\n.md-shuffle:before {\n content: \"\\f0c5\";\n}\n.md-skip-next:before {\n content: \"\\f0c6\";\n}\n.md-skip-previous:before {\n content: \"\\f0c7\";\n}\n.md-snooze:before {\n content: \"\\f0c8\";\n}\n.md-stop:before {\n content: \"\\f0c9\";\n}\n.md-subtitles:before {\n content: \"\\f0ca\";\n}\n.md-surround-sound:before {\n content: \"\\f0cb\";\n}\n.md-videocam:before {\n content: \"\\f0cc\";\n}\n.md-videocam-off:before {\n content: \"\\f0cd\";\n}\n.md-video-collection:before {\n content: \"\\f0ce\";\n}\n.md-volume-down:before {\n content: \"\\f0cf\";\n}\n.md-volume-mute:before {\n content: \"\\f0d0\";\n}\n.md-volume-off:before {\n content: \"\\f0d1\";\n}\n.md-volume-up:before {\n content: \"\\f0d2\";\n}\n.md-web:before {\n content: \"\\f0d3\";\n}\n.md-business:before {\n content: \"\\f0d4\";\n}\n.md-call:before {\n content: \"\\f0d5\";\n}\n.md-call-end:before {\n content: \"\\f0d6\";\n}\n.md-call-made:before {\n content: \"\\f0d7\";\n}\n.md-call-merge:before {\n content: \"\\f0d8\";\n}\n.md-call-missed:before {\n content: \"\\f0d9\";\n}\n.md-call-received:before {\n content: \"\\f0da\";\n}\n.md-call-split:before {\n content: \"\\f0db\";\n}\n.md-chat:before {\n content: \"\\f0dc\";\n}\n.md-clear-all:before {\n content: \"\\f0dd\";\n}\n.md-comment:before {\n content: \"\\f0de\";\n}\n.md-contacts:before {\n content: \"\\f0df\";\n}\n.md-dialer-sip:before {\n content: \"\\f0e0\";\n}\n.md-dialpad:before {\n content: \"\\f0e1\";\n}\n.md-dnd-on:before {\n content: \"\\f0e2\";\n}\n.md-email:before {\n content: \"\\f0e3\";\n}\n.md-forum:before {\n content: \"\\f0e4\";\n}\n.md-import-export:before {\n content: \"\\f0e5\";\n}\n.md-invert-colors-off:before {\n content: \"\\f0e6\";\n}\n.md-invert-colors-on:before {\n content: \"\\f0e7\";\n}\n.md-live-help:before {\n content: \"\\f0e8\";\n}\n.md-location-off:before {\n content: \"\\f0e9\";\n}\n.md-location-on:before {\n content: \"\\f0ea\";\n}\n.md-message:before {\n content: \"\\f0eb\";\n}\n.md-messenger:before {\n content: \"\\f0ec\";\n}\n.md-no-sim:before {\n content: \"\\f0ed\";\n}\n.md-phone:before {\n content: \"\\f0ee\";\n}\n.md-portable-wifi-off:before {\n content: \"\\f0ef\";\n}\n.md-quick-contacts-dialer:before {\n content: \"\\f0f0\";\n}\n.md-quick-contacts-mail:before {\n content: \"\\f0f1\";\n}\n.md-ring-volume:before {\n content: \"\\f0f2\";\n}\n.md-stay-current-landscape:before {\n content: \"\\f0f3\";\n}\n.md-stay-current-portrait:before {\n content: \"\\f0f4\";\n}\n.md-stay-primary-landscape:before {\n content: \"\\f0f5\";\n}\n.md-stay-primary-portrait:before {\n content: \"\\f0f6\";\n}\n.md-swap-calls:before {\n content: \"\\f0f7\";\n}\n.md-textsms:before {\n content: \"\\f0f8\";\n}\n.md-voicemail:before {\n content: \"\\f0f9\";\n}\n.md-vpn-key:before {\n content: \"\\f0fa\";\n}\n.md-add:before {\n content: \"\\f0fb\";\n}\n.md-add-box:before {\n content: \"\\f0fc\";\n}\n.md-add-circle:before {\n content: \"\\f0fd\";\n}\n.md-add-circle-outline:before {\n content: \"\\f0fe\";\n}\n.md-archive:before {\n content: \"\\f0ff\";\n}\n.md-backspace:before {\n content: \"\\f100\";\n}\n.md-block:before {\n content: \"\\f101\";\n}\n.md-clear:before {\n content: \"\\f102\";\n}\n.md-content-copy:before {\n content: \"\\f103\";\n}\n.md-content-cut:before {\n content: \"\\f104\";\n}\n.md-content-paste:before {\n content: \"\\f105\";\n}\n.md-create:before {\n content: \"\\f106\";\n}\n.md-drafts:before {\n content: \"\\f107\";\n}\n.md-filter-list:before {\n content: \"\\f108\";\n}\n.md-flag:before {\n content: \"\\f109\";\n}\n.md-forward:before {\n content: \"\\f10a\";\n}\n.md-gesture:before {\n content: \"\\f10b\";\n}\n.md-inbox:before {\n content: \"\\f10c\";\n}\n.md-link:before {\n content: \"\\f10d\";\n}\n.md-mail:before {\n content: \"\\f10e\";\n}\n.md-markunread:before {\n content: \"\\f10f\";\n}\n.md-redo:before {\n content: \"\\f110\";\n}\n.md-remove:before {\n content: \"\\f111\";\n}\n.md-remove-circle:before {\n content: \"\\f112\";\n}\n.md-remove-circle-outline:before {\n content: \"\\f113\";\n}\n.md-reply:before {\n content: \"\\f114\";\n}\n.md-reply-all:before {\n content: \"\\f115\";\n}\n.md-report:before {\n content: \"\\f116\";\n}\n.md-save:before {\n content: \"\\f117\";\n}\n.md-select-all:before {\n content: \"\\f118\";\n}\n.md-send:before {\n content: \"\\f119\";\n}\n.md-sort:before {\n content: \"\\f11a\";\n}\n.md-text-format:before {\n content: \"\\f11b\";\n}\n.md-undo:before {\n content: \"\\f11c\";\n}\n.md-access-alarm:before {\n content: \"\\f11d\";\n}\n.md-access-alarms:before {\n content: \"\\f11e\";\n}\n.md-access-time:before {\n content: \"\\f11f\";\n}\n.md-add-alarm:before {\n content: \"\\f120\";\n}\n.md-airplanemode-off:before {\n content: \"\\f121\";\n}\n.md-airplanemode-on:before {\n content: \"\\f122\";\n}\n.md-battery-20:before {\n content: \"\\f123\";\n}\n.md-battery-30:before {\n content: \"\\f124\";\n}\n.md-battery-50:before {\n content: \"\\f125\";\n}\n.md-battery-60:before {\n content: \"\\f126\";\n}\n.md-battery-80:before {\n content: \"\\f127\";\n}\n.md-battery-90:before {\n content: \"\\f128\";\n}\n.md-battery-alert:before {\n content: \"\\f129\";\n}\n.md-battery-charging-20:before {\n content: \"\\f12a\";\n}\n.md-battery-charging-30:before {\n content: \"\\f12b\";\n}\n.md-battery-charging-50:before {\n content: \"\\f12c\";\n}\n.md-battery-charging-60:before {\n content: \"\\f12d\";\n}\n.md-battery-charging-80:before {\n content: \"\\f12e\";\n}\n.md-battery-charging-90:before {\n content: \"\\f12f\";\n}\n.md-battery-charging-full:before {\n content: \"\\f130\";\n}\n.md-battery-full:before {\n content: \"\\f131\";\n}\n.md-battery-std:before {\n content: \"\\f132\";\n}\n.md-battery-unknown:before {\n content: \"\\f133\";\n}\n.md-bluetooth:before {\n content: \"\\f134\";\n}\n.md-bluetooth-connected:before {\n content: \"\\f135\";\n}\n.md-bluetooth-disabled:before {\n content: \"\\f136\";\n}\n.md-bluetooth-searching:before {\n content: \"\\f137\";\n}\n.md-brightness-auto:before {\n content: \"\\f138\";\n}\n.md-brightness-high:before {\n content: \"\\f139\";\n}\n.md-brightness-low:before {\n content: \"\\f13a\";\n}\n.md-brightness-medium:before {\n content: \"\\f13b\";\n}\n.md-data-usage:before {\n content: \"\\f13c\";\n}\n.md-developer-mode:before {\n content: \"\\f13d\";\n}\n.md-devices:before {\n content: \"\\f13e\";\n}\n.md-dvr:before {\n content: \"\\f13f\";\n}\n.md-gps-fixed:before {\n content: \"\\f140\";\n}\n.md-gps-not-fixed:before {\n content: \"\\f141\";\n}\n.md-gps-off:before {\n content: \"\\f142\";\n}\n.md-location-disabled:before {\n content: \"\\f143\";\n}\n.md-location-searching:before {\n content: \"\\f144\";\n}\n.md-multitrack-audio:before {\n content: \"\\f145\";\n}\n.md-network-cell:before {\n content: \"\\f146\";\n}\n.md-network-wifi:before {\n content: \"\\f147\";\n}\n.md-nfc:before {\n content: \"\\f148\";\n}\n.md-now-wallpaper:before {\n content: \"\\f149\";\n}\n.md-now-widgets:before {\n content: \"\\f14a\";\n}\n.md-screen-lock-landscape:before {\n content: \"\\f14b\";\n}\n.md-screen-lock-portrait:before {\n content: \"\\f14c\";\n}\n.md-screen-lock-rotation:before {\n content: \"\\f14d\";\n}\n.md-screen-rotation:before {\n content: \"\\f14e\";\n}\n.md-sd-storage:before {\n content: \"\\f14f\";\n}\n.md-settings-system-daydream:before {\n content: \"\\f150\";\n}\n.md-signal-cellular-0-bar:before {\n content: \"\\f151\";\n}\n.md-signal-cellular-1-bar:before {\n content: \"\\f152\";\n}\n.md-signal-cellular-2-bar:before {\n content: \"\\f153\";\n}\n.md-signal-cellular-3-bar:before {\n content: \"\\f154\";\n}\n.md-signal-cellular-4-bar:before {\n content: \"\\f155\";\n}\n.md-signal-cellular-connected-no-internet-0-bar:before {\n content: \"\\f156\";\n}\n.md-signal-cellular-connected-no-internet-1-bar:before {\n content: \"\\f157\";\n}\n.md-signal-cellular-connected-no-internet-2-bar:before {\n content: \"\\f158\";\n}\n.md-signal-cellular-connected-no-internet-3-bar:before {\n content: \"\\f159\";\n}\n.md-signal-cellular-connected-no-internet-4-bar:before {\n content: \"\\f15a\";\n}\n.md-signal-cellular-no-sim:before {\n content: \"\\f15b\";\n}\n.md-signal-cellular-null:before {\n content: \"\\f15c\";\n}\n.md-signal-cellular-off:before {\n content: \"\\f15d\";\n}\n.md-signal-wifi-0-bar:before {\n content: \"\\f15e\";\n}\n.md-signal-wifi-1-bar:before {\n content: \"\\f15f\";\n}\n.md-signal-wifi-2-bar:before {\n content: \"\\f160\";\n}\n.md-signal-wifi-3-bar:before {\n content: \"\\f161\";\n}\n.md-signal-wifi-4-bar:before {\n content: \"\\f162\";\n}\n.md-signal-wifi-off:before {\n content: \"\\f163\";\n}\n.md-storage:before {\n content: \"\\f164\";\n}\n.md-usb:before {\n content: \"\\f165\";\n}\n.md-wifi-lock:before {\n content: \"\\f166\";\n}\n.md-wifi-tethering:before {\n content: \"\\f167\";\n}\n.md-attach-file:before {\n content: \"\\f168\";\n}\n.md-attach-money:before {\n content: \"\\f169\";\n}\n.md-border-all:before {\n content: \"\\f16a\";\n}\n.md-border-bottom:before {\n content: \"\\f16b\";\n}\n.md-border-clear:before {\n content: \"\\f16c\";\n}\n.md-border-color:before {\n content: \"\\f16d\";\n}\n.md-border-horizontal:before {\n content: \"\\f16e\";\n}\n.md-border-inner:before {\n content: \"\\f16f\";\n}\n.md-border-left:before {\n content: \"\\f170\";\n}\n.md-border-outer:before {\n content: \"\\f171\";\n}\n.md-border-right:before {\n content: \"\\f172\";\n}\n.md-border-style:before {\n content: \"\\f173\";\n}\n.md-border-top:before {\n content: \"\\f174\";\n}\n.md-border-vertical:before {\n content: \"\\f175\";\n}\n.md-format-align-center:before {\n content: \"\\f176\";\n}\n.md-format-align-justify:before {\n content: \"\\f177\";\n}\n.md-format-align-left:before {\n content: \"\\f178\";\n}\n.md-format-align-right:before {\n content: \"\\f179\";\n}\n.md-format-bold:before {\n content: \"\\f17a\";\n}\n.md-format-clear:before {\n content: \"\\f17b\";\n}\n.md-format-color-fill:before {\n content: \"\\f17c\";\n}\n.md-format-color-reset:before {\n content: \"\\f17d\";\n}\n.md-format-color-text:before {\n content: \"\\f17e\";\n}\n.md-format-indent-decrease:before {\n content: \"\\f17f\";\n}\n.md-format-indent-increase:before {\n content: \"\\f180\";\n}\n.md-format-italic:before {\n content: \"\\f181\";\n}\n.md-format-line-spacing:before {\n content: \"\\f182\";\n}\n.md-format-list-bulleted:before {\n content: \"\\f183\";\n}\n.md-format-list-numbered:before {\n content: \"\\f184\";\n}\n.md-format-paint:before {\n content: \"\\f185\";\n}\n.md-format-quote:before {\n content: \"\\f186\";\n}\n.md-format-size:before {\n content: \"\\f187\";\n}\n.md-format-strikethrough:before {\n content: \"\\f188\";\n}\n.md-format-textdirection-l-to-r:before {\n content: \"\\f189\";\n}\n.md-format-textdirection-r-to-l:before {\n content: \"\\f18a\";\n}\n.md-format-underline:before {\n content: \"\\f18b\";\n}\n.md-functions:before {\n content: \"\\f18c\";\n}\n.md-insert-chart:before {\n content: \"\\f18d\";\n}\n.md-insert-comment:before {\n content: \"\\f18e\";\n}\n.md-insert-drive-file:before {\n content: \"\\f18f\";\n}\n.md-insert-emoticon:before {\n content: \"\\f190\";\n}\n.md-insert-invitation:before {\n content: \"\\f191\";\n}\n.md-insert-link:before {\n content: \"\\f192\";\n}\n.md-insert-photo:before {\n content: \"\\f193\";\n}\n.md-merge-type:before {\n content: \"\\f194\";\n}\n.md-mode-comment:before {\n content: \"\\f195\";\n}\n.md-mode-edit:before {\n content: \"\\f196\";\n}\n.md-publish:before {\n content: \"\\f197\";\n}\n.md-vertical-align-bottom:before {\n content: \"\\f198\";\n}\n.md-vertical-align-center:before {\n content: \"\\f199\";\n}\n.md-vertical-align-top:before {\n content: \"\\f19a\";\n}\n.md-wrap-text:before {\n content: \"\\f19b\";\n}\n.md-attachment:before {\n content: \"\\f19c\";\n}\n.md-cloud:before {\n content: \"\\f19d\";\n}\n.md-cloud-circle:before {\n content: \"\\f19e\";\n}\n.md-cloud-done:before {\n content: \"\\f19f\";\n}\n.md-cloud-download:before {\n content: \"\\f1a0\";\n}\n.md-cloud-off:before {\n content: \"\\f1a1\";\n}\n.md-cloud-queue:before {\n content: \"\\f1a2\";\n}\n.md-cloud-upload:before {\n content: \"\\f1a3\";\n}\n.md-file-download:before {\n content: \"\\f1a4\";\n}\n.md-file-upload:before {\n content: \"\\f1a5\";\n}\n.md-folder:before {\n content: \"\\f1a6\";\n}\n.md-folder-open:before {\n content: \"\\f1a7\";\n}\n.md-folder-shared:before {\n content: \"\\f1a8\";\n}\n.md-cast:before {\n content: \"\\f1a9\";\n}\n.md-cast-connected:before {\n content: \"\\f1aa\";\n}\n.md-computer:before {\n content: \"\\f1ab\";\n}\n.md-desktop-mac:before {\n content: \"\\f1ac\";\n}\n.md-desktop-windows:before {\n content: \"\\f1ad\";\n}\n.md-dock:before {\n content: \"\\f1ae\";\n}\n.md-gamepad:before {\n content: \"\\f1af\";\n}\n.md-headset:before {\n content: \"\\f1b0\";\n}\n.md-headset-mic:before {\n content: \"\\f1b1\";\n}\n.md-keyboard:before {\n content: \"\\f1b2\";\n}\n.md-keyboard-alt:before {\n content: \"\\f1b3\";\n}\n.md-keyboard-arrow-down:before {\n content: \"\\f1b4\";\n}\n.md-keyboard-arrow-left:before {\n content: \"\\f1b5\";\n}\n.md-keyboard-arrow-right:before {\n content: \"\\f1b6\";\n}\n.md-keyboard-arrow-up:before {\n content: \"\\f1b7\";\n}\n.md-keyboard-backspace:before {\n content: \"\\f1b8\";\n}\n.md-keyboard-capslock:before {\n content: \"\\f1b9\";\n}\n.md-keyboard-control:before {\n content: \"\\f1ba\";\n}\n.md-keyboard-hide:before {\n content: \"\\f1bb\";\n}\n.md-keyboard-return:before {\n content: \"\\f1bc\";\n}\n.md-keyboard-tab:before {\n content: \"\\f1bd\";\n}\n.md-keyboard-voice:before {\n content: \"\\f1be\";\n}\n.md-laptop:before {\n content: \"\\f1bf\";\n}\n.md-laptop-chromebook:before {\n content: \"\\f1c0\";\n}\n.md-laptop-mac:before {\n content: \"\\f1c1\";\n}\n.md-laptop-windows:before {\n content: \"\\f1c2\";\n}\n.md-memory:before {\n content: \"\\f1c3\";\n}\n.md-mouse:before {\n content: \"\\f1c4\";\n}\n.md-phone-android:before {\n content: \"\\f1c5\";\n}\n.md-phone-iphone:before {\n content: \"\\f1c6\";\n}\n.md-phonelink:before {\n content: \"\\f1c7\";\n}\n.md-phonelink-off:before {\n content: \"\\f1c8\";\n}\n.md-security:before {\n content: \"\\f1c9\";\n}\n.md-sim-card:before {\n content: \"\\f1ca\";\n}\n.md-smartphone:before {\n content: \"\\f1cb\";\n}\n.md-speaker:before {\n content: \"\\f1cc\";\n}\n.md-tablet:before {\n content: \"\\f1cd\";\n}\n.md-tablet-android:before {\n content: \"\\f1ce\";\n}\n.md-tablet-mac:before {\n content: \"\\f1cf\";\n}\n.md-tv:before {\n content: \"\\f1d0\";\n}\n.md-watch:before {\n content: \"\\f1d1\";\n}\n.md-add-to-photos:before {\n content: \"\\f1d2\";\n}\n.md-adjust:before {\n content: \"\\f1d3\";\n}\n.md-assistant-photo:before {\n content: \"\\f1d4\";\n}\n.md-audiotrack:before {\n content: \"\\f1d5\";\n}\n.md-blur-circular:before {\n content: \"\\f1d6\";\n}\n.md-blur-linear:before {\n content: \"\\f1d7\";\n}\n.md-blur-off:before {\n content: \"\\f1d8\";\n}\n.md-blur-on:before {\n content: \"\\f1d9\";\n}\n.md-brightness-1:before {\n content: \"\\f1da\";\n}\n.md-brightness-2:before {\n content: \"\\f1db\";\n}\n.md-brightness-3:before {\n content: \"\\f1dc\";\n}\n.md-brightness-4:before {\n content: \"\\f1dd\";\n}\n.md-brightness-5:before {\n content: \"\\f1de\";\n}\n.md-brightness-6:before {\n content: \"\\f1df\";\n}\n.md-brightness-7:before {\n content: \"\\f1e0\";\n}\n.md-brush:before {\n content: \"\\f1e1\";\n}\n.md-camera:before {\n content: \"\\f1e2\";\n}\n.md-camera-alt:before {\n content: \"\\f1e3\";\n}\n.md-camera-front:before {\n content: \"\\f1e4\";\n}\n.md-camera-rear:before {\n content: \"\\f1e5\";\n}\n.md-camera-roll:before {\n content: \"\\f1e6\";\n}\n.md-center-focus-strong:before {\n content: \"\\f1e7\";\n}\n.md-center-focus-weak:before {\n content: \"\\f1e8\";\n}\n.md-collections:before {\n content: \"\\f1e9\";\n}\n.md-colorize:before {\n content: \"\\f1ea\";\n}\n.md-color-lens:before {\n content: \"\\f1eb\";\n}\n.md-compare:before {\n content: \"\\f1ec\";\n}\n.md-control-point:before {\n content: \"\\f1ed\";\n}\n.md-control-point-duplicate:before {\n content: \"\\f1ee\";\n}\n.md-crop:before {\n content: \"\\f1ef\";\n}\n.md-crop-3-2:before {\n content: \"\\f1f0\";\n}\n.md-crop-5-4:before {\n content: \"\\f1f1\";\n}\n.md-crop-7-5:before {\n content: \"\\f1f2\";\n}\n.md-crop-16-9:before {\n content: \"\\f1f3\";\n}\n.md-crop-din:before {\n content: \"\\f1f4\";\n}\n.md-crop-free:before {\n content: \"\\f1f5\";\n}\n.md-crop-landscape:before {\n content: \"\\f1f6\";\n}\n.md-crop-original:before {\n content: \"\\f1f7\";\n}\n.md-crop-portrait:before {\n content: \"\\f1f8\";\n}\n.md-crop-square:before {\n content: \"\\f1f9\";\n}\n.md-dehaze:before {\n content: \"\\f1fa\";\n}\n.md-details:before {\n content: \"\\f1fb\";\n}\n.md-edit:before {\n content: \"\\f1fc\";\n}\n.md-exposure:before {\n content: \"\\f1fd\";\n}\n.md-exposure-minus-1:before {\n content: \"\\f1fe\";\n}\n.md-exposure-minus-2:before {\n content: \"\\f1ff\";\n}\n.md-exposure-zero:before {\n content: \"\\f200\";\n}\n.md-exposure-plus-1:before {\n content: \"\\f201\";\n}\n.md-exposure-plus-2:before {\n content: \"\\f202\";\n}\n.md-filter:before {\n content: \"\\f203\";\n}\n.md-filter-1:before {\n content: \"\\f204\";\n}\n.md-filter-2:before {\n content: \"\\f205\";\n}\n.md-filter-3:before {\n content: \"\\f206\";\n}\n.md-filter-4:before {\n content: \"\\f207\";\n}\n.md-filter-5:before {\n content: \"\\f208\";\n}\n.md-filter-6:before {\n content: \"\\f209\";\n}\n.md-filter-7:before {\n content: \"\\f20a\";\n}\n.md-filter-8:before {\n content: \"\\f20b\";\n}\n.md-filter-9:before {\n content: \"\\f20c\";\n}\n.md-filter-9-plus:before {\n content: \"\\f20d\";\n}\n.md-filter-b-and-w:before {\n content: \"\\f20e\";\n}\n.md-filter-center-focus:before {\n content: \"\\f20f\";\n}\n.md-filter-drama:before {\n content: \"\\f210\";\n}\n.md-filter-frames:before {\n content: \"\\f211\";\n}\n.md-filter-hdr:before {\n content: \"\\f212\";\n}\n.md-filter-none:before {\n content: \"\\f213\";\n}\n.md-filter-tilt-shift:before {\n content: \"\\f214\";\n}\n.md-filter-vintage:before {\n content: \"\\f215\";\n}\n.md-flare:before {\n content: \"\\f216\";\n}\n.md-flash-auto:before {\n content: \"\\f217\";\n}\n.md-flash-off:before {\n content: \"\\f218\";\n}\n.md-flash-on:before {\n content: \"\\f219\";\n}\n.md-flip:before {\n content: \"\\f21a\";\n}\n.md-gradient:before {\n content: \"\\f21b\";\n}\n.md-grain:before {\n content: \"\\f21c\";\n}\n.md-grid-off:before {\n content: \"\\f21d\";\n}\n.md-grid-on:before {\n content: \"\\f21e\";\n}\n.md-hdr-off:before {\n content: \"\\f21f\";\n}\n.md-hdr-on:before {\n content: \"\\f220\";\n}\n.md-hdr-strong:before {\n content: \"\\f221\";\n}\n.md-hdr-weak:before {\n content: \"\\f222\";\n}\n.md-healing:before {\n content: \"\\f223\";\n}\n.md-image:before {\n content: \"\\f224\";\n}\n.md-image-aspect-ratio:before {\n content: \"\\f225\";\n}\n.md-iso:before {\n content: \"\\f226\";\n}\n.md-landscape:before {\n content: \"\\f227\";\n}\n.md-leak-add:before {\n content: \"\\f228\";\n}\n.md-leak-remove:before {\n content: \"\\f229\";\n}\n.md-lens:before {\n content: \"\\f22a\";\n}\n.md-looks:before {\n content: \"\\f22b\";\n}\n.md-looks-1:before {\n content: \"\\f22c\";\n}\n.md-looks-2:before {\n content: \"\\f22d\";\n}\n.md-looks-3:before {\n content: \"\\f22e\";\n}\n.md-looks-4:before {\n content: \"\\f22f\";\n}\n.md-looks-5:before {\n content: \"\\f230\";\n}\n.md-looks-6:before {\n content: \"\\f231\";\n}\n.md-loupe:before {\n content: \"\\f232\";\n}\n.md-movie-creation:before {\n content: \"\\f233\";\n}\n.md-nature:before {\n content: \"\\f234\";\n}\n.md-nature-people:before {\n content: \"\\f235\";\n}\n.md-navigate-before:before {\n content: \"\\f236\";\n}\n.md-navigate-next:before {\n content: \"\\f237\";\n}\n.md-palette:before {\n content: \"\\f238\";\n}\n.md-panorama:before {\n content: \"\\f239\";\n}\n.md-panorama-fisheye:before {\n content: \"\\f23a\";\n}\n.md-panorama-horizontal:before {\n content: \"\\f23b\";\n}\n.md-panorama-vertical:before {\n content: \"\\f23c\";\n}\n.md-panorama-wide-angle:before {\n content: \"\\f23d\";\n}\n.md-photo:before {\n content: \"\\f23e\";\n}\n.md-photo-album:before {\n content: \"\\f23f\";\n}\n.md-photo-camera:before {\n content: \"\\f240\";\n}\n.md-photo-library:before {\n content: \"\\f241\";\n}\n.md-portrait:before {\n content: \"\\f242\";\n}\n.md-remove-red-eye:before {\n content: \"\\f243\";\n}\n.md-rotate-left:before {\n content: \"\\f244\";\n}\n.md-rotate-right:before {\n content: \"\\f245\";\n}\n.md-slideshow:before {\n content: \"\\f246\";\n}\n.md-straighten:before {\n content: \"\\f247\";\n}\n.md-style:before {\n content: \"\\f248\";\n}\n.md-switch-camera:before {\n content: \"\\f249\";\n}\n.md-switch-video:before {\n content: \"\\f24a\";\n}\n.md-tag-faces:before {\n content: \"\\f24b\";\n}\n.md-texture:before {\n content: \"\\f24c\";\n}\n.md-timelapse:before {\n content: \"\\f24d\";\n}\n.md-timer:before {\n content: \"\\f24e\";\n}\n.md-timer-3:before {\n content: \"\\f24f\";\n}\n.md-timer-10:before {\n content: \"\\f250\";\n}\n.md-timer-auto:before {\n content: \"\\f251\";\n}\n.md-timer-off:before {\n content: \"\\f252\";\n}\n.md-tonality:before {\n content: \"\\f253\";\n}\n.md-transform:before {\n content: \"\\f254\";\n}\n.md-tune:before {\n content: \"\\f255\";\n}\n.md-wb-auto:before {\n content: \"\\f256\";\n}\n.md-wb-cloudy:before {\n content: \"\\f257\";\n}\n.md-wb-incandescent:before {\n content: \"\\f258\";\n}\n.md-wb-irradescent:before {\n content: \"\\f259\";\n}\n.md-wb-sunny:before {\n content: \"\\f25a\";\n}\n.md-beenhere:before {\n content: \"\\f25b\";\n}\n.md-directions:before {\n content: \"\\f25c\";\n}\n.md-directions-bike:before {\n content: \"\\f25d\";\n}\n.md-directions-bus:before {\n content: \"\\f25e\";\n}\n.md-directions-car:before {\n content: \"\\f25f\";\n}\n.md-directions-ferry:before {\n content: \"\\f260\";\n}\n.md-directions-subway:before {\n content: \"\\f261\";\n}\n.md-directions-train:before {\n content: \"\\f262\";\n}\n.md-directions-transit:before {\n content: \"\\f263\";\n}\n.md-directions-walk:before {\n content: \"\\f264\";\n}\n.md-flight:before {\n content: \"\\f265\";\n}\n.md-hotel:before {\n content: \"\\f266\";\n}\n.md-layers:before {\n content: \"\\f267\";\n}\n.md-layers-clear:before {\n content: \"\\f268\";\n}\n.md-local-airport:before {\n content: \"\\f269\";\n}\n.md-local-atm:before {\n content: \"\\f26a\";\n}\n.md-local-attraction:before {\n content: \"\\f26b\";\n}\n.md-local-bar:before {\n content: \"\\f26c\";\n}\n.md-local-cafe:before {\n content: \"\\f26d\";\n}\n.md-local-car-wash:before {\n content: \"\\f26e\";\n}\n.md-local-convenience-store:before {\n content: \"\\f26f\";\n}\n.md-local-drink:before {\n content: \"\\f270\";\n}\n.md-local-florist:before {\n content: \"\\f271\";\n}\n.md-local-gas-station:before {\n content: \"\\f272\";\n}\n.md-local-grocery-store:before {\n content: \"\\f273\";\n}\n.md-local-hospital:before {\n content: \"\\f274\";\n}\n.md-local-hotel:before {\n content: \"\\f275\";\n}\n.md-local-laundry-service:before {\n content: \"\\f276\";\n}\n.md-local-library:before {\n content: \"\\f277\";\n}\n.md-local-mall:before {\n content: \"\\f278\";\n}\n.md-local-movies:before {\n content: \"\\f279\";\n}\n.md-local-offer:before {\n content: \"\\f27a\";\n}\n.md-local-parking:before {\n content: \"\\f27b\";\n}\n.md-local-pharmacy:before {\n content: \"\\f27c\";\n}\n.md-local-phone:before {\n content: \"\\f27d\";\n}\n.md-local-pizza:before {\n content: \"\\f27e\";\n}\n.md-local-play:before {\n content: \"\\f27f\";\n}\n.md-local-post-office:before {\n content: \"\\f280\";\n}\n.md-local-print-shop:before {\n content: \"\\f281\";\n}\n.md-local-restaurant:before {\n content: \"\\f282\";\n}\n.md-local-see:before {\n content: \"\\f283\";\n}\n.md-local-shipping:before {\n content: \"\\f284\";\n}\n.md-local-taxi:before {\n content: \"\\f285\";\n}\n.md-location-history:before {\n content: \"\\f286\";\n}\n.md-map:before {\n content: \"\\f287\";\n}\n.md-my-location:before {\n content: \"\\f288\";\n}\n.md-navigation:before {\n content: \"\\f289\";\n}\n.md-pin-drop:before {\n content: \"\\f28a\";\n}\n.md-place:before {\n content: \"\\f28b\";\n}\n.md-rate-review:before {\n content: \"\\f28c\";\n}\n.md-restaurant-menu:before {\n content: \"\\f28d\";\n}\n.md-satellite:before {\n content: \"\\f28e\";\n}\n.md-store-mall-directory:before {\n content: \"\\f28f\";\n}\n.md-terrain:before {\n content: \"\\f290\";\n}\n.md-traffic:before {\n content: \"\\f291\";\n}\n.md-apps:before {\n content: \"\\f292\";\n}\n.md-cancel:before {\n content: \"\\f293\";\n}\n.md-arrow-drop-down-circle:before {\n content: \"\\f294\";\n}\n.md-arrow-drop-down:before {\n content: \"\\f295\";\n}\n.md-arrow-drop-up:before {\n content: \"\\f296\";\n}\n.md-arrow-back:before {\n content: \"\\f297\";\n}\n.md-arrow-forward:before {\n content: \"\\f298\";\n}\n.md-check:before {\n content: \"\\f299\";\n}\n.md-close:before {\n content: \"\\f29a\";\n}\n.md-chevron-left:before {\n content: \"\\f29b\";\n}\n.md-chevron-right:before {\n content: \"\\f29c\";\n}\n.md-expand-less:before {\n content: \"\\f29d\";\n}\n.md-expand-more:before {\n content: \"\\f29e\";\n}\n.md-fullscreen:before {\n content: \"\\f29f\";\n}\n.md-fullscreen-exit:before {\n content: \"\\f2a0\";\n}\n.md-menu:before {\n content: \"\\f2a1\";\n}\n.md-more-horiz:before {\n content: \"\\f2a2\";\n}\n.md-more-vert:before {\n content: \"\\f2a3\";\n}\n.md-refresh:before {\n content: \"\\f2a4\";\n}\n.md-unfold-less:before {\n content: \"\\f2a5\";\n}\n.md-unfold-more:before {\n content: \"\\f2a6\";\n}\n.md-adb:before {\n content: \"\\f2a7\";\n}\n.md-bluetooth-audio:before {\n content: \"\\f2a8\";\n}\n.md-disc-full:before {\n content: \"\\f2a9\";\n}\n.md-dnd-forwardslash:before {\n content: \"\\f2aa\";\n}\n.md-do-not-disturb:before {\n content: \"\\f2ab\";\n}\n.md-drive-eta:before {\n content: \"\\f2ac\";\n}\n.md-event-available:before {\n content: \"\\f2ad\";\n}\n.md-event-busy:before {\n content: \"\\f2ae\";\n}\n.md-event-note:before {\n content: \"\\f2af\";\n}\n.md-folder-special:before {\n content: \"\\f2b0\";\n}\n.md-mms:before {\n content: \"\\f2b1\";\n}\n.md-more:before {\n content: \"\\f2b2\";\n}\n.md-network-locked:before {\n content: \"\\f2b3\";\n}\n.md-phone-bluetooth-speaker:before {\n content: \"\\f2b4\";\n}\n.md-phone-forwarded:before {\n content: \"\\f2b5\";\n}\n.md-phone-in-talk:before {\n content: \"\\f2b6\";\n}\n.md-phone-locked:before {\n content: \"\\f2b7\";\n}\n.md-phone-missed:before {\n content: \"\\f2b8\";\n}\n.md-phone-paused:before {\n content: \"\\f2b9\";\n}\n.md-play-download:before {\n content: \"\\f2ba\";\n}\n.md-play-install:before {\n content: \"\\f2bb\";\n}\n.md-sd-card:before {\n content: \"\\f2bc\";\n}\n.md-sim-card-alert:before {\n content: \"\\f2bd\";\n}\n.md-sms:before {\n content: \"\\f2be\";\n}\n.md-sms-failed:before {\n content: \"\\f2bf\";\n}\n.md-sync:before {\n content: \"\\f2c0\";\n}\n.md-sync-disabled:before {\n content: \"\\f2c1\";\n}\n.md-sync-problem:before {\n content: \"\\f2c2\";\n}\n.md-system-update:before {\n content: \"\\f2c3\";\n}\n.md-tap-and-play:before {\n content: \"\\f2c4\";\n}\n.md-time-to-leave:before {\n content: \"\\f2c5\";\n}\n.md-vibration:before {\n content: \"\\f2c6\";\n}\n.md-voice-chat:before {\n content: \"\\f2c7\";\n}\n.md-vpn-lock:before {\n content: \"\\f2c8\";\n}\n.md-cake:before {\n content: \"\\f2c9\";\n}\n.md-domain:before {\n content: \"\\f2ca\";\n}\n.md-location-city:before {\n content: \"\\f2cb\";\n}\n.md-mood:before {\n content: \"\\f2cc\";\n}\n.md-notifications-none:before {\n content: \"\\f2cd\";\n}\n.md-notifications:before {\n content: \"\\f2ce\";\n}\n.md-notifications-off:before {\n content: \"\\f2cf\";\n}\n.md-notifications-on:before {\n content: \"\\f2d0\";\n}\n.md-notifications-paused:before {\n content: \"\\f2d1\";\n}\n.md-pages:before {\n content: \"\\f2d2\";\n}\n.md-party-mode:before {\n content: \"\\f2d3\";\n}\n.md-group:before {\n content: \"\\f2d4\";\n}\n.md-group-add:before {\n content: \"\\f2d5\";\n}\n.md-people:before {\n content: \"\\f2d6\";\n}\n.md-people-outline:before {\n content: \"\\f2d7\";\n}\n.md-person:before {\n content: \"\\f2d8\";\n}\n.md-person-add:before {\n content: \"\\f2d9\";\n}\n.md-person-outline:before {\n content: \"\\f2da\";\n}\n.md-plus-one:before {\n content: \"\\f2db\";\n}\n.md-poll:before {\n content: \"\\f2dc\";\n}\n.md-public:before {\n content: \"\\f2dd\";\n}\n.md-school:before {\n content: \"\\f2de\";\n}\n.md-share:before {\n content: \"\\f2df\";\n}\n.md-whatshot:before {\n content: \"\\f2e0\";\n}\n.md-check-box:before {\n content: \"\\f2e1\";\n}\n.md-check-box-outline-blank:before {\n content: \"\\f2e2\";\n}\n.md-radio-button-off:before {\n content: \"\\f2e3\";\n}\n.md-radio-button-on:before {\n content: \"\\f2e4\";\n}\n.md-star:before {\n content: \"\\f2e5\";\n}\n.md-star-half:before {\n content: \"\\f2e6\";\n}\n.md-star-outline:before {\n content: \"\\f2e7\";\n}\n"}
{"text": "\n \n\n\n\n\n\n"}
{"text": "{\n \".schema_version\": \"1\",\n \"name\": \"ucloud\",\n \"type\": \"provider\",\n \"version\": \"v1.6.0\",\n \"provider\": {\n \"base_url\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Description\": \"...\",\n \"ConflictsWith\": [\n \"insecure\"\n ],\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"https://api.ucloud.cn\"\n }\n },\n \"insecure\": {\n \"Type\": \"Bool\",\n \"Optional\": true,\n \"Description\": \"...\",\n \"ConflictsWith\": [\n \"base_url\"\n ],\n \"Default\": {\n \"Type\": \"bool\",\n \"Value\": \"false\"\n }\n },\n \"max_retries\": {\n \"Type\": \"Int\",\n \"Optional\": true,\n \"Description\": \"...\",\n \"Default\": {\n \"Type\": \"int\",\n \"Value\": \"3\"\n }\n },\n \"private_key\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Description\": \"...\",\n \"DefaultFunc\": \"ENV(UCLOUD_PRIVATE_KEY)\"\n },\n \"profile\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Description\": \"...\",\n \"DefaultFunc\": \"ENV(UCLOUD_PROFILE)\"\n },\n \"project_id\": {\n \"Type\": \"String\",\n \"Required\": true,\n \"Description\": \"...\",\n \"DefaultFunc\": \"ENV(UCLOUD_PROJECT_ID)\"\n },\n \"public_key\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Description\": \"...\",\n \"DefaultFunc\": \"ENV(UCLOUD_PUBLIC_KEY)\"\n },\n \"region\": {\n \"Type\": \"String\",\n \"Required\": true,\n \"Description\": \"...\",\n \"DefaultFunc\": \"ENV(UCLOUD_REGION)\"\n },\n \"shared_credentials_file\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Description\": \"...\",\n \"DefaultFunc\": \"ENV(UCLOUD_SHARED_CREDENTIAL_FILE)\"\n }\n },\n \"resources\": {\n \"ucloud_db_instance\": {\n \"availability_zone\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"backup_begin_time\": {\n \"Type\": \"Int\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"backup_black_list\": {\n \"Type\": \"Set\",\n \"Optional\": true,\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"backup_count\": {\n \"Type\": \"Int\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"int\",\n \"Value\": \"7\"\n }\n },\n \"backup_date\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"charge_type\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"month\"\n }\n },\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"duration\": {\n \"Type\": \"Int\",\n \"Optional\": true\n },\n \"engine\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"engine_version\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"expire_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"instance_storage\": {\n \"Type\": \"Int\",\n \"Required\": true\n },\n \"instance_type\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"modify_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"password\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"port\": {\n \"Type\": \"Int\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"standby_zone\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"status\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"subnet_id\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"vpc_id\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n }\n },\n \"ucloud_disk\": {\n \"availability_zone\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"charge_type\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"month\"\n }\n },\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"disk_size\": {\n \"Type\": \"Int\",\n \"Required\": true\n },\n \"disk_type\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"data_disk\"\n }\n },\n \"duration\": {\n \"Type\": \"Int\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"int\",\n \"Value\": \"1\"\n }\n },\n \"expire_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"status\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"Default\"\n }\n }\n },\n \"ucloud_disk_attachment\": {\n \"availability_zone\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"disk_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"instance_id\": {\n \"Type\": \"String\",\n \"Required\": true\n }\n },\n \"ucloud_eip\": {\n \"bandwidth\": {\n \"Type\": \"Int\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"int\",\n \"Value\": \"1\"\n }\n },\n \"charge_mode\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"bandwidth\"\n }\n },\n \"charge_type\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"month\"\n }\n },\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"duration\": {\n \"Type\": \"Int\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"int\",\n \"Value\": \"1\"\n }\n },\n \"expire_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"internet_type\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"ip_set\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"MaxItems\": 2,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"internet_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"ip\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"name\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"public_ip\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"remark\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"resource\": {\n \"Type\": \"Map\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"type\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"status\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"Default\"\n }\n }\n },\n \"ucloud_eip_association\": {\n \"eip_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"resource_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"resource_type\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true,\n \"Deprecated\": \"attribute `resource_type` is deprecated for optimizing parameters\"\n }\n },\n \"ucloud_instance\": {\n \"__timeouts__\": [\n \"create\",\n \"update\",\n \"delete\"\n ],\n \"auto_renew\": {\n \"Type\": \"Bool\",\n \"Computed\": true\n },\n \"availability_zone\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"boot_disk_size\": {\n \"Type\": \"Int\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"boot_disk_type\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"charge_type\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"month\"\n }\n },\n \"cpu\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"data_disk_size\": {\n \"Type\": \"Int\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"data_disk_type\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"disk_set\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"is_boot\": {\n \"Type\": \"Bool\",\n \"Computed\": true\n },\n \"size\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"type\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"duration\": {\n \"Type\": \"Int\",\n \"Optional\": true\n },\n \"expire_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"image_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"instance_type\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"ip_set\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"internet_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"ip\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"memory\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"remark\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"root_password\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"security_group\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"status\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"subnet_id\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"Default\"\n }\n },\n \"vpc_id\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n }\n },\n \"ucloud_lb\": {\n \"charge_type\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Deprecated\": \"attribute `charge_type` is deprecated for optimizing parameters\"\n },\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"expire_time\": {\n \"Type\": \"String\",\n \"Computed\": true,\n \"Deprecated\": \"attribute `expire_time` is deprecated for optimizing outputs\"\n },\n \"internal\": {\n \"Type\": \"Bool\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"ip_set\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"internet_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"ip\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"name\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"private_ip\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"remark\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"subnet_id\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"Default\"\n }\n },\n \"vpc_id\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n }\n },\n \"ucloud_lb_attachment\": {\n \"listener_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"load_balancer_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"port\": {\n \"Type\": \"Int\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"int\",\n \"Value\": \"80\"\n }\n },\n \"private_ip\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"resource_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"resource_type\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true,\n \"Deprecated\": \"attribute `resource_type` is deprecated for optimizing parameters\"\n },\n \"status\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n },\n \"ucloud_lb_listener\": {\n \"domain\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"health_check_type\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"idle_timeout\": {\n \"Type\": \"Int\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"listen_type\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"request_proxy\"\n }\n },\n \"load_balancer_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"method\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"roundrobin\"\n }\n },\n \"name\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"path\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"persistence\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"persistence_type\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"none\"\n }\n },\n \"port\": {\n \"Type\": \"Int\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"int\",\n \"Value\": \"80\"\n }\n },\n \"protocol\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"status\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n },\n \"ucloud_lb_rule\": {\n \"backend_ids\": {\n \"Type\": \"Set\",\n \"Required\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"domain\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"ConflictsWith\": [\n \"path\"\n ]\n },\n \"listener_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"load_balancer_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"path\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"ConflictsWith\": [\n \"domain\"\n ]\n }\n },\n \"ucloud_lb_ssl\": {\n \"ca_cert\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"private_key\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"user_cert\": {\n \"Type\": \"String\",\n \"Required\": true\n }\n },\n \"ucloud_lb_ssl_attachment\": {\n \"listener_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"load_balancer_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"ssl_id\": {\n \"Type\": \"String\",\n \"Required\": true\n }\n },\n \"ucloud_security_group\": {\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"remark\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"rules\": {\n \"Type\": \"Set\",\n \"Required\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"cidr_block\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"0.0.0.0/0\"\n }\n },\n \"policy\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"accept\"\n }\n },\n \"port_range\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"priority\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"high\"\n }\n },\n \"protocol\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"tcp\"\n }\n }\n }\n }\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"Default\"\n }\n }\n },\n \"ucloud_subnet\": {\n \"cidr_block\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"remark\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"Default\"\n }\n },\n \"vpc_id\": {\n \"Type\": \"String\",\n \"Required\": true\n }\n },\n \"ucloud_udpn_connection\": {\n \"bandwidth\": {\n \"Type\": \"Int\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"int\",\n \"Value\": \"2\"\n }\n },\n \"charge_type\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"month\"\n }\n },\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"duration\": {\n \"Type\": \"Int\",\n \"Optional\": true\n },\n \"expire_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"peer_region\": {\n \"Type\": \"String\",\n \"Required\": true\n }\n },\n \"ucloud_vpc\": {\n \"cidr_blocks\": {\n \"Type\": \"Set\",\n \"Required\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"network_info\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"cidr_block\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"remark\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Default\": {\n \"Type\": \"string\",\n \"Value\": \"Default\"\n }\n },\n \"update_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n },\n \"ucloud_vpc_peering_connection\": {\n \"peer_project_id\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"peer_vpc_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"vpc_id\": {\n \"Type\": \"String\",\n \"Required\": true\n }\n }\n },\n \"data-sources\": {\n \"ucloud_db_instances\": {\n \"availability_zone\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"db_instances\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"availability_zone\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"backup_begin_time\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"backup_black_list\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"backup_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"backup_date\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"charge_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"engine\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"engine_version\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"expire_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"instance_storage\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"instance_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"modify_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"port\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"standby_zone\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"status\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"subnet_id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"vpc_id\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"ids\": {\n \"Type\": \"Set\",\n \"Optional\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"name_regex\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"output_file\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"total_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n }\n },\n \"ucloud_disks\": {\n \"disk_type\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"disks\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"availability_zone\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"charge_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"disk_size\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"disk_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"expire_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"status\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"ids\": {\n \"Type\": \"Set\",\n \"Optional\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"name_regex\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"output_file\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"total_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n }\n },\n \"ucloud_eips\": {\n \"eips\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"bandwidth\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"charge_mode\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"charge_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"expire_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"ip_set\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"internet_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"ip\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"name\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"remark\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"status\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"ids\": {\n \"Type\": \"Set\",\n \"Optional\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"name_regex\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"output_file\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"total_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n }\n },\n \"ucloud_images\": {\n \"availability_zone\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"image_id\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"image_type\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"images\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"availability_zone\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"description\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"features\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"os_name\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"os_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"size\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"status\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"type\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"name_regex\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"os_type\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"output_file\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"total_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n }\n },\n \"ucloud_instances\": {\n \"availability_zone\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"ids\": {\n \"Type\": \"Set\",\n \"Optional\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"instances\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"auto_renew\": {\n \"Type\": \"Bool\",\n \"Computed\": true\n },\n \"availability_zone\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"charge_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"cpu\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"disk_set\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"is_boot\": {\n \"Type\": \"Bool\",\n \"Computed\": true\n },\n \"size\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"type\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"expire_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"instance_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"ip_set\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"internet_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"ip\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"memory\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"remark\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"status\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"name_regex\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"output_file\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"total_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n }\n },\n \"ucloud_lb_attachments\": {\n \"ids\": {\n \"Type\": \"Set\",\n \"Optional\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"lb_attachments\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"port\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"private_ip\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"resource_id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"status\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"listener_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"load_balancer_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"output_file\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"total_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n }\n },\n \"ucloud_lb_listeners\": {\n \"ids\": {\n \"Type\": \"Set\",\n \"Optional\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"lb_listeners\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"domain\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"health_check_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"idle_timeout\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"listen_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"method\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"path\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"persistence\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"persistence_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"port\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"protocol\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"status\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"load_balancer_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"name_regex\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"output_file\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"total_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n }\n },\n \"ucloud_lb_rules\": {\n \"ids\": {\n \"Type\": \"Set\",\n \"Optional\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"lb_rules\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"domain\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"path\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"listener_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"load_balancer_id\": {\n \"Type\": \"String\",\n \"Required\": true\n },\n \"output_file\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"total_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n }\n },\n \"ucloud_lb_ssls\": {\n \"ids\": {\n \"Type\": \"Set\",\n \"Optional\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"lb_ssls\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"name_regex\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"output_file\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"total_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n }\n },\n \"ucloud_lbs\": {\n \"ids\": {\n \"Type\": \"Set\",\n \"Optional\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"lbs\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"internal\": {\n \"Type\": \"Bool\",\n \"Computed\": true\n },\n \"ip_set\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"internet_type\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"ip\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"name\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"private_ip\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"remark\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"subnet_id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"vpc_id\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"name_regex\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"output_file\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"subnet_id\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n },\n \"total_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"vpc_id\": {\n \"Type\": \"String\",\n \"Optional\": true,\n \"Computed\": true\n }\n },\n \"ucloud_projects\": {\n \"is_finance\": {\n \"Type\": \"Bool\",\n \"Optional\": true\n },\n \"name_regex\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"output_file\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"projects\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"member_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"parent_id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"parent_name\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"resource_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n }\n }\n }\n },\n \"total_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n }\n },\n \"ucloud_security_groups\": {\n \"ids\": {\n \"Type\": \"Set\",\n \"Optional\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"name_regex\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"output_file\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"security_groups\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"remark\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"rules\": {\n \"Type\": \"List\",\n \"Required\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"cidr_block\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"policy\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"port_range\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"priority\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"protocol\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"type\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"total_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"type\": {\n \"Type\": \"String\",\n \"Optional\": true\n }\n },\n \"ucloud_subnets\": {\n \"ids\": {\n \"Type\": \"Set\",\n \"Optional\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"name_regex\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"output_file\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"subnets\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"cidr_block\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"remark\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"total_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"vpc_id\": {\n \"Type\": \"String\",\n \"Optional\": true\n }\n },\n \"ucloud_vpcs\": {\n \"ids\": {\n \"Type\": \"Set\",\n \"Optional\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"name_regex\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"output_file\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"total_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"vpcs\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"cidr_blocks\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaElements\",\n \"ElementsType\": \"String\"\n }\n },\n \"create_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"name\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"tag\": {\n \"Type\": \"String\",\n \"Computed\": true\n },\n \"update_time\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n }\n },\n \"ucloud_zones\": {\n \"output_file\": {\n \"Type\": \"String\",\n \"Optional\": true\n },\n \"total_count\": {\n \"Type\": \"Int\",\n \"Computed\": true\n },\n \"zones\": {\n \"Type\": \"List\",\n \"Computed\": true,\n \"Elem\": {\n \"Type\": \"SchemaInfo\",\n \"Info\": {\n \"id\": {\n \"Type\": \"String\",\n \"Computed\": true\n }\n }\n }\n }\n }\n }\n}"}
{"text": "package apoc.nlp.azure\n\nimport apoc.result.NodeWithMapResult\nimport apoc.util.JsonUtil\nimport org.neo4j.graphdb.Node\nimport org.neo4j.logging.Log\nimport java.io.DataOutputStream\nimport java.net.URL\nimport javax.net.ssl.HttpsURLConnection\n\n\nenum class AzureEndpoint(val method: String) {\n SENTIMENT(\"/text/analytics/v2.1/sentiment\"),\n KEY_PHRASES(\"/text/analytics/v2.1/keyPhrases\"),\n VISION(\"/vision/v2.1/analyze\"),\n ENTITIES(\"/text/analytics/v2.1/entities\")\n}\n\nclass RealAzureClient(private val baseUrl: String, private val key: String, private val log: Log, val config: Map) : AzureClient {\n\n private val nodeProperty = config.getOrDefault(\"nodeProperty\", \"text\").toString()\n\n companion object {\n fun responseToNodeWithMapResult(resp: Map, source: List): NodeWithMapResult {\n val nodeId = resp.getValue(\"id\").toString().toLong()\n val node = source.find { it.id == nodeId }\n return NodeWithMapResult(node, resp, emptyMap())\n }\n }\n\n private fun postData(method: String, subscriptionKeyValue: String, data: List