Skip to content
Snippets Groups Projects
package-lock.json 1.14 MiB
Newer Older
  • Learn to ignore specific revisions
  • 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000
            "@babel/helper-plugin-utils": "^7.14.5"
          }
        },
        "@babel/plugin-transform-arrow-functions": {
          "version": "7.16.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz",
          "integrity": "sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==",
          "requires": {
            "@babel/helper-plugin-utils": "^7.16.7"
          },
          "dependencies": {
            "@babel/helper-plugin-utils": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
              "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
            }
          }
        },
        "@babel/plugin-transform-async-to-generator": {
          "version": "7.16.8",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz",
          "integrity": "sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==",
          "requires": {
            "@babel/helper-module-imports": "^7.16.7",
            "@babel/helper-plugin-utils": "^7.16.7",
            "@babel/helper-remap-async-to-generator": "^7.16.8"
          },
          "dependencies": {
            "@babel/helper-module-imports": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz",
              "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-plugin-utils": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
              "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
            },
            "@babel/helper-validator-identifier": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
              "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
            },
            "@babel/types": {
              "version": "7.16.8",
              "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.8.tgz",
              "integrity": "sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg==",
              "requires": {
                "@babel/helper-validator-identifier": "^7.16.7",
                "to-fast-properties": "^2.0.0"
              }
            }
          }
        },
        "@babel/plugin-transform-block-scoped-functions": {
          "version": "7.16.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz",
          "integrity": "sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==",
          "requires": {
            "@babel/helper-plugin-utils": "^7.16.7"
          },
          "dependencies": {
            "@babel/helper-plugin-utils": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
              "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
            }
          }
        },
        "@babel/plugin-transform-block-scoping": {
          "version": "7.16.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz",
          "integrity": "sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==",
          "requires": {
            "@babel/helper-plugin-utils": "^7.16.7"
          },
          "dependencies": {
            "@babel/helper-plugin-utils": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
              "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
            }
          }
        },
        "@babel/plugin-transform-classes": {
          "version": "7.16.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz",
          "integrity": "sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==",
          "requires": {
            "@babel/helper-annotate-as-pure": "^7.16.7",
            "@babel/helper-environment-visitor": "^7.16.7",
            "@babel/helper-function-name": "^7.16.7",
            "@babel/helper-optimise-call-expression": "^7.16.7",
            "@babel/helper-plugin-utils": "^7.16.7",
            "@babel/helper-replace-supers": "^7.16.7",
            "@babel/helper-split-export-declaration": "^7.16.7",
            "globals": "^11.1.0"
          },
          "dependencies": {
            "@babel/code-frame": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
              "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
              "requires": {
                "@babel/highlight": "^7.16.7"
              }
            },
            "@babel/generator": {
              "version": "7.16.8",
              "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.8.tgz",
              "integrity": "sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw==",
              "requires": {
                "@babel/types": "^7.16.8",
                "jsesc": "^2.5.1",
                "source-map": "^0.5.0"
              }
            },
            "@babel/helper-annotate-as-pure": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz",
              "integrity": "sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-function-name": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz",
              "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==",
              "requires": {
                "@babel/helper-get-function-arity": "^7.16.7",
                "@babel/template": "^7.16.7",
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-get-function-arity": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz",
              "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-hoist-variables": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz",
              "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-member-expression-to-functions": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz",
              "integrity": "sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-optimise-call-expression": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz",
              "integrity": "sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-plugin-utils": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
              "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
            },
            "@babel/helper-replace-supers": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz",
              "integrity": "sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==",
              "requires": {
                "@babel/helper-environment-visitor": "^7.16.7",
                "@babel/helper-member-expression-to-functions": "^7.16.7",
                "@babel/helper-optimise-call-expression": "^7.16.7",
                "@babel/traverse": "^7.16.7",
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-split-export-declaration": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz",
              "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-validator-identifier": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
              "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
            },
            "@babel/highlight": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz",
              "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==",
              "requires": {
                "@babel/helper-validator-identifier": "^7.16.7",
                "chalk": "^2.0.0",
                "js-tokens": "^4.0.0"
              }
            },
            "@babel/parser": {
              "version": "7.16.8",
              "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.8.tgz",
              "integrity": "sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw=="
            },
            "@babel/template": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz",
              "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==",
              "requires": {
                "@babel/code-frame": "^7.16.7",
                "@babel/parser": "^7.16.7",
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/traverse": {
              "version": "7.16.8",
              "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.8.tgz",
              "integrity": "sha512-xe+H7JlvKsDQwXRsBhSnq1/+9c+LlQcCK3Tn/l5sbx02HYns/cn7ibp9+RV1sIUqu7hKg91NWsgHurO9dowITQ==",
              "requires": {
                "@babel/code-frame": "^7.16.7",
                "@babel/generator": "^7.16.8",
                "@babel/helper-environment-visitor": "^7.16.7",
                "@babel/helper-function-name": "^7.16.7",
                "@babel/helper-hoist-variables": "^7.16.7",
                "@babel/helper-split-export-declaration": "^7.16.7",
                "@babel/parser": "^7.16.8",
                "@babel/types": "^7.16.8",
                "debug": "^4.1.0",
                "globals": "^11.1.0"
              }
            },
            "@babel/types": {
              "version": "7.16.8",
              "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.8.tgz",
              "integrity": "sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg==",
              "requires": {
                "@babel/helper-validator-identifier": "^7.16.7",
                "to-fast-properties": "^2.0.0"
              }
            },
            "ansi-styles": {
              "version": "3.2.1",
              "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
              "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
              "requires": {
                "color-convert": "^1.9.0"
              }
            },
            "chalk": {
              "version": "2.4.2",
              "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
              "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
              "requires": {
                "ansi-styles": "^3.2.1",
                "escape-string-regexp": "^1.0.5",
                "supports-color": "^5.3.0"
              }
            },
            "color-convert": {
              "version": "1.9.3",
              "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
              "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
              "requires": {
                "color-name": "1.1.3"
              }
            },
            "color-name": {
              "version": "1.1.3",
              "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
              "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
            },
            "debug": {
              "version": "4.3.3",
              "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz",
              "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==",
              "requires": {
                "ms": "2.1.2"
              }
            },
            "has-flag": {
              "version": "3.0.0",
              "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
              "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
            },
            "ms": {
              "version": "2.1.2",
              "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
              "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
            },
            "supports-color": {
              "version": "5.5.0",
              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
              "requires": {
                "has-flag": "^3.0.0"
              }
            }
          }
        },
        "@babel/plugin-transform-computed-properties": {
          "version": "7.16.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz",
          "integrity": "sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==",
          "requires": {
            "@babel/helper-plugin-utils": "^7.16.7"
          },
          "dependencies": {
            "@babel/helper-plugin-utils": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
              "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
            }
          }
        },
        "@babel/plugin-transform-destructuring": {
          "version": "7.16.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.7.tgz",
          "integrity": "sha512-VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A==",
          "requires": {
            "@babel/helper-plugin-utils": "^7.16.7"
          },
          "dependencies": {
            "@babel/helper-plugin-utils": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
              "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
            }
          }
        },
        "@babel/plugin-transform-dotall-regex": {
          "version": "7.16.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz",
          "integrity": "sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==",
          "requires": {
            "@babel/helper-create-regexp-features-plugin": "^7.16.7",
            "@babel/helper-plugin-utils": "^7.16.7"
          },
          "dependencies": {
            "@babel/helper-plugin-utils": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
              "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
            }
          }
        },
        "@babel/plugin-transform-duplicate-keys": {
          "version": "7.16.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz",
          "integrity": "sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==",
          "requires": {
            "@babel/helper-plugin-utils": "^7.16.7"
          },
          "dependencies": {
            "@babel/helper-plugin-utils": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
              "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
            }
          }
        },
        "@babel/plugin-transform-exponentiation-operator": {
          "version": "7.16.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz",
          "integrity": "sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==",
          "requires": {
            "@babel/helper-builder-binary-assignment-operator-visitor": "^7.16.7",
            "@babel/helper-plugin-utils": "^7.16.7"
          },
          "dependencies": {
            "@babel/helper-plugin-utils": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
              "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
            }
          }
        },
        "@babel/plugin-transform-for-of": {
          "version": "7.16.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz",
          "integrity": "sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==",
          "requires": {
            "@babel/helper-plugin-utils": "^7.16.7"
          },
          "dependencies": {
            "@babel/helper-plugin-utils": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
              "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
            }
          }
        },
        "@babel/plugin-transform-function-name": {
          "version": "7.16.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz",
          "integrity": "sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==",
          "requires": {
            "@babel/helper-compilation-targets": "^7.16.7",
            "@babel/helper-function-name": "^7.16.7",
            "@babel/helper-plugin-utils": "^7.16.7"
          },
          "dependencies": {
            "@babel/code-frame": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
              "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
              "requires": {
                "@babel/highlight": "^7.16.7"
              }
            },
            "@babel/compat-data": {
              "version": "7.16.8",
              "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.8.tgz",
              "integrity": "sha512-m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q=="
            },
            "@babel/helper-compilation-targets": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz",
              "integrity": "sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==",
              "requires": {
                "@babel/compat-data": "^7.16.4",
                "@babel/helper-validator-option": "^7.16.7",
                "browserslist": "^4.17.5",
                "semver": "^6.3.0"
              }
            },
            "@babel/helper-function-name": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz",
              "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==",
              "requires": {
                "@babel/helper-get-function-arity": "^7.16.7",
                "@babel/template": "^7.16.7",
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-get-function-arity": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz",
              "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-plugin-utils": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
              "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
            },
            "@babel/helper-validator-identifier": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
              "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
            },
            "@babel/helper-validator-option": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz",
              "integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ=="
            },
            "@babel/highlight": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz",
              "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==",
              "requires": {
                "@babel/helper-validator-identifier": "^7.16.7",
                "chalk": "^2.0.0",
                "js-tokens": "^4.0.0"
              }
            },
            "@babel/parser": {
              "version": "7.16.8",
              "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.8.tgz",
              "integrity": "sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw=="
            },
            "@babel/template": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz",
              "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==",
              "requires": {
                "@babel/code-frame": "^7.16.7",
                "@babel/parser": "^7.16.7",
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/types": {
              "version": "7.16.8",
              "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.8.tgz",
              "integrity": "sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg==",
              "requires": {
                "@babel/helper-validator-identifier": "^7.16.7",
                "to-fast-properties": "^2.0.0"
              }
            },
            "ansi-styles": {
              "version": "3.2.1",
              "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
              "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
              "requires": {
                "color-convert": "^1.9.0"
              }
            },
            "browserslist": {
              "version": "4.19.1",
              "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz",
              "integrity": "sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==",
              "requires": {
                "caniuse-lite": "^1.0.30001286",
                "electron-to-chromium": "^1.4.17",
                "escalade": "^3.1.1",
                "node-releases": "^2.0.1",
                "picocolors": "^1.0.0"
              }
            },
            "caniuse-lite": {
              "version": "1.0.30001299",
              "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001299.tgz",
              "integrity": "sha512-iujN4+x7QzqA2NCSrS5VUy+4gLmRd4xv6vbBBsmfVqTx8bLAD8097euLqQgKxSVLvxjSDcvF1T/i9ocgnUFexw=="
            },
            "chalk": {
              "version": "2.4.2",
              "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
              "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
              "requires": {
                "ansi-styles": "^3.2.1",
                "escape-string-regexp": "^1.0.5",
                "supports-color": "^5.3.0"
              }
            },
            "color-convert": {
              "version": "1.9.3",
              "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
              "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
              "requires": {
                "color-name": "1.1.3"
              }
            },
            "color-name": {
              "version": "1.1.3",
              "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
              "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
            },
            "electron-to-chromium": {
              "version": "1.4.44",
              "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.44.tgz",
              "integrity": "sha512-tHGWiUUmY7GABK8+DNcr474cnZDTzD8x1736SlDosVH8+/vRJeqfaIBAEHFtMjddz/0T4rKKYsxEc8BwQRdBpw=="
            },
            "has-flag": {
              "version": "3.0.0",
              "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
              "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
            },
            "node-releases": {
              "version": "2.0.1",
              "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz",
              "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA=="
            },
            "semver": {
              "version": "6.3.0",
              "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
              "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
            },
            "supports-color": {
              "version": "5.5.0",
              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
              "requires": {
                "has-flag": "^3.0.0"
              }
            }
          }
        },
        "@babel/plugin-transform-literals": {
          "version": "7.16.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz",
          "integrity": "sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==",
          "requires": {
            "@babel/helper-plugin-utils": "^7.16.7"
          },
          "dependencies": {
            "@babel/helper-plugin-utils": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
              "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
            }
          }
        },
        "@babel/plugin-transform-member-expression-literals": {
          "version": "7.16.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz",
          "integrity": "sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==",
          "requires": {
            "@babel/helper-plugin-utils": "^7.16.7"
          },
          "dependencies": {
            "@babel/helper-plugin-utils": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
              "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
            }
          }
        },
        "@babel/plugin-transform-modules-amd": {
          "version": "7.14.5",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz",
          "integrity": "sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==",
          "requires": {
            "@babel/helper-module-transforms": "^7.14.5",
            "@babel/helper-plugin-utils": "^7.14.5",
            "babel-plugin-dynamic-import-node": "^2.3.3"
          }
        },
        "@babel/plugin-transform-modules-commonjs": {
          "version": "7.16.8",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.8.tgz",
          "integrity": "sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA==",
          "requires": {
            "@babel/helper-module-transforms": "^7.16.7",
            "@babel/helper-plugin-utils": "^7.16.7",
            "@babel/helper-simple-access": "^7.16.7",
            "babel-plugin-dynamic-import-node": "^2.3.3"
          },
          "dependencies": {
            "@babel/code-frame": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
              "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
              "requires": {
                "@babel/highlight": "^7.16.7"
              }
            },
            "@babel/generator": {
              "version": "7.16.8",
              "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.8.tgz",
              "integrity": "sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw==",
              "requires": {
                "@babel/types": "^7.16.8",
                "jsesc": "^2.5.1",
                "source-map": "^0.5.0"
              }
            },
            "@babel/helper-function-name": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz",
              "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==",
              "requires": {
                "@babel/helper-get-function-arity": "^7.16.7",
                "@babel/template": "^7.16.7",
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-get-function-arity": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz",
              "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-hoist-variables": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz",
              "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-module-imports": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz",
              "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-module-transforms": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz",
              "integrity": "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==",
              "requires": {
                "@babel/helper-environment-visitor": "^7.16.7",
                "@babel/helper-module-imports": "^7.16.7",
                "@babel/helper-simple-access": "^7.16.7",
                "@babel/helper-split-export-declaration": "^7.16.7",
                "@babel/helper-validator-identifier": "^7.16.7",
                "@babel/template": "^7.16.7",
                "@babel/traverse": "^7.16.7",
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-plugin-utils": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
              "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
            },
            "@babel/helper-simple-access": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz",
              "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-split-export-declaration": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz",
              "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-validator-identifier": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
              "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
            },
            "@babel/highlight": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz",
              "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==",
              "requires": {
                "@babel/helper-validator-identifier": "^7.16.7",
                "chalk": "^2.0.0",
                "js-tokens": "^4.0.0"
              }
            },
            "@babel/parser": {
              "version": "7.16.8",
              "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.8.tgz",
              "integrity": "sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw=="
            },
            "@babel/template": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz",
              "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==",
              "requires": {
                "@babel/code-frame": "^7.16.7",
                "@babel/parser": "^7.16.7",
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/traverse": {
              "version": "7.16.8",
              "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.8.tgz",
              "integrity": "sha512-xe+H7JlvKsDQwXRsBhSnq1/+9c+LlQcCK3Tn/l5sbx02HYns/cn7ibp9+RV1sIUqu7hKg91NWsgHurO9dowITQ==",
              "requires": {
                "@babel/code-frame": "^7.16.7",
                "@babel/generator": "^7.16.8",
                "@babel/helper-environment-visitor": "^7.16.7",
                "@babel/helper-function-name": "^7.16.7",
                "@babel/helper-hoist-variables": "^7.16.7",
                "@babel/helper-split-export-declaration": "^7.16.7",
                "@babel/parser": "^7.16.8",
                "@babel/types": "^7.16.8",
                "debug": "^4.1.0",
                "globals": "^11.1.0"
              }
            },
            "@babel/types": {
              "version": "7.16.8",
              "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.8.tgz",
              "integrity": "sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg==",
              "requires": {
                "@babel/helper-validator-identifier": "^7.16.7",
                "to-fast-properties": "^2.0.0"
              }
            },
            "ansi-styles": {
              "version": "3.2.1",
              "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
              "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
              "requires": {
                "color-convert": "^1.9.0"
              }
            },
            "chalk": {
              "version": "2.4.2",
              "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
              "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
              "requires": {
                "ansi-styles": "^3.2.1",
                "escape-string-regexp": "^1.0.5",
                "supports-color": "^5.3.0"
              }
            },
            "color-convert": {
              "version": "1.9.3",
              "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
              "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
              "requires": {
                "color-name": "1.1.3"
              }
            },
            "color-name": {
              "version": "1.1.3",
              "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
              "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
            },
            "debug": {
              "version": "4.3.3",
              "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz",
              "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==",
              "requires": {
                "ms": "2.1.2"
              }
            },
            "has-flag": {
              "version": "3.0.0",
              "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
              "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
            },
            "ms": {
              "version": "2.1.2",
              "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
              "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
            },
            "supports-color": {
              "version": "5.5.0",
              "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
              "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
              "requires": {
                "has-flag": "^3.0.0"
              }
            }
          }
        },
        "@babel/plugin-transform-modules-systemjs": {
          "version": "7.16.7",
          "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz",
          "integrity": "sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==",
          "requires": {
            "@babel/helper-hoist-variables": "^7.16.7",
            "@babel/helper-module-transforms": "^7.16.7",
            "@babel/helper-plugin-utils": "^7.16.7",
            "@babel/helper-validator-identifier": "^7.16.7",
            "babel-plugin-dynamic-import-node": "^2.3.3"
          },
          "dependencies": {
            "@babel/code-frame": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
              "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
              "requires": {
                "@babel/highlight": "^7.16.7"
              }
            },
            "@babel/generator": {
              "version": "7.16.8",
              "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.8.tgz",
              "integrity": "sha512-1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw==",
              "requires": {
                "@babel/types": "^7.16.8",
                "jsesc": "^2.5.1",
                "source-map": "^0.5.0"
              }
            },
            "@babel/helper-function-name": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz",
              "integrity": "sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==",
              "requires": {
                "@babel/helper-get-function-arity": "^7.16.7",
                "@babel/template": "^7.16.7",
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-get-function-arity": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz",
              "integrity": "sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-hoist-variables": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz",
              "integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-module-imports": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz",
              "integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-module-transforms": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz",
              "integrity": "sha512-gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng==",
              "requires": {
                "@babel/helper-environment-visitor": "^7.16.7",
                "@babel/helper-module-imports": "^7.16.7",
                "@babel/helper-simple-access": "^7.16.7",
                "@babel/helper-split-export-declaration": "^7.16.7",
                "@babel/helper-validator-identifier": "^7.16.7",
                "@babel/template": "^7.16.7",
                "@babel/traverse": "^7.16.7",
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-plugin-utils": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz",
              "integrity": "sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="
            },
            "@babel/helper-simple-access": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz",
              "integrity": "sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-split-export-declaration": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz",
              "integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==",
              "requires": {
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/helper-validator-identifier": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
              "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
            },
            "@babel/highlight": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz",
              "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==",
              "requires": {
                "@babel/helper-validator-identifier": "^7.16.7",
                "chalk": "^2.0.0",
                "js-tokens": "^4.0.0"
              }
            },
            "@babel/parser": {
              "version": "7.16.8",
              "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.8.tgz",
              "integrity": "sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw=="
            },
            "@babel/template": {
              "version": "7.16.7",
              "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz",
              "integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==",
              "requires": {
                "@babel/code-frame": "^7.16.7",
                "@babel/parser": "^7.16.7",
                "@babel/types": "^7.16.7"
              }
            },
            "@babel/traverse": {
              "version": "7.16.8",
              "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.8.tgz",
              "integrity": "sha512-xe+H7JlvKsDQwXRsBhSnq1/+9c+LlQcCK3Tn/l5sbx02HYns/cn7ibp9+RV1sIUqu7hKg91NWsgHurO9dowITQ==",
              "requires": {
                "@babel/code-frame": "^7.16.7",
                "@babel/generator": "^7.16.8",
                "@babel/helper-environment-visitor": "^7.16.7",
                "@babel/helper-function-name": "^7.16.7",
                "@babel/helper-hoist-variables": "^7.16.7",
                "@babel/helper-split-export-declaration": "^7.16.7",
                "@babel/parser": "^7.16.8",
                "@babel/types": "^7.16.8",
                "debug": "^4.1.0",
                "globals": "^11.1.0"
              }
            },
            "@babel/types": {
              "version": "7.16.8",
              "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.8.tgz",
              "integrity": "sha512-smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg==",
              "requires": {
                "@babel/helper-validator-identifier": "^7.16.7",
                "to-fast-properties": "^2.0.0"
              }
            },
            "ansi-styles": {
              "version": "3.2.1",
              "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
              "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
              "requires": {
                "color-convert": "^1.9.0"
              }
            },
            "chalk": {