From 9090d40a79796cfe706089367ec348cf634f4318 Mon Sep 17 00:00:00 2001 From: Alex MacArthur Date: Tue, 5 Feb 2019 12:01:55 -0600 Subject: [PATCH] Add custom column configuration, update documentation. --- .babelrc | 5 + .gitignore | 2 + LICENSE | 674 ++++++ LICENSE.txt | 1 - README.md | 389 ++-- batch-jobs.jpg | Bin 0 -> 90879 bytes composer.json | 4 +- js/dist/ramsey-batch.min.js | 1 + js/src/ramsey-batch.js | 383 ++-- package.json | 23 + src/Controllers/BatchController.php | 8 +- src/Views/BatchView.php | 89 +- webpack.config.js | 22 + wp-ramsey-batch.php | 7 +- yarn.lock | 3302 +++++++++++++++++++++++++++ 15 files changed, 4498 insertions(+), 412 deletions(-) create mode 100644 .babelrc create mode 100644 LICENSE delete mode 100644 LICENSE.txt create mode 100644 batch-jobs.jpg create mode 100644 js/dist/ramsey-batch.min.js create mode 100644 package.json create mode 100644 webpack.config.js create mode 100644 yarn.lock diff --git a/.babelrc b/.babelrc new file mode 100644 index 0000000..a29ac99 --- /dev/null +++ b/.babelrc @@ -0,0 +1,5 @@ +{ + "presets": [ + "@babel/preset-env" + ] +} diff --git a/.gitignore b/.gitignore index e69de29..93cab34 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules +yarn-error.log diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/LICENSE.txt b/LICENSE.txt deleted file mode 100644 index c4011e0..0000000 --- a/LICENSE.txt +++ /dev/null @@ -1 +0,0 @@ -https://www.gnu.org/licenses/gpl-3.0.html \ No newline at end of file diff --git a/README.md b/README.md index 0dc36b4..f94d0ce 100644 --- a/README.md +++ b/README.md @@ -1,28 +1,28 @@ -# WordPress Batch Processing +# Ramsey Batch -Provides a framework to handle large data processing jobs by breaking it into smaller chunks and running each job individually via AJAX requests. +A WordPress plugin that provides a framework to handle large data processing jobs by breaking it into smaller chunks and running each job individually via AJAX requests. ## Installation The recommended method of installation is via [Composer](https://getcomposer.org/). ### Composer -For more information on using Composer to manage WordPress plugins [read this guide](https://deliciousbrains.com/using-composer-manage-wordpress-themes-plugins/). + +For more information on using Composer to manage WordPress plugins, [read this guide](https://deliciousbrains.com/using-composer-manage-wordpress-themes-plugins/). #### Add the repository to composer.json -1. In the `extra` array ensure you have: +1. In the `extra` object, specify that `wordpress-plugin` packages be placed in the correct directory. ```js "installer-paths": { - "content/plugins/{$name}/": ["type:wordpress-plugin"] + "wp-content/plugins/{$name}/": ["type:wordpress-plugin"] } ``` -Be sure that the installer path reflects your WordPress plugin directory. - +Be sure that the installer path matches the path of your WordPress plugin directory. -2. In the `repositories` array of composer.json, add the following +2. In the `repositories` array of composer.json, add the following: ```js { @@ -31,14 +31,15 @@ Be sure that the installer path reflects your WordPress plugin directory. } ``` -3. In the `require` object add: +3. In the `require` object, add: ```js "RamseyInHouse/wp-ramsey-batch": "^1.0" ``` + If you'd like a different version of the plugin, check the [Releases](https://github.com/RamseyInHouse/wp-ramsey-batch/releases) section of Github. This plugin adheres to [semantic versioning guidelines](https://getcomposer.org/doc/articles/versions.md). -4. Run the `composer install` command. +4. Run `composer install` to install the plugin. ### Download and Install @@ -46,247 +47,201 @@ You can download the plugin files here and add them to the `plugins` directory o ## Creating a Batch Job -Before starting be sure that the "Ramsey Batch" plugin is activated. - -### Include your class in your theme/plugin +Before starting, be sure that the "Ramsey Batch" plugin is activated. -Current convention is to have your batch jobs live inside your theme. This could easily be extended to have batch jobs live inside other plugins. Regardless, you need to tell WordPress to include the correct files. +**Create a batch job class and register the job.** -In your theme's `functions.php` file add: - -```php -if( is_admin() && class_exists('RamseySolutions\RamseyBatch\Controllers\BatchController')) { - RamseySolutions\RamseyBatch\Controllers\BatchController::register('MyAppNamespace\Batch\MyBatchJob'); -} -``` - -### Create a batch job class and register the job -Begin by creating a class for your batch job with a basic `__construct` method. Your class _must_ extend the `\RamseySolutions\RamseyBatch\BatchJob` class. +Begin by creating a class for your batch job with a `__construct()` method. Your class _must_ extend the `\RamseySolutions\RamseyBatch\BatchJob` class. ```php 'My Batch Job Name', - 'description' => 'Description of what the batch job does.', - 'lastRunDate' => $this->getLastRunDate() - ]; + $jobs[__CLASS__] = [ + 'name' => 'My Batch Job', + 'description' => 'This is the description for my batch job.', + 'lastRunDate' => $this->getLastRunDate() + ]; - return $jobs; + return $jobs; } /** - * Set the batch job items - * @param array $items Array of values to process over. These values will be passed into your processing function one-by-one via AJAX. Use the 'run' method to compile + * Set the batch job items to be processed. + * These values will be passed into your processing function one-by-one via AJAX using the `run()` method. + * + * @param array $items Array of values to be processed. */ -protected function setItems($items) { - $this->items = $items; +protected function setItems($items) +{ + $this->items = $items; } /** - * Start the batch job by compiling the batch + * When the batch job begins, this method is run. + * * @return string JSON string */ -public function run() { - - //Update the last run date to be displayed in the UI - $this->updateLastRunDate(); - - //Get a large batch of something, posts, users, DB records, etc. For this example we get all the 'post' post type ID's in a numerically indexed array. - global $wpdb; - $postIds = $wpdb->get_results("SELECT ID from {$wpdb->prefix}posts WHERE post_type = 'post'", ARRAY_N); - - //Set the items for later reference - $this->setItems($postIds); - - //Output JSON for AJAX - wp_send_json_success([ - 'items' => $this->getItems() - ]); +public function run() +{ + // Update the last run date to be displayed in the UI. + $this->updateLastRunDate(); + + // Get a large batch of something, posts, users, DB records, etc. + // For this example, we collect all posts in a numerically indexed array. + global $wpdb; + $postIds = $wpdb->get_results("SELECT ID from {$wpdb->prefix}posts WHERE post_type = 'post'", ARRAY_N); + + // Set the items for later reference. + $this->setItems($postIds); + + // Output JSON for AJAX. Items MUST be included in the payload. + wp_send_json_success([ + 'items' => $this->getItems() + ]); } /** - * Process an individual batch job item - * @return array Response data + * Process an individual item. + * + * @return array Response data. */ -public function runItem() { - if( !wp_doing_ajax() ) { - return;//You should probably log and throw an error. - } - - //Grab our item from the AJAX request - $postId = $_REQUEST['item']; - - //Setup an empty array to hold our response. As batch jobs should only be run in the WP admin by authenticated users, you can use this response to output information in the browser console. - //You can pass any number of elements in the response array, however, the response array expects at least a 'reason' key to provide some browser output. - //You can add a 'type' key with a value of 'warn' to output the message in the browser using console.warn() rather than console.log() - $response = []; - - //We're only expecting post ID's, so let's do a quick sanity check. If this fails in real life, you should probably log it out for further analysis. - if( !$postId || !is_numeric($postId) ) { - $response['reason'] = __FUNCTION__ . ' requires a numeric post ID.'; - wp_send_json_error($response); - } - - $response['postId'] = $postId; - - //Let's add some post meta for each post - $meta_key = 'batch_meta_key'; - $meta_value = 'Your batch meta value'; - $postMetaId = add_post_meta($postId, $meta_key, $meta_value); - - if( !$postMetaId ) { - $response['reason'] = 'Could not save post meta.'; - wp_send_json_error($response); - } - - $response['postMetaId'] = $$postMetaId; - $response['reason'] = "Post meta for $postId was updated to '$meta_value'."; - - //Send the JSON success message - wp_send_json_success($response); +public function runItem() +{ + // Grab the item from the AJAX request. + $postId = $_POST['item']; + + // Set up an empty array to hold our response. As batch jobs should only be run in the WP admin by authenticated users, you can use this response to output information in the browser console. + // You can pass any number of elements in the response array; however, the response array expects at least a 'reason' key to provide some browser output. + // You can add a 'type' key with a value of 'warn' to output the message in the browser using console.warn() rather than console.log(). + $response = []; + + if( !$postId || !is_numeric($postId) ) { + $response['reason'] = __FUNCTION__ . ' requires a numeric post ID.'; + wp_send_json_error($response); + } + + $response['postId'] = $postId; + + // Let's add some post meta for each post. + $meta_key = 'batch_meta_key'; + $meta_value = 'Your batch meta value'; + $postMetaId = add_post_meta($postId, $meta_key, $meta_value); + + if( !$postMetaId ) { + $response['reason'] = 'Could not save post meta.'; + wp_send_json_error($response); + } + + $response['postMetaId'] = $$postMetaId; + $response['reason'] = "Post meta for $postId was updated to '$meta_value'."; + + // Send the JSON success message. + wp_send_json_success($response); +} +``` + +**Register a batch job inside your theme or plugin.** + +While the current convention is to have your batch jobs live inside your theme, this could easily be extended to have these jobs live inside other plugins. Regardless, you need to tell WordPress to include the correct files. + +In your theme's `functions.php` file add: + +```php +if (is_admin() && class_exists('RamseySolutions\RamseyBatch\Controllers\BatchController')) { + RamseySolutions\RamseyBatch\Controllers\BatchController::register('MyAppNamespace\Batch\MyBatchJob'); } ``` -### The full example code +**In the WP admin, go to Tools > Batch Jobs. You should see a table listing all registered batch jobs.** + +![Registered Batch Jobs in WordPress Admin](batch-jobs.jpg) + +## Running a Batch Job -A full copy of the code is shown below. +In the plugin's WP admin page, click the "Run Job" button for a particular job. Once this is clicked, the following will happen: + +1. The `run()` method on your class is called. This should update the 'last run date' and compile your list of items to be processed one at a time. If successful, an array of items should be logged to the browser console. +1. Once all of the batch items have been collected, the `runItem()` method of your class is called for each item in the batch. Each item from the JSON array is passed to the method individually for processing. If the item is processed successfully, it should [output a successful response](https://codex.wordpress.org/Function_Reference/wp_send_json_success) via JSON to the browser's console. + +## Adding Custom Admin Table Columns + +On the "Batch Jobs" page in the WordPress admin (Tools > Batch Jobs), you'll see a table of registered jobs available to run. Out of the box, each job has "Batch Name," "Job Description," "Date Last Run," and "Run Job" columns, but you may add custom columns as well. + +### Registering a New Column + +To add a new column, use the `ramsey-batch-table-columns` filter. ```php - 'My Batch Job Name', - 'description' => 'Description of what the batch job does.', - 'lastRunDate' => $this->getLastRunDate() - ]; - - return $jobs; - } - - /** - * Set the batch job items - * @param array $items Array of values to process over. These values will be passed into your processing function one-by-one via AJAX. Use the 'run' method to compile - */ - protected function setItems($items) { - $this->items = $items; - } - - /** - * Start the batch job by compiling the batch - * @return string JSON string - */ - public function run() { - - //Update the last run date to be displayed in the UI - $this->updateLastRunDate(); - - //Get a large batch of something, posts, users, DB records, etc. For this example we get all the 'post' post type ID's in a numerically indexed array. - global $wpdb; - $postIds = $wpdb->get_results("SELECT ID from {$wpdb->prefix}posts WHERE post_type = 'post'", ARRAY_N); - - //Set the items for later reference - $this->setItems($postIds); - - //Output JSON for AJAX - wp_send_json_success([ - 'items' => $this->getItems() - ]); - } - - /** - * Process an individual batch job item - * @return array Response data - */ - public function runItem() { - if( !wp_doing_ajax() ) { - return;//You should probably log and throw an error. - } - - //Grab our item from the AJAX request - $postId = $_REQUEST['item']; - - //Setup an empty array to hold our response. As batch jobs should only be run in the WP admin by authenticated users, you can use this response to output information in the browser console. - $response = []; - - //We're only expecting post ID's, so let's do a quick sanity check. If this fails in real life, you should probably log it out for further analysis. - if( !$postId || !is_numeric($postId) ) { - $response['reason'] = __FUNCTION__ . ' requires a numeric post ID.'; - wp_send_json_error($response); - } - - $response['postId'] = $postId; - - //Let's add some post meta for each post - $meta_key = 'batch_meta_key'; - $meta_value = 'Your batch meta value'; - $postMetaId = add_post_meta($postId, $meta_key, $meta_value); - - if( !$postMetaId ) { - $response['reason'] = 'Could not save post meta.'; - wp_send_json_error($response); - } - - $response['postMetaId'] = $$postMetaId; - $response['reason'] = "Post meta for $postId was updated to '$meta_value'."; - - //Send the JSON success message - wp_send_json_success($response); - } -} \ No newline at end of file +/** + * Add or remove table columns from the Batch Jobs admin page. + * + * @param array $columns Registered table columns. + * @return array + */ +add_filter('ramsey-batch-table-columns', function ($columns) { + $columns[] = [ + 'id' => 'columnHeaderID', + 'name' => 'Custom Column Name', + 'contentKey' => 'jobArrayKeyFromWhereToPullContent', + ]; + return $columns; +}); +``` + +The content of that newly registered column can be accessed by adding a new key to the job itself, using the `ramsey-batch-jobs` filter. This key must match the `contentKey` registered above. + +```php +add_filter('ramsey-batch-jobs', function ($jobs, $instance) { + $jobs['MyAppNamespace\Batch\YourJob']['jobArrayKeyFromWhereToPullContent'] = ' + + '; + + return $jobs; +}, 11, 2); +``` + +### Accessing Column Form Inputs + +If you include any form inputs inside your custom columns, the values of those inputs will be sent to the server when you run the job. You can access that data by use of the `formElementData` key on the `$_POST` object. + +```php + public function run() + { + $this->updateLastRunDate(); + + $arrayOfFormInputValues = $_POST['formElementData']; + } +``` diff --git a/batch-jobs.jpg b/batch-jobs.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ff220607fb04b79dc696e80b612253b10724ff36 GIT binary patch literal 90879 zcmeFZ1yCK&w=TMI3naL^ySsaEcX!*k1t(Z=cMa~&#wEDBZZyH2KyU&)l5^@+-T(c) zTlc+sRj1Ca|C&8Ly}tFet(l&l9@(!euipV5WTj-J01yxWz{j@*@VW*FdDH%j<+Trh z3J++6359|{1wf)gK%qjs4giP%5CBN1zf}YLr@+C(z#>3HK|&zDt^(lywBoG^0B7R7 z@Bc~oA2-CUL+<}0@}C-%cJZ^wKUyH)zgeQZM1836>^UV@Lo1iQXOZIA;|rfmhNY7J z4jU|zPFzkKukB3>f=J(v$t_-seg$;XH>5D}jjTNLDVO%_p3u zoa_|uDMC-Y&zSSI+;I_hJ=|^d~>FKcP2*MpUY1to*@$n!riOahY2v=@pQzx7GE+xGevdfa0N+&Ryt!#kf!v zTm2Mv&`Is`7k9NS)4->6F^_fVH{jd%I~%%%{*xcXi&zH&l1FJ|%6z5YJIMFoTW_x; zhj|G#bcLQyznDK10PXU)Zo{l*TGBE_mzr6x9DDj76kdp}@8Oit`g)H#AjYF1apn&Q z*&#mPQbOG~?g0-kOy3ds2m4onzIV+)}8XJu-?g%k` z2@MeW!zMWUIe|vummX#nlUO@RtbO3|);Ryro{O6ovjzWljtoRaC(69+H*Qrc{1|xt z$yJ(5P-tnP>&{@=K1Qoos;~5{zdSprx3yBzPbO8gbx=pR(C(& z+>x~KFG>GHg}eSo`2Pnm;O*2$@OEnZAJ2RMC}#7=eGm7BEp zPEzek=*n4)RO1C{tuR|myGAY{sc-aerIOV;=6(VV`KNqhb|-Xb&qeUvF3rMCEh=3m zoL={8_h7G*Uh+6stmfIfWfIJb;5$g~s{hjpVfI&mJlgL0zB>b&Ua2eBC$5V9)1^wz zNYGtFSKOM@{8FhPuJ?47>^Y$yyuJG4`@B^8#kRRZlu+LLtC}#alxE;u2G$UT0`AGK zXTW&MiG%L}o|aI+QG?xDmts$gwe#S4`*D#_Z#_1Mla<*=b&2aha9lcu@6uv*bLi@# zjjLwytr~Fq0Y`!V=$!XIde;Bh@{jcYHTd55uD?d)4+m=Ny|3WU|782V0YpA(^&L|rSLHJ&{!42`7nAa ze^DZ(Gdm*Z!q93ASIs{F1VQ2xb~(o5OvzufPFX5{%HP=kZh**r&Bov}k@1AF`8Nqk zm!e=Mq4O~N=y0~rGJ)rX(A@=_dZuK!h6Bit?(XOh9kS$H za^z3se-fzG+t&XH{I3B1T&?^=mxX-mvk=)`Y*mHETlHNu~%1pojI_cqYJRRjhW4ju~%8UY;>65<03r!p!w4i}Gz z69x%s{C`e0Am9PSJ;cIBFVF5fgr9~DS(l^#9r>?yg7A0mlhP4vo25J30w5h#-@k+Z zRz9%*P2l(-un@4%#Qi(hRyer7;pUjE*_8#)H*f+O-epfd<&xuf1hsXVOz*&$@EOM! zCH(SC?X^*UjsskOuJf>}yU47Q6euVCg)4i4G}faU|5RIlB{1}_k(uwypYmK9TC+P7 zCfUN=BzO6fDkiGdUS#nYn4W%52?d;paRg)sFt8+`8}Q;4W$~=Eo-m1$KBBU0RVhwd zMqARjq9em1WAxn zv+EQtKIdEtU#_fLKwu2UAj*g9Q#|k@erZ)lfS!_`PYnOP+ABIx9 z%6;%5UWUO*;@Kr4j2H5r{kCkB1TWZdc~qypdqMvWALw8_-_U@f%5te6!BXs>6|3^y zthvPjKlO%}wa^8GwZLO@=C44Cb(Nr+z!ap$ipy6x=YB0C@}iqTOOj*%!4Zu)9^U^) zmsjB&?@i`xEJxL>{mybF%TCyp8rhcG|6SNpT$1W04`ZV?$jF79Xc9-kiZI@xjZ?hL z9DzfgFQ_w*rJ;>&IDcx_cQ*=^=38LKv+Dy@2*d3oPn(AgvsniBM99;omdhtFuq%;_ z^Q&hYag2PS_BXuI1J@*NwjrD}%+_7Ffye?f4L+OSyA-K>^qXj*HQC!AQOk`sh7AC} zTi%oFx*T)hb%qGE;aY;{A62G4Hl@;N65-Oe!2z3=qJuJ646nIh&q?K!)$d$f6cgm9 z6K{`%g$wv%@D6L;*Ebc-Drnnjozdn}4af?1q~bi4l78nj6ivJSUKKblZ^ThyhNYsE z*P&Sn4&uOz1`Q_3+sU=>rt!pf)=8xikR(nPIc7|m_5I?upG)|bdKkt#=i@9yIX}gi z$&hfi38^UkBPb-_*4J=voaS~0r+SP)VN=}X!PQ@O-yv!0Q@j6ea#Luyzj8!krRAB> zD%gO40*y<}yrH8F>zqbfLVILPSQ19LaYK9(tq>}~X9+l53F|azS_>qMI1(!L zvP=ZnIiW*wIKg^`-QFB$b35ooc6vjV?O8pByAI^Jv;_FfaB?ZaY7Wn)7!J3ID9tMm z6CS3g^N24#ouR`Ed@6OUehLTg^hn*Xs*V~r#^`bKqNmM*a7fQk^W!J}h_8>@%8%P|~^@tU*6 zCkI#KCMgkN;T%T#4h+&)e@>xt^P;r|8BodOo68eWc?LRHa1wf2uYGEe9cm;>-;IS+dna)bd( zO5P$@suN$6C6S|)Z$`Kh1rif-I}n*fP04H!H(H-i7@ouJE#1N}{qrb+b7CSR`+n#C z`i&(!_ECL`Y1#G8PKSGzXv&3&B`%6zappjH^og+Q)kPMVE`pohda#55^MelLJj#j3 zd=64VDSd6FAL9&Wmd)7qT>1aykEI)yp3X!i;Sw>3jz2~K{Z!{GLi$o`C7co!4 z+|9~w^SRL9N&V<<ZiG0n`LdYa1#G!Ew(-)S9h+6cesjTA^jH$D1D6#a5r z;>*ww2p8x0%!eytexzt!HbEPi=s*G9t{BJJD+q_J*Q89%GF-yKF^hs zyt6U)M$(xve+69dY+ZSkz3{X6%}ftFpGrQbDHBe_JK)dt$n}k^mYenvN$Nh(BJB(R zkRivavHM;$#FP|`UUk8BiD=FdabMyuwkXYgAoF5ReDHbO3M-l#MLHqmXeijlKthFT zMWQei-eS8$(Y%53K7TijKJ^t)(}yZMUOr`UB1gg*^{FM{BbijAAKPXx6h}8)F>V_o z$xh91>*QnGMuxJi;Yb?t+HVq9WAWrJ3rjILMXVwBC=!o5=5@;k-tjv>u9GIX%(`a9 z7eDm6EZbOOLUQw8S!J@9&e=P3IS131%#p-AD`XcW?^3x3qf%Bjs}C%B`qMMNOS?4Dj=)6He=FKtYFGb?Dp?@A$a1~I%G=Lkv`ep zpJrM!mW@qaNZ~-yXUK3Q=x^_|eeo%LXDlOq(DikP%R0HRAlb*Q5Do+71m}RAA~FTq zS1o(WV@}E6VrR?_i-v2BV(Wq!CG7#2FXMY!Y}j%9`!b8S~i)gHPIpk98~?t;14#;7DcY^p`gW7X0q7gW-_H4c-j%Q>0Mj-Q1_{ zBN|lv8ANl=40Jm9$5rP7kX;hWHoYtxx6-&klC>^n(j_{PWN%ZR26tk8hKo58Y?7Qw z>w0VNvA2^FL^At^4N0Ov2&Oy zAxXB(<+wMM%1Jx-xk4?{c+&wmF;P{?v3xbzU#zrwKTVbg;LT}Hz2_g%^oDBLk&D62 zEc@nneW38swoV_7u=Q<9G=4YQA4RS%HPg*jn-S_dwc8F4i%p(C^7PYJJ~XHy8qA3c zrjD}2m|Vu~UKVM$Es48yCQJs3j=G8F+Da0*u4)#1T2CqIh*MlEry(P_PcYZRd#b-7 zy5qJ8t=_&L&CFo1D<;E0HPjZhS$HT_xB1`-p=n1I=?g+6a}dnkxt4nckoo>leTfnX6RV2ojcNDph;3@Duvkx~fMwMnk@0gWV2r&2jnt z3EnajNz$%*np37!%0#GY<6*l>Go#oh94{P0@}#ZWyh4)C+byW=d=qQ}kBJu^ZWz8u3dE;h#ZDR$ZXBEx(>*tVB1+}-M z!|l=PFg52%On@b3^5BE|PLEHofaGyW&xgE($?e&pd-WQ(HMnlrafSVJ1L-h!DIDI_ z20fj#f=o~Nn5*TKIq`Bg%0dX;#z&rW(B4UxQm>MaLt zc4FOpZ>fdp`o#Ee@V}u$gnzL?#szQ8%j+Drn?{w;{5$w><%57;q-RMnp_dod-+sHJ zW#$GwPj?UbzqzJHo8BSHau4tCm!7vQ9UL57ye)6P+taqX@As!uNJ<~4T(gdot)_#u zus8j33^oK$1KOGbV#nHOi%MxF&Y>_()w3^o(z#z28(YeYqk3G8tn^&pPYsp+e0sVc zzPwAKo?f2bnx5Vo{yCY2(#_oYgqQWm{|XQe@FrdpQjmSQ?Q!!LjulvOdA7J8u=V~Z zd2e*>`8%2U1`|GmSeV!uMcvojEGwYw@aFQx7QM+Gmg1wJ7t?-pkc}I`jeJ1j9GVN7gA3Iar;=|; zM%~u43fD0Y-VeDX_xYi%5u-ET*t}B3?aS_bwKmFq;#EyIxm_-DFU8M~dyk5&1TlVS z?eP*FM`D*C1_IplSyB@$()G$+g$XW`92i7CFF8xm+IZOr#K-bdH|e-U%5TE)V-Lu< zaUPSHTl5c283M5g#U~$jnQ?J$2Is>&Y&OBMo0(!7zj`q?%R9dOilKHtf0-R+!^GRi z=r<=1**;{=_LJK=WgYEJNPb1Dm=?PPQ!t1uhi3Qi>*NC)6*uMfs!DwM9N4KPG4x4&_`pNEb5xAx+*%ZW zy*xhA>&H;k({uT=Y{Bgam1Qipm}1uz<#!ysrIMz$Dq9yju{L8(So|*u!YA` zel4t4mc92**A&zIeWw2NNE8sMr+N3hZGu42)QrnL_DTA=S_Q&1aq{#bUY7ELI01Fa zgWE8r{S^?sB6U!saZdN+#4HQ<1DJ??Y6lmd9NJl~OtHF$D#>QK~*bq)eQ2`N&u#||L; zjvh^x(r{Bf_wAQkUJf)b0?lA={BTUv)uO0|$d4`ho)TCce)_hV+&j7CIV5-X)&1X@b$Q$ z)ogcl?1*7;=IMb^SG0#}^^bB@OkNi9BWBOEmpbJuQdV~~v4w0?$OdQGVu1N=GsBhdFk#u`l5E>kV#l8P`!+XWC&edGK;SU4}gc*^N_KGBbMW;xT(DBe@RG=!HZJepGW5ha}&}#zc7>?ey}P!Mf2_hG6*y)kmz$BNX`PT1Zt7>ya~7exUwk zK{{{m1zGNPpVoXKlJ18B4sCfa{Nm%Wox@;l6-C8lgY>I7oQhE1P4@K3gzDwS@M zWoS^$;TlS{P0CDa9qow?CN}%?kJzVWWC%IEZ}LKP8rQW!YjM%Zh;3tYGyu(KUriiz z5flZa+K-#w5v_c5-BkcEd{ub*(|3rthbFlXz z;ql=WaCCS1>t`3m)BTIA-DAXz-%QC=FwqrP2nrm2)Q!x}@K4=(GkL6EpTvC`XXOc)+DaX}K*m$yH@0hOgVlXjh@_)5E@^tx@j$ zg7Ucr+YH!6Gtk)+-)7y%i?7@)ol-MPt+1X8%)W!K|0-ZDY>J<7z0O0+5*?^0YyX}3 ziN{a3w8i4YhWM7CG)@LBi_u0C!VYq?pvXr(*X$=N+G3YJ|2;lAPV|n0^cUR1d;1k$ z#bfIAp{nm!wB4nMlnGjMhJ+)??-+wg+~y^?F(HG3WYnZ(;<=qSuD$z@$lvc~w3(qr zyX%B~yJ?SMRAX}+8uWx|&&o zU|4J(VHk{&qo&mjh1+pZ{gXXlOOzuayU0u(Em4taM#eLYXsiw9@rc)s3@g{fSidWg z*z?!#fd04jM5gtrn9NxVAwpFnl_w@j(<{taW3tM0(;9ONcpYhD z=Yp$v_9H+Z7ZatDCjLup+M~4|`xkjV-Mg30^XTA!Xp)ZVe4_12*C#|X2koYzqZTP< zc_IydKD6;)bY$EkXT?RqpYC#6i^*fz$2^MbynfJEcbBDRR?}uFQJ`77NAO#U!xO|c zUuk3PeEG2ZknBMy-D~%p0{1d3g>X`l!|he@fVlLo3&{Xl07&-mkUS^TtJ{p+uY_sH zUV0WL);0$0xoEn(N-|nd?75;Kej>y{{$RtNk}1>2#v6t@a+>z`nu#+uPHNm4L_(K? zo|~S0(t>ykIAF`>Vvnk)EGJ-BJ8Q7bQaA_thIR&{R75ogLe>q^gv3SNCizU}ceWl? z@tP0s`12miU2^}X+Iuf~!GA~p5A;L8@4>f6;#lS>E$3nnnRsMiOO2(qrKrSMxq3Ki#Y9?VfNvNlwWK&Ufj?e%3pAXRy zgaP|JcU!N3SV7NMz}o=){0ey7$MI(U_xf)i{C7MCUIB>-UK5Qv$eJ+~GxHf|-VeGPb#j-`0jp;R^+JuiU%N1N?CX%P)$12EObBHr17%p5xW--q8t!0b=zb(h z8jUsKftn*5tZgtVHyN_T7*ASxlXRP3hgy zWr6FpmbOEABMMW)YV>N^gb?0s6{NjH0A$T+g<3l|O=6`=s4uW(VC$=HEEnu%rKOfK zVpi@&eAc`)!aG)G^BD2$Ijpr6IlLRDp-~2glGa+#s{7nG*y!1P-_OarLnLI#hB;88 zLpu$KNkGF_fc4KiZNr+if#4>L1@h`-upQrGO(bThVAFBVM`zl1-$;d#o4z)%? z*hw|-!8v2Y9yVyWrZYE7hC-H?-a@hEg+oKjXkC)B@s14pQMqz^Co7US+0a+q{ zk(HTud_GOJ3PR)k&xN}`Qrm`@FR`b8W;bgB+AXJb%$frR9~T~g6A+%i!@Ms_fjO*k zuK?Qim!%K1ii=I@^oyFjbWTJV^Dm`t7udw|$+fWepYrR6Q->K5gJnJZ>&^ z*=)oaK|7aB_ZjGYia>}Hvr+%nX$R*$vY z7OooN!9~y6$eJlVzMGT8uhii;CeV?mZ>TcSGD2MGK=xBF>0Aogpvr8yA2|zL069%~ zN>5ASekGOCxm_2FI6QP5Z3cp6SGsD*z=bTCv!NV6@WO1hIS87ZBspQ|h8fs94SEa{ zom`t;#u#)NGhYE{yf0kq?;ZDWCtx1N~ROOFW zy=P&K@IGQ}Q=?vu^}MOdn<;t9l<43wo`~97Om1#Q1lu<7%T^0e^cmQR&h<}AkflqD z@H4(^a$X}jNVBjG%9SrMF%1TsMp}PwjTkB1i`xyJf5GY!P*58a`O<+ixyh1t&eG=A z?Q{P;3`;=>bwb|6^a=<8#xA9mJ2>AU+Gaj6j$`~z=7cD{+=X4$(O*4KU6GNJx4M0Z(Hg^J+mlp%I>%c$>i5@2hTDY?H`a0?{ zXj^U_`qtW{b%W!`EWiE4sl0V>ASET*nFGC=(j_2)>Of`6q1P%2=1cGKwykQa}b(f5Lgd7RMpxyt+?M zU2@eZV|EX(Z9Z*7TqYhEYQC^HEE(k2)iVJd31%r+PSv5^D)LZ<6?~RP1hN^OK={QB zB;Op%bxWFn98Q1n8Nr;;;bX-=KB?pSe77e{bZE^(v<|+Lf7d4JT`q<9iBlnjc!w>m z?~LJKmG60ZMDpyU1VoM|Gk7pwS+~2>tg3oTL#nXz)kuM}4g+%~3O&b(JzuOc1bRIq z)PK;)a#-XE4PJ{&etxm~WB1B1X>+tFj#)S|pDc+sv$^77okUM$b&ftelN@4T=#A44 z*5K*~c+}8-pbR6&=Nwv~O3DR()ZNxXiT-Hv<@beLmjSmqvG7fK^pKw`m;xlfLcR-( z0>=iDJY$zSirh^)vDUvvG+MtW*<_mQSktOCT$kQ4Nid#tp9DKx>a`F2x(dC_an#ECi#{G z*nulm?218t;RsTLgVamLCnD0E4aVP!qcYsu>8;Gw(~K4S#9Wh4W09d@VNv!^5bbQY zEixS9s{n0kdd8OWwJ^<#p@h+*E;TJ~mim>Jyc5i{&FQRC0*s!V0s$sI6;FH|%l1)n zWbh{{W!+8amerqUqY?vf(Of!U*;c~KZF3Zq7=E_FpTgs(z7s=WkO~_Oa{tt_>(64T z2J=N}p74Oa*v|`(`Si))@Qc^}h9!g_tC<>z`AjCl=)n8^vjp$|hXci_tn;R&Tqu5- z)KP_XT^xdk{;ap+o@#vHEgrR z@+|ipm!D=NLtxr^m>M-Tq5HV*DZ(MSmR&I>_vH* zXn_jB5;aZU@kMs;3lUEiu|At)T-*|Ex@MPpIByrEs}~;>AWDvO8!ATenBtUn- z-;NGtRz!mwi|*3nrC%qKiV0_&2SF!_n|9Vu5_y^A@|s7hw<>tn{gx9&FwqwJW=^Hm zL#}8c8sBC+N>eizeTG43Y9$h#n9O^Mc5Q9AFQe8WTS>ua92SrolXVw_gN+Dh zt2nkH9ywW|02Rnh#}Y=V)n0;)3k}OF-C1|;?PSJ*dtfELYVL7)_blKMp>t;IEL;!fqyGXXMS z89Fr6N$yx|$QeG%Yuai=q%(dq;AvU%RpN@WA8}?$`En;Bxe8sr=1`z;zh6J>5(6nz zkKa03Wyvk$k>yrgsTxm62lH+-HeH(;wMyjREK(a)@k}}NpeWs_E8$0cz!pl~UG43S zIrh8bFxe&tuo;%>JRs_uO*2?B6i()9R%-^TaD@)tK(Pmbz~kA3Ue{Rc@;Sz)i{B*Q z@I&`ju5t-0BH(9HXWwS~r6chQS*`+(uUx*s53E|Ja@_Bgxk}9OlilvA5!TxMsuvn9 zA*QuebT{Gg)?z(n)jcqsw1R2an4CM2CI_n-{gNg)q4UzPKjLABL{YNPmC2FtDEZCS zD3J|vk6R%h3d}T>^^{;}Up1`LZ6jKj`dt-tY`-8yUNKI>x= zh11kD3yMA!HQh1hvYMXPN;?6A=^AQiTX}*^*&|qT-s1{eiTgj_(v#g4PiBi!)c0qYHYL3u9~h%Z@%I-uxYGxe-udS1Ao;W_lJ7AQ`b z-FF-nsw28=SH1G{_NVZYC59sM2-&6-PC*+cyybf=D~M|~pzSe3QQmKpgc`U|gTx`8 z)Y>c2>d)?UK@k)q^eDu29!z$y#!{^=H{V2lmEuZ^CI=B29=fGgSSK*Y zM7g7cbStd={9$%ck;)K^sj0V>c@OglJ(gQQccV9d>TQg80y3wDtzUt% z;dCjhF6#SMT4RG$(+yu$b>=WZHw?>2R=I7mUe)w7vEVf2d?s^qHM4#8Io3!?xj46N z^|?#386vXN<)w+a(pl=lin-g8D%NwTf>;^LX`QS87B7NeD)?L2cwDZ0&eh8vBoZckKcjZ8d&V9dF=qAoVcs=S z{uOF)iPYs<#s$P+(-QK{#Zjb)ddSJ^uFJ z7_y!(e8eVW<7mJZISc6zUIyHApPx{}YZP5E4i{=fLJ{3$BkBX}EeE?l+UiSOr| z;eXka?$p!!XlksfGVGMs*dw|5lQno zjlsfs8a{4d&#pB-t&Qk9qj+EOVbB8^{moErDZwqYZU>NE#*fm&**DgcEnOF1Mvxz=yh1 zDD49weCXyfcdjx{eit>Bs5|Q+R%38t^G$63{l4-zk!w$ob%Go4s79}xhlGGO3KaPb}Ct&_w}RQh7QM?P;^Kf}FVwXZWC=t8+m(fV|uLw21< zyV9XLykUy=L?`IuevozJ6tC$t!Ow99m*H+3KZez$9n=pMan=0AH^nZSE32LwpSuYc z`C>7ChS34Y%Bp-B#j2;hZi%Vp`v;8KAr>NWgVti>ef$@Z`0ewwSWgU!`o>Gr;uHWK zY1|CQ;l;GagWpeI0VA~^cNzlvv1_yub=Nfut2oj$Jc=+jL1jMjdSnF2Ta=p1b|Cj> zgTi^F^TE%C3U2AJkAj^@&>SO69A?Pr%t0`=Pw)+5blII(H#Lxe0X994uUm55Ec|u0 z)444sHuB`PpM`rX;|>fLBWpoJbBes_CnB(|TAUm_121&riq&(7K0WT6xD_7F4FnLZ zU(NFA6gY2|daE>k!tmFflNU;ZO+M)(%uV zxS*dmY0R|Ee@nf4C2|0We<= zW@FhhlBsj9zCoHk1B<@tW*|&s#J&U>3x%0ux5Y_}hs68L%3NgpXOOEUl|9m?3F| zT$f?~Y>8}PW*VBk_9VQ zUZdZh)}6}X?U-6pP<6W5NOSPe%zt8FYthhe^p}+m>$kLi1=N|95p7^*Z(x1)AIQ#0 z(perz9N8Cy0fP?Xh^{hiRt+|0$Os=LJRzJ3&% z%!Nib^`)YklC+NH6@XD;ErX-9kqmS~D%B&qV-FE>{*dN~0CIlP^lU?W($nz{z|XA* zVQ7bg&sso_^T_IqCf<7$H$VNnn(Hd_J{b+8YkP3Sy5$9t12@KZ_NzC}0ZDUQdSneW z!@Z)H4RafQPVAHRGH>4sb-6it?1w-Cz}ud7A?jdt1Suk^5}j z2f|XBYbuzQjN(ZtFlwRO+t)Og|PlXwGJYtar%8xsw!>$5spIg5^kFS#LAY@!iLG5Rp*aPy!Kkdg5@cGU$6#<%b8Wr&@C*R zuq|=>-+d#mKc$&(ShiyTK96G92B+gmO)Lu3YZ@FDM>xe%D>JUS_E5V8#8p9#Q35N& zXOi64tRwYAMTEw`(g-zEg63wy@`MR|!K3WsX_7k4-)bGcijzBAHK9=@%`(uz!B%a* z?5^}O>TzFTlmypeujb;OEfOmJ5YvV*AfL%sKf|C*5xpsG3Ykuno?yfJMJlQOnB-5B_9NZT_!tYoxVwm0hPK z*Y0vKnJExwaOjy2I$wo4mthV%u*ePbE*L8H`sn9HG(SqAO;uJre)6+v;5Z)YFo#cR zPz*X#0v;Ra&k^PUfh^>BoZBq(9S|$+$Cd0l>YQ^N(mRF>7dm+IMb)c6l#nBORNc#? zJxH+GT{z&3(Pq8p65o~I+KC~Vrp9yN)?_=Mo3GX_kn3lo8?>@9+!niJL9tDqnCv9T zT)U|0>0$<~x6zTGkwso}`uq~>)Sf2YD=H-)hBXms@i>(HEvk6T6N0@fHM8uYT~iYI z5gY{{wyqg6pkz#I$F2E;Ykpn6XEey?ZD8lrPwEEh6OsI*_RDic609_fGTQ|)p7(-hdN0;hl5pYw+VBK-lE9w_N||I z496^7z@vGi*kY7bvao5U7%L!s@+Np$5(>naE;B>#B~iUbO*;W_>R2^fXX+AZaNx3! zWR%s~%E`}-rhzZHNpCY>7d1ycBEBD%l4~OxzwzJ1jWe zA{{*T3)8RDv_un2jXa*LT9cKyL{$A~9Q>JTcQKH3c=_EptJ2;nVgc-|+yaBfYJ+?! z)o`BTHXSr_j?nZgz>d>roL_gkixSa1D-U}txo%>ySaBvGs|pmRfUYv=N;Gzvj!z+^ zct%Dqd;sSb5YNwo)({yEN5WrSN_**AHi0PZM6a$6i+#y_ zZG;A`C3?y+Mxmg7uMX(r&$ns4^49^tJsJixGGCLE$UdN$b`?k7Lhq-75#hA@WYiG@ z{|A^#8$C)l`ozpn_YrLy%Mj`s5RQbtXg$^d9Qyms2LN%d@sat`tA97Pg}T`d2nSIB?$EbF~jl0ZXZy> z|JLP_15{carJ4(h&ik3lMPAhYY>-zCjF4Z#3PyEY+1jq`my6K+<<})X>y$rVezM+K9f&Z2p#1sSaj7*aU!Y#Sy=vIf=U5u(7KYdQ6~@X!`~) z$%$6as?nu1q`Tk1E=7~H7Uf?5uAnR6+hM24-X%lj>HcP9ORuSmRjxYK^{BJDS_Uc$ zyCM@LuZFUlbZnd8Hntr~kzeBgtQwQbUYSjzF_1rJ&$dEuAXScw1-Sjn0C3(W z?_zmmAt7c02G4w&@I2V*`9eZWogtKz7%8#V;#1|~6@C*OZhWjZk)v@wih~H)s(oJO zV;ai1Y9;*p=@npT z*Yg6(deI~dNbRGqU&%J(&VVJF^Tsh7_gTBeOWJq^;GAx0v8aH;Gj;~ObzcFy+6Q_F zzi_uCc{WS1ECE8em`map9H*50nw!45s~vGB>F}%bwG}Zg%O^2STp#j9iEj!q(~5&y z4TMF2SWq(|W2>@j-CIro?P$b~mXTKgx!e@8pl0IOfx}wfsQ9m@*4!WlW^tvj5j3Kr zfde0z%JGu}t{xIEQ&T?^AK=z9oOUzhfd@QcW!(khICm4fTL-BgKd7HD?BNTC61d-v zca!&4ZBTshw%G<8vSqK7Pgg!#xn3xQkKG!LI#TDXa*-&6mxC6S>8d^*&moq^J__|Y zmBw!)MoJ%VdD5!pk(`N_FEtUC_Ta8^DTNnsE2hFjcXUr7rZu}6&JR+J3~e)Vf^>pc zOYMV50wMXw-7%XBB3Q5Rk2?erA{GyIx)|93wOF@Hg+93DgN?NiHE(|p=xJ*?Q@Hvm z$=y+#qzs4dCVp^LArot0%AaPXSQB?Piv#*SX&o0R0EglJg~GBx%WEZ_NOp@bXKy=79E?@1aP+U~ihoB$&{MX!l19E^+LpvAyJT$x|K9XshOichAEIyq{R( zx>{m*sWPbNXJzi+z&B4Oo`ba5j985sUx!}-VTCz!hTQ6xcM}1mq~OpzCN^LOH&KUd zC%O(auvCGlyEB5dwNc6VaaQq-o7E`un(5KisPk|a+mo@Yvo;LkBb+A z*wF6MbGaMVHtftLVPyU*fY=e(-<+TSasLjm{jLcVI%i2#EU|Ti+;{&DeWnTJ=c440 zc7r&U-aCHAgOBWxooq#Bl-MlZg*WAgNYmDn_%nLVRD5pC{idhaNOo`~&W4=nmp2cV zMpT`xm&K-C?OBc%r^T?3C`7!PD1(j5jGEx0L0&tn#a@;@nqy5(-OvN`RF9a_&&&M$ zy~M=7Mc(5vD5&b`kX8j=XbdHhe-=Ws?|__e^9YwwJ*fjqd*EIch-Hc5?pNcgk-1lA zH=QR^mM#!LJ<#uS-C7%`SEtYwAwkM)$}fN%0#&InS@erJAFZiRi)eq_i%iOWTdG`O zd&#xZ6>75~Kg?-+VBQ`3P_0^8%RsT^CV4V6>DI0!bvhmcw-ntF=e2^KK&}b?O(#pn z&<9JYGAN*@dGZSfJ0&x7pK41IAsC~|O~>MfdkFe|adRG+%~>81NikV1w<=U9(z+B{ z;E5b}Xh?5;66@oZNvWT&vn8bPz%k4=)d?*XD3r@BoJ9S^)$fge3fB%#X#znY`(6HI z24qt)^+}JYtBmvQ%|fYHz(OhT{A5ag{`AMwl|+o+Uh#9Ai0Wn=Ra6kK@NLLU0g+@* zPHb-(QB4=WV0uzaN~JECobUaM-FM&Fym7uPDx?eEi!2k?&1HeC!pgm6HrnsO68rpo zrxh(+27YmZGB@i1n^A_}JO<)TK#7oS`sQ3DW}pK-f6WU_+NK zySB}p7L~8!a$I_h{-#N~T&RsT8XPebVD0Dk#z_p+!mA*njd*_uj^{%Thl8s)XXk*OH!h}6k)Is7Cip|AmZvD%4$u2q;Q zHNY@H!jj!%^Ln4yb-p(MTDMDl(Z*5yQT?+l>?AYE zB(wIt_Fn70tT<#h```ok_$D~0Q#5ckg8}1x`HU0?)Qw<>qyXVdB{$|Q^=JD9w!=$7 zV&SF%DO;oo@K*=^KeR!+>25lx>=v(GFh@iw`+dkz$rH1ZUE$ivu-yaXBQScQpA>2) zxv{^v%OL!#P`yz5oB%5B1-S4H9Iz9g6H0wsD~54`WTHl@H5x>my&Hl`DXYW{sJ@LI z5YPAKRbZRhWvzj?Qkwr@O&DjnTC-y0slmHF!R9vIc=$wEIjc&m&Dx}BSUQlIbAoiw z^AbC0J+J+T*6atCP1Q|GJV$Jy(lzkXadcMQ&p!8n^(qJ z5k84nU1dx~i_-kfG8NG;`-})0Xe^QLAWWqh6(4`=2BaCiZ`V-<#_V@vGn}uFC-3*KJJpXd1n+vD!6*An8uEV%IL~JqL7W2?tDHJga#j zutu%(>>t`eu(z~cgRN+H%(g&;6SY14j+{N+I`on^@;Jd7C-msaA7?rjr^(Emf7vmJ z`KuT?Tif|I1nB&nrq6q&&JFiT^z=+t2yT=)H!Xn!NQ_yMY%7i)pXWreXe>l!(oWa8 zbH^jrP843PNlWl492}^<6|;Y;j+Ob*8rY~?U=>JV``I0513ReYTN^u>4s)pN2f^=r z+ah0qW0F@CXMrO+MX%Kh*8ru0PfhJ%8(9C)c7zO@s8g!MYudhdO;dqYj7PZsswb05rP?mtyw1{ zTpWAkb-bE=7OQ;S%O**d)m3`xX-076ARo+BkRdL=bYvtSX9IpuzXvMeR7fCSk5RRz zm)gFUjskBBmnm~uE|7MoyN&nn3u1hgQG_3)ePaM#=y`K(t=D4^)?fiEry%nWDwk}q%Tkk*sx%@6j z^U2m4yY`?e**xwI(T>>chY`Eb36afD3CC3woA039V5FGX#k&(1T@_>rcrhK_L&WA8MZQ3Suu^!?Q3I)?3T$`pzx(#6W7Qp^p0jxL2qW{RnZhKo3=w}_$ zzU!otVqIcpK_DqQ-yIIt?0gkHcW50+$L+&Rp38dE}3 z5rSZ)N&;YWSIyFm&*a#|mK~C87H`LX`GHM&q`IOWjD>yXd_7%!))qpx(()ojyz*rL zp~Y~J!mVy2m|=`;Ui0>Dy(!6k#^CD`CazeetOF@Mea{TrnH68vv;@;ucem6TW7DVI zz5dOpkv2@sbt^qAp1vPQSnwrVI{f5ZIlQry)z~So*+SR$$z}KW_`pHlVPj|d)~-H9 zPRVAI-v2V5f`YrCj_V=l_&s7m?1~}SS?=;Dgwk@^&Ni)huTpwq@l)tUYEb*;K>dsa zH6!jr>UfQ#M9s zxzGy9IaevrDTM5>sFQrf;CAhsXY)j+d2EidD5)~0$ws2^c&LHQFG`+R_Z}%O2`8|} zH5_NgmPw3m3PfKil>44DsmlPn(d>^Z!g!ZC#&id!-9jF6t5xpG@S7qhzR+jq`wF zFYlDSWw4;hY*N}R$U3P%S#;rtR3C)G=yQSW;lH1=8U91N_0m%eqIJGvPiSNr(&Ey zm`GDOHa&$L*IQ~sgV$D*$hklDoyl7{9T4h$cz|K5trUVQMI zcLU@nP^4FkIFPCD_vqhgD_6%1B?>Do%M@K%S%lt*D*`t9H-|NSxC&xQ(bx7Gx!Fq{N2`VoM9S0jOK1;!3Ln?Vr_1!X}+y}FA1G|~gKt%4vGZPDK+b<53uy5Eu`%FM+tS~7*?POgn2Kk_vD zO!bT~uen>npOmb`;qB$T+j2x6ceUtEc?k`$p9*_5K5=mf)>7Mg$dxT?2b>-~!^~Tc z)m5)gY}!2vyEnG;uew81^b8!%chuWp_An96VI+}Dwz}q>V$4uZa#{dm){)o z?n6I!GVAYjGdH;qegydFv{YlwZgWX)>~3Pvtdl79wR2<}oRdsQ zrAHYo4)qU|Xk=l*aWtMc}sY5HE<)KR9R`!3P!oy|k^ zyQtG0$X4XzscspI-FRHOt&l_6m3=qE$7Wp2mR}i_dlI(W7T8V0Mytl%vP9k{jFswPWya(IxAHh&yCgF@iPtR-w)T-^WsS`$eF2I<>H9fADIYzC~$TmEESq(9P}_G z)=z73+Kiu2l^KXrH!I@;g$kZ&ixRSmaAM^w0rFZ8ua3XPy*9Orn~}pdUzzU|BIO|x zQQ#f);?{x+hA+0ZHB24+E>+%p5TDjlh=g|A>Ux&8+fC;LTpieCyX!bvVhl7l<0}Ra z&ff{~PS2htdFR{-a#)U*Z|!# zHSe@Cg??(f)S=aAF`u{iY2}exM-fvnYo_~PJzT>RsAIl08=}5^%4x$Vj$a6!h6Txo z@Xz~MjT1PZOJ0`aJ}k)id0Z8kAMD?!l^`@K=Kx?!fp|a# z-b(+~z${7I$GDdM`r>`<<#CmMMw7365`?~A?J3#@m%O%rro%Js9(|WeRf{!x| z_XySWesPuQY>EVbjmPG}33frlz&W-XzjC1|zm^2Y2(6FXb@6TV0+n^5(ehwyml|T&1R}xdES41;#Ie?BhU?M zSfX}YI*84RH>Hkqaqz_Oz~5e01LP~I9#tUyRQWDt z@M*JbRH7Ng#2d1M{d(R%LvT3-z+e{+`mbq^y4t-81=%!qN;O~2X~_FFy{m1}*riY!ldiQ%wlmaf)2$F_`D44^ z@i`;4yZe{(sLAVALhgTP-AyJNW5jweL1O?86@Kr9aw&$&S}lpOlht;#un|3GOQ*+2 zoT6(%6oUaOs|Hu^mp6`PZrkrhI(!Yalao z(Kor-yfTT)EM7Gro4@nNsEn zFL7MLrmp3fedcu93Qstqj+pIl?ezg~iHo|=Z4^?Y^FaI$HsuGR!7!;>9fP37Fj*c% z?g#5`QCh?D-fpG31VGY-hP#&vsHAptXA6Xbu#xag1e#fxf4n`x`DKyY@vF4*-VLAm zk*9BRfUD0R2QET2^~N2#92Q@DzrUBb%RX2}oLyE5O?^1a2Z)kSImO8SJ}AM3pVXdx zSpRX_Mk>MHP|s>idri~X+FltgB#6}Z2`ds?N)iszMiyCKhkpNY{I+ZNfY$OD!H$uY zl<93!ZTsZID;ho5N&P_nu{^E23nz)maBbUuch7!Z-<$I$OGO;3cJCQ!^v1Aeve&`M z@OEt6`uzmk=II3G2R?qY^Rrj_ZeM={b;w;n`MIs~YNr@pJ8h47m@qa)@)`mKW`@w6 z5@j{WdC^<=)y>!a9qm%rn++5>yy&)$CYdQiZ1O|q)ZolFdF%Arvv%~!eYKlTrt0c( zWf(IgEg|&Krksj5mR;^&IJFx!fo4m9Pnb5; z1&)n7%w6jU1_d|rR)MWH5+V~T^{)eOYqk5E?SsGWb;n(md&bKjjuboyv(U>G83^Tt z-Y7%{WvM^;ZEnocTGKO%W+#Q zU6&e7+Lo5v2kCk7p``;<-F^xdYz>TiX2jLizCZG@+I8-g8TURM^baj=J@E#grQIyD zxD^k@3@a)=ylm{{1SRFl&4#93ng zl!($3jbCQ{pT?im!|Wz{oBJB`~J$g9s-v7X3YGi+8k zL9Fu+?PaeJ;DQ>EDiiwtz$GKXma)sjVFf!Kd9c!Wg!iUV%q(b+Hh6`*-Rt|&aO!q? z8z=DF*!J{iwIYw3_gx6@LYbk?Ru0&tzE16fYjA$3r4bb&z~?kXa$Rj9JGU)2BZ z4XFuEXvjUkQ-E|}bE{a}$M{ct5$$Upvy$)Hb; zs&`h0QVo6jA0f|!G`?pdW{Al`8f7=L+D(%s7W%v8l_H`FthqWo5XYhhS?slPW2{f% ztCUEvIL|)MBn2+Rr`_yWVmjB8T|5i#Q#>!rtQ@D0Q5$@Lw+GN69qW#^wbrlDHC6oj z4q{s$50rn3Gsj+_LNgn5?In+T<=t)fkkbIDU|IP>abRXPjjdN~Pmyq%IK(SU-O|8q z&E^f_YMJ6R`Fs0DwNcZuh<$QeoiqlWmy5zlw3V&u`J&s9G3$C;W>w;87%@im2Z3&Y zHIv=^B4*{f&VtT5Nu3v_1j&FT{(vDZ;=8S?z?pakhfL%(IxW7nSIb=kmJHa6>=W%^F)18g9fpDjJ^md^2~Gc2t$bg$bjnL>QPpeQJ_Mm*2Tl)OrVnCpB~&y%135c{6~pi?lT#E}04 z(Sd<8891Qw^aX|u6EBnvK0Nn{((DC}-(Ph$uT+eF(jpCNomS%VRJ3hw>VI_!f5QE( zdJxb$1Ai$#t4ahXhnUW*3Vm)oO@XRTp2hMSWJz=1tgNt;6a$->=jbsRVCr!BrggD= z6yBsOCXWpkK1~$A4S{?|z9}D6^0-gl%h!j;2!Ta+;9?d2&D=rz+IdYId{k7go7D&^ zN0`7K%wqbtCuN^J*55Jz9CWKv4(y-F7$7J%tiV#L5Z|W%sgzq<(Gy| zV7`wE-E`yeu5uX5zA$9z%p(oQ1FH;n~ zGbc-z1*MKaP_s9KOtn3tIYR0)9|M&J∾fb09sU&^_o{KXsdg-+KvUHe!Q1FJ(zL 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 F|JghAV$uKr literal 0 HcmV?d00001 diff --git a/composer.json b/composer.json index 6d525e8..e6f1511 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "Perform batch jobs inside of WordPress.", "type": "wordpress-plugin", "license": "GPL v3", - "version": "1.1.0", + "version": "1.2.0", "authors": [ { "name": "Philip Downer", @@ -32,4 +32,4 @@ "php": ">=7.2", "composer/installers": "^1.0.7" } -} \ No newline at end of file +} diff --git a/js/dist/ramsey-batch.min.js b/js/dist/ramsey-batch.min.js new file mode 100644 index 0000000..f1fca06 --- /dev/null +++ b/js/dist/ramsey-batch.min.js @@ -0,0 +1 @@ +!function(t){var e={};function n(o){if(e[o])return e[o].exports;var r=e[o]={i:o,l:!1,exports:{}};return t[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=t,n.c=e,n.d=function(t,e,o){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:o})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)n.d(o,r,function(e){return t[e]}.bind(null,r));return o},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=0)}([function(t,e){jQuery(document).ready(function(t){var e={items:[]};e.batchName,e.totalItems=e.items.length,e.currentItem=0,e.itemsComplete=0;var n,o,r,a,c=t('button[name="batchJobTrigger"]');function s(){a.html("Done. Processed ".concat(e.totalItems," of ").concat(e.totalItems," items!")),console.log("Batch is complete! Processed ".concat(e.totalItems," of ").concat(e.totalItems," items!")),e.items=[],e.totalItems=e.items.length,e.currentItem=0,e.itemsComplete=0,n.prop("disabled",!1)}function i(n){return new Promise(function(o,c){var s,i;e.currentItem+=1,s=e.currentItem,i=s/e.totalItems*100,a.text("Processing ".concat(s," of ").concat(e.totalItems," items...")),r.css({width:"".concat(i,"%")}),console.log("Current item:",n),t.ajax({url:ajaxurl,method:"POST",data:{action:"ramsey-batch-item",item:n,batchName:e.batchName},success:function(t){return console.log(t),t.success?(e.itemsComplete++,"warn"==t.data.type?console.warn(t.data.reason,t):console.log(t.data.reason,t),o()):(console.error(t.data.reason,t),c())}})})}function u(){e.items.reduce(function(t,e,n){return t.then(function(){return i(e)})},Promise.resolve()).then(s)}function l(c){return new Promise(function(s,i){n=t(c),e.batchName=n.data("batchName");var u=e.batchName.replace(new RegExp("\\\\","g"),"");o=t('tr.progressMeter[data-batch-name="'.concat(u,'"]')),r=o.find(".meter"),a=o.find(".status"),o.show(),n.prop("disabled",!0),function(t){var e=Promise.resolve();return t.forEach(function(t){e=e.then(function(e){return e=void 0===e?[]:e,new Promise(function(n,o){if("file"!==t.type)return e.push({name:t.name,value:t.value}),n(e);var r=new FileReader;if(r.onload=function(o){return e.push({name:t.name,value:o.target.result}),n(e)},!t.files.length)return n(e);r.readAsBinaryString(t.files[0])})})}),e}(n.closest("tr").find("input,textarea").get()).then(function(o){t.ajax({url:ajaxurl,method:"POST",data:{action:"ramsey-batch",batchName:e.batchName,formElementData:o}}).done(function(t){return t.success?(console.log("Starting batch!",u,t.data.items),o=t.data.items,e.items=Object.values(o),e.totalItems=e.items.length,e.totalItems?(a.text("Found ".concat(e.totalItems," items...")),s()):(a.text("No items found."),n.prop("disabled",!1),r.css({width:"100%"}),s("No items found."))):i(t.data.reason);var o})})})}t(c).on("click",function(t){l(t.target).then(u,function(t){throw new Error(t)})})})}]); \ No newline at end of file diff --git a/js/src/ramsey-batch.js b/js/src/ramsey-batch.js index 42e8941..772928e 100644 --- a/js/src/ramsey-batch.js +++ b/js/src/ramsey-batch.js @@ -1,156 +1,227 @@ -jQuery( document ).ready( ( $ ) => { - const ramseyBatch = {}; - ramseyBatch.items = []; - ramseyBatch.batchName; - ramseyBatch.totalItems = ramseyBatch.items.length; - ramseyBatch.currentItem = 0; - ramseyBatch.itemsComplete = 0; - const buttons = $( 'button[name="batchJobTrigger"]' ); - let currentButton; - let progressMeter; - let progressBar; - let statusMsg; - - /** - * Update fetched items - * @param {Array} items - Item ID's - */ - function updateItems( items ) { - ramseyBatch.items = Object.values( items ); - ramseyBatch.totalItems = ramseyBatch.items.length; - } - - /** - * Update the progress bar status - * @param {int} current - The number of the current item. - */ - function updateStatus( current ) { - const percentComplete = current / ramseyBatch.totalItems * 100; - statusMsg.text( `Processing ${current} of ${ramseyBatch.totalItems} items...` ); - progressBar.css( { - width: `${percentComplete}%` - } ); - } - - /** - * Complete the batch - */ - function completeBatch() { - statusMsg.html( `Done. Processed ${ramseyBatch.totalItems} of ${ramseyBatch.totalItems} items!` ); - console.log( `Batch is complete! Processed ${ramseyBatch.totalItems} of ${ramseyBatch.totalItems} items!` ); - ramseyBatch.items = []; - ramseyBatch.totalItems = ramseyBatch.items.length; - ramseyBatch.currentItem = 0; - ramseyBatch.itemsComplete = 0; - currentButton.prop( 'disabled', false ); - } - - /** - * Process an individual item - * @param {mixed} item - Usually an item ID - * @return {bool} - False if the AJAX call failed - */ - function processItem( item ) { - return new Promise( ( resolve, reject ) => { - ramseyBatch.currentItem += 1; - updateStatus( ramseyBatch.currentItem ); - - console.log( 'Current item:', item ); - - $.ajax( { - url: ajaxurl, - method: 'POST', - data: { - action: 'ramsey-batch-item', - item, - batchName: ramseyBatch.batchName - }, - success( response ) { - if ( ! response.success ) { - console.error( response.data.reason, response ); - - return reject(); - } - - ramseyBatch.itemsComplete++; - - if ( 'warn' == response.data.type ) { - console.warn( response.data.reason, response ); - } else { - console.log( response.data.reason, response ); - } - - return resolve(); - } - } ); - } ); - } - - /** - * Process queued items - */ - function processBatchItems() { - ramseyBatch.items.reduce( ( promise, currentPromise, index ) => promise.then( () => processItem( currentPromise ) ), Promise.resolve() ).then( completeBatch ); - } - - /** - * Get all the items we'll be working on - * @param {Object} trigger - Triggering event - * @return {Object} Promise object - */ - function startBatch( trigger ) { - return new Promise( ( resolve, reject ) => { - currentButton = $( trigger ); - ramseyBatch.batchName = currentButton.data( 'batchName' ); - const batchNameClean = ramseyBatch.batchName.replace( new RegExp( '\\\\', 'g' ), '' ); - - progressMeter = $( `tr.progressMeter[data-batch-name="${batchNameClean}"]` ); - progressBar = progressMeter.find( '.meter' ); - statusMsg = progressMeter.find( '.status' ); - - progressMeter.show(); - currentButton.prop( 'disabled', true ); - - $.ajax( { - url: ajaxurl, - method: 'POST', - data: { - action: 'ramsey-batch', - batchName: ramseyBatch.batchName - }, - success( response ) { - if ( ! response.success ) { - return reject( new Error( response.data.reason ) ); - } - - console.log( 'Starting batch!', batchNameClean, response.data.items ); - - updateItems( response.data.items ); - - // No items found - if ( ! ramseyBatch.totalItems ) { - statusMsg.text( 'No items found.' ); - currentButton.prop( 'disabled', false ); - progressBar.css( { - width: `100%` - } ); - - return resolve( 'No items found.' ); - } - - // Process each item - statusMsg.text( `Found ${ramseyBatch.totalItems} items...` ); - - resolve(); - } - } ); - } ); - } - - // Handle the initial trigger - $( buttons ).on( 'click', ( e ) => { - startBatch( e.target ).then( processBatchItems, ( response ) => { - throw new Error( 'Batch failed.' ); - } ); - } ); -} ); +jQuery(document).ready($ => { + const ramseyBatch = {}; + ramseyBatch.items = []; + ramseyBatch.batchName; + ramseyBatch.totalItems = ramseyBatch.items.length; + ramseyBatch.currentItem = 0; + ramseyBatch.itemsComplete = 0; + const buttons = $('button[name="batchJobTrigger"]'); + let currentButton; + let progressMeter; + let progressBar; + let statusMsg; + + /** + * Update fetched items + * @param {Array} items - Item ID's + */ + function updateItems(items) { + ramseyBatch.items = Object.values(items); + ramseyBatch.totalItems = ramseyBatch.items.length; + } + + /** + * Update the progress bar status + * @param {int} current - The number of the current item. + */ + function updateStatus(current) { + const percentComplete = (current / ramseyBatch.totalItems) * 100; + statusMsg.text( + `Processing ${current} of ${ramseyBatch.totalItems} items...` + ); + progressBar.css({ + width: `${percentComplete}%` + }); + } + + /** + * Complete the batch + */ + function completeBatch() { + statusMsg.html( + `Done. Processed ${ramseyBatch.totalItems} of ${ + ramseyBatch.totalItems + } items!` + ); + console.log( + `Batch is complete! Processed ${ramseyBatch.totalItems} of ${ + ramseyBatch.totalItems + } items!` + ); + ramseyBatch.items = []; + ramseyBatch.totalItems = ramseyBatch.items.length; + ramseyBatch.currentItem = 0; + ramseyBatch.itemsComplete = 0; + currentButton.prop("disabled", false); + } + + /** + * Process an individual item + * @param {mixed} item - Usually an item ID + * @return {bool} - False if the AJAX call failed + */ + function processItem(item) { + return new Promise((resolve, reject) => { + ramseyBatch.currentItem += 1; + updateStatus(ramseyBatch.currentItem); + + console.log("Current item:", item); + + $.ajax({ + url: ajaxurl, + method: "POST", + data: { + action: "ramsey-batch-item", + item, + batchName: ramseyBatch.batchName + }, + success(response) { + console.log(response); + + if (!response.success) { + console.error(response.data.reason, response); + + return reject(); + } + + ramseyBatch.itemsComplete++; + + if ("warn" == response.data.type) { + console.warn(response.data.reason, response); + } else { + console.log(response.data.reason, response); + } + + return resolve(); + } + }); + }); + } + + /** + * Process queued items + */ + function processBatchItems() { + ramseyBatch.items + .reduce( + (promise, currentPromise, index) => + promise.then(() => processItem(currentPromise)), + Promise.resolve() + ) + .then(completeBatch); + } + + /** + * Collects form data into an array. + * + * @param NodeList formElements + * @return Promise that resolves to array of data. + */ + function getFormElementData(formElements) { + let promiseChain = Promise.resolve(); + + formElements.forEach(element => { + promiseChain = promiseChain.then(data => { + data = data === undefined ? [] : data; + + return new Promise((resolve, reject) => { + if (element.type === "file") { + let reader = new FileReader(); + + reader.onload = function(e) { + data.push({ + name: element.name, + value: e.target.result + }); + + return resolve(data); + }; + + if (!element.files.length) { + return resolve(data); + } + + reader.readAsBinaryString(element.files[0]); + } else { + data.push({ + name: element.name, + value: element.value + }); + + return resolve(data); + } + }); + }); + }); + + return promiseChain; + } + + /** + * Get all the items we'll be working on + * @param {Object} trigger - Triggering event + * @return {Object} Promise object + */ + function startBatch(trigger) { + return new Promise((resolve, reject) => { + currentButton = $(trigger); + ramseyBatch.batchName = currentButton.data("batchName"); + const batchNameClean = ramseyBatch.batchName.replace( + new RegExp("\\\\", "g"), + "" + ); + + progressMeter = $( + `tr.progressMeter[data-batch-name="${batchNameClean}"]` + ); + progressBar = progressMeter.find(".meter"); + statusMsg = progressMeter.find(".status"); + + progressMeter.show(); + currentButton.prop("disabled", true); + + const formElements = currentButton.closest("tr").find("input,textarea"); + + getFormElementData(formElements.get()).then(formElementData => { + $.ajax({ + url: ajaxurl, + method: "POST", + data: { + action: "ramsey-batch", + batchName: ramseyBatch.batchName, + formElementData: formElementData + } + }).done(response => { + if (!response.success) { + return reject(response.data.reason); + } + + console.log("Starting batch!", batchNameClean, response.data.items); + + updateItems(response.data.items); + + if (!ramseyBatch.totalItems) { + statusMsg.text("No items found."); + currentButton.prop("disabled", false); + progressBar.css({ + width: `100%` + }); + + return resolve("No items found."); + } + + statusMsg.text(`Found ${ramseyBatch.totalItems} items...`); + + return resolve(); + }); + }); + }); + } + + // Handle the initial trigger + $(buttons).on("click", e => { + startBatch(e.target).then(processBatchItems, response => { + throw new Error(response); + }); + }); +}); diff --git a/package.json b/package.json new file mode 100644 index 0000000..eb90265 --- /dev/null +++ b/package.json @@ -0,0 +1,23 @@ +{ + "name": "wp-ramsey-batch", + "version": "1.2.0", + "description": "Provides a framework to handle large data processing jobs by breaking it into smaller chunks and running each job individually via AJAX requests. ", + "main": "wp-ramsey-batch.php", + "repository": "https://github.com/RamseyInHouse/wp-ramsey-batch", + "author": "Philip Downer , Alex MacArthur ", + "license": "GPL 3.0", + "scripts": { + "prettify-and-add": "prettier \"./**/*.js\" --write && git add -A", + "build": "NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=webpack.config.js && prettier js/src/*.js --write", + "watch": "NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=webpack.config.js" + }, + "devDependencies": { + "@babel/cli": "^7.2.3", + "@babel/core": "^7.2.2", + "@babel/preset-env": "^7.3.1", + "babel-loader": "^8.0.5", + "prettier": "^1.16.4", + "webpack": "^4.29.1", + "webpack-cli": "^3.2.3" + } +} diff --git a/src/Controllers/BatchController.php b/src/Controllers/BatchController.php index 62d4288..5ca385e 100644 --- a/src/Controllers/BatchController.php +++ b/src/Controllers/BatchController.php @@ -2,7 +2,7 @@ namespace RamseySolutions\RamseyBatch\Controllers; class BatchController { - + /** * Registered batch jobs * @var array @@ -24,7 +24,7 @@ public static function runJob() { $currentBatchName = stripslashes($_REQUEST['batchName']); $batchObj = $GLOBALS[RB_PLUGIN_SLUG][$currentBatchName]; - + if( !$batchObj ) { wp_send_json_error(['reason' => "Attempted to run job but global object not found - {$currentBatchName}."]); } @@ -49,7 +49,7 @@ public static function runJobItem() { * @return void */ public static function enqueueScripts() { - wp_register_script(RB_PLUGIN_SLUG, RB_PLUGIN_URL . '/js/src/ramsey-batch.js', ['jquery'], get_plugin_data(RB_PLUGIN_ROOT . '/wp-ramsey-batch.php', false)['Version']); + wp_register_script(RB_PLUGIN_SLUG, RB_PLUGIN_URL . '/js/dist/ramsey-batch.min.js', ['jquery'], get_plugin_data(RB_PLUGIN_ROOT . '/wp-ramsey-batch.php', false)['Version']); $currentScreen = get_current_screen(); if( $currentScreen->id == 'tools_page_' . RB_PLUGIN_SLUG) { @@ -70,4 +70,4 @@ public function getJobs() { return $this->jobs; } -} \ No newline at end of file +} diff --git a/src/Views/BatchView.php b/src/Views/BatchView.php index 53283db..388fcb8 100644 --- a/src/Views/BatchView.php +++ b/src/Views/BatchView.php @@ -2,32 +2,55 @@ namespace RamseySolutions\RamseyBatch\Views; class BatchView extends AdminPage { - + public function __construct(object $controller, string $slug, string $title) { - parent::__construct($controller, $slug, $title); + parent::__construct($controller, $slug, $title); + + $this->tableColumns = apply_filters(RB_PLUGIN_SLUG . '-table-columns', + [ + [ + 'id' => 'name', + 'name' => 'Batch Name', + 'contentKey' => 'name' + ], + [ + 'id' => 'description', + 'name' => 'Job Description', + 'contentKey' => 'description' + ], + [ + 'id' => 'lastRun', + 'name' => 'Date Last Run', + 'contentKey' => 'lastRunDate', + ] + ] + ); } public function display() { - echo $this->open(); + echo $this->open(); + ?>
-

The batch jobs here are powerful and must be run with caution. It's likely that they will irreversibly change your data. Carefully read and understand each job's description before proceeding.

+

The batch jobs here are powerful and must be run with caution. It's likely that they will irreversibly change your data. Carefully read and understand each job's description before proceeding.

- - - - + tableColumns as $column): ?> + + + - listBatchJobs(); ?> + listBatchJobs(); ?>
Batch NameJob DescriptionDate Last RunRun Job + + + Run Job +
- debug(); - echo $this->close(); + close(); } /** @@ -36,28 +59,38 @@ public function display() { */ protected function listBatchJobs() { $jobs = $this->controller->getJobs(); + ob_start(); - + if( empty($jobs) ) { echo 'There are no registered batch jobs.'; return ob_get_clean(); } - foreach( $jobs as $key => $job ) { - echo ""; - echo '' . $job['name'] . ''; - echo '' . $job['description'] . ''; - echo '' . $job['lastRunDate'] . ''; - echo ''; - echo ""; - echo ''; - echo ''; - echo '

Starting job…

'; - echo '
'; - echo ''; - echo ""; - } + foreach( $jobs as $key => $job ): ?> + + + tableColumns as $column): ?> + + + + + + + + + + + +

Starting job…

+
+ + + + -Author URI: https://philipdowner.com +Version: 1.2.0 +Author: Philip Downer, Alex MacArthur License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html */ @@ -43,4 +42,4 @@ function ramseyBatchDisplayAdminPage() { add_action('admin_enqueue_scripts', function() { BatchController::enqueueScripts(); -}); \ No newline at end of file +}); diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..42bd052 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,3302 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/cli@^7.2.3": + version "7.2.3" + resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.2.3.tgz#1b262e42a3e959d28ab3d205ba2718e1923cfee6" + dependencies: + commander "^2.8.1" + convert-source-map "^1.1.0" + fs-readdir-recursive "^1.1.0" + glob "^7.0.0" + lodash "^4.17.10" + mkdirp "^0.5.1" + output-file-sync "^2.0.0" + slash "^2.0.0" + source-map "^0.5.0" + optionalDependencies: + chokidar "^2.0.3" + +"@babel/code-frame@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" + dependencies: + "@babel/highlight" "^7.0.0" + +"@babel/core@^7.2.2": + version "7.2.2" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.2.2.tgz#07adba6dde27bb5ad8d8672f15fde3e08184a687" + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/generator" "^7.2.2" + "@babel/helpers" "^7.2.0" + "@babel/parser" "^7.2.2" + "@babel/template" "^7.2.2" + "@babel/traverse" "^7.2.2" + "@babel/types" "^7.2.2" + convert-source-map "^1.1.0" + debug "^4.1.0" + json5 "^2.1.0" + lodash "^4.17.10" + resolve "^1.3.2" + semver "^5.4.1" + source-map "^0.5.0" + +"@babel/generator@^7.2.2": + version "7.3.2" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.2.tgz#fff31a7b2f2f3dad23ef8e01be45b0d5c2fc0132" + dependencies: + "@babel/types" "^7.3.2" + jsesc "^2.5.1" + lodash "^4.17.10" + source-map "^0.5.0" + trim-right "^1.0.1" + +"@babel/helper-annotate-as-pure@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" + dependencies: + "@babel/types" "^7.0.0" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" + dependencies: + "@babel/helper-explode-assignable-expression" "^7.1.0" + "@babel/types" "^7.0.0" + +"@babel/helper-call-delegate@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.1.0.tgz#6a957f105f37755e8645343d3038a22e1449cc4a" + dependencies: + "@babel/helper-hoist-variables" "^7.0.0" + "@babel/traverse" "^7.1.0" + "@babel/types" "^7.0.0" + +"@babel/helper-define-map@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.1.0.tgz#3b74caec329b3c80c116290887c0dd9ae468c20c" + dependencies: + "@babel/helper-function-name" "^7.1.0" + "@babel/types" "^7.0.0" + lodash "^4.17.10" + +"@babel/helper-explode-assignable-expression@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" + dependencies: + "@babel/traverse" "^7.1.0" + "@babel/types" "^7.0.0" + +"@babel/helper-function-name@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" + dependencies: + "@babel/helper-get-function-arity" "^7.0.0" + "@babel/template" "^7.1.0" + "@babel/types" "^7.0.0" + +"@babel/helper-get-function-arity@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" + dependencies: + "@babel/types" "^7.0.0" + +"@babel/helper-hoist-variables@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0.tgz#46adc4c5e758645ae7a45deb92bab0918c23bb88" + dependencies: + "@babel/types" "^7.0.0" + +"@babel/helper-member-expression-to-functions@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f" + dependencies: + "@babel/types" "^7.0.0" + +"@babel/helper-module-imports@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" + dependencies: + "@babel/types" "^7.0.0" + +"@babel/helper-module-transforms@^7.1.0": + version "7.2.2" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.2.2.tgz#ab2f8e8d231409f8370c883d20c335190284b963" + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "@babel/helper-simple-access" "^7.1.0" + "@babel/helper-split-export-declaration" "^7.0.0" + "@babel/template" "^7.2.2" + "@babel/types" "^7.2.2" + lodash "^4.17.10" + +"@babel/helper-optimise-call-expression@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" + dependencies: + "@babel/types" "^7.0.0" + +"@babel/helper-plugin-utils@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" + +"@babel/helper-regex@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.0.0.tgz#2c1718923b57f9bbe64705ffe5640ac64d9bdb27" + dependencies: + lodash "^4.17.10" + +"@babel/helper-remap-async-to-generator@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" + dependencies: + "@babel/helper-annotate-as-pure" "^7.0.0" + "@babel/helper-wrap-function" "^7.1.0" + "@babel/template" "^7.1.0" + "@babel/traverse" "^7.1.0" + "@babel/types" "^7.0.0" + +"@babel/helper-replace-supers@^7.1.0": + version "7.2.3" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.2.3.tgz#19970020cf22677d62b3a689561dbd9644d8c5e5" + dependencies: + "@babel/helper-member-expression-to-functions" "^7.0.0" + "@babel/helper-optimise-call-expression" "^7.0.0" + "@babel/traverse" "^7.2.3" + "@babel/types" "^7.0.0" + +"@babel/helper-simple-access@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" + dependencies: + "@babel/template" "^7.1.0" + "@babel/types" "^7.0.0" + +"@babel/helper-split-export-declaration@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz#3aae285c0311c2ab095d997b8c9a94cad547d813" + dependencies: + "@babel/types" "^7.0.0" + +"@babel/helper-wrap-function@^7.1.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" + dependencies: + "@babel/helper-function-name" "^7.1.0" + "@babel/template" "^7.1.0" + "@babel/traverse" "^7.1.0" + "@babel/types" "^7.2.0" + +"@babel/helpers@^7.2.0": + version "7.3.1" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.3.1.tgz#949eec9ea4b45d3210feb7dc1c22db664c9e44b9" + dependencies: + "@babel/template" "^7.1.2" + "@babel/traverse" "^7.1.5" + "@babel/types" "^7.3.0" + +"@babel/highlight@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" + dependencies: + chalk "^2.0.0" + esutils "^2.0.2" + js-tokens "^4.0.0" + +"@babel/parser@^7.2.2", "@babel/parser@^7.2.3": + version "7.3.2" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.2.tgz#95cdeddfc3992a6ca2a1315191c1679ca32c55cd" + +"@babel/plugin-proposal-async-generator-functions@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-remap-async-to-generator" "^7.1.0" + "@babel/plugin-syntax-async-generators" "^7.2.0" + +"@babel/plugin-proposal-json-strings@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-json-strings" "^7.2.0" + +"@babel/plugin-proposal-object-rest-spread@^7.3.1": + version "7.3.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.3.2.tgz#6d1859882d4d778578e41f82cc5d7bf3d5daf6c1" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-object-rest-spread" "^7.2.0" + +"@babel/plugin-proposal-optional-catch-binding@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" + +"@babel/plugin-proposal-unicode-property-regex@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.2.0.tgz#abe7281fe46c95ddc143a65e5358647792039520" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-regex" "^7.0.0" + regexpu-core "^4.2.0" + +"@babel/plugin-syntax-async-generators@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-syntax-json-strings@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-syntax-object-rest-spread@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-arrow-functions@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-async-to-generator@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.2.0.tgz#68b8a438663e88519e65b776f8938f3445b1a2ff" + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-remap-async-to-generator" "^7.1.0" + +"@babel/plugin-transform-block-scoped-functions@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-block-scoping@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.2.0.tgz#f17c49d91eedbcdf5dd50597d16f5f2f770132d4" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + lodash "^4.17.10" + +"@babel/plugin-transform-classes@^7.2.0": + version "7.2.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.2.2.tgz#6c90542f210ee975aa2aa8c8b5af7fa73a126953" + dependencies: + "@babel/helper-annotate-as-pure" "^7.0.0" + "@babel/helper-define-map" "^7.1.0" + "@babel/helper-function-name" "^7.1.0" + "@babel/helper-optimise-call-expression" "^7.0.0" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-replace-supers" "^7.1.0" + "@babel/helper-split-export-declaration" "^7.0.0" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-destructuring@^7.2.0": + version "7.3.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.3.2.tgz#f2f5520be055ba1c38c41c0e094d8a461dd78f2d" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-dotall-regex@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.2.0.tgz#f0aabb93d120a8ac61e925ea0ba440812dbe0e49" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-regex" "^7.0.0" + regexpu-core "^4.1.3" + +"@babel/plugin-transform-duplicate-keys@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz#d952c4930f312a4dbfff18f0b2914e60c35530b3" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-exponentiation-operator@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-for-of@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.2.0.tgz#ab7468befa80f764bb03d3cb5eef8cc998e1cad9" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-function-name@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.2.0.tgz#f7930362829ff99a3174c39f0afcc024ef59731a" + dependencies: + "@babel/helper-function-name" "^7.1.0" + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-literals@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-modules-amd@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz#82a9bce45b95441f617a24011dc89d12da7f4ee6" + dependencies: + "@babel/helper-module-transforms" "^7.1.0" + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-modules-commonjs@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.2.0.tgz#c4f1933f5991d5145e9cfad1dfd848ea1727f404" + dependencies: + "@babel/helper-module-transforms" "^7.1.0" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-simple-access" "^7.1.0" + +"@babel/plugin-transform-modules-systemjs@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.2.0.tgz#912bfe9e5ff982924c81d0937c92d24994bb9068" + dependencies: + "@babel/helper-hoist-variables" "^7.0.0" + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-modules-umd@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae" + dependencies: + "@babel/helper-module-transforms" "^7.1.0" + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.3.0": + version "7.3.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.3.0.tgz#140b52985b2d6ef0cb092ef3b29502b990f9cd50" + dependencies: + regexp-tree "^0.1.0" + +"@babel/plugin-transform-new-target@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.0.0.tgz#ae8fbd89517fa7892d20e6564e641e8770c3aa4a" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-object-super@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz#b35d4c10f56bab5d650047dad0f1d8e8814b6598" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-replace-supers" "^7.1.0" + +"@babel/plugin-transform-parameters@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.2.0.tgz#0d5ad15dc805e2ea866df4dd6682bfe76d1408c2" + dependencies: + "@babel/helper-call-delegate" "^7.1.0" + "@babel/helper-get-function-arity" "^7.0.0" + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-regenerator@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0.tgz#5b41686b4ed40bef874d7ed6a84bdd849c13e0c1" + dependencies: + regenerator-transform "^0.13.3" + +"@babel/plugin-transform-shorthand-properties@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-spread@^7.2.0": + version "7.2.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-sticky-regex@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-regex" "^7.0.0" + +"@babel/plugin-transform-template-literals@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.2.0.tgz#d87ed01b8eaac7a92473f608c97c089de2ba1e5b" + dependencies: + "@babel/helper-annotate-as-pure" "^7.0.0" + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-typeof-symbol@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-unicode-regex@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.2.0.tgz#4eb8db16f972f8abb5062c161b8b115546ade08b" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-regex" "^7.0.0" + regexpu-core "^4.1.3" + +"@babel/preset-env@^7.3.1": + version "7.3.1" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.3.1.tgz#389e8ca6b17ae67aaf9a2111665030be923515db" + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-proposal-async-generator-functions" "^7.2.0" + "@babel/plugin-proposal-json-strings" "^7.2.0" + "@babel/plugin-proposal-object-rest-spread" "^7.3.1" + "@babel/plugin-proposal-optional-catch-binding" "^7.2.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.2.0" + "@babel/plugin-syntax-async-generators" "^7.2.0" + "@babel/plugin-syntax-json-strings" "^7.2.0" + "@babel/plugin-syntax-object-rest-spread" "^7.2.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" + "@babel/plugin-transform-arrow-functions" "^7.2.0" + "@babel/plugin-transform-async-to-generator" "^7.2.0" + "@babel/plugin-transform-block-scoped-functions" "^7.2.0" + "@babel/plugin-transform-block-scoping" "^7.2.0" + "@babel/plugin-transform-classes" "^7.2.0" + "@babel/plugin-transform-computed-properties" "^7.2.0" + "@babel/plugin-transform-destructuring" "^7.2.0" + "@babel/plugin-transform-dotall-regex" "^7.2.0" + "@babel/plugin-transform-duplicate-keys" "^7.2.0" + "@babel/plugin-transform-exponentiation-operator" "^7.2.0" + "@babel/plugin-transform-for-of" "^7.2.0" + "@babel/plugin-transform-function-name" "^7.2.0" + "@babel/plugin-transform-literals" "^7.2.0" + "@babel/plugin-transform-modules-amd" "^7.2.0" + "@babel/plugin-transform-modules-commonjs" "^7.2.0" + "@babel/plugin-transform-modules-systemjs" "^7.2.0" + "@babel/plugin-transform-modules-umd" "^7.2.0" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.3.0" + "@babel/plugin-transform-new-target" "^7.0.0" + "@babel/plugin-transform-object-super" "^7.2.0" + "@babel/plugin-transform-parameters" "^7.2.0" + "@babel/plugin-transform-regenerator" "^7.0.0" + "@babel/plugin-transform-shorthand-properties" "^7.2.0" + "@babel/plugin-transform-spread" "^7.2.0" + "@babel/plugin-transform-sticky-regex" "^7.2.0" + "@babel/plugin-transform-template-literals" "^7.2.0" + "@babel/plugin-transform-typeof-symbol" "^7.2.0" + "@babel/plugin-transform-unicode-regex" "^7.2.0" + browserslist "^4.3.4" + invariant "^2.2.2" + js-levenshtein "^1.1.3" + semver "^5.3.0" + +"@babel/template@^7.1.0", "@babel/template@^7.1.2", "@babel/template@^7.2.2": + version "7.2.2" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.2.2.tgz#005b3fdf0ed96e88041330379e0da9a708eb2907" + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/parser" "^7.2.2" + "@babel/types" "^7.2.2" + +"@babel/traverse@^7.1.0", "@babel/traverse@^7.1.5", "@babel/traverse@^7.2.2", "@babel/traverse@^7.2.3": + version "7.2.3" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.2.3.tgz#7ff50cefa9c7c0bd2d81231fdac122f3957748d8" + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/generator" "^7.2.2" + "@babel/helper-function-name" "^7.1.0" + "@babel/helper-split-export-declaration" "^7.0.0" + "@babel/parser" "^7.2.3" + "@babel/types" "^7.2.2" + debug "^4.1.0" + globals "^11.1.0" + lodash "^4.17.10" + +"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0", "@babel/types@^7.3.2": + version "7.3.2" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.3.2.tgz#424f5be4be633fff33fb83ab8d67e4a8290f5a2f" + dependencies: + esutils "^2.0.2" + lodash "^4.17.10" + to-fast-properties "^2.0.0" + +"@webassemblyjs/ast@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.7.11.tgz#b988582cafbb2b095e8b556526f30c90d057cace" + dependencies: + "@webassemblyjs/helper-module-context" "1.7.11" + "@webassemblyjs/helper-wasm-bytecode" "1.7.11" + "@webassemblyjs/wast-parser" "1.7.11" + +"@webassemblyjs/floating-point-hex-parser@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.11.tgz#a69f0af6502eb9a3c045555b1a6129d3d3f2e313" + +"@webassemblyjs/helper-api-error@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.11.tgz#c7b6bb8105f84039511a2b39ce494f193818a32a" + +"@webassemblyjs/helper-buffer@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.11.tgz#3122d48dcc6c9456ed982debe16c8f37101df39b" + +"@webassemblyjs/helper-code-frame@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.11.tgz#cf8f106e746662a0da29bdef635fcd3d1248364b" + dependencies: + "@webassemblyjs/wast-printer" "1.7.11" + +"@webassemblyjs/helper-fsm@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.11.tgz#df38882a624080d03f7503f93e3f17ac5ac01181" + +"@webassemblyjs/helper-module-context@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.11.tgz#d874d722e51e62ac202476935d649c802fa0e209" + +"@webassemblyjs/helper-wasm-bytecode@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.11.tgz#dd9a1e817f1c2eb105b4cf1013093cb9f3c9cb06" + +"@webassemblyjs/helper-wasm-section@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.11.tgz#9c9ac41ecf9fbcfffc96f6d2675e2de33811e68a" + dependencies: + "@webassemblyjs/ast" "1.7.11" + "@webassemblyjs/helper-buffer" "1.7.11" + "@webassemblyjs/helper-wasm-bytecode" "1.7.11" + "@webassemblyjs/wasm-gen" "1.7.11" + +"@webassemblyjs/ieee754@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.7.11.tgz#c95839eb63757a31880aaec7b6512d4191ac640b" + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.7.11.tgz#d7267a1ee9c4594fd3f7e37298818ec65687db63" + dependencies: + "@xtuc/long" "4.2.1" + +"@webassemblyjs/utf8@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.7.11.tgz#06d7218ea9fdc94a6793aa92208160db3d26ee82" + +"@webassemblyjs/wasm-edit@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.11.tgz#8c74ca474d4f951d01dbae9bd70814ee22a82005" + dependencies: + "@webassemblyjs/ast" "1.7.11" + "@webassemblyjs/helper-buffer" "1.7.11" + "@webassemblyjs/helper-wasm-bytecode" "1.7.11" + "@webassemblyjs/helper-wasm-section" "1.7.11" + "@webassemblyjs/wasm-gen" "1.7.11" + "@webassemblyjs/wasm-opt" "1.7.11" + "@webassemblyjs/wasm-parser" "1.7.11" + "@webassemblyjs/wast-printer" "1.7.11" + +"@webassemblyjs/wasm-gen@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.11.tgz#9bbba942f22375686a6fb759afcd7ac9c45da1a8" + dependencies: + "@webassemblyjs/ast" "1.7.11" + "@webassemblyjs/helper-wasm-bytecode" "1.7.11" + "@webassemblyjs/ieee754" "1.7.11" + "@webassemblyjs/leb128" "1.7.11" + "@webassemblyjs/utf8" "1.7.11" + +"@webassemblyjs/wasm-opt@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.11.tgz#b331e8e7cef8f8e2f007d42c3a36a0580a7d6ca7" + dependencies: + "@webassemblyjs/ast" "1.7.11" + "@webassemblyjs/helper-buffer" "1.7.11" + "@webassemblyjs/wasm-gen" "1.7.11" + "@webassemblyjs/wasm-parser" "1.7.11" + +"@webassemblyjs/wasm-parser@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.11.tgz#6e3d20fa6a3519f6b084ef9391ad58211efb0a1a" + dependencies: + "@webassemblyjs/ast" "1.7.11" + "@webassemblyjs/helper-api-error" "1.7.11" + "@webassemblyjs/helper-wasm-bytecode" "1.7.11" + "@webassemblyjs/ieee754" "1.7.11" + "@webassemblyjs/leb128" "1.7.11" + "@webassemblyjs/utf8" "1.7.11" + +"@webassemblyjs/wast-parser@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.7.11.tgz#25bd117562ca8c002720ff8116ef9072d9ca869c" + dependencies: + "@webassemblyjs/ast" "1.7.11" + "@webassemblyjs/floating-point-hex-parser" "1.7.11" + "@webassemblyjs/helper-api-error" "1.7.11" + "@webassemblyjs/helper-code-frame" "1.7.11" + "@webassemblyjs/helper-fsm" "1.7.11" + "@xtuc/long" "4.2.1" + +"@webassemblyjs/wast-printer@1.7.11": + version "1.7.11" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.7.11.tgz#c4245b6de242cb50a2cc950174fdbf65c78d7813" + dependencies: + "@webassemblyjs/ast" "1.7.11" + "@webassemblyjs/wast-parser" "1.7.11" + "@xtuc/long" "4.2.1" + +"@xtuc/ieee754@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + +"@xtuc/long@4.2.1": + version "4.2.1" + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.1.tgz#5c85d662f76fa1d34575766c5dcd6615abcd30d8" + +abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + +acorn-dynamic-import@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz#482210140582a36b83c3e342e1cfebcaa9240948" + +acorn@^6.0.5: + version "6.0.7" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.0.7.tgz#490180ce18337270232d9488a44be83d9afb7fd3" + +ajv-errors@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" + +ajv-keywords@^3.1.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.3.0.tgz#cb6499da9b83177af8bc1732b2f0a1a1a3aacf8c" + +ajv@^6.1.0: + version "6.8.1" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.8.1.tgz#0890b93742985ebf8973cd365c5b23920ce3cb20" + dependencies: + fast-deep-equal "^2.0.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + +ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + dependencies: + color-convert "^1.9.0" + +anymatch@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" + dependencies: + micromatch "^3.1.4" + normalize-path "^2.1.1" + +aproba@^1.0.3, aproba@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" + +are-we-there-yet@~1.1.2: + version "1.1.5" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + +arr-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" + +arr-flatten@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + +arr-union@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" + +array-unique@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" + +asn1.js@^4.0.0: + version "4.10.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +assert@^1.1.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" + dependencies: + util "0.10.3" + +assign-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + +async-each@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" + +atob@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" + +babel-loader@^8.0.5: + version "8.0.5" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.5.tgz#225322d7509c2157655840bba52e46b6c2f2fe33" + dependencies: + find-cache-dir "^2.0.0" + loader-utils "^1.0.2" + mkdirp "^0.5.1" + util.promisify "^1.0.0" + +balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + +base64-js@^1.0.2: + version "1.3.0" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" + +base@^0.11.1: + version "0.11.2" + resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" + dependencies: + cache-base "^1.0.1" + class-utils "^0.3.5" + component-emitter "^1.2.1" + define-property "^1.0.0" + isobject "^3.0.1" + mixin-deep "^1.2.0" + pascalcase "^0.1.1" + +big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + +binary-extensions@^1.0.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.0.tgz#9523e001306a32444b907423f1de2164222f6ab1" + +bluebird@^3.5.3: + version "3.5.3" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.3.tgz#7d01c6f9616c9a51ab0f8c549a79dfe6ec33efa7" + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: + version "4.11.8" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^2.3.0, braces@^2.3.1: + version "2.3.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" + dependencies: + arr-flatten "^1.1.0" + array-unique "^0.3.2" + extend-shallow "^2.0.1" + fill-range "^4.0.0" + isobject "^3.0.1" + repeat-element "^1.1.2" + snapdragon "^0.8.1" + snapdragon-node "^2.0.1" + split-string "^3.0.2" + to-regex "^3.0.1" + +brorand@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + +browserify-aes@^1.0.0, browserify-aes@^1.0.4: + version "1.2.0" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" + dependencies: + buffer-xor "^1.0.3" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.3" + inherits "^2.0.1" + safe-buffer "^5.0.1" + +browserify-cipher@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +browserify-rsa@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" + dependencies: + bn.js "^4.1.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" + dependencies: + bn.js "^4.1.1" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.2" + elliptic "^6.0.0" + inherits "^2.0.1" + parse-asn1 "^5.0.0" + +browserify-zlib@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" + dependencies: + pako "~1.0.5" + +browserslist@^4.3.4: + version "4.4.1" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.4.1.tgz#42e828954b6b29a7a53e352277be429478a69062" + dependencies: + caniuse-lite "^1.0.30000929" + electron-to-chromium "^1.3.103" + node-releases "^1.1.3" + +buffer-from@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" + +buffer-xor@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + +buffer@^4.3.0: + version "4.9.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + isarray "^1.0.0" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + +cacache@^11.0.2: + version "11.3.2" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.3.2.tgz#2d81e308e3d258ca38125b676b98b2ac9ce69bfa" + dependencies: + bluebird "^3.5.3" + chownr "^1.1.1" + figgy-pudding "^3.5.1" + glob "^7.1.3" + graceful-fs "^4.1.15" + lru-cache "^5.1.1" + mississippi "^3.0.0" + mkdirp "^0.5.1" + move-concurrently "^1.0.1" + promise-inflight "^1.0.1" + rimraf "^2.6.2" + ssri "^6.0.1" + unique-filename "^1.1.1" + y18n "^4.0.0" + +cache-base@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" + dependencies: + collection-visit "^1.0.0" + component-emitter "^1.2.1" + get-value "^2.0.6" + has-value "^1.0.0" + isobject "^3.0.1" + set-value "^2.0.0" + to-object-path "^0.3.0" + union-value "^1.0.0" + unset-value "^1.0.0" + +camelcase@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42" + +caniuse-lite@^1.0.30000929: + version "1.0.30000935" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000935.tgz#d1b59df00b46f4921bb84a8a34c1d172b346df59" + +chalk@^2.0.0, chalk@^2.4.1: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chokidar@^2.0.2, chokidar@^2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.4.tgz#356ff4e2b0e8e43e322d18a372460bbcf3accd26" + dependencies: + anymatch "^2.0.0" + async-each "^1.0.0" + braces "^2.3.0" + glob-parent "^3.1.0" + inherits "^2.0.1" + is-binary-path "^1.0.0" + is-glob "^4.0.0" + lodash.debounce "^4.0.8" + normalize-path "^2.1.1" + path-is-absolute "^1.0.0" + readdirp "^2.0.0" + upath "^1.0.5" + optionalDependencies: + fsevents "^1.2.2" + +chownr@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" + +chrome-trace-event@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz#45a91bd2c20c9411f0963b5aaeb9a1b95e09cc48" + dependencies: + tslib "^1.9.0" + +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +class-utils@^0.3.5: + version "0.3.6" + resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" + dependencies: + arr-union "^3.1.0" + define-property "^0.2.5" + isobject "^3.0.0" + static-extend "^0.1.1" + +cli-table3@^0.5.0: + version "0.5.1" + resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.5.1.tgz#0252372d94dfc40dbd8df06005f48f31f656f202" + dependencies: + object-assign "^4.1.0" + string-width "^2.1.1" + optionalDependencies: + colors "^1.1.2" + +cliui@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" + dependencies: + string-width "^2.1.1" + strip-ansi "^4.0.0" + wrap-ansi "^2.0.0" + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + +collection-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" + dependencies: + map-visit "^1.0.0" + object-visit "^1.0.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + dependencies: + color-name "1.1.3" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + +colors@^1.1.2: + version "1.3.3" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.3.tgz#39e005d546afe01e01f9c4ca8fa50f686a01205d" + +commander@^2.8.1: + version "2.19.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" + +commander@~2.17.1: + version "2.17.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + +component-emitter@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + +concat-stream@^1.5.0: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +console-browserify@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" + dependencies: + date-now "^0.1.4" + +console-control-strings@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + +constants-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + +convert-source-map@^1.1.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" + dependencies: + safe-buffer "~5.1.1" + +copy-concurrently@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" + dependencies: + aproba "^1.1.1" + fs-write-stream-atomic "^1.0.8" + iferr "^0.1.5" + mkdirp "^0.5.1" + rimraf "^2.5.4" + run-queue "^1.0.0" + +copy-descriptor@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" + +core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + +create-ecdh@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" + dependencies: + bn.js "^4.1.0" + elliptic "^6.0.0" + +create-hash@^1.1.0, create-hash@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + md5.js "^1.3.4" + ripemd160 "^2.0.1" + sha.js "^2.4.0" + +create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: + version "1.1.7" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +cross-spawn@^6.0.0, cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +crypto-browserify@^3.11.0: + version "3.12.0" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + randomfill "^1.0.3" + +cyclist@~0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640" + +date-now@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" + +debug@^2.1.2, debug@^2.2.0, debug@^2.3.3: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + dependencies: + ms "2.0.0" + +debug@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" + dependencies: + ms "^2.1.1" + +decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + +decode-uri-component@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" + +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + +define-properties@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + dependencies: + object-keys "^1.0.12" + +define-property@^0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" + dependencies: + is-descriptor "^0.1.0" + +define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" + dependencies: + is-descriptor "^1.0.0" + +define-property@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" + dependencies: + is-descriptor "^1.0.2" + isobject "^3.0.1" + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + +des.js@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +detect-file@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" + +detect-libc@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + +diffie-hellman@^5.0.0: + version "5.0.3" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +domain-browser@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" + +duplexify@^3.4.2, duplexify@^3.6.0: + version "3.7.1" + resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" + dependencies: + end-of-stream "^1.0.0" + inherits "^2.0.1" + readable-stream "^2.0.0" + stream-shift "^1.0.0" + +electron-to-chromium@^1.3.103: + version "1.3.113" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.113.tgz#b1ccf619df7295aea17bc6951dc689632629e4a9" + +elliptic@^6.0.0: + version "6.4.1" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.1.tgz#c2d0b7776911b86722c632c3c06c60f2f819939a" + dependencies: + bn.js "^4.4.0" + brorand "^1.0.1" + hash.js "^1.0.0" + hmac-drbg "^1.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.0" + +emojis-list@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" + +end-of-stream@^1.0.0, end-of-stream@^1.1.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" + dependencies: + once "^1.4.0" + +enhanced-resolve@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz#41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f" + dependencies: + graceful-fs "^4.1.2" + memory-fs "^0.4.0" + tapable "^1.0.0" + +errno@^0.1.3, errno@~0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" + dependencies: + prr "~1.0.1" + +es-abstract@^1.5.1: + version "1.13.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" + dependencies: + es-to-primitive "^1.2.0" + function-bind "^1.1.1" + has "^1.0.3" + is-callable "^1.1.4" + is-regex "^1.0.4" + object-keys "^1.0.12" + +es-to-primitive@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + +eslint-scope@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.0.tgz#50bf3071e9338bcdc43331794a0cb533f0136172" + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +esrecurse@^4.1.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" + dependencies: + estraverse "^4.1.0" + +estraverse@^4.1.0, estraverse@^4.1.1: + version "4.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" + +esutils@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" + +events@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88" + +evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + dependencies: + md5.js "^1.3.4" + safe-buffer "^5.1.1" + +execa@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + dependencies: + cross-spawn "^6.0.0" + get-stream "^4.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +expand-brackets@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" + dependencies: + debug "^2.3.3" + define-property "^0.2.5" + extend-shallow "^2.0.1" + posix-character-classes "^0.1.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +expand-tilde@^2.0.0, expand-tilde@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" + dependencies: + homedir-polyfill "^1.0.1" + +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + dependencies: + is-extendable "^0.1.0" + +extend-shallow@^3.0.0, extend-shallow@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + dependencies: + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + +extglob@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" + dependencies: + array-unique "^0.3.2" + define-property "^1.0.0" + expand-brackets "^2.1.4" + extend-shallow "^2.0.1" + fragment-cache "^0.2.1" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +fast-deep-equal@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" + +fast-json-stable-stringify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" + +figgy-pudding@^3.5.1: + version "3.5.1" + resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" + +fill-range@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" + dependencies: + extend-shallow "^2.0.1" + is-number "^3.0.0" + repeat-string "^1.6.1" + to-regex-range "^2.1.0" + +find-cache-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.0.0.tgz#4c1faed59f45184530fb9d7fa123a4d04a98472d" + dependencies: + commondir "^1.0.1" + make-dir "^1.0.0" + pkg-dir "^3.0.0" + +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + dependencies: + locate-path "^3.0.0" + +findup-sync@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc" + dependencies: + detect-file "^1.0.0" + is-glob "^3.1.0" + micromatch "^3.0.4" + resolve-dir "^1.0.1" + +flush-write-stream@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.0.tgz#2e89a8bd5eee42f8ec97e43aae81e3d5099c2ddc" + dependencies: + inherits "^2.0.3" + readable-stream "^3.1.1" + +for-in@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + +fragment-cache@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" + dependencies: + map-cache "^0.2.2" + +from2@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" + dependencies: + inherits "^2.0.1" + readable-stream "^2.0.0" + +fs-minipass@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" + dependencies: + minipass "^2.2.1" + +fs-readdir-recursive@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" + +fs-write-stream-atomic@^1.0.8: + version "1.0.10" + resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" + dependencies: + graceful-fs "^4.1.2" + iferr "^0.1.5" + imurmurhash "^0.1.4" + readable-stream "1 || 2" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + +fsevents@^1.2.2: + version "1.2.7" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.7.tgz#4851b664a3783e52003b3c66eb0eee1074933aa4" + dependencies: + nan "^2.9.2" + node-pre-gyp "^0.10.0" + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +get-caller-file@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" + +get-stream@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + dependencies: + pump "^3.0.0" + +get-value@^2.0.3, get-value@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + +glob-parent@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" + dependencies: + is-glob "^3.1.0" + path-dirname "^1.0.0" + +glob@^7.0.0, glob@^7.1.3: + version "7.1.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +global-modules@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" + dependencies: + global-prefix "^1.0.1" + is-windows "^1.0.1" + resolve-dir "^1.0.0" + +global-prefix@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" + dependencies: + expand-tilde "^2.0.2" + homedir-polyfill "^1.0.1" + ini "^1.3.4" + is-windows "^1.0.1" + which "^1.2.14" + +globals@^11.1.0: + version "11.10.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.10.0.tgz#1e09776dffda5e01816b3bb4077c8b59c24eaa50" + +graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2: + version "4.1.15" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + +has-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" + +has-unicode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + +has-value@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" + dependencies: + get-value "^2.0.3" + has-values "^0.1.4" + isobject "^2.0.0" + +has-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" + dependencies: + get-value "^2.0.6" + has-values "^1.0.0" + isobject "^3.0.0" + +has-values@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" + +has-values@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +has@^1.0.1, has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + dependencies: + function-bind "^1.1.1" + +hash-base@^3.0.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +hmac-drbg@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +homedir-polyfill@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" + dependencies: + parse-passwd "^1.0.0" + +https-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" + +iconv-lite@^0.4.4: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + dependencies: + safer-buffer ">= 2.1.2 < 3" + +ieee754@^1.1.4: + version "1.1.12" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.12.tgz#50bf24e5b9c8bb98af4964c941cdb0918da7b60b" + +iferr@^0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" + +ignore-walk@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" + dependencies: + minimatch "^3.0.4" + +import-local@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" + dependencies: + pkg-dir "^3.0.0" + resolve-cwd "^2.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + +indexof@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + +ini@^1.3.4, ini@~1.3.0: + version "1.3.5" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" + +interpret@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" + +invariant@^2.2.2: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + dependencies: + loose-envify "^1.0.0" + +invert-kv@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" + +is-accessor-descriptor@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" + dependencies: + kind-of "^3.0.2" + +is-accessor-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" + dependencies: + kind-of "^6.0.0" + +is-binary-path@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + dependencies: + binary-extensions "^1.0.0" + +is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + +is-callable@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" + +is-data-descriptor@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" + dependencies: + kind-of "^3.0.2" + +is-data-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" + dependencies: + kind-of "^6.0.0" + +is-date-object@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" + +is-descriptor@^0.1.0: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" + dependencies: + is-accessor-descriptor "^0.1.6" + is-data-descriptor "^0.1.4" + kind-of "^5.0.0" + +is-descriptor@^1.0.0, is-descriptor@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" + dependencies: + is-accessor-descriptor "^1.0.0" + is-data-descriptor "^1.0.0" + kind-of "^6.0.2" + +is-extendable@^0.1.0, is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + +is-extendable@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + dependencies: + is-plain-object "^2.0.4" + +is-extglob@^2.1.0, is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + +is-glob@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" + dependencies: + is-extglob "^2.1.0" + +is-glob@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" + dependencies: + is-extglob "^2.1.1" + +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + dependencies: + kind-of "^3.0.2" + +is-plain-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + +is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + dependencies: + isobject "^3.0.1" + +is-regex@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" + dependencies: + has "^1.0.1" + +is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + +is-symbol@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" + dependencies: + has-symbols "^1.0.0" + +is-windows@^1.0.1, is-windows@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + dependencies: + isarray "1.0.0" + +isobject@^3.0.0, isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + +js-levenshtein@^1.1.3: + version "1.1.6" + resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + +json-parse-better-errors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + +json5@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + dependencies: + minimist "^1.2.0" + +json5@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" + dependencies: + minimist "^1.2.0" + +kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + dependencies: + is-buffer "^1.1.5" + +kind-of@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" + +kind-of@^6.0.0, kind-of@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" + +lcid@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" + dependencies: + invert-kv "^2.0.0" + +loader-runner@^2.3.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" + +loader-utils@^1.0.2, loader-utils@^1.1.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" + dependencies: + big.js "^5.2.2" + emojis-list "^2.0.0" + json5 "^1.0.1" + +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + +lodash@^4.17.10: + version "4.17.11" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" + +loose-envify@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + dependencies: + yallist "^3.0.2" + +make-dir@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" + dependencies: + pify "^3.0.0" + +map-age-cleaner@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" + dependencies: + p-defer "^1.0.0" + +map-cache@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + +map-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" + dependencies: + object-visit "^1.0.0" + +md5.js@^1.3.4: + version "1.3.5" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +mem@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-4.1.0.tgz#aeb9be2d21f47e78af29e4ac5978e8afa2ca5b8a" + dependencies: + map-age-cleaner "^0.1.1" + mimic-fn "^1.0.0" + p-is-promise "^2.0.0" + +memory-fs@^0.4.0, memory-fs@~0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" + dependencies: + errno "^0.1.3" + readable-stream "^2.0.1" + +micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4, micromatch@^3.1.8: + version "3.1.10" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" + fragment-cache "^0.2.1" + kind-of "^6.0.2" + nanomatch "^1.2.9" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.2" + +miller-rabin@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + +mimic-fn@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + +minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + +minimatch@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + dependencies: + brace-expansion "^1.1.7" + +minimist@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + +minimist@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + +minipass@^2.2.1, minipass@^2.3.4: + version "2.3.5" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" + dependencies: + safe-buffer "^5.1.2" + yallist "^3.0.0" + +minizlib@^1.1.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" + dependencies: + minipass "^2.2.1" + +mississippi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" + dependencies: + concat-stream "^1.5.0" + duplexify "^3.4.2" + end-of-stream "^1.1.0" + flush-write-stream "^1.0.0" + from2 "^2.1.0" + parallel-transform "^1.1.0" + pump "^3.0.0" + pumpify "^1.3.3" + stream-each "^1.1.0" + through2 "^2.0.0" + +mixin-deep@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" + dependencies: + for-in "^1.0.2" + is-extendable "^1.0.1" + +mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0: + version "0.5.1" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + dependencies: + minimist "0.0.8" + +move-concurrently@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" + dependencies: + aproba "^1.1.1" + copy-concurrently "^1.0.0" + fs-write-stream-atomic "^1.0.8" + mkdirp "^0.5.1" + rimraf "^2.5.4" + run-queue "^1.0.3" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + +ms@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" + +nan@^2.9.2: + version "2.12.1" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.12.1.tgz#7b1aa193e9aa86057e3c7bbd0ac448e770925552" + +nanomatch@^1.2.9: + version "1.2.13" + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + define-property "^2.0.2" + extend-shallow "^3.0.2" + fragment-cache "^0.2.1" + is-windows "^1.0.2" + kind-of "^6.0.2" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +needle@^2.2.1: + version "2.2.4" + resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e" + dependencies: + debug "^2.1.2" + iconv-lite "^0.4.4" + sax "^1.2.4" + +neo-async@^2.5.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.0.tgz#b9d15e4d71c6762908654b5183ed38b753340835" + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + +node-libs-browser@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.0.tgz#c72f60d9d46de08a940dedbb25f3ffa2f9bbaa77" + dependencies: + assert "^1.1.1" + browserify-zlib "^0.2.0" + buffer "^4.3.0" + console-browserify "^1.1.0" + constants-browserify "^1.0.0" + crypto-browserify "^3.11.0" + domain-browser "^1.1.1" + events "^3.0.0" + https-browserify "^1.0.0" + os-browserify "^0.3.0" + path-browserify "0.0.0" + process "^0.11.10" + punycode "^1.2.4" + querystring-es3 "^0.2.0" + readable-stream "^2.3.3" + stream-browserify "^2.0.1" + stream-http "^2.7.2" + string_decoder "^1.0.0" + timers-browserify "^2.0.4" + tty-browserify "0.0.0" + url "^0.11.0" + util "^0.11.0" + vm-browserify "0.0.4" + +node-pre-gyp@^0.10.0: + version "0.10.3" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" + dependencies: + detect-libc "^1.0.2" + mkdirp "^0.5.1" + needle "^2.2.1" + nopt "^4.0.1" + npm-packlist "^1.1.6" + npmlog "^4.0.2" + rc "^1.2.7" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^4" + +node-releases@^1.1.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.7.tgz#b09a10394d0ed8f7778f72bb861dde68b146303b" + dependencies: + semver "^5.3.0" + +nopt@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + dependencies: + abbrev "1" + osenv "^0.1.4" + +normalize-path@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + dependencies: + remove-trailing-separator "^1.0.1" + +npm-bundled@^1.0.1: + version "1.0.6" + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" + +npm-packlist@^1.1.6: + version "1.2.0" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.2.0.tgz#55a60e793e272f00862c7089274439a4cc31fc7f" + dependencies: + ignore-walk "^3.0.1" + npm-bundled "^1.0.1" + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + dependencies: + path-key "^2.0.0" + +npmlog@^4.0.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + +object-assign@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + +object-copy@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" + dependencies: + copy-descriptor "^0.1.0" + define-property "^0.2.5" + kind-of "^3.0.3" + +object-keys@^1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" + +object-visit@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" + dependencies: + isobject "^3.0.0" + +object.getownpropertydescriptors@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" + dependencies: + define-properties "^1.1.2" + es-abstract "^1.5.1" + +object.pick@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + dependencies: + isobject "^3.0.1" + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + dependencies: + wrappy "1" + +os-browserify@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" + +os-homedir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + +os-locale@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" + dependencies: + execa "^1.0.0" + lcid "^2.0.0" + mem "^4.0.0" + +os-tmpdir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + +osenv@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + +output-file-sync@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-2.0.1.tgz#f53118282f5f553c2799541792b723a4c71430c0" + dependencies: + graceful-fs "^4.1.11" + is-plain-obj "^1.1.0" + mkdirp "^0.5.1" + +p-defer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + +p-is-promise@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.0.0.tgz#7554e3d572109a87e1f3f53f6a7d85d1b194f4c5" + +p-limit@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.1.0.tgz#1d5a0d20fb12707c758a655f6bbc4386b5930d68" + dependencies: + p-try "^2.0.0" + +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + dependencies: + p-limit "^2.0.0" + +p-try@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.0.0.tgz#85080bb87c64688fa47996fe8f7dfbe8211760b1" + +pako@~1.0.5: + version "1.0.8" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.8.tgz#6844890aab9c635af868ad5fecc62e8acbba3ea4" + +parallel-transform@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.1.0.tgz#d410f065b05da23081fcd10f28854c29bda33b06" + dependencies: + cyclist "~0.2.2" + inherits "^2.0.3" + readable-stream "^2.1.5" + +parse-asn1@^5.0.0: + version "5.1.3" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.3.tgz#1600c6cc0727365d68b97f3aa78939e735a75204" + dependencies: + asn1.js "^4.0.0" + browserify-aes "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.0" + pbkdf2 "^3.0.3" + safe-buffer "^5.1.1" + +parse-passwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" + +pascalcase@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" + +path-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" + +path-dirname@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + +path-key@^2.0.0, path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + +path-parse@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" + +pbkdf2@^3.0.3: + version "3.0.17" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" + dependencies: + create-hash "^1.1.2" + create-hmac "^1.1.4" + ripemd160 "^2.0.1" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + +pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + dependencies: + find-up "^3.0.0" + +posix-character-classes@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" + +prettier@^1.16.4: + version "1.16.4" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.4.tgz#73e37e73e018ad2db9c76742e2647e21790c9717" + +private@^0.1.6: + version "0.1.8" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" + +process-nextick-args@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" + +process@^0.11.10: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + +promise-inflight@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" + +prr@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" + +public-encrypt@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + safe-buffer "^5.1.2" + +pump@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pumpify@^1.3.3: + version "1.5.1" + resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" + dependencies: + duplexify "^3.6.0" + inherits "^2.0.3" + pump "^2.0.0" + +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + +punycode@^1.2.4: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + +punycode@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + +querystring-es3@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + +querystring@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + +randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: + version "2.0.6" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.6.tgz#d302c522948588848a8d300c932b44c24231da80" + dependencies: + safe-buffer "^5.1.0" + +randomfill@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" + dependencies: + randombytes "^2.0.5" + safe-buffer "^5.1.0" + +rc@^1.2.7: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: + version "2.3.6" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.1.1.tgz#ed6bbc6c5ba58b090039ff18ce670515795aeb06" + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" + dependencies: + graceful-fs "^4.1.11" + micromatch "^3.1.10" + readable-stream "^2.0.2" + +regenerate-unicode-properties@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-7.0.0.tgz#107405afcc4a190ec5ed450ecaa00ed0cafa7a4c" + dependencies: + regenerate "^1.4.0" + +regenerate@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" + +regenerator-transform@^0.13.3: + version "0.13.3" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.13.3.tgz#264bd9ff38a8ce24b06e0636496b2c856b57bcbb" + dependencies: + private "^0.1.6" + +regex-not@^1.0.0, regex-not@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" + dependencies: + extend-shallow "^3.0.2" + safe-regex "^1.1.0" + +regexp-tree@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.1.tgz#27b455f9b138ca2e84c090e9aff1ffe2a04d97fa" + dependencies: + cli-table3 "^0.5.0" + colors "^1.1.2" + yargs "^12.0.5" + +regexpu-core@^4.1.3, regexpu-core@^4.2.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.4.0.tgz#8d43e0d1266883969720345e70c275ee0aec0d32" + dependencies: + regenerate "^1.4.0" + regenerate-unicode-properties "^7.0.0" + regjsgen "^0.5.0" + regjsparser "^0.6.0" + unicode-match-property-ecmascript "^1.0.4" + unicode-match-property-value-ecmascript "^1.0.2" + +regjsgen@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" + +regjsparser@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" + dependencies: + jsesc "~0.5.0" + +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + +repeat-element@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" + +repeat-string@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + +require-main-filename@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + +resolve-cwd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" + dependencies: + resolve-from "^3.0.0" + +resolve-dir@^1.0.0, resolve-dir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" + dependencies: + expand-tilde "^2.0.0" + global-modules "^1.0.0" + +resolve-from@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + +resolve-url@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" + +resolve@^1.3.2: + version "1.10.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba" + dependencies: + path-parse "^1.0.6" + +ret@~0.1.10: + version "0.1.15" + resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" + +rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + dependencies: + glob "^7.1.3" + +ripemd160@^2.0.0, ripemd160@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +run-queue@^1.0.0, run-queue@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" + dependencies: + aproba "^1.1.1" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + +safe-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" + dependencies: + ret "~0.1.10" + +"safer-buffer@>= 2.1.2 < 3": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + +sax@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + +schema-utils@^0.4.4: + version "0.4.7" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.7.tgz#ba74f597d2be2ea880131746ee17d0a093c68187" + dependencies: + ajv "^6.1.0" + ajv-keywords "^3.1.0" + +schema-utils@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" + dependencies: + ajv "^6.1.0" + ajv-errors "^1.0.0" + ajv-keywords "^3.1.0" + +semver@^5.3.0, semver@^5.4.1, semver@^5.5.0: + version "5.6.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" + +serialize-javascript@^1.4.0: + version "1.6.1" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.6.1.tgz#4d1f697ec49429a847ca6f442a2a755126c4d879" + +set-blocking@^2.0.0, set-blocking@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + +set-value@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.1" + to-object-path "^0.3.0" + +set-value@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.3" + split-string "^3.0.1" + +setimmediate@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + +sha.js@^2.4.0, sha.js@^2.4.8: + version "2.4.11" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + dependencies: + shebang-regex "^1.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + +signal-exit@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" + +slash@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" + +snapdragon-node@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" + dependencies: + define-property "^1.0.0" + isobject "^3.0.0" + snapdragon-util "^3.0.1" + +snapdragon-util@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" + dependencies: + kind-of "^3.2.0" + +snapdragon@^0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" + dependencies: + base "^0.11.1" + debug "^2.2.0" + define-property "^0.2.5" + extend-shallow "^2.0.1" + map-cache "^0.2.2" + source-map "^0.5.6" + source-map-resolve "^0.5.0" + use "^3.1.0" + +source-list-map@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" + +source-map-resolve@^0.5.0: + version "0.5.2" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" + dependencies: + atob "^2.1.1" + decode-uri-component "^0.2.0" + resolve-url "^0.2.1" + source-map-url "^0.4.0" + urix "^0.1.0" + +source-map-support@~0.5.9: + version "0.5.10" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.10.tgz#2214080bc9d51832511ee2bab96e3c2f9353120c" + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map-url@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" + +source-map@^0.5.0, source-map@^0.5.6: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + +source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + +split-string@^3.0.1, split-string@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + dependencies: + extend-shallow "^3.0.0" + +ssri@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" + dependencies: + figgy-pudding "^3.5.1" + +static-extend@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" + dependencies: + define-property "^0.2.5" + object-copy "^0.1.0" + +stream-browserify@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-each@^1.1.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" + dependencies: + end-of-stream "^1.1.0" + stream-shift "^1.0.0" + +stream-http@^2.7.2: + version "2.8.3" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^2.3.6" + to-arraybuffer "^1.0.0" + xtend "^4.0.0" + +stream-shift@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" + +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string_decoder@^1.0.0, string_decoder@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d" + dependencies: + safe-buffer "~5.1.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + dependencies: + safe-buffer "~5.1.0" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + dependencies: + ansi-regex "^3.0.0" + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + +supports-color@^5.3.0, supports-color@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + dependencies: + has-flag "^3.0.0" + +tapable@^1.0.0, tapable@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.1.tgz#4d297923c5a72a42360de2ab52dadfaaec00018e" + +tar@^4: + version "4.4.8" + resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d" + dependencies: + chownr "^1.1.1" + fs-minipass "^1.2.5" + minipass "^2.3.4" + minizlib "^1.1.1" + mkdirp "^0.5.0" + safe-buffer "^5.1.2" + yallist "^3.0.2" + +terser-webpack-plugin@^1.1.0: + version "1.2.2" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.2.2.tgz#9bff3a891ad614855a7dde0d707f7db5a927e3d9" + dependencies: + cacache "^11.0.2" + find-cache-dir "^2.0.0" + schema-utils "^1.0.0" + serialize-javascript "^1.4.0" + source-map "^0.6.1" + terser "^3.16.1" + webpack-sources "^1.1.0" + worker-farm "^1.5.2" + +terser@^3.16.1: + version "3.16.1" + resolved "https://registry.yarnpkg.com/terser/-/terser-3.16.1.tgz#5b0dd4fa1ffd0b0b43c2493b2c364fd179160493" + dependencies: + commander "~2.17.1" + source-map "~0.6.1" + source-map-support "~0.5.9" + +through2@^2.0.0: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + +timers-browserify@^2.0.4: + version "2.0.10" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae" + dependencies: + setimmediate "^1.0.4" + +to-arraybuffer@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + +to-object-path@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + dependencies: + kind-of "^3.0.2" + +to-regex-range@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" + dependencies: + is-number "^3.0.0" + repeat-string "^1.6.1" + +to-regex@^3.0.1, to-regex@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" + dependencies: + define-property "^2.0.2" + extend-shallow "^3.0.2" + regex-not "^1.0.2" + safe-regex "^1.1.0" + +trim-right@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + +tslib@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" + +tty-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + +unicode-canonical-property-names-ecmascript@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" + +unicode-match-property-ecmascript@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" + dependencies: + unicode-canonical-property-names-ecmascript "^1.0.4" + unicode-property-aliases-ecmascript "^1.0.4" + +unicode-match-property-value-ecmascript@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.0.2.tgz#9f1dc76926d6ccf452310564fd834ace059663d4" + +unicode-property-aliases-ecmascript@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz#5a533f31b4317ea76f17d807fa0d116546111dd0" + +union-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" + dependencies: + arr-union "^3.1.0" + get-value "^2.0.6" + is-extendable "^0.1.1" + set-value "^0.4.3" + +unique-filename@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" + dependencies: + unique-slug "^2.0.0" + +unique-slug@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.1.tgz#5e9edc6d1ce8fb264db18a507ef9bd8544451ca6" + dependencies: + imurmurhash "^0.1.4" + +unset-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" + dependencies: + has-value "^0.3.1" + isobject "^3.0.0" + +upath@^1.0.5: + version "1.1.0" + resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.0.tgz#35256597e46a581db4793d0ce47fa9aebfc9fabd" + +uri-js@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" + dependencies: + punycode "^2.1.0" + +urix@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" + +url@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + dependencies: + punycode "1.3.2" + querystring "0.2.0" + +use@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" + +util-deprecate@^1.0.1, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + +util.promisify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" + dependencies: + define-properties "^1.1.2" + object.getownpropertydescriptors "^2.0.3" + +util@0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + dependencies: + inherits "2.0.1" + +util@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" + dependencies: + inherits "2.0.3" + +v8-compile-cache@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.2.tgz#a428b28bb26790734c4fc8bc9fa106fccebf6a6c" + +vm-browserify@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" + dependencies: + indexof "0.0.1" + +watchpack@^1.5.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" + dependencies: + chokidar "^2.0.2" + graceful-fs "^4.1.2" + neo-async "^2.5.0" + +webpack-cli@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.2.3.tgz#13653549adfd8ccd920ad7be1ef868bacc22e346" + dependencies: + chalk "^2.4.1" + cross-spawn "^6.0.5" + enhanced-resolve "^4.1.0" + findup-sync "^2.0.0" + global-modules "^1.0.0" + import-local "^2.0.0" + interpret "^1.1.0" + loader-utils "^1.1.0" + supports-color "^5.5.0" + v8-compile-cache "^2.0.2" + yargs "^12.0.4" + +webpack-sources@^1.1.0, webpack-sources@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.3.0.tgz#2a28dcb9f1f45fe960d8f1493252b5ee6530fa85" + dependencies: + source-list-map "^2.0.0" + source-map "~0.6.1" + +webpack@^4.29.1: + version "4.29.1" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.29.1.tgz#a6533d7bc6a6b1ed188cb029d53d231be777e175" + dependencies: + "@webassemblyjs/ast" "1.7.11" + "@webassemblyjs/helper-module-context" "1.7.11" + "@webassemblyjs/wasm-edit" "1.7.11" + "@webassemblyjs/wasm-parser" "1.7.11" + acorn "^6.0.5" + acorn-dynamic-import "^4.0.0" + ajv "^6.1.0" + ajv-keywords "^3.1.0" + chrome-trace-event "^1.0.0" + enhanced-resolve "^4.1.0" + eslint-scope "^4.0.0" + json-parse-better-errors "^1.0.2" + loader-runner "^2.3.0" + loader-utils "^1.1.0" + memory-fs "~0.4.1" + micromatch "^3.1.8" + mkdirp "~0.5.0" + neo-async "^2.5.0" + node-libs-browser "^2.0.0" + schema-utils "^0.4.4" + tapable "^1.1.0" + terser-webpack-plugin "^1.1.0" + watchpack "^1.5.0" + webpack-sources "^1.3.0" + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + +which@^1.2.14, which@^1.2.9: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" + dependencies: + string-width "^1.0.2 || 2" + +worker-farm@^1.5.2: + version "1.6.0" + resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.6.0.tgz#aecc405976fab5a95526180846f0dba288f3a4a0" + dependencies: + errno "~0.1.7" + +wrap-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + +xtend@^4.0.0, xtend@~4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" + +"y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" + +yallist@^3.0.0, yallist@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" + +yargs-parser@^11.1.1: + version "11.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs@^12.0.4, yargs@^12.0.5: + version "12.0.5" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" + dependencies: + cliui "^4.0.0" + decamelize "^1.2.0" + find-up "^3.0.0" + get-caller-file "^1.0.1" + os-locale "^3.0.0" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1 || ^4.0.0" + yargs-parser "^11.1.1"