diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000000..8ce2fa867c
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,61 @@
+# EditorConfig helps developers define and maintain consistent
+# coding styles between different editors and IDEs
+# editorconfig.org
+
+root = true
+
+[*]
+# Change these settings to your own preference
+indent_style = space
+indent_size = 4
+
+# We recommend you to keep these unchanged
+end_of_line = lf
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
+
+[*.{js,html,ts,tsx}]
+indent_size = 2
+
+[*.json]
+indent_size = 2
+
+[*.md]
+trim_trailing_whitespace = false
+
+[*.sh]
+indent_style = tab
+
+[*.xml{,.dist}]
+indent_style = space
+indent_size = 4
+
+[*.{yaml,yml}]
+trim_trailing_whitespace = false
+
+[helm/api-platform/**.yaml]
+indent_size = 2
+
+[.github/workflows/*.yml]
+indent_size = 2
+
+[.gitmodules]
+indent_style = tab
+
+[.php_cs{,.dist}]
+indent_style = space
+indent_size = 4
+
+[composer.json]
+indent_size = 4
+
+[{,docker-}compose{,.*}.{yaml,yml}]
+indent_style = space
+indent_size = 2
+
+[{,*.*}Dockerfile]
+indent_style = tab
+
+[{,*.*}Caddyfile]
+indent_style = tab
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000000..6fee5f0bc2
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,20 @@
+* text=auto eol=lf
+
+*.conf text eol=lf
+*.html text eol=lf
+*.ini text eol=lf
+*.js text eol=lf
+*.json text eol=lf
+*.md text eol=lf
+*.php text eol=lf
+*.sh text eol=lf
+*.yaml text eol=lf
+*.yml text eol=lf
+bin/console text eol=lf
+composer.lock text eol=lf merge=ours
+pnpm-lock.yaml text eol=lf merge=ours
+
+*.ico binary
+*.png binary
+
+update-deps.sh export-ignore
diff --git a/.github/workflows/CONTRIBUTING.md b/.github/workflows/CONTRIBUTING.md
new file mode 100755
index 0000000000..e72b180496
--- /dev/null
+++ b/.github/workflows/CONTRIBUTING.md
@@ -0,0 +1,102 @@
+# Contributing to API Platform
+
+First, thank you for contributing, you're awesome!
+
+To have your code integrated in the API Platform project, there are some rules to follow, but don't panic, it's easy!
+
+## Reporting Bugs
+
+If you happen to find a bug, we kindly request you to report it. However, before submitting it, please:
+
+ * Check the [project documentation available online](https://api-platform.com/docs/)
+
+Then, if it appears that it's a real bug, you may report it using Github by following these 3 points:
+
+ * Check if the bug is not already reported!
+ * A clear title to resume the issue
+ * A description of the workflow needed to reproduce the bug,
+
+> _NOTE:_ Don’t hesitate to give as much information as you can (OS, PHP version extensions...)
+
+## Pull Requests
+
+### Writing a Pull Request
+
+You should base your changes on the `main` branch.
+
+### Matching Coding Standards
+
+The API Platform project follows [Symfony coding standards](https://symfony.com/doc/current/contributing/code/standards.html).
+But don't worry, you can fix CS issues automatically using the [PHP CS Fixer](http://cs.sensiolabs.org/) tool:
+
+```bash
+php-cs-fixer.phar fix
+```
+
+And then, add fixed file to your commit before push.
+Be sure to add only **your modified files**. If another files are fixed by cs tools, just revert it before commit.
+
+### Sending a Pull Request
+
+When you send a PR, just make sure that:
+
+* You add valid test cases.
+* Tests are green.
+* You make a PR on the related documentation in the [api-platform/docs](https://github.com/api-platform/docs) repository.
+* You make the PR on the same branch you based your changes on. If you see commits
+ that you did not make in your PR, you're doing it wrong.
+* Also don't forget to add a comment when you update a PR with a ping to [the maintainers](https://github.com/orgs/api-platform/people),
+ so he/she will get a notification.
+* Squash your commits into one commit. (see the next chapter)
+
+Fill in the following header from the pull request template:
+
+```markdown
+| Q | A
+| ------------- | ---
+| Bug fix? | yes/no
+| New feature? | yes/no
+| BC breaks? | no
+| Deprecations? | no
+| Tests pass? | yes
+| Fixed tickets | #1234, #5678
+| License | MIT
+| Doc PR | api-platform/docs#1234
+```
+
+## Squash your Commits
+
+If you have 3 commits. So start with:
+
+```bash
+git rebase -i HEAD~3
+```
+
+An editor will be opened with your 3 commits, all prefixed by `pick`.
+
+Replace all `pick` prefixes by `fixup` (or `f`) **except the first commit** of the list.
+
+Save and quit the editor.
+
+After that, all your commits where squashed into the first one and the commit message of the first commit.
+
+If you would like to rename your commit message type:
+
+```bash
+git commit --amend
+```
+
+Now force push to update your PR:
+
+```bash
+git push --force
+```
+
+# License and Copyright Attribution
+
+When you open a Pull Request to the API Platform project, you agree to license your code under the [MIT license](../LICENSE)
+and to transfer the copyright on the submitted code to [Kévin Dunglas](https://github.com/dunglas).
+
+Be sure to you have the right to do that (if you are a professional, ask your company)!
+
+If you include code from another project, please mention it in the Pull Request description and credit the original author.
diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml
new file mode 100644
index 0000000000..caec3a8724
--- /dev/null
+++ b/.github/workflows/dependabot.yml
@@ -0,0 +1,22 @@
+version: 2
+
+updates:
+ # Maintain dependencies for GitHub Actions
+ - package-ecosystem: github-actions
+ directory: /
+ schedule:
+ interval: monthly
+ - package-ecosystem: composer
+ directory: /api
+ schedule:
+ interval: daily
+ labels:
+ - dependencies
+ open-pull-requests-limit: 0 # open Pull Requests for security updates only
+ - package-ecosystem: npm
+ directory: /pwa
+ schedule:
+ interval: daily
+ labels:
+ - dependencies
+ open-pull-requests-limit: 0 # open Pull Requests for security updates only
diff --git a/.github/workflows/workflows/ci.yml b/.github/workflows/workflows/ci.yml
new file mode 100644
index 0000000000..3e21569045
--- /dev/null
+++ b/.github/workflows/workflows/ci.yml
@@ -0,0 +1,73 @@
+name: CI
+
+on:
+ push:
+ branches:
+ - main
+ pull_request: ~
+ workflow_dispatch: ~
+
+concurrency:
+ group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
+ cancel-in-progress: true
+
+jobs:
+ tests:
+ name: Tests
+ runs-on: ubuntu-latest
+ steps:
+ -
+ name: Checkout
+ uses: actions/checkout@v4
+ -
+ name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v3
+ -
+ name: Build Docker images
+ uses: docker/bake-action@v4
+ with:
+ pull: true
+ load: true
+ files: |
+ compose.yaml
+ compose.override.yaml
+ set: |
+ *.cache-from=type=gha,scope=${{github.ref}}
+ *.cache-from=type=gha,scope=refs/heads/main
+ *.cache-to=type=gha,scope=${{github.ref}},mode=max
+ -
+ name: Start services
+ run: docker compose up --wait --no-build
+ -
+ name: Check HTTP reachability
+ run: curl -v --fail-with-body http://localhost
+ -
+ name: Check API reachability
+ run: curl -vk --fail-with-body https://localhost
+ -
+ name: Check PWA reachability
+ run: "curl -vk --fail-with-body -H 'Accept: text/html' https://localhost"
+ -
+ name: Create test database
+ run: docker compose exec -T php bin/console -e test doctrine:database:create
+ -
+ name: Run migrations
+ run: docker compose exec -T php bin/console -e test doctrine:migrations:migrate --no-interaction
+ -
+ name: Run PHPUnit
+ run: docker compose exec -T php bin/phpunit
+ -
+ name: Doctrine Schema Validator
+ run: docker compose exec -T php bin/console -e test doctrine:schema:validate
+ lint:
+ name: Docker Lint
+ runs-on: ubuntu-latest
+ steps:
+ -
+ name: Checkout
+ uses: actions/checkout@v4
+ -
+ name: Lint Dockerfiles
+ uses: hadolint/hadolint-action@v3.1.0
+ with:
+ recursive: true
diff --git a/.github/workflows/workflows/release.yml b/.github/workflows/workflows/release.yml
new file mode 100644
index 0000000000..35ed5a0284
--- /dev/null
+++ b/.github/workflows/workflows/release.yml
@@ -0,0 +1,51 @@
+name: Release
+permissions:
+ contents: write
+ pull-requests: write
+
+on:
+ workflow_dispatch:
+ inputs:
+ tag:
+ description: 'API Platform core tag'
+ required: true
+
+concurrency:
+ group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
+ cancel-in-progress: true
+
+jobs:
+ tests:
+ name: Update api-platform/core
+ runs-on: ubuntu-latest
+ steps:
+ -
+ name: Checkout
+ uses: actions/checkout@v4
+ -
+ name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v3
+ -
+ name: Build Docker images
+ uses: docker/bake-action@v4
+ with:
+ pull: true
+ load: true
+ files: |
+ compose.yaml
+ compose.override.yaml
+ set: |
+ *.cache-from=type=gha,scope=${{github.ref}}
+ *.cache-from=type=gha,scope=refs/heads/main
+ *.cache-to=type=gha,scope=${{github.ref}},mode=max
+ -
+ name: Update API Platform
+ run: docker compose run php composer update api-platform/core:${{ inputs.tag }}
+ -
+ name: Create Pull Request
+ uses: peter-evans/create-pull-request@v6
+ with:
+ commit-message: 'chore: api-platform ${{ inputs.tag }}'
+ branch: api-platform-core
+ title: 'chore: api-platform ${{ inputs.tag }}'
+ body: 'Updates api-platform/core to ${{ inputs.tag }}'
diff --git a/.gitignore b/.gitignore
index d2f64a715e..2a5536b8d3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,16 +1,3 @@
-vendor
-var
-public/router.php
-vendor
-src/modules/Components/assets/js/media-query.js
-src/modules/Components/assets/js/media-query/
-node_modules
-mix-manifest.json
-.pnpm-store
-dev/docker-data/
-src/themes/BaseV1/assets/css/main.css
-src/themes/BaseV1/assets/css/main.css.map
-.idea
-.phpunit.result.cache
-.php-cs-fixer.cache
-docker-data
\ No newline at end of file
+/.env
+/helm/api-platform/charts/*
+!/helm/api-platform/charts/.gitignore
diff --git a/LICENSE b/LICENSE
index d5445e7ac8..a8ccb05647 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,661 +1,19 @@
-GNU AFFERO GENERAL PUBLIC LICENSE
- Version 3, 19 November 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 Affero General Public License is a free, copyleft license for
-software and other kinds of works, specifically designed to ensure
-cooperation with the community in the case of network server software.
-
- The licenses for most software and other practical works are designed
-to take away your freedom to share and change the works. By contrast,
-our General Public Licenses are 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.
-
- 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.
-
- Developers that use our General Public Licenses protect your rights
-with two steps: (1) assert copyright on the software, and (2) offer
-you this License which gives you legal permission to copy, distribute
-and/or modify the software.
-
- A secondary benefit of defending all users' freedom is that
-improvements made in alternate versions of the program, if they
-receive widespread use, become available for other developers to
-incorporate. Many developers of free software are heartened and
-encouraged by the resulting cooperation. However, in the case of
-software used on network servers, this result may fail to come about.
-The GNU General Public License permits making a modified version and
-letting the public access it on a server without ever releasing its
-source code to the public.
-
- The GNU Affero General Public License is designed specifically to
-ensure that, in such cases, the modified source code becomes available
-to the community. It requires the operator of a network server to
-provide the source code of the modified version running there to the
-users of that server. Therefore, public use of a modified version, on
-a publicly accessible server, gives the public access to the source
-code of the modified version.
-
- An older license, called the Affero General Public License and
-published by Affero, was designed to accomplish similar goals. This is
-a different license, not a version of the Affero GPL, but Affero has
-released a new version of the Affero GPL which permits relicensing under
-this license.
-
- 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 Affero 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. Remote Network Interaction; Use with the GNU General Public License.
-
- Notwithstanding any other provision of this License, if you modify the
-Program, your modified version must prominently offer all users
-interacting with it remotely through a computer network (if your version
-supports such interaction) an opportunity to receive the Corresponding
-Source of your version by providing access to the Corresponding Source
-from a network server at no charge, through some standard or customary
-means of facilitating copying of software. This Corresponding Source
-shall include the Corresponding Source for any work covered by version 3
-of the GNU General Public License that is incorporated pursuant to the
-following paragraph.
-
- 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 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 work with which it is combined will remain governed by version
-3 of the GNU General Public License.
-
- 14. Revised Versions of this License.
-
- The Free Software Foundation may publish revised and/or new versions of
-the GNU Affero 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 Affero 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 Affero 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 Affero 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 Affero 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 Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see .
-
-Also add information on how to contact you by electronic and paper mail.
-
- If your software can interact with users remotely through a computer
-network, you should also make sure that it provides a way for users to
-get its source. For example, if your program is a web application, its
-interface could display a "Source" link that leads users to an archive
-of the code. There are many ways you could offer source, and different
-solutions will be better for different programs; see section 13 for the
-specific requirements.
-
- 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 AGPL, see
-.
+Copyright (c) 2015-present Kévin Dunglas
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is furnished
+to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/README.md b/README.md
index 27c4bde3a4..76a11567f2 100644
--- a/README.md
+++ b/README.md
@@ -1,114 +1,47 @@
-# Rede Mapas
+
-Em julho de 2013, representantes culturais de diversos países da América Latina e do Brasil se uniram em um encontro histórico para debater a criação de uma ferramenta de mapeamento de iniciativas culturais e gestão cultural. Desse encontro, emergiram os alicerces para o desenvolvimento dos Mapas Culturais, um software de código aberto que possibilita o aprimoramento da gestão cultural em âmbito municipal e estadual.
+API Platform is a next-generation web framework designed to easily create API-first projects without compromising extensibility
+and flexibility:
-O projeto originalmente chamado Mapas Culturais é uma plataforma colaborativa que agrega informações detalhadas sobre agentes, espaços, eventos e projetos culturais. Com isso, oferece ao poder público uma visão abrangente da área da cultura, enquanto proporciona ao cidadão um mapa interativo de espaços e eventos culturais da região. Alinhada com o Sistema Nacional de Informação e Indicadores Culturais do Ministério da Cultura (SNIIC), essa plataforma desempenha um papel crucial na realização de diversos objetivos estabelecidos pelo Plano Nacional de Cultura.
+* Design your own data model as plain old PHP classes or [**import an existing ontology**](https://api-platform.com/docs/schema-generator).
+* **Expose in minutes a hypermedia REST or a GraphQL API** with pagination, data validation, access control, relation embedding,
+ filters, and error handling...
+* Benefit from Content Negotiation: [GraphQL](https://api-platform.com/docs/core/graphql/), [JSON-LD](https://json-ld.org), [Hydra](https://hydra-cg.com),
+ [HAL](https://github.com/mikekelly/hal_specification/blob/master/hal_specification.md), [JSON:API](https://jsonapi.org/), [YAML](https://yaml.org/), [JSON](https://www.json.org/), [XML](https://www.w3.org/XML/) and [CSV](https://www.ietf.org/rfc/rfc4180.txt) are supported out of the box.
+* Enjoy the **beautiful automatically generated API documentation** ([OpenAPI](https://api-platform.com/docs/core/openapi/)).
+* Add [**a convenient Material Design administration interface**](https://api-platform.com/docs/admin) built with [React](https://reactjs.org/)
+ without writing a line of code.
+* **Scaffold fully functional Progressive-Web-Apps and mobile apps** built with [Next.js](https://api-platform.com/docs/client-generator/nextjs/) (React),
+[Nuxt.js](https://api-platform.com/docs/client-generator/nuxtjs/) (Vue.js) or [React Native](https://api-platform.com/docs/client-generator/react-native/)
+thanks to [the client generator](https://api-platform.com/docs/client-generator/) (a Vue.js generator is also available).
+* Install a development environment and deploy your project in production using **[Docker](https://api-platform.com/docs/distribution)**
+and [Kubernetes](https://api-platform.com/docs/deployment/kubernetes).
+* Easily add **[OAuth](https://oauth.net/) authentication**.
+* Create specs and tests with **[a developer friendly API testing tool](https://api-platform.com/docs/distribution/testing/)**.
-A plataforma já está em uso em diversos municipios, estados, no governo federal em diversos projetos do ministério da cultura e até mesmo fora do Brasil, no Uruguai.
+The official project documentation is available **[on the API Platform website](https://api-platform.com)**.
-Mais detalhes sobre a História: [Clique aqui](https://rede.mapas.tec.br/)
+API Platform embraces open web standards and the
+[Linked Data](https://www.w3.org/standards/semanticweb/data) movement. Your API will automatically expose structured data.
+It means that your API Platform application is usable **out of the box** with technologies of
+the semantic web.
-## Projeto Original (Mapas Culturais)
-O projeto original atualmente é mantido de forma aberta e colaborativa, gerenciada pelo time de desenvolvimento do @HackLab
+It also means that **your SEO will be improved** because **[Google leverages these formats](https://developers.google.com/search/docs/guides/intro-structured-data)**.
-O repositório se encontra aqui:
+Last but not least, the server component of API Platform is built on top of the [Symfony](https://symfony.com) framework,
+while client components leverage [React](https://reactjs.org/) ([Vue.js](https://vuejs.org/) flavors are also available).
+It means that you can:
-> Caso queira saber mais sobre o projeto MapasCulturais, gerenciado pelo HackLab, [Clique aqui](https://github.com/mapasculturais/mapasculturais/README.md)
+* Use **thousands of Symfony bundles and React components** with API Platform.
+* Integrate API Platform in **any existing Symfony, React, or Vue application**.
+* Reuse **all your Symfony and JavaScript skills**, and benefit from the incredible amount of documentation available.
+* Enjoy the popular [Doctrine ORM](https://www.doctrine-project.org/projects/orm.html) (used by default, but fully optional:
+ you can use the data provider you want, including but not limited to MongoDB and Elasticsearch)
-## Este Fork
+## Install
-> Fork de Repositório (Fork de Código): No desenvolvimento de software, especialmente em plataformas de controle de versão como GitHub, um fork é a criação de uma cópia de um repositório de código. Isso permite que o desenvolvedor trabalhe no código de forma independente, podendo fazer modificações e melhorias sem afetar o projeto original. Caso essas modificações sejam benéficas, podem ser integradas ao projeto original por meio de um pull request.
+[Read the official "Getting Started" guide](https://api-platform.com/docs/distribution/).
-Optamos por criar um fork do projeto original com o objetivo de evoluir o sistema e oferecer uma plataforma ainda mais eficiente e acessível para a gestão cultural. As melhorias incluem uma nova arquitetura de arquivos e diretórios, uma conexão aprimorada com o banco de dados e um guia detalhado de colaboração, permitindo uma maior participação da comunidade no desenvolvimento e manutenção do projeto. Este fork visa não apenas otimizar o desempenho e a usabilidade do sistema, mas também fortalecer a rede de agentes culturais e facilitar o acesso à informação e à cultura.
-
-Agradecemos profundamente a todos que contribuíram até a última versão do projeto. A partir dela, realizamos várias mudanças significativas que podem ser detalhadas aqui:
-
-- [Nova Arquitetura](./app/README.md) de arquivos e diretórios
-- [Conexão](./app/README.md) com o Banco de Dados
-- [Como colaborar](./help/CREATE-ISSUES.md) criando issues
-- [Como implementar](./app/CREATE-PULL-REQUESTS.md) novos códigos através de pull requests
-
-## Tecnologias
-
-- PHP7^
- - Symfony packages
- - Slim packages
- - Doctrine
- - PHP DI
- - PHPUnit
-- PostgreSQL
-
----
-
-## Instalação
-A maneira mais simples e segura para instalar o MapaCultural é seguindo [Este tutorial](./help/INSTALL.md)
-
-## Documentação do Novo Código
-
-- [Getting Started](./app/README.md)
-- API
- - [API V1](https://mapacultural.secult.ce.gov.br/mapas/docs/v1) do projeto original
- - [API V2](https://mapacultural.secult.ce.gov.br/mapas/docs/v2) baseada em RestFul, implementada neste fork
-- Autenticação
- - Web (ainda em desenvolvimento)
- - API V2 (ainda em desenvolvimento)
-
-## Documentação Legada
-
-A documentação pode ser navegada no endereço (http://docs.mapasculturais.org)
-
-
-Saiba mais
-
-Toda documentação da aplicação está na pasta [documentation](documentation). Principais referências:
-- [API](http://docs.mapasculturais.org/apidoc/index.html?doctype=api)
-- [API - exemplos](documentation/docs/mc_config_api.md)
-- [Guia do desenvolvedor](documentation/docs/mc_developer_guide.md)
-- [Como contribuir](documentation/docs/mc_developer_contribute.md)
-- [Desenvolver um novo tema](documentation/docs/mc_developer_theme.md)
-- [Importação de arquivos de dados geoespaciais (Shapefiles)](documentation/docs/mc_deploy_shapefiles.md)
-- [Deploy diretamente no sistema operacional](https://docs.mapasculturais.org/mc_deploy/) - **NÃO RECOMENDADO**
-- [Habilitar um novo tema](documentation/docs/mc_deploy_theme.md)
-
-
-
-## Mais Informações
-
-Acesse aqui para ver a documentação do projeto original [aqui](./help/README.md)
-
-### [Hardware] Requisitos para instalação
-
-Para instalações de pequeno/medio porte nas quais o número de entidades, isto é, número de agentes, espaços, projetos e evento,giram em torno de 2000 ativos, recomenda-se o mínimo de recursos para um servidor (aplicação + base de dados):
-
-* 2 cores de CPU;
-* 2gb de RAM;
-* 50mbit de rede;
-
-Desejável:
-
-* 4 cores de CPU;
-* 4gb de RAM;
-* 100mbit de rede;
-
-Para instalações em cidades de grande porte onde o número de entidades, isto é, número de agentes, espaços, projetos e evento, giram em torno de dezenas de milhares de ativos de cada, recomenda-se o mínimo de recursos para um servidor:
-
-* 4 cores de CPU
-* 4gb de RAM
-* 100mbit de rede
-
-Recomendado:
-* 8 cores de CPU
-* 8gb de RAM
-* 500mbit de rede
-
-Vale lembrar que os requisitos de hardware podem variar de acordo com a latência da rede, velocidade dos cores dos cpus, uso de proxies, entre outros fatores. Recomendamos aos sysadmin da rede em que a aplicação será instalada um monitoramento de tráfego e uso durante o período de 6 meses a 1 ano para avaliação de cenário de uso.
-
-### Canais de comunicação
-
-* [Lista de discussão](https://groups.google.com/forum/?hl=en#!forum/mapas-culturais)
-* Telegram: [![Join the chat at https://t.me/joinchat/WCYOkiRbAWmxQM2y](https://patrolavia.github.io/telegram-badge/chat.png)](https://t.me/joinchat/WCYOkiRbAWmxQM2y)
-
-### Licença de uso e desenvolvimento
-
-Mapas Culturais é um software livre licenciado com [GPLv3](http://gplv3.fsf.org).
+## Credits
+Created by [Kévin Dunglas](https://dunglas.fr). Commercial support is available at [Les-Tilleuls.coop](https://les-tilleuls.coop).
diff --git a/api/.dockerignore b/api/.dockerignore
new file mode 100644
index 0000000000..dc5a875293
--- /dev/null
+++ b/api/.dockerignore
@@ -0,0 +1,34 @@
+**/*.log
+**/*.md
+**/*.php~
+**/*.dist.php
+**/*.dist
+**/*.cache
+**/._*
+**/.dockerignore
+**/.DS_Store
+**/.git/
+**/.gitattributes
+**/.gitignore
+**/.gitmodules
+**/compose.*.yaml
+**/compose.*.yml
+**/compose.yaml
+**/compose.yml
+**/docker-compose.*.yaml
+**/docker-compose.*.yml
+**/docker-compose.yaml
+**/docker-compose.yml
+**/Dockerfile
+**/Thumbs.db
+.github/
+docs/
+public/bundles/
+tests/
+var/
+vendor/
+.editorconfig
+.env.*.local
+.env.local
+.env.local.php
+.env.test
diff --git a/api/.env b/api/.env
new file mode 100644
index 0000000000..49a6d0141f
--- /dev/null
+++ b/api/.env
@@ -0,0 +1,76 @@
+# In all environments, the following files are loaded if they exist,
+# the latter taking precedence over the former:
+#
+# * .env contains default values for the environment variables needed by the app
+# * .env.local uncommitted file with local overrides
+# * .env.$APP_ENV committed environment-specific defaults
+# * .env.$APP_ENV.local uncommitted environment-specific overrides
+#
+# Real environment variables win over .env files.
+#
+# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
+# https://symfony.com/doc/current/configuration/secrets.html
+#
+# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
+# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
+
+# API Platform distribution
+TRUSTED_PROXIES=127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
+TRUSTED_HOSTS=^(localhost|php)$
+
+###> symfony/framework-bundle ###
+APP_ENV=dev
+APP_SECRET=!ChangeMe!
+###< symfony/framework-bundle ###
+
+POSTGRES_DB=mapas,gis
+POSTGRES_USER=mapas
+POSTGRES_PASSWORD=mapas
+
+###> doctrine/doctrine-bundle ###
+# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
+# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
+#
+# # ="sqlite:///%kernel.project_dir%/var/data.db"
+# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8.0.32&charset=utf8mb4"
+# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4"
+# DATABASE_URL="postgresql://app:!ChangeMe!@database:5432/app?serverVersion=16&charset=utf8"
+###< doctrine/doctrine-bundle ###
+
+###> nelmio/cors-bundle ###
+CORS_ALLOW_ORIGIN='^https?://(localhost|127\.0\.0\.1)(:[0-9]+)?$'
+###< nelmio/cors-bundle ###
+
+###> symfony/mercure-bundle ###
+# See https://symfony.com/doc/current/mercure.html#configuration
+# The URL of the Mercure hub, used by the app to publish updates (can be a local URL)
+MERCURE_URL=http://php/.well-known/mercure
+# The public URL of the Mercure hub, used by the browser to connect
+MERCURE_PUBLIC_URL=https://localhost/.well-known/mercure
+# The secret used to sign the JWTs
+MERCURE_JWT_SECRET="!ChangeThisMercureHubJWTSecretKey!"
+###< symfony/mercure-bundle ###
+
+###> symfony/mailer ###
+# MAILER_DSN=null://null
+MAILER_DSN=smtp://mailhog:1025
+###< symfony/mailer ###
+
+###> symfony/amazon-mailer ###
+# MAILER_DSN=ses://ACCESS_KEY:SECRET_KEY@default?region=eu-west-1
+# MAILER_DSN=ses+smtp://ACCESS_KEY:SECRET_KEY@default?region=eu-west-1
+###< symfony/amazon-mailer ###
+
+###> symfony/mailchimp-mailer ###
+# MAILER_DSN=mandrill://KEY@default
+# MAILER_DSN=mandrill+smtp://USERNAME:PASSWORD@default
+###< symfony/mailchimp-mailer ###
+
+###> symfony/mailgun-mailer ###
+# MAILER_DSN=mailgun://KEY:DOMAIN@default?region=us
+# MAILER_DSN=mailgun+smtp://USERNAME:PASSWORD@default?region=us
+###< symfony/mailgun-mailer ###
+
+###> symfony/sendgrid-mailer ###
+# MAILER_DSN=sendgrid://KEY@default
+###< symfony/sendgrid-mailer ###
diff --git a/api/.env.sample b/api/.env.sample
new file mode 100644
index 0000000000..49a6d0141f
--- /dev/null
+++ b/api/.env.sample
@@ -0,0 +1,76 @@
+# In all environments, the following files are loaded if they exist,
+# the latter taking precedence over the former:
+#
+# * .env contains default values for the environment variables needed by the app
+# * .env.local uncommitted file with local overrides
+# * .env.$APP_ENV committed environment-specific defaults
+# * .env.$APP_ENV.local uncommitted environment-specific overrides
+#
+# Real environment variables win over .env files.
+#
+# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
+# https://symfony.com/doc/current/configuration/secrets.html
+#
+# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
+# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
+
+# API Platform distribution
+TRUSTED_PROXIES=127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
+TRUSTED_HOSTS=^(localhost|php)$
+
+###> symfony/framework-bundle ###
+APP_ENV=dev
+APP_SECRET=!ChangeMe!
+###< symfony/framework-bundle ###
+
+POSTGRES_DB=mapas,gis
+POSTGRES_USER=mapas
+POSTGRES_PASSWORD=mapas
+
+###> doctrine/doctrine-bundle ###
+# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
+# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
+#
+# # ="sqlite:///%kernel.project_dir%/var/data.db"
+# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=8.0.32&charset=utf8mb4"
+# DATABASE_URL="mysql://app:!ChangeMe!@127.0.0.1:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4"
+# DATABASE_URL="postgresql://app:!ChangeMe!@database:5432/app?serverVersion=16&charset=utf8"
+###< doctrine/doctrine-bundle ###
+
+###> nelmio/cors-bundle ###
+CORS_ALLOW_ORIGIN='^https?://(localhost|127\.0\.0\.1)(:[0-9]+)?$'
+###< nelmio/cors-bundle ###
+
+###> symfony/mercure-bundle ###
+# See https://symfony.com/doc/current/mercure.html#configuration
+# The URL of the Mercure hub, used by the app to publish updates (can be a local URL)
+MERCURE_URL=http://php/.well-known/mercure
+# The public URL of the Mercure hub, used by the browser to connect
+MERCURE_PUBLIC_URL=https://localhost/.well-known/mercure
+# The secret used to sign the JWTs
+MERCURE_JWT_SECRET="!ChangeThisMercureHubJWTSecretKey!"
+###< symfony/mercure-bundle ###
+
+###> symfony/mailer ###
+# MAILER_DSN=null://null
+MAILER_DSN=smtp://mailhog:1025
+###< symfony/mailer ###
+
+###> symfony/amazon-mailer ###
+# MAILER_DSN=ses://ACCESS_KEY:SECRET_KEY@default?region=eu-west-1
+# MAILER_DSN=ses+smtp://ACCESS_KEY:SECRET_KEY@default?region=eu-west-1
+###< symfony/amazon-mailer ###
+
+###> symfony/mailchimp-mailer ###
+# MAILER_DSN=mandrill://KEY@default
+# MAILER_DSN=mandrill+smtp://USERNAME:PASSWORD@default
+###< symfony/mailchimp-mailer ###
+
+###> symfony/mailgun-mailer ###
+# MAILER_DSN=mailgun://KEY:DOMAIN@default?region=us
+# MAILER_DSN=mailgun+smtp://USERNAME:PASSWORD@default?region=us
+###< symfony/mailgun-mailer ###
+
+###> symfony/sendgrid-mailer ###
+# MAILER_DSN=sendgrid://KEY@default
+###< symfony/sendgrid-mailer ###
diff --git a/api/.env.test b/api/.env.test
new file mode 100644
index 0000000000..e3d5d8bdb0
--- /dev/null
+++ b/api/.env.test
@@ -0,0 +1,9 @@
+# define your env variables for the test env here
+KERNEL_CLASS='App\Kernel'
+APP_SECRET='$ecretf0rt3st'
+SYMFONY_DEPRECATIONS_HELPER=999999
+PANTHER_APP_ENV=panther
+PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots
+
+# API Platform distribution
+TRUSTED_HOSTS=^example\.com|localhost$
diff --git a/api/.gitignore b/api/.gitignore
new file mode 100644
index 0000000000..d270e414b4
--- /dev/null
+++ b/api/.gitignore
@@ -0,0 +1,21 @@
+/docker/db/data
+
+###> symfony/framework-bundle ###
+/.env.local
+/.env.local.php
+/.env.*.local
+/config/secrets/prod/prod.decrypt.private.php
+/public/bundles/
+/var/
+/vendor/
+###< symfony/framework-bundle ###
+
+###> friendsofphp/php-cs-fixer ###
+/.php-cs-fixer.php
+/.php-cs-fixer.cache
+###< friendsofphp/php-cs-fixer ###
+
+###> symfony/phpunit-bridge ###
+.phpunit.result.cache
+/phpunit.xml
+###< symfony/phpunit-bridge ###
diff --git a/api/.php-cs-fixer.dist.php b/api/.php-cs-fixer.dist.php
new file mode 100644
index 0000000000..3788194ce3
--- /dev/null
+++ b/api/.php-cs-fixer.dist.php
@@ -0,0 +1,13 @@
+in(__DIR__)
+ ->exclude('var')
+;
+
+return (new PhpCsFixer\Config())
+ ->setRules([
+ '@Symfony' => true,
+ ])
+ ->setFinder($finder)
+;
diff --git a/api/Dockerfile b/api/Dockerfile
new file mode 100644
index 0000000000..eea8109cca
--- /dev/null
+++ b/api/Dockerfile
@@ -0,0 +1,100 @@
+#syntax=docker/dockerfile:1.4
+
+# Adapted from https://github.com/dunglas/symfony-docker
+
+
+# Versions
+FROM dunglas/frankenphp:1-php8.3 AS frankenphp_upstream
+
+
+# The different stages of this Dockerfile are meant to be built into separate images
+# https://docs.docker.com/develop/develop-images/multistage-build/#stop-at-a-specific-build-stage
+# https://docs.docker.com/compose/compose-file/#target
+
+
+# Base FrankenPHP image
+FROM frankenphp_upstream AS frankenphp_base
+
+WORKDIR /app
+
+# persistent / runtime deps
+# hadolint ignore=DL3008
+RUN apt-get update && apt-get install --no-install-recommends -y \
+ acl \
+ file \
+ gettext \
+ git \
+ && rm -rf /var/lib/apt/lists/*
+
+# https://getcomposer.org/doc/03-cli.md#composer-allow-superuser
+ENV COMPOSER_ALLOW_SUPERUSER=1
+
+RUN set -eux; \
+ install-php-extensions \
+ @composer \
+ apcu \
+ intl \
+ opcache \
+ zip \
+ gd \
+ ;
+
+###> recipes ###
+###> doctrine/doctrine-bundle ###
+RUN set -eux; \
+ install-php-extensions pdo_pgsql
+###< doctrine/doctrine-bundle ###
+###< recipes ###
+
+COPY --link frankenphp/conf.d/app.ini $PHP_INI_DIR/conf.d/
+COPY --link --chmod=755 frankenphp/docker-entrypoint.sh /usr/local/bin/docker-entrypoint
+COPY --link frankenphp/Caddyfile /etc/caddy/Caddyfile
+
+ENTRYPOINT ["docker-entrypoint"]
+
+HEALTHCHECK --start-period=60s CMD curl -f http://localhost:2019/metrics || exit 1
+CMD [ "frankenphp", "run", "--config", "/etc/caddy/Caddyfile" ]
+
+# Dev FrankenPHP image
+FROM frankenphp_base AS frankenphp_dev
+
+ENV APP_ENV=dev XDEBUG_MODE=off
+VOLUME /app/var/
+
+RUN mv "$PHP_INI_DIR/php.ini-development" "$PHP_INI_DIR/php.ini"
+
+RUN set -eux; \
+ install-php-extensions \
+ xdebug \
+ ;
+
+COPY --link frankenphp/conf.d/app.dev.ini $PHP_INI_DIR/conf.d/
+
+CMD [ "frankenphp", "run", "--config", "/etc/caddy/Caddyfile", "--watch" ]
+
+# Prod FrankenPHP image
+FROM frankenphp_base AS frankenphp_prod
+
+ENV APP_ENV=prod
+ENV FRANKENPHP_CONFIG="import worker.Caddyfile"
+
+RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
+
+COPY --link frankenphp/conf.d/app.prod.ini $PHP_INI_DIR/conf.d/
+COPY --link frankenphp/worker.Caddyfile /etc/caddy/worker.Caddyfile
+
+# prevent the reinstallation of vendors at every changes in the source code
+COPY --link composer.* symfony.* ./
+RUN set -eux; \
+ composer install --no-cache --prefer-dist --no-dev --no-autoloader --no-scripts --no-progress
+
+# copy sources
+COPY --link . ./
+RUN rm -Rf frankenphp/
+
+RUN set -eux; \
+ mkdir -p var/cache var/log; \
+ composer dump-autoload --classmap-authoritative --no-dev; \
+ composer dump-env prod; \
+ composer run-script --no-dev post-install-cmd; \
+ chmod +x bin/console; sync;
diff --git a/api/README.md b/api/README.md
new file mode 100644
index 0000000000..d0edd4cfc6
--- /dev/null
+++ b/api/README.md
@@ -0,0 +1,5 @@
+# API
+
+The API will be here.
+
+Refer to the [Getting Started Guide](https://api-platform.com/docs/distribution) for more information.
diff --git a/api/bin/console b/api/bin/console
new file mode 100755
index 0000000000..d8d530e2c3
--- /dev/null
+++ b/api/bin/console
@@ -0,0 +1,21 @@
+#!/usr/bin/env php
+= 80000) {
+ require dirname(__DIR__).'/vendor/phpunit/phpunit/phpunit';
+ } else {
+ define('PHPUNIT_COMPOSER_INSTALL', dirname(__DIR__).'/vendor/autoload.php');
+ require PHPUNIT_COMPOSER_INSTALL;
+ PHPUnit\TextUI\Command::main();
+ }
+} else {
+ if (!is_file(dirname(__DIR__).'/vendor/symfony/phpunit-bridge/bin/simple-phpunit.php')) {
+ echo "Unable to find the `simple-phpunit.php` script in `vendor/symfony/phpunit-bridge/bin/`.\n";
+ exit(1);
+ }
+
+ require dirname(__DIR__).'/vendor/symfony/phpunit-bridge/bin/simple-phpunit.php';
+}
diff --git a/api/composer.json b/api/composer.json
new file mode 100644
index 0000000000..fe18b7e539
--- /dev/null
+++ b/api/composer.json
@@ -0,0 +1,155 @@
+{
+ "type": "project",
+ "license": "MIT",
+ "require": {
+ "php": ">=8.2",
+ "ext-ctype": "*",
+ "ext-iconv": "*",
+ "api-platform/core": "^3.2",
+ "doctrine/doctrine-bundle": "^2.7",
+ "doctrine/doctrine-migrations-bundle": "^3.2",
+ "nelmio/cors-bundle": "^2.2",
+ "phpstan/phpdoc-parser": "^1.16",
+ "runtime/frankenphp-symfony": "^0.2",
+ "symfony/asset": "6.4.*",
+ "symfony/console": "6.4.*",
+ "symfony/dotenv": "6.4.*",
+ "symfony/expression-language": "6.4.*",
+ "symfony/flex": "^2.2",
+ "symfony/framework-bundle": "6.4.*",
+ "symfony/mercure-bundle": "^0.3.5",
+ "symfony/monolog-bundle": "^3.8",
+ "symfony/property-access": "6.4.*",
+ "symfony/property-info": "6.4.*",
+ "symfony/runtime": "6.4.*",
+ "symfony/security-bundle": "6.4.*",
+ "symfony/serializer": "6.4.*",
+ "symfony/twig-bundle": "6.4.*",
+ "symfony/validator": "6.4.*",
+ "symfony/yaml": "6.4.*",
+ "acelaya/doctrine-enum-type": "^2.3",
+ "akrabat/ip-address-middleware": "^2.1",
+ "doctrine/annotations": "^2.0",
+ "doctrine/dbal": "^3.6",
+ "doctrine/orm": "2.16.*",
+ "firebase/php-jwt": "^6.4",
+ "michelf/php-markdown": "1.*",
+ "monolog/monolog": "^3.4",
+ "mustache/mustache": "^2.11",
+ "opauth/openid": "*",
+ "opauth/logincidadao": "*",
+ "opauth/authentik": "*",
+ "pomo/pomo": "^1.5",
+ "psy/psysh": "^0.11.12",
+ "respect/validation": "^2.2",
+ "sinergi/browser-detector": "^6.1",
+ "slim/psr7": "^1.6",
+ "slim/slim": "4.*",
+ "smottt/wideimage": "*",
+ "symfony/amazon-mailer": "^6.3",
+ "symfony/cache": "^6.2",
+ "symfony/mailchimp-mailer": "^6.3",
+ "symfony/mailer": "^6.3",
+ "symfony/mailgun-mailer": "^6.3",
+ "symfony/mime": "^6.3",
+ "symfony/sendgrid-mailer": "^6.3",
+ "league/csv": "^9.6.2",
+ "mapasculturais/plugin-multiplelocalauth": "0.0.1"
+ },
+ "require-dev": {
+ "api-platform/schema-generator": "^5.0",
+ "symfony/browser-kit": "6.4.*",
+ "symfony/css-selector": "6.4.*",
+ "symfony/debug-bundle": "6.4.*",
+ "symfony/maker-bundle": "^1.44",
+ "symfony/phpunit-bridge": "6.4.*",
+ "symfony/stopwatch": "6.4.*",
+ "symfony/var-dumper": "6.4.*",
+ "symfony/web-profiler-bundle": "6.4.*"
+ },
+ "config": {
+ "optimize-autoloader": true,
+ "preferred-install": {
+ "*": "dist"
+ },
+ "sort-packages": true,
+ "allow-plugins": {
+ "symfony/flex": true,
+ "symfony/runtime": true
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "App\\": "src/",
+ "MapasCulturais\\": "mapas/src/core",
+ "MapasCulturais\\Modules\\": "mapas/src/modules",
+ "MapasCulturais\\Themes\\": "mapas/src/themes",
+ "MultipleLocalAuth\\": "mapas/src/plugins/plugin-MultipleLocalAuth"
+ }
+ },
+ "repositories": [
+ {
+ "type": "git",
+ "url": "https://github.com/hacklabr/opauth-logincidadao.git"
+ },
+ {
+ "type": "git",
+ "url": "https://github.com/mapasculturais/opauth-authentik.git"
+ },
+ {
+ "type": "git",
+ "url": "https://github.com/mapasculturais/opauth.git"
+ },
+ {
+ "type": "package",
+ "package": {
+ "name": "mapasculturais/plugin-multiplelocalauth",
+ "version": "0.0.1",
+ "source": {
+ "url": "https://github.com/mapasculturais/plugin-MultipleLocalAuth",
+ "type": "git",
+ "reference": "feature/login-basev2"
+ }
+ }
+ }
+ ],
+ "autoload-dev": {
+ "psr-4": {
+ "App\\Tests\\": "tests/"
+ }
+ },
+ "replace": {
+ "paragonie/random_compat": "2.*",
+ "symfony/polyfill-ctype": "*",
+ "symfony/polyfill-iconv": "*",
+ "symfony/polyfill-intl-grapheme": "*",
+ "symfony/polyfill-intl-normalizer": "*",
+ "symfony/polyfill-mbstring": "*",
+ "symfony/polyfill-php82": "*",
+ "symfony/polyfill-php81": "*",
+ "symfony/polyfill-php80": "*",
+ "symfony/polyfill-php72": "*"
+ },
+ "scripts": {
+ "auto-scripts": {
+ "cache:clear": "symfony-cmd",
+ "assets:install %PUBLIC_DIR%": "symfony-cmd"
+ },
+ "post-install-cmd": [
+ "@auto-scripts"
+ ],
+ "post-update-cmd": [
+ "@auto-scripts"
+ ]
+ },
+ "conflict": {
+ "symfony/symfony": "*"
+ },
+ "extra": {
+ "symfony": {
+ "allow-contrib": false,
+ "require": "6.4.*",
+ "docker": false
+ }
+ }
+}
diff --git a/composer.lock b/api/composer.lock
similarity index 56%
rename from composer.lock
rename to api/composer.lock
index 1f97122482..e1f3885b6f 100644
--- a/composer.lock
+++ b/api/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "e42f1a6b1a0d6699be91627612f19cf5",
+ "content-hash": "9999004de867a4fe8cef3223958fbf18",
"packages": [
{
"name": "acelaya/doctrine-enum-type",
@@ -74,28 +74,28 @@
},
{
"name": "akrabat/ip-address-middleware",
- "version": "2.1.0",
+ "version": "2.2.0",
"source": {
"type": "git",
"url": "https://github.com/akrabat/ip-address-middleware.git",
- "reference": "00e090afb08274320b86108130a23f59da9cd3f6"
+ "reference": "5e3b94b9c29c8e0cde80941bb87d6a68a6532b9d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/akrabat/ip-address-middleware/zipball/00e090afb08274320b86108130a23f59da9cd3f6",
- "reference": "00e090afb08274320b86108130a23f59da9cd3f6",
+ "url": "https://api.github.com/repos/akrabat/ip-address-middleware/zipball/5e3b94b9c29c8e0cde80941bb87d6a68a6532b9d",
+ "reference": "5e3b94b9c29c8e0cde80941bb87d6a68a6532b9d",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0",
- "psr/http-message": "^1.0",
+ "psr/http-message": "^1.0 || ^2.0",
"psr/http-server-middleware": "^1.0"
},
"replace": {
"akrabat/rka-ip-address-middleware": "*"
},
"require-dev": {
- "laminas/laminas-diactoros": "^2.4",
+ "laminas/laminas-diactoros": "^2.4 || ^3.0",
"phpunit/phpunit": "^8.5.8 || ^9.4",
"squizlabs/php_codesniffer": "^3.2"
},
@@ -125,9 +125,197 @@
],
"support": {
"issues": "https://github.com/akrabat/ip-address-middleware/issues",
- "source": "https://github.com/akrabat/ip-address-middleware/tree/2.1.0"
+ "source": "https://github.com/akrabat/ip-address-middleware/tree/2.2.0"
+ },
+ "time": "2024-06-09T13:39:46+00:00"
+ },
+ {
+ "name": "api-platform/core",
+ "version": "v3.3.6",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/api-platform/core.git",
+ "reference": "c7f25dc6c7ca82ade7f8a0e5d63393b25b4a2db5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/api-platform/core/zipball/c7f25dc6c7ca82ade7f8a0e5d63393b25b4a2db5",
+ "reference": "c7f25dc6c7ca82ade7f8a0e5d63393b25b4a2db5",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/inflector": "^1.0 || ^2.0",
+ "php": ">=8.1",
+ "psr/cache": "^1.0 || ^2.0 || ^3.0",
+ "psr/container": "^1.0 || ^2.0",
+ "symfony/deprecation-contracts": "^3.1",
+ "symfony/http-foundation": "^6.4 || ^7.0",
+ "symfony/http-kernel": "^6.4 || ^7.0",
+ "symfony/property-access": "^6.4 || ^7.0",
+ "symfony/property-info": "^6.4 || ^7.0",
+ "symfony/serializer": "^6.4 || ^7.0",
+ "symfony/translation-contracts": "^3.3",
+ "symfony/web-link": "^6.4 || ^7.0",
+ "willdurand/negotiation": "^3.0"
+ },
+ "conflict": {
+ "doctrine/common": "<3.2.2",
+ "doctrine/dbal": "<2.10",
+ "doctrine/mongodb-odm": "<2.4",
+ "doctrine/orm": "<2.14.0",
+ "doctrine/persistence": "<1.3",
+ "elasticsearch/elasticsearch": ">=8.0,<8.4",
+ "phpspec/prophecy": "<1.15",
+ "phpunit/phpunit": "<9.5",
+ "symfony/framework-bundle": "6.4.6 || 7.0.6",
+ "symfony/var-exporter": "<6.1.1"
+ },
+ "require-dev": {
+ "behat/behat": "^3.11",
+ "behat/mink": "^1.9",
+ "doctrine/cache": "^1.11 || ^2.1",
+ "doctrine/common": "^3.2.2",
+ "doctrine/dbal": "^3.4.0",
+ "doctrine/doctrine-bundle": "^1.12 || ^2.0",
+ "doctrine/mongodb-odm": "^2.2",
+ "doctrine/mongodb-odm-bundle": "^4.0 || ^5.0",
+ "doctrine/orm": "^2.14 || ^3.0",
+ "elasticsearch/elasticsearch": "^7.11 || ^8.4",
+ "friends-of-behat/mink-browserkit-driver": "^1.3.1",
+ "friends-of-behat/mink-extension": "^2.2",
+ "friends-of-behat/symfony-extension": "^2.1",
+ "guzzlehttp/guzzle": "^6.0 || ^7.0",
+ "jangregor/phpstan-prophecy": "^1.0",
+ "justinrainbow/json-schema": "^5.2.1",
+ "phpspec/prophecy-phpunit": "^2.0",
+ "phpstan/extension-installer": "^1.1",
+ "phpstan/phpdoc-parser": "^1.13",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-doctrine": "^1.0",
+ "phpstan/phpstan-phpunit": "^1.0",
+ "phpstan/phpstan-symfony": "^1.0",
+ "phpunit/phpunit": "^9.6",
+ "psr/log": "^1.0 || ^2.0 || ^3.0",
+ "ramsey/uuid": "^3.9.7 || ^4.0",
+ "ramsey/uuid-doctrine": "^1.4 || ^2.0",
+ "sebastian/comparator": "<5.0",
+ "soyuka/contexts": "v3.3.9",
+ "soyuka/pmu": "^0.0.2",
+ "soyuka/stubs-mongodb": "^1.0",
+ "symfony/asset": "^6.4 || ^7.0",
+ "symfony/browser-kit": "^6.4 || ^7.0",
+ "symfony/cache": "^6.4 || ^7.0",
+ "symfony/config": "^6.4 || ^7.0",
+ "symfony/console": "^6.4 || ^7.0",
+ "symfony/css-selector": "^6.4 || ^7.0",
+ "symfony/dependency-injection": "^6.4 || ^7.0.12",
+ "symfony/doctrine-bridge": "^6.4 || ^7.0",
+ "symfony/dom-crawler": "^6.4 || ^7.0",
+ "symfony/error-handler": "^6.4 || ^7.0",
+ "symfony/event-dispatcher": "^6.4 || ^7.0",
+ "symfony/expression-language": "^6.4 || ^7.0",
+ "symfony/finder": "^6.4 || ^7.0",
+ "symfony/form": "^6.4 || ^7.0",
+ "symfony/framework-bundle": "^6.4 || ^7.0",
+ "symfony/http-client": "^6.4 || ^7.0",
+ "symfony/intl": "^6.4 || ^7.0",
+ "symfony/maker-bundle": "^1.24",
+ "symfony/mercure-bundle": "*",
+ "symfony/messenger": "^6.4 || ^7.0",
+ "symfony/phpunit-bridge": "^6.4.1 || ^7.0",
+ "symfony/routing": "^6.4 || ^7.0",
+ "symfony/security-bundle": "^6.4 || ^7.0",
+ "symfony/security-core": "^6.4 || ^7.0",
+ "symfony/stopwatch": "^6.4 || ^7.0",
+ "symfony/twig-bundle": "^6.4 || ^7.0",
+ "symfony/uid": "^6.4 || ^7.0",
+ "symfony/validator": "^6.4 || ^7.0",
+ "symfony/web-profiler-bundle": "^6.4 || ^7.0",
+ "symfony/yaml": "^6.4 || ^7.0",
+ "twig/twig": "^1.42.3 || ^2.12 || ^3.0",
+ "webonyx/graphql-php": "^14.0 || ^15.0"
+ },
+ "suggest": {
+ "doctrine/mongodb-odm-bundle": "To support MongoDB. Only versions 4.0 and later are supported.",
+ "elasticsearch/elasticsearch": "To support Elasticsearch.",
+ "ocramius/package-versions": "To display the API Platform's version in the debug bar.",
+ "phpstan/phpdoc-parser": "To support extracting metadata from PHPDoc.",
+ "psr/cache-implementation": "To use metadata caching.",
+ "ramsey/uuid": "To support Ramsey's UUID identifiers.",
+ "symfony/cache": "To have metadata caching when using Symfony integration.",
+ "symfony/config": "To load XML configuration files.",
+ "symfony/expression-language": "To use authorization features.",
+ "symfony/http-client": "To use the HTTP cache invalidation system.",
+ "symfony/messenger": "To support messenger integration.",
+ "symfony/security": "To use authorization features.",
+ "symfony/twig-bundle": "To use the Swagger UI integration.",
+ "symfony/uid": "To support Symfony UUID/ULID identifiers.",
+ "symfony/web-profiler-bundle": "To use the data collector.",
+ "webonyx/graphql-php": "To support GraphQL."
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.3.x-dev"
+ },
+ "symfony": {
+ "require": "^6.4 || ^7.0"
+ },
+ "projects": [
+ "api-platform/doctrine-common",
+ "api-platform/doctrine-orm",
+ "api-platform/doctrine-odm",
+ "api-platform/metadata",
+ "api-platform/json-schema",
+ "api-platform/elasticsearch",
+ "api-platform/jsonld",
+ "api-platform/hydra",
+ "api-platform/openapi",
+ "api-platform/graphql",
+ "api-platform/http-cache",
+ "api-platform/documentation",
+ "api-platform/parameter-validator",
+ "api-platform/ramsey-uuid",
+ "api-platform/serializer",
+ "api-platform/state",
+ "api-platform/symfony",
+ "api-platform/validator"
+ ]
+ },
+ "autoload": {
+ "psr-4": {
+ "ApiPlatform\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Kévin Dunglas",
+ "email": "kevin@dunglas.fr",
+ "homepage": "https://dunglas.fr"
+ }
+ ],
+ "description": "Build a fully-featured hypermedia or GraphQL API in minutes!",
+ "homepage": "https://api-platform.com",
+ "keywords": [
+ "Hydra",
+ "JSON-LD",
+ "api",
+ "graphql",
+ "hal",
+ "jsonapi",
+ "openapi",
+ "rest",
+ "swagger"
+ ],
+ "support": {
+ "issues": "https://github.com/api-platform/core/issues",
+ "source": "https://github.com/api-platform/core/tree/v3.3.6"
},
- "time": "2021-11-11T21:19:34+00:00"
+ "time": "2024-06-14T07:14:21+00:00"
},
{
"name": "async-aws/core",
@@ -199,16 +387,16 @@
},
{
"name": "async-aws/ses",
- "version": "1.7.0",
+ "version": "1.8.0",
"source": {
"type": "git",
"url": "https://github.com/async-aws/ses.git",
- "reference": "3aed25813b21aeab96a60a658edf1e23531d2011"
+ "reference": "9bf4873210cfc8b86e4abb18d1d707f9ae247ace"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/async-aws/ses/zipball/3aed25813b21aeab96a60a658edf1e23531d2011",
- "reference": "3aed25813b21aeab96a60a658edf1e23531d2011",
+ "url": "https://api.github.com/repos/async-aws/ses/zipball/9bf4873210cfc8b86e4abb18d1d707f9ae247ace",
+ "reference": "9bf4873210cfc8b86e4abb18d1d707f9ae247ace",
"shasum": ""
},
"require": {
@@ -219,7 +407,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.7-dev"
+ "dev-master": "1.8-dev"
}
},
"autoload": {
@@ -240,7 +428,7 @@
"ses"
],
"support": {
- "source": "https://github.com/async-aws/ses/tree/1.7.0"
+ "source": "https://github.com/async-aws/ses/tree/1.8.0"
},
"funding": [
{
@@ -252,7 +440,7 @@
"type": "github"
}
],
- "time": "2023-12-13T20:52:19+00:00"
+ "time": "2024-05-14T07:34:42+00:00"
},
{
"name": "doctrine/annotations",
@@ -602,16 +790,16 @@
},
{
"name": "doctrine/dbal",
- "version": "3.8.3",
+ "version": "3.8.5",
"source": {
"type": "git",
"url": "https://github.com/doctrine/dbal.git",
- "reference": "db922ba9436b7b18a23d1653a0b41ff2369ca41c"
+ "reference": "0e3536ba088a749985c8801105b6b3ac6c1280b6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/dbal/zipball/db922ba9436b7b18a23d1653a0b41ff2369ca41c",
- "reference": "db922ba9436b7b18a23d1653a0b41ff2369ca41c",
+ "url": "https://api.github.com/repos/doctrine/dbal/zipball/0e3536ba088a749985c8801105b6b3ac6c1280b6",
+ "reference": "0e3536ba088a749985c8801105b6b3ac6c1280b6",
"shasum": ""
},
"require": {
@@ -627,12 +815,12 @@
"doctrine/coding-standard": "12.0.0",
"fig/log-test": "^1",
"jetbrains/phpstorm-stubs": "2023.1",
- "phpstan/phpstan": "1.10.58",
- "phpstan/phpstan-strict-rules": "^1.5",
- "phpunit/phpunit": "9.6.16",
+ "phpstan/phpstan": "1.11.1",
+ "phpstan/phpstan-strict-rules": "^1.6",
+ "phpunit/phpunit": "9.6.19",
"psalm/plugin-phpunit": "0.18.4",
"slevomat/coding-standard": "8.13.1",
- "squizlabs/php_codesniffer": "3.9.0",
+ "squizlabs/php_codesniffer": "3.9.2",
"symfony/cache": "^5.4|^6.0|^7.0",
"symfony/console": "^4.4|^5.4|^6.0|^7.0",
"vimeo/psalm": "4.30.0"
@@ -695,7 +883,7 @@
],
"support": {
"issues": "https://github.com/doctrine/dbal/issues",
- "source": "https://github.com/doctrine/dbal/tree/3.8.3"
+ "source": "https://github.com/doctrine/dbal/tree/3.8.5"
},
"funding": [
{
@@ -711,7 +899,7 @@
"type": "tidelift"
}
],
- "time": "2024-03-03T15:55:06+00:00"
+ "time": "2024-06-08T17:49:56+00:00"
},
{
"name": "doctrine/deprecations",
@@ -760,18 +948,229 @@
},
"time": "2024-01-30T19:34:25+00:00"
},
+ {
+ "name": "doctrine/doctrine-bundle",
+ "version": "2.11.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/DoctrineBundle.git",
+ "reference": "4089f1424b724786c062aea50aae5f773449b94b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/4089f1424b724786c062aea50aae5f773449b94b",
+ "reference": "4089f1424b724786c062aea50aae5f773449b94b",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/cache": "^1.11 || ^2.0",
+ "doctrine/dbal": "^3.7.0 || ^4.0",
+ "doctrine/persistence": "^2.2 || ^3",
+ "doctrine/sql-formatter": "^1.0.1",
+ "php": "^7.4 || ^8.0",
+ "symfony/cache": "^5.4 || ^6.0 || ^7.0",
+ "symfony/config": "^5.4 || ^6.0 || ^7.0",
+ "symfony/console": "^5.4 || ^6.0 || ^7.0",
+ "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
+ "symfony/deprecation-contracts": "^2.1 || ^3",
+ "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0",
+ "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
+ "symfony/polyfill-php80": "^1.15",
+ "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
+ },
+ "conflict": {
+ "doctrine/annotations": ">=3.0",
+ "doctrine/orm": "<2.14 || >=4.0",
+ "twig/twig": "<1.34 || >=2.0 <2.4"
+ },
+ "require-dev": {
+ "doctrine/annotations": "^1 || ^2",
+ "doctrine/coding-standard": "^12",
+ "doctrine/deprecations": "^1.0",
+ "doctrine/orm": "^2.14 || ^3.0",
+ "friendsofphp/proxy-manager-lts": "^1.0",
+ "phpunit/phpunit": "^9.5.26 || ^10.0",
+ "psalm/plugin-phpunit": "^0.18.4",
+ "psalm/plugin-symfony": "^4",
+ "psr/log": "^1.1.4 || ^2.0 || ^3.0",
+ "symfony/phpunit-bridge": "^6.1 || ^7.0",
+ "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
+ "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
+ "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
+ "symfony/string": "^5.4 || ^6.0 || ^7.0",
+ "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
+ "symfony/validator": "^5.4 || ^6.0 || ^7.0",
+ "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
+ "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
+ "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
+ "twig/twig": "^1.34 || ^2.12 || ^3.0",
+ "vimeo/psalm": "^4.30"
+ },
+ "suggest": {
+ "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
+ "ext-pdo": "*",
+ "symfony/web-profiler-bundle": "To use the data collector."
+ },
+ "type": "symfony-bundle",
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Bundle\\DoctrineBundle\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Benjamin Eberlei",
+ "email": "kontakt@beberlei.de"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ },
+ {
+ "name": "Doctrine Project",
+ "homepage": "https://www.doctrine-project.org/"
+ }
+ ],
+ "description": "Symfony DoctrineBundle",
+ "homepage": "https://www.doctrine-project.org",
+ "keywords": [
+ "database",
+ "dbal",
+ "orm",
+ "persistence"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/DoctrineBundle/issues",
+ "source": "https://github.com/doctrine/DoctrineBundle/tree/2.11.1"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2023-11-15T20:01:50+00:00"
+ },
+ {
+ "name": "doctrine/doctrine-migrations-bundle",
+ "version": "3.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
+ "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
+ "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/doctrine-bundle": "^2.4",
+ "doctrine/migrations": "^3.2",
+ "php": "^7.2|^8.0",
+ "symfony/deprecation-contracts": "^2.1 || ^3",
+ "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
+ },
+ "require-dev": {
+ "composer/semver": "^3.0",
+ "doctrine/coding-standard": "^12",
+ "doctrine/orm": "^2.6 || ^3",
+ "doctrine/persistence": "^2.0 || ^3 ",
+ "phpstan/phpstan": "^1.4",
+ "phpstan/phpstan-deprecation-rules": "^1",
+ "phpstan/phpstan-phpunit": "^1",
+ "phpstan/phpstan-strict-rules": "^1.1",
+ "phpstan/phpstan-symfony": "^1.3",
+ "phpunit/phpunit": "^8.5|^9.5",
+ "psalm/plugin-phpunit": "^0.18.4",
+ "psalm/plugin-symfony": "^3 || ^5",
+ "symfony/phpunit-bridge": "^6.3 || ^7",
+ "symfony/var-exporter": "^5.4 || ^6 || ^7",
+ "vimeo/psalm": "^4.30 || ^5.15"
+ },
+ "type": "symfony-bundle",
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Bundle\\MigrationsBundle\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Doctrine Project",
+ "homepage": "https://www.doctrine-project.org"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony DoctrineMigrationsBundle",
+ "homepage": "https://www.doctrine-project.org",
+ "keywords": [
+ "dbal",
+ "migrations",
+ "schema"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
+ "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-14T20:32:18+00:00"
+ },
{
"name": "doctrine/event-manager",
- "version": "2.0.0",
+ "version": "2.0.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/event-manager.git",
- "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
+ "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
- "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
+ "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
+ "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
"shasum": ""
},
"require": {
@@ -781,10 +1180,10 @@
"doctrine/common": "<2.9"
},
"require-dev": {
- "doctrine/coding-standard": "^10",
+ "doctrine/coding-standard": "^12",
"phpstan/phpstan": "^1.8.8",
- "phpunit/phpunit": "^9.5",
- "vimeo/psalm": "^4.28"
+ "phpunit/phpunit": "^10.5",
+ "vimeo/psalm": "^5.24"
},
"type": "library",
"autoload": {
@@ -833,7 +1232,7 @@
],
"support": {
"issues": "https://github.com/doctrine/event-manager/issues",
- "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
+ "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
},
"funding": [
{
@@ -849,7 +1248,7 @@
"type": "tidelift"
}
],
- "time": "2022-10-12T20:59:15+00:00"
+ "time": "2024-05-22T20:47:39+00:00"
},
{
"name": "doctrine/inflector",
@@ -1090,6 +1489,108 @@
],
"time": "2024-02-05T11:35:39+00:00"
},
+ {
+ "name": "doctrine/migrations",
+ "version": "3.7.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/migrations.git",
+ "reference": "954e0a314c2f0eb9fb418210445111747de254a6"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/migrations/zipball/954e0a314c2f0eb9fb418210445111747de254a6",
+ "reference": "954e0a314c2f0eb9fb418210445111747de254a6",
+ "shasum": ""
+ },
+ "require": {
+ "composer-runtime-api": "^2",
+ "doctrine/dbal": "^3.5.1 || ^4",
+ "doctrine/deprecations": "^0.5.3 || ^1",
+ "doctrine/event-manager": "^1.2 || ^2.0",
+ "php": "^8.1",
+ "psr/log": "^1.1.3 || ^2 || ^3",
+ "symfony/console": "^5.4 || ^6.0 || ^7.0",
+ "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
+ "symfony/var-exporter": "^6.2 || ^7.0"
+ },
+ "conflict": {
+ "doctrine/orm": "<2.12 || >=4"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^12",
+ "doctrine/orm": "^2.13 || ^3",
+ "doctrine/persistence": "^2 || ^3",
+ "doctrine/sql-formatter": "^1.0",
+ "ext-pdo_sqlite": "*",
+ "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan-deprecation-rules": "^1.1",
+ "phpstan/phpstan-phpunit": "^1.3",
+ "phpstan/phpstan-strict-rules": "^1.4",
+ "phpstan/phpstan-symfony": "^1.3",
+ "phpunit/phpunit": "^10.3",
+ "symfony/cache": "^5.4 || ^6.0 || ^7.0",
+ "symfony/process": "^5.4 || ^6.0 || ^7.0",
+ "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
+ },
+ "suggest": {
+ "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
+ "symfony/yaml": "Allows the use of yaml for migration configuration files."
+ },
+ "bin": [
+ "bin/doctrine-migrations"
+ ],
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Migrations\\": "lib/Doctrine/Migrations"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Benjamin Eberlei",
+ "email": "kontakt@beberlei.de"
+ },
+ {
+ "name": "Jonathan Wage",
+ "email": "jonwage@gmail.com"
+ },
+ {
+ "name": "Michael Simonson",
+ "email": "contact@mikesimonson.com"
+ }
+ ],
+ "description": "PHP Doctrine Migrations project offer additional functionality on top of the database abstraction layer (DBAL) for versioning your database schema and easily deploying changes to it. It is a very easy to use and a powerful tool.",
+ "homepage": "https://www.doctrine-project.org/projects/migrations.html",
+ "keywords": [
+ "database",
+ "dbal",
+ "migrations"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/migrations/issues",
+ "source": "https://github.com/doctrine/migrations/tree/3.7.4"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-03-06T13:41:11+00:00"
+ },
{
"name": "doctrine/orm",
"version": "2.16.3",
@@ -1290,11 +1791,66 @@
"time": "2024-03-12T14:54:36+00:00"
},
{
- "name": "egulias/email-validator",
- "version": "4.0.2",
+ "name": "doctrine/sql-formatter",
+ "version": "1.4.0",
"source": {
"type": "git",
- "url": "https://github.com/egulias/EmailValidator.git",
+ "url": "https://github.com/doctrine/sql-formatter.git",
+ "reference": "d1ac84aef745c69ea034929eb6d65a6908b675cc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/d1ac84aef745c69ea034929eb6d65a6908b675cc",
+ "reference": "d1ac84aef745c69ea034929eb6d65a6908b675cc",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^12",
+ "phpstan/phpstan": "^1.10",
+ "phpunit/phpunit": "^10.5",
+ "vimeo/psalm": "^5.24"
+ },
+ "bin": [
+ "bin/sql-formatter"
+ ],
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\SqlFormatter\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jeremy Dorn",
+ "email": "jeremy@jeremydorn.com",
+ "homepage": "https://jeremydorn.com/"
+ }
+ ],
+ "description": "a PHP SQL highlighting library",
+ "homepage": "https://github.com/doctrine/sql-formatter/",
+ "keywords": [
+ "highlight",
+ "sql"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/sql-formatter/issues",
+ "source": "https://github.com/doctrine/sql-formatter/tree/1.4.0"
+ },
+ "time": "2024-05-08T08:12:09+00:00"
+ },
+ {
+ "name": "egulias/email-validator",
+ "version": "4.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/egulias/EmailValidator.git",
"reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
},
"dist": {
@@ -1414,26 +1970,26 @@
},
{
"name": "firebase/php-jwt",
- "version": "v6.10.0",
+ "version": "v6.10.1",
"source": {
"type": "git",
"url": "https://github.com/firebase/php-jwt.git",
- "reference": "a49db6f0a5033aef5143295342f1c95521b075ff"
+ "reference": "500501c2ce893c824c801da135d02661199f60c5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff",
- "reference": "a49db6f0a5033aef5143295342f1c95521b075ff",
+ "url": "https://api.github.com/repos/firebase/php-jwt/zipball/500501c2ce893c824c801da135d02661199f60c5",
+ "reference": "500501c2ce893c824c801da135d02661199f60c5",
"shasum": ""
},
"require": {
- "php": "^7.4||^8.0"
+ "php": "^8.0"
},
"require-dev": {
- "guzzlehttp/guzzle": "^6.5||^7.4",
+ "guzzlehttp/guzzle": "^7.4",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5",
- "psr/cache": "^1.0||^2.0",
+ "psr/cache": "^2.0||^3.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
@@ -1471,46 +2027,118 @@
],
"support": {
"issues": "https://github.com/firebase/php-jwt/issues",
- "source": "https://github.com/firebase/php-jwt/tree/v6.10.0"
+ "source": "https://github.com/firebase/php-jwt/tree/v6.10.1"
+ },
+ "time": "2024-05-18T18:05:11+00:00"
+ },
+ {
+ "name": "lcobucci/jwt",
+ "version": "5.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/lcobucci/jwt.git",
+ "reference": "08071d8d2c7f4b00222cc4b1fb6aa46990a80f83"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/lcobucci/jwt/zipball/08071d8d2c7f4b00222cc4b1fb6aa46990a80f83",
+ "reference": "08071d8d2c7f4b00222cc4b1fb6aa46990a80f83",
+ "shasum": ""
+ },
+ "require": {
+ "ext-openssl": "*",
+ "ext-sodium": "*",
+ "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
+ "psr/clock": "^1.0"
+ },
+ "require-dev": {
+ "infection/infection": "^0.27.0",
+ "lcobucci/clock": "^3.0",
+ "lcobucci/coding-standard": "^11.0",
+ "phpbench/phpbench": "^1.2.9",
+ "phpstan/extension-installer": "^1.2",
+ "phpstan/phpstan": "^1.10.7",
+ "phpstan/phpstan-deprecation-rules": "^1.1.3",
+ "phpstan/phpstan-phpunit": "^1.3.10",
+ "phpstan/phpstan-strict-rules": "^1.5.0",
+ "phpunit/phpunit": "^10.2.6"
+ },
+ "suggest": {
+ "lcobucci/clock": ">= 3.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Lcobucci\\JWT\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Luís Cobucci",
+ "email": "lcobucci@gmail.com",
+ "role": "Developer"
+ }
+ ],
+ "description": "A simple library to work with JSON Web Token and JSON Web Signature",
+ "keywords": [
+ "JWS",
+ "jwt"
+ ],
+ "support": {
+ "issues": "https://github.com/lcobucci/jwt/issues",
+ "source": "https://github.com/lcobucci/jwt/tree/5.3.0"
},
- "time": "2023-12-01T16:26:39+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/lcobucci",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/lcobucci",
+ "type": "patreon"
+ }
+ ],
+ "time": "2024-04-11T23:07:54+00:00"
},
{
"name": "league/csv",
- "version": "9.15.0",
+ "version": "9.16.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/csv.git",
- "reference": "fa7e2441c0bc9b2360f4314fd6c954f7ff40d435"
+ "reference": "998280c6c34bd67d8125fdc8b45bae28d761b440"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/csv/zipball/fa7e2441c0bc9b2360f4314fd6c954f7ff40d435",
- "reference": "fa7e2441c0bc9b2360f4314fd6c954f7ff40d435",
+ "url": "https://api.github.com/repos/thephpleague/csv/zipball/998280c6c34bd67d8125fdc8b45bae28d761b440",
+ "reference": "998280c6c34bd67d8125fdc8b45bae28d761b440",
"shasum": ""
},
"require": {
"ext-filter": "*",
- "ext-json": "*",
- "ext-mbstring": "*",
"php": "^8.1.2"
},
"require-dev": {
- "doctrine/collections": "^2.1.4",
+ "doctrine/collections": "^2.2.2",
"ext-dom": "*",
"ext-xdebug": "*",
- "friendsofphp/php-cs-fixer": "^v3.22.0",
+ "friendsofphp/php-cs-fixer": "^3.57.1",
"phpbench/phpbench": "^1.2.15",
- "phpstan/phpstan": "^1.10.57",
- "phpstan/phpstan-deprecation-rules": "^1.1.4",
- "phpstan/phpstan-phpunit": "^1.3.15",
- "phpstan/phpstan-strict-rules": "^1.5.2",
- "phpunit/phpunit": "^10.5.9",
- "symfony/var-dumper": "^6.4.2"
+ "phpstan/phpstan": "^1.11.1",
+ "phpstan/phpstan-deprecation-rules": "^1.2.0",
+ "phpstan/phpstan-phpunit": "^1.4.0",
+ "phpstan/phpstan-strict-rules": "^1.6.0",
+ "phpunit/phpunit": "^10.5.16 || ^11.1.3",
+ "symfony/var-dumper": "^6.4.6 || ^7.0.7"
},
"suggest": {
"ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
- "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters"
+ "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters",
+ "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters"
},
"type": "library",
"extra": {
@@ -1562,7 +2190,17 @@
"type": "github"
}
],
- "time": "2024-02-20T20:00:00+00:00"
+ "time": "2024-05-24T11:04:54+00:00"
+ },
+ {
+ "name": "mapasculturais/plugin-multiplelocalauth",
+ "version": "0.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/mapasculturais/plugin-MultipleLocalAuth",
+ "reference": "feature/login-basev2"
+ },
+ "type": "library"
},
{
"name": "michelf/php-markdown",
@@ -1831,6 +2469,68 @@
],
"time": "2022-08-04T09:53:51+00:00"
},
+ {
+ "name": "nelmio/cors-bundle",
+ "version": "2.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nelmio/NelmioCorsBundle.git",
+ "reference": "78fcdb91f76b080a1008133def9c7f613833933d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nelmio/NelmioCorsBundle/zipball/78fcdb91f76b080a1008133def9c7f613833933d",
+ "reference": "78fcdb91f76b080a1008133def9c7f613833933d",
+ "shasum": ""
+ },
+ "require": {
+ "psr/log": "^1.0 || ^2.0 || ^3.0",
+ "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.3.6",
+ "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0"
+ },
+ "type": "symfony-bundle",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Nelmio\\CorsBundle\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nelmio",
+ "homepage": "http://nelm.io"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://github.com/nelmio/NelmioCorsBundle/contributors"
+ }
+ ],
+ "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Symfony application",
+ "keywords": [
+ "api",
+ "cors",
+ "crossdomain"
+ ],
+ "support": {
+ "issues": "https://github.com/nelmio/NelmioCorsBundle/issues",
+ "source": "https://github.com/nelmio/NelmioCorsBundle/tree/2.4.0"
+ },
+ "time": "2023-11-30T16:41:19+00:00"
+ },
{
"name": "nikic/fast-route",
"version": "v1.3.0",
@@ -2107,6 +2807,53 @@
},
"time": "2012-06-08T07:00:03+00:00"
},
+ {
+ "name": "phpstan/phpdoc-parser",
+ "version": "1.29.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpstan/phpdoc-parser.git",
+ "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/fcaefacf2d5c417e928405b71b400d4ce10daaf4",
+ "reference": "fcaefacf2d5c417e928405b71b400d4ce10daaf4",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "doctrine/annotations": "^2.0",
+ "nikic/php-parser": "^4.15",
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "phpstan/extension-installer": "^1.0",
+ "phpstan/phpstan": "^1.5",
+ "phpstan/phpstan-phpunit": "^1.1",
+ "phpstan/phpstan-strict-rules": "^1.0",
+ "phpunit/phpunit": "^9.5",
+ "symfony/process": "^5.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "PHPStan\\PhpDocParser\\": [
+ "src/"
+ ]
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "PHPDoc parser with support for nullable, intersection and generic types",
+ "support": {
+ "issues": "https://github.com/phpstan/phpdoc-parser/issues",
+ "source": "https://github.com/phpstan/phpdoc-parser/tree/1.29.1"
+ },
+ "time": "2024-05-31T08:52:43+00:00"
+ },
{
"name": "pomo/pomo",
"version": "v1.5.0",
@@ -2224,6 +2971,54 @@
},
"time": "2021-02-03T23:26:27+00:00"
},
+ {
+ "name": "psr/clock",
+ "version": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/clock.git",
+ "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
+ "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0 || ^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Psr\\Clock\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for reading the clock.",
+ "homepage": "https://github.com/php-fig/clock",
+ "keywords": [
+ "clock",
+ "now",
+ "psr",
+ "psr-20",
+ "time"
+ ],
+ "support": {
+ "issues": "https://github.com/php-fig/clock/issues",
+ "source": "https://github.com/php-fig/clock/tree/1.0.0"
+ },
+ "time": "2022-11-25T14:36:26+00:00"
+ },
{
"name": "psr/container",
"version": "2.0.2",
@@ -2329,20 +3124,20 @@
},
{
"name": "psr/http-factory",
- "version": "1.0.2",
+ "version": "1.1.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/http-factory.git",
- "reference": "e616d01114759c4c489f93b099585439f795fe35"
+ "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
- "reference": "e616d01114759c4c489f93b099585439f795fe35",
+ "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
+ "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
"shasum": ""
},
"require": {
- "php": ">=7.0.0",
+ "php": ">=7.1",
"psr/http-message": "^1.0 || ^2.0"
},
"type": "library",
@@ -2366,7 +3161,7 @@
"homepage": "https://www.php-fig.org/"
}
],
- "description": "Common interfaces for PSR-7 HTTP message factories",
+ "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
"keywords": [
"factory",
"http",
@@ -2378,22 +3173,22 @@
"response"
],
"support": {
- "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
+ "source": "https://github.com/php-fig/http-factory"
},
- "time": "2023-04-10T20:10:41+00:00"
+ "time": "2024-04-15T12:06:14+00:00"
},
{
"name": "psr/http-message",
- "version": "1.1",
+ "version": "2.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/http-message.git",
- "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
+ "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
- "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
+ "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
+ "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
"shasum": ""
},
"require": {
@@ -2402,7 +3197,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.1.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
@@ -2417,7 +3212,7 @@
"authors": [
{
"name": "PHP-FIG",
- "homepage": "http://www.php-fig.org/"
+ "homepage": "https://www.php-fig.org/"
}
],
"description": "Common interface for HTTP messages",
@@ -2431,9 +3226,9 @@
"response"
],
"support": {
- "source": "https://github.com/php-fig/http-message/tree/1.1"
+ "source": "https://github.com/php-fig/http-message/tree/2.0"
},
- "time": "2023-04-04T09:50:52+00:00"
+ "time": "2023-04-04T09:54:51+00:00"
},
{
"name": "psr/http-server-handler",
@@ -2548,6 +3343,62 @@
},
"time": "2023-04-11T06:14:47+00:00"
},
+ {
+ "name": "psr/link",
+ "version": "2.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/link.git",
+ "reference": "84b159194ecfd7eaa472280213976e96415433f7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
+ "reference": "84b159194ecfd7eaa472280213976e96415433f7",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.0.0"
+ },
+ "suggest": {
+ "fig/link-util": "Provides some useful PSR-13 utilities"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Link\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interfaces for HTTP links",
+ "homepage": "https://github.com/php-fig/link",
+ "keywords": [
+ "http",
+ "http-link",
+ "link",
+ "psr",
+ "psr-13",
+ "rest"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/link/tree/2.0.1"
+ },
+ "time": "2021-03-11T23:00:27+00:00"
+ },
{
"name": "psr/log",
"version": "3.0.0",
@@ -2845,29 +3696,32 @@
"time": "2024-04-13T09:45:55+00:00"
},
{
- "name": "sinergi/browser-detector",
- "version": "6.1.4",
+ "name": "runtime/frankenphp-symfony",
+ "version": "0.2.0",
"source": {
"type": "git",
- "url": "https://github.com/sinergi/php-browser-detector.git",
- "reference": "4927f7c2bedc48b68f183bd420aa3549c59e133b"
+ "url": "https://github.com/php-runtime/frankenphp-symfony.git",
+ "reference": "56822c3631d9522a3136a4c33082d006bdfe4bad"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sinergi/php-browser-detector/zipball/4927f7c2bedc48b68f183bd420aa3549c59e133b",
- "reference": "4927f7c2bedc48b68f183bd420aa3549c59e133b",
+ "url": "https://api.github.com/repos/php-runtime/frankenphp-symfony/zipball/56822c3631d9522a3136a4c33082d006bdfe4bad",
+ "reference": "56822c3631d9522a3136a4c33082d006bdfe4bad",
"shasum": ""
},
"require": {
- "php": ">=7.2"
+ "php": ">=8.1",
+ "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
+ "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
+ "symfony/runtime": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
- "phpunit/phpunit": "^8.0 || ^9.4"
+ "phpunit/phpunit": "^9.5"
},
"type": "library",
"autoload": {
"psr-4": {
- "Sinergi\\BrowserDetector\\": "src"
+ "Runtime\\FrankenPhpSymfony\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2876,17 +3730,66 @@
],
"authors": [
{
- "name": "Gabriel Bull",
- "email": "me@gabrielbull.com"
- },
- {
- "name": "Chris Schuld"
+ "name": "Kévin Dunglas",
+ "email": "kevin@dunglas.dev"
}
],
- "description": "Detecting the user's browser, operating system and language.",
- "keywords": [
- "browser",
- "detection",
+ "description": "FrankenPHP runtime for Symfony",
+ "support": {
+ "issues": "https://github.com/php-runtime/frankenphp-symfony/issues",
+ "source": "https://github.com/php-runtime/frankenphp-symfony/tree/0.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/nyholm",
+ "type": "github"
+ }
+ ],
+ "time": "2023-12-12T12:06:11+00:00"
+ },
+ {
+ "name": "sinergi/browser-detector",
+ "version": "6.1.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sinergi/php-browser-detector.git",
+ "reference": "4927f7c2bedc48b68f183bd420aa3549c59e133b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sinergi/php-browser-detector/zipball/4927f7c2bedc48b68f183bd420aa3549c59e133b",
+ "reference": "4927f7c2bedc48b68f183bd420aa3549c59e133b",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.0 || ^9.4"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Sinergi\\BrowserDetector\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Gabriel Bull",
+ "email": "me@gabrielbull.com"
+ },
+ {
+ "name": "Chris Schuld"
+ }
+ ],
+ "description": "Detecting the user's browser, operating system and language.",
+ "keywords": [
+ "browser",
+ "detection",
"language",
"operating system",
"os"
@@ -2900,40 +3803,40 @@
},
{
"name": "slim/psr7",
- "version": "1.6.1",
+ "version": "1.7.0",
"source": {
"type": "git",
"url": "https://github.com/slimphp/Slim-Psr7.git",
- "reference": "72d2b2bac94ab4575d369f605dbfafbe168d3163"
+ "reference": "753e9646def5ff4db1a06e5cf4ef539bfd30f467"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/slimphp/Slim-Psr7/zipball/72d2b2bac94ab4575d369f605dbfafbe168d3163",
- "reference": "72d2b2bac94ab4575d369f605dbfafbe168d3163",
+ "url": "https://api.github.com/repos/slimphp/Slim-Psr7/zipball/753e9646def5ff4db1a06e5cf4ef539bfd30f467",
+ "reference": "753e9646def5ff4db1a06e5cf4ef539bfd30f467",
"shasum": ""
},
"require": {
"fig/http-message-util": "^1.1.5",
- "php": "^7.4 || ^8.0",
- "psr/http-factory": "^1.0",
- "psr/http-message": "^1.0",
+ "php": "^8.0",
+ "psr/http-factory": "^1.1",
+ "psr/http-message": "^1.0 || ^2.0",
"ralouphie/getallheaders": "^3.0",
- "symfony/polyfill-php80": "^1.26"
+ "symfony/polyfill-php80": "^1.29"
},
"provide": {
- "psr/http-factory-implementation": "1.0",
- "psr/http-message-implementation": "1.0"
+ "psr/http-factory-implementation": "^1.0",
+ "psr/http-message-implementation": "^1.0 || ^2.0"
},
"require-dev": {
- "adriansuter/php-autoload-override": "^1.3",
+ "adriansuter/php-autoload-override": "^1.4",
"ext-json": "*",
- "http-interop/http-factory-tests": "^0.9.0",
- "php-http/psr7-integration-tests": "1.1",
- "phpspec/prophecy": "^1.15",
- "phpspec/prophecy-phpunit": "^2.0",
- "phpstan/phpstan": "^1.8",
- "phpunit/phpunit": "^9.5",
- "squizlabs/php_codesniffer": "^3.7"
+ "http-interop/http-factory-tests": "^1.1.0",
+ "php-http/psr7-integration-tests": "1.3.0",
+ "phpspec/prophecy": "^1.19",
+ "phpspec/prophecy-phpunit": "^2.2",
+ "phpstan/phpstan": "^1.11",
+ "phpunit/phpunit": "^9.6",
+ "squizlabs/php_codesniffer": "^3.10"
},
"type": "library",
"autoload": {
@@ -2976,22 +3879,22 @@
],
"support": {
"issues": "https://github.com/slimphp/Slim-Psr7/issues",
- "source": "https://github.com/slimphp/Slim-Psr7/tree/1.6.1"
+ "source": "https://github.com/slimphp/Slim-Psr7/tree/1.7.0"
},
- "time": "2023-04-17T16:02:20+00:00"
+ "time": "2024-06-08T14:48:17+00:00"
},
{
"name": "slim/slim",
- "version": "4.13.0",
+ "version": "4.14.0",
"source": {
"type": "git",
"url": "https://github.com/slimphp/Slim.git",
- "reference": "038fd5713d5a41636fdff0e8dcceedecdd17fc17"
+ "reference": "5943393b88716eb9e82c4161caa956af63423913"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/slimphp/Slim/zipball/038fd5713d5a41636fdff0e8dcceedecdd17fc17",
- "reference": "038fd5713d5a41636fdff0e8dcceedecdd17fc17",
+ "url": "https://api.github.com/repos/slimphp/Slim/zipball/5943393b88716eb9e82c4161caa956af63423913",
+ "reference": "5943393b88716eb9e82c4161caa956af63423913",
"shasum": ""
},
"require": {
@@ -2999,7 +3902,7 @@
"nikic/fast-route": "^1.3",
"php": "^7.4 || ^8.0",
"psr/container": "^1.0 || ^2.0",
- "psr/http-factory": "^1.0",
+ "psr/http-factory": "^1.1",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
@@ -3016,11 +3919,12 @@
"nyholm/psr7-server": "^1.1",
"phpspec/prophecy": "^1.19",
"phpspec/prophecy-phpunit": "^2.1",
- "phpstan/phpstan": "^1.10",
+ "phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^9.6",
"slim/http": "^1.3",
"slim/psr7": "^1.6",
- "squizlabs/php_codesniffer": "^3.9"
+ "squizlabs/php_codesniffer": "^3.10",
+ "vimeo/psalm": "^5.24"
},
"suggest": {
"ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
@@ -3093,7 +3997,7 @@
"type": "tidelift"
}
],
- "time": "2024-03-03T21:25:30+00:00"
+ "time": "2024-06-13T08:54:48+00:00"
},
{
"name": "smottt/wideimage",
@@ -3136,16 +4040,16 @@
},
{
"name": "symfony/amazon-mailer",
- "version": "v6.4.3",
+ "version": "v6.4.8",
"source": {
"type": "git",
"url": "https://github.com/symfony/amazon-mailer.git",
- "reference": "0c9294b1cf610a6dd77b6ce6475bd76e1529b788"
+ "reference": "284c11f18d252f13f22ae10f4e13e6f9e129e532"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/amazon-mailer/zipball/0c9294b1cf610a6dd77b6ce6475bd76e1529b788",
- "reference": "0c9294b1cf610a6dd77b6ce6475bd76e1529b788",
+ "url": "https://api.github.com/repos/symfony/amazon-mailer/zipball/284c11f18d252f13f22ae10f4e13e6f9e129e532",
+ "reference": "284c11f18d252f13f22ae10f4e13e6f9e129e532",
"shasum": ""
},
"require": {
@@ -3182,7 +4086,7 @@
"description": "Symfony Amazon Mailer Bridge",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/amazon-mailer/tree/v6.4.3"
+ "source": "https://github.com/symfony/amazon-mailer/tree/v6.4.8"
},
"funding": [
{
@@ -3198,20 +4102,89 @@
"type": "tidelift"
}
],
- "time": "2024-01-23T14:51:35+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
+ },
+ {
+ "name": "symfony/asset",
+ "version": "v6.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/asset.git",
+ "reference": "c668aa320e26b7379540368832b9d1dd43d32603"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/asset/zipball/c668aa320e26b7379540368832b9d1dd43d32603",
+ "reference": "c668aa320e26b7379540368832b9d1dd43d32603",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "conflict": {
+ "symfony/http-foundation": "<5.4"
+ },
+ "require-dev": {
+ "symfony/http-client": "^5.4|^6.0|^7.0",
+ "symfony/http-foundation": "^5.4|^6.0|^7.0",
+ "symfony/http-kernel": "^5.4|^6.0|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Asset\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/asset/tree/v6.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:49:08+00:00"
},
{
"name": "symfony/cache",
- "version": "v6.4.6",
+ "version": "v6.4.8",
"source": {
"type": "git",
"url": "https://github.com/symfony/cache.git",
- "reference": "b59bbf9c093b592d77110f9ee70c74dff89294cb"
+ "reference": "287142df5579ce223c485b3872df3efae8390984"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/cache/zipball/b59bbf9c093b592d77110f9ee70c74dff89294cb",
- "reference": "b59bbf9c093b592d77110f9ee70c74dff89294cb",
+ "url": "https://api.github.com/repos/symfony/cache/zipball/287142df5579ce223c485b3872df3efae8390984",
+ "reference": "287142df5579ce223c485b3872df3efae8390984",
"shasum": ""
},
"require": {
@@ -3278,7 +4251,7 @@
"psr6"
],
"support": {
- "source": "https://github.com/symfony/cache/tree/v6.4.6"
+ "source": "https://github.com/symfony/cache/tree/v6.4.8"
},
"funding": [
{
@@ -3294,20 +4267,20 @@
"type": "tidelift"
}
],
- "time": "2024-03-27T13:27:42+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
"name": "symfony/cache-contracts",
- "version": "v3.4.2",
+ "version": "v3.5.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/cache-contracts.git",
- "reference": "2c9db6509a1b21dad229606897639d3284f54b2a"
+ "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/2c9db6509a1b21dad229606897639d3284f54b2a",
- "reference": "2c9db6509a1b21dad229606897639d3284f54b2a",
+ "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
+ "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
"shasum": ""
},
"require": {
@@ -3317,7 +4290,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "3.4-dev"
+ "dev-main": "3.5-dev"
},
"thanks": {
"name": "symfony/contracts",
@@ -3354,7 +4327,7 @@
"standards"
],
"support": {
- "source": "https://github.com/symfony/cache-contracts/tree/v3.4.2"
+ "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
},
"funding": [
{
@@ -3370,56 +4343,37 @@
"type": "tidelift"
}
],
- "time": "2024-01-23T14:51:35+00:00"
+ "time": "2024-04-18T09:32:20+00:00"
},
{
- "name": "symfony/console",
- "version": "v6.4.6",
+ "name": "symfony/clock",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/console.git",
- "reference": "a2708a5da5c87d1d0d52937bdeac625df659e11f"
+ "url": "https://github.com/symfony/clock.git",
+ "reference": "7a4840efd17135cbd547e41ec49fb910ed4f8b98"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/a2708a5da5c87d1d0d52937bdeac625df659e11f",
- "reference": "a2708a5da5c87d1d0d52937bdeac625df659e11f",
+ "url": "https://api.github.com/repos/symfony/clock/zipball/7a4840efd17135cbd547e41ec49fb910ed4f8b98",
+ "reference": "7a4840efd17135cbd547e41ec49fb910ed4f8b98",
"shasum": ""
},
"require": {
"php": ">=8.1",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/service-contracts": "^2.5|^3",
- "symfony/string": "^5.4|^6.0|^7.0"
- },
- "conflict": {
- "symfony/dependency-injection": "<5.4",
- "symfony/dotenv": "<5.4",
- "symfony/event-dispatcher": "<5.4",
- "symfony/lock": "<5.4",
- "symfony/process": "<5.4"
+ "psr/clock": "^1.0",
+ "symfony/polyfill-php83": "^1.28"
},
"provide": {
- "psr/log-implementation": "1.0|2.0|3.0"
- },
- "require-dev": {
- "psr/log": "^1|^2|^3",
- "symfony/config": "^5.4|^6.0|^7.0",
- "symfony/dependency-injection": "^5.4|^6.0|^7.0",
- "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
- "symfony/http-foundation": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/lock": "^5.4|^6.0|^7.0",
- "symfony/messenger": "^5.4|^6.0|^7.0",
- "symfony/process": "^5.4|^6.0|^7.0",
- "symfony/stopwatch": "^5.4|^6.0|^7.0",
- "symfony/var-dumper": "^5.4|^6.0|^7.0"
+ "psr/clock-implementation": "1.0"
},
"type": "library",
"autoload": {
+ "files": [
+ "Resources/now.php"
+ ],
"psr-4": {
- "Symfony\\Component\\Console\\": ""
+ "Symfony\\Component\\Clock\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -3431,24 +4385,23 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Eases the creation of beautiful and testable command line interfaces",
+ "description": "Decouples applications from the system clock",
"homepage": "https://symfony.com",
"keywords": [
- "cli",
- "command-line",
- "console",
- "terminal"
+ "clock",
+ "psr20",
+ "time"
],
"support": {
- "source": "https://github.com/symfony/console/tree/v6.4.6"
+ "source": "https://github.com/symfony/clock/tree/v6.4.8"
},
"funding": [
{
@@ -3464,38 +4417,46 @@
"type": "tidelift"
}
],
- "time": "2024-03-29T19:07:53+00:00"
+ "time": "2024-05-31T14:51:39+00:00"
},
{
- "name": "symfony/deprecation-contracts",
- "version": "v3.4.0",
+ "name": "symfony/config",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/deprecation-contracts.git",
- "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
+ "url": "https://github.com/symfony/config.git",
+ "reference": "12e7e52515ce37191b193cf3365903c4f3951e35"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
- "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
+ "url": "https://api.github.com/repos/symfony/config/zipball/12e7e52515ce37191b193cf3365903c4f3951e35",
+ "reference": "12e7e52515ce37191b193cf3365903c4f3951e35",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/filesystem": "^5.4|^6.0|^7.0",
+ "symfony/polyfill-ctype": "~1.8"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.4-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
- }
+ "conflict": {
+ "symfony/finder": "<5.4",
+ "symfony/service-contracts": "<2.5"
+ },
+ "require-dev": {
+ "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
+ "symfony/finder": "^5.4|^6.0|^7.0",
+ "symfony/messenger": "^5.4|^6.0|^7.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/yaml": "^5.4|^6.0|^7.0"
},
+ "type": "library",
"autoload": {
- "files": [
- "function.php"
+ "psr-4": {
+ "Symfony\\Component\\Config\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -3504,18 +4465,18 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "A generic function and convention to trigger deprecation notices",
+ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
+ "source": "https://github.com/symfony/config/tree/v6.4.8"
},
"funding": [
{
@@ -3531,48 +4492,56 @@
"type": "tidelift"
}
],
- "time": "2023-05-23T14:45:45+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/event-dispatcher",
- "version": "v7.0.3",
+ "name": "symfony/console",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e"
+ "url": "https://github.com/symfony/console.git",
+ "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/834c28d533dd0636f910909d01b9ff45cc094b5e",
- "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e",
+ "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
+ "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
"shasum": ""
},
"require": {
- "php": ">=8.2",
- "symfony/event-dispatcher-contracts": "^2.5|^3"
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/string": "^5.4|^6.0|^7.0"
},
"conflict": {
- "symfony/dependency-injection": "<6.4",
- "symfony/service-contracts": "<2.5"
+ "symfony/dependency-injection": "<5.4",
+ "symfony/dotenv": "<5.4",
+ "symfony/event-dispatcher": "<5.4",
+ "symfony/lock": "<5.4",
+ "symfony/process": "<5.4"
},
"provide": {
- "psr/event-dispatcher-implementation": "1.0",
- "symfony/event-dispatcher-implementation": "2.0|3.0"
+ "psr/log-implementation": "1.0|2.0|3.0"
},
"require-dev": {
"psr/log": "^1|^2|^3",
- "symfony/config": "^6.4|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/error-handler": "^6.4|^7.0",
- "symfony/expression-language": "^6.4|^7.0",
+ "symfony/config": "^5.4|^6.0|^7.0",
+ "symfony/dependency-injection": "^5.4|^6.0|^7.0",
+ "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
"symfony/http-foundation": "^6.4|^7.0",
- "symfony/service-contracts": "^2.5|^3",
- "symfony/stopwatch": "^6.4|^7.0"
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/lock": "^5.4|^6.0|^7.0",
+ "symfony/messenger": "^5.4|^6.0|^7.0",
+ "symfony/process": "^5.4|^6.0|^7.0",
+ "symfony/stopwatch": "^5.4|^6.0|^7.0",
+ "symfony/var-dumper": "^5.4|^6.0|^7.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\EventDispatcher\\": ""
+ "Symfony\\Component\\Console\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -3592,10 +4561,16 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
+ "description": "Eases the creation of beautiful and testable command line interfaces",
"homepage": "https://symfony.com",
+ "keywords": [
+ "cli",
+ "command-line",
+ "console",
+ "terminal"
+ ],
"support": {
- "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.3"
+ "source": "https://github.com/symfony/console/tree/v6.4.8"
},
"funding": [
{
@@ -3611,40 +4586,53 @@
"type": "tidelift"
}
],
- "time": "2024-01-23T15:02:46+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/event-dispatcher-contracts",
- "version": "v3.4.2",
+ "name": "symfony/dependency-injection",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/event-dispatcher-contracts.git",
- "reference": "4e64b49bf370ade88e567de29465762e316e4224"
+ "url": "https://github.com/symfony/dependency-injection.git",
+ "reference": "d3b618176e8c3a9e5772151c51eba0c52a0c771c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/4e64b49bf370ade88e567de29465762e316e4224",
- "reference": "4e64b49bf370ade88e567de29465762e316e4224",
+ "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d3b618176e8c3a9e5772151c51eba0c52a0c771c",
+ "reference": "d3b618176e8c3a9e5772151c51eba0c52a0c771c",
"shasum": ""
},
"require": {
"php": ">=8.1",
- "psr/event-dispatcher": "^1"
+ "psr/container": "^1.1|^2.0",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/service-contracts": "^2.5|^3.0",
+ "symfony/var-exporter": "^6.2.10|^7.0"
+ },
+ "conflict": {
+ "ext-psr": "<1.1|>=2",
+ "symfony/config": "<6.1",
+ "symfony/finder": "<5.4",
+ "symfony/proxy-manager-bridge": "<6.3",
+ "symfony/yaml": "<5.4"
+ },
+ "provide": {
+ "psr/container-implementation": "1.1|2.0",
+ "symfony/service-implementation": "1.1|2.0|3.0"
+ },
+ "require-dev": {
+ "symfony/config": "^6.1|^7.0",
+ "symfony/expression-language": "^5.4|^6.0|^7.0",
+ "symfony/yaml": "^5.4|^6.0|^7.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.4-dev"
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\DependencyInjection\\": ""
},
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
- }
- },
- "autoload": {
- "psr-4": {
- "Symfony\\Contracts\\EventDispatcher\\": ""
- }
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -3652,26 +4640,18 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Generic abstractions related to dispatching event",
+ "description": "Allows you to standardize and centralize the way objects are constructed in your application",
"homepage": "https://symfony.com",
- "keywords": [
- "abstractions",
- "contracts",
- "decoupling",
- "interfaces",
- "interoperability",
- "standards"
- ],
"support": {
- "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.2"
+ "source": "https://github.com/symfony/dependency-injection/tree/v6.4.8"
},
"funding": [
{
@@ -3687,60 +4667,38 @@
"type": "tidelift"
}
],
- "time": "2024-01-23T14:51:35+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/http-client",
- "version": "v7.0.6",
+ "name": "symfony/deprecation-contracts",
+ "version": "v3.5.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/http-client.git",
- "reference": "6e70473909f46fe5dd3b994a0f1b20ecb6b2f858"
+ "url": "https://github.com/symfony/deprecation-contracts.git",
+ "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-client/zipball/6e70473909f46fe5dd3b994a0f1b20ecb6b2f858",
- "reference": "6e70473909f46fe5dd3b994a0f1b20ecb6b2f858",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
+ "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
"shasum": ""
},
"require": {
- "php": ">=8.2",
- "psr/log": "^1|^2|^3",
- "symfony/http-client-contracts": "^3.4.1",
- "symfony/service-contracts": "^2.5|^3"
- },
- "conflict": {
- "php-http/discovery": "<1.15",
- "symfony/http-foundation": "<6.4"
- },
- "provide": {
- "php-http/async-client-implementation": "*",
- "php-http/client-implementation": "*",
- "psr/http-client-implementation": "1.0",
- "symfony/http-client-implementation": "3.0"
- },
- "require-dev": {
- "amphp/amp": "^2.5",
- "amphp/http-client": "^4.2.1",
- "amphp/http-tunnel": "^1.0",
- "amphp/socket": "^1.1",
- "guzzlehttp/promises": "^1.4|^2.0",
- "nyholm/psr7": "^1.0",
- "php-http/httplug": "^1.0|^2.0",
- "psr/http-client": "^1.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/messenger": "^6.4|^7.0",
- "symfony/process": "^6.4|^7.0",
- "symfony/stopwatch": "^6.4|^7.0"
+ "php": ">=8.1"
},
"type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\HttpClient\\": ""
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.5-dev"
},
- "exclude-from-classmap": [
- "/Tests/"
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "files": [
+ "function.php"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -3757,13 +4715,10 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
+ "description": "A generic function and convention to trigger deprecation notices",
"homepage": "https://symfony.com",
- "keywords": [
- "http"
- ],
"support": {
- "source": "https://github.com/symfony/http-client/tree/v7.0.6"
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
},
"funding": [
{
@@ -3779,41 +4734,79 @@
"type": "tidelift"
}
],
- "time": "2024-04-01T20:49:44+00:00"
+ "time": "2024-04-18T09:32:20+00:00"
},
{
- "name": "symfony/http-client-contracts",
- "version": "v3.4.2",
+ "name": "symfony/doctrine-bridge",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/http-client-contracts.git",
- "reference": "b6b5c876b3a4ed74460e2c5ac53bbce2f12e2a7e"
+ "url": "https://github.com/symfony/doctrine-bridge.git",
+ "reference": "afbf291ccaf595c8ff6f4ed3943aa0ea479e4d04"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/b6b5c876b3a4ed74460e2c5ac53bbce2f12e2a7e",
- "reference": "b6b5c876b3a4ed74460e2c5ac53bbce2f12e2a7e",
+ "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/afbf291ccaf595c8ff6f4ed3943aa0ea479e4d04",
+ "reference": "afbf291ccaf595c8ff6f4ed3943aa0ea479e4d04",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "doctrine/event-manager": "^1.2|^2",
+ "doctrine/persistence": "^3.1",
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/service-contracts": "^2.5|^3"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.4-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
- }
+ "conflict": {
+ "doctrine/dbal": "<2.13.1",
+ "doctrine/lexer": "<1.1",
+ "doctrine/orm": "<2.15",
+ "symfony/cache": "<5.4",
+ "symfony/dependency-injection": "<6.2",
+ "symfony/form": "<5.4.38|>=6,<6.4.6|>=7,<7.0.6",
+ "symfony/http-foundation": "<6.3",
+ "symfony/http-kernel": "<6.2",
+ "symfony/lock": "<6.3",
+ "symfony/messenger": "<5.4",
+ "symfony/property-info": "<5.4",
+ "symfony/security-bundle": "<5.4",
+ "symfony/security-core": "<6.4",
+ "symfony/validator": "<6.4"
+ },
+ "require-dev": {
+ "doctrine/collections": "^1.0|^2.0",
+ "doctrine/data-fixtures": "^1.1",
+ "doctrine/dbal": "^2.13.1|^3|^4",
+ "doctrine/orm": "^2.15|^3",
+ "psr/log": "^1|^2|^3",
+ "symfony/cache": "^5.4|^6.0|^7.0",
+ "symfony/config": "^5.4|^6.0|^7.0",
+ "symfony/dependency-injection": "^6.2|^7.0",
+ "symfony/doctrine-messenger": "^5.4|^6.0|^7.0",
+ "symfony/expression-language": "^5.4|^6.0|^7.0",
+ "symfony/form": "^5.4.38|^6.4.6|^7.0.6",
+ "symfony/http-kernel": "^6.3|^7.0",
+ "symfony/lock": "^6.3|^7.0",
+ "symfony/messenger": "^5.4|^6.0|^7.0",
+ "symfony/property-access": "^5.4|^6.0|^7.0",
+ "symfony/property-info": "^5.4|^6.0|^7.0",
+ "symfony/proxy-manager-bridge": "^6.4",
+ "symfony/security-core": "^6.4|^7.0",
+ "symfony/stopwatch": "^5.4|^6.0|^7.0",
+ "symfony/translation": "^5.4|^6.0|^7.0",
+ "symfony/uid": "^5.4|^6.0|^7.0",
+ "symfony/validator": "^6.4|^7.0",
+ "symfony/var-dumper": "^5.4|^6.0|^7.0"
},
+ "type": "symfony-bridge",
"autoload": {
"psr-4": {
- "Symfony\\Contracts\\HttpClient\\": ""
+ "Symfony\\Bridge\\Doctrine\\": ""
},
"exclude-from-classmap": [
- "/Test/"
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -3822,26 +4815,18 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Generic abstractions related to HTTP clients",
+ "description": "Provides integration for Doctrine with various Symfony components",
"homepage": "https://symfony.com",
- "keywords": [
- "abstractions",
- "contracts",
- "decoupling",
- "interfaces",
- "interoperability",
- "standards"
- ],
"support": {
- "source": "https://github.com/symfony/http-client-contracts/tree/v3.4.2"
+ "source": "https://github.com/symfony/doctrine-bridge/tree/v6.4.8"
},
"funding": [
{
@@ -3857,45 +4842,37 @@
"type": "tidelift"
}
],
- "time": "2024-04-01T18:51:09+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/http-foundation",
- "version": "v7.0.6",
+ "name": "symfony/dotenv",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/http-foundation.git",
- "reference": "8789625dcf36e5fbf753014678a1e090f1bc759c"
+ "url": "https://github.com/symfony/dotenv.git",
+ "reference": "55aefa0029adff89ecffdb560820e945c7983f06"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/8789625dcf36e5fbf753014678a1e090f1bc759c",
- "reference": "8789625dcf36e5fbf753014678a1e090f1bc759c",
+ "url": "https://api.github.com/repos/symfony/dotenv/zipball/55aefa0029adff89ecffdb560820e945c7983f06",
+ "reference": "55aefa0029adff89ecffdb560820e945c7983f06",
"shasum": ""
},
"require": {
- "php": ">=8.2",
- "symfony/polyfill-mbstring": "~1.1",
- "symfony/polyfill-php83": "^1.27"
+ "php": ">=8.1"
},
"conflict": {
- "doctrine/dbal": "<3.6",
- "symfony/cache": "<6.4"
+ "symfony/console": "<5.4",
+ "symfony/process": "<5.4"
},
"require-dev": {
- "doctrine/dbal": "^3.6|^4",
- "predis/predis": "^1.1|^2.0",
- "symfony/cache": "^6.4|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/expression-language": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/mime": "^6.4|^7.0",
- "symfony/rate-limiter": "^6.4|^7.0"
+ "symfony/console": "^5.4|^6.0|^7.0",
+ "symfony/process": "^5.4|^6.0|^7.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\HttpFoundation\\": ""
+ "Symfony\\Component\\Dotenv\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -3915,10 +4892,15 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Defines an object-oriented layer for the HTTP specification",
+ "description": "Registers environment variables from a .env file",
"homepage": "https://symfony.com",
+ "keywords": [
+ "dotenv",
+ "env",
+ "environment"
+ ],
"support": {
- "source": "https://github.com/symfony/http-foundation/tree/v7.0.6"
+ "source": "https://github.com/symfony/dotenv/tree/v6.4.8"
},
"funding": [
{
@@ -3934,33 +4916,43 @@
"type": "tidelift"
}
],
- "time": "2024-03-19T11:46:48+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/mailchimp-mailer",
- "version": "v6.4.3",
+ "name": "symfony/error-handler",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/mailchimp-mailer.git",
- "reference": "8fcbf792a553cdb6d246111a0826ba9ef75fafdf"
+ "url": "https://github.com/symfony/error-handler.git",
+ "reference": "ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mailchimp-mailer/zipball/8fcbf792a553cdb6d246111a0826ba9ef75fafdf",
- "reference": "8fcbf792a553cdb6d246111a0826ba9ef75fafdf",
+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc",
+ "reference": "ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc",
"shasum": ""
},
"require": {
"php": ">=8.1",
- "symfony/mailer": "^5.4.21|^6.2.7|^7.0"
+ "psr/log": "^1|^2|^3",
+ "symfony/var-dumper": "^5.4|^6.0|^7.0"
+ },
+ "conflict": {
+ "symfony/deprecation-contracts": "<2.5",
+ "symfony/http-kernel": "<6.4"
},
"require-dev": {
- "symfony/http-client": "^6.3|^7.0"
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/serializer": "^5.4|^6.0|^7.0"
},
- "type": "symfony-mailer-bridge",
+ "bin": [
+ "Resources/bin/patch-type-declarations"
+ ],
+ "type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\Mailer\\Bridge\\Mailchimp\\": ""
+ "Symfony\\Component\\ErrorHandler\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -3980,10 +4972,10 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Mailchimp Mailer Bridge",
+ "description": "Provides tools to manage errors and ease debugging PHP code",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/mailchimp-mailer/tree/v6.4.3"
+ "source": "https://github.com/symfony/error-handler/tree/v6.4.8"
},
"funding": [
{
@@ -3999,48 +4991,48 @@
"type": "tidelift"
}
],
- "time": "2024-01-23T14:51:35+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/mailer",
- "version": "v6.4.6",
+ "name": "symfony/event-dispatcher",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/mailer.git",
- "reference": "677f34a6f4b4559e08acf73ae0aec460479e5859"
+ "url": "https://github.com/symfony/event-dispatcher.git",
+ "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mailer/zipball/677f34a6f4b4559e08acf73ae0aec460479e5859",
- "reference": "677f34a6f4b4559e08acf73ae0aec460479e5859",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
+ "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
"shasum": ""
},
"require": {
- "egulias/email-validator": "^2.1.10|^3|^4",
"php": ">=8.1",
- "psr/event-dispatcher": "^1",
- "psr/log": "^1|^2|^3",
- "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
- "symfony/mime": "^6.2|^7.0",
- "symfony/service-contracts": "^2.5|^3"
+ "symfony/event-dispatcher-contracts": "^2.5|^3"
},
"conflict": {
- "symfony/http-client-contracts": "<2.5",
- "symfony/http-kernel": "<5.4",
- "symfony/messenger": "<6.2",
- "symfony/mime": "<6.2",
- "symfony/twig-bridge": "<6.2.1"
+ "symfony/dependency-injection": "<5.4",
+ "symfony/service-contracts": "<2.5"
+ },
+ "provide": {
+ "psr/event-dispatcher-implementation": "1.0",
+ "symfony/event-dispatcher-implementation": "2.0|3.0"
},
"require-dev": {
- "symfony/console": "^5.4|^6.0|^7.0",
- "symfony/http-client": "^5.4|^6.0|^7.0",
- "symfony/messenger": "^6.2|^7.0",
- "symfony/twig-bridge": "^6.2|^7.0"
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^5.4|^6.0|^7.0",
+ "symfony/dependency-injection": "^5.4|^6.0|^7.0",
+ "symfony/error-handler": "^5.4|^6.0|^7.0",
+ "symfony/expression-language": "^5.4|^6.0|^7.0",
+ "symfony/http-foundation": "^5.4|^6.0|^7.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/stopwatch": "^5.4|^6.0|^7.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\Mailer\\": ""
+ "Symfony\\Component\\EventDispatcher\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -4060,10 +5052,10 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Helps sending emails",
+ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/mailer/tree/v6.4.6"
+ "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
},
"funding": [
{
@@ -4079,41 +5071,40 @@
"type": "tidelift"
}
],
- "time": "2024-03-27T21:14:17+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/mailgun-mailer",
- "version": "v6.4.4",
+ "name": "symfony/event-dispatcher-contracts",
+ "version": "v3.5.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/mailgun-mailer.git",
- "reference": "8c018872b40ce050590b6d18cf741db0c8313435"
+ "url": "https://github.com/symfony/event-dispatcher-contracts.git",
+ "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/8c018872b40ce050590b6d18cf741db0c8313435",
- "reference": "8c018872b40ce050590b6d18cf741db0c8313435",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
+ "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
"shasum": ""
},
"require": {
"php": ">=8.1",
- "symfony/mailer": "^5.4.21|^6.2.7|^7.0"
- },
- "conflict": {
- "symfony/http-foundation": "<6.2"
+ "psr/event-dispatcher": "^1"
},
- "require-dev": {
- "symfony/http-client": "^6.3|^7.0",
- "symfony/webhook": "^6.3|^7.0"
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.5-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
},
- "type": "symfony-mailer-bridge",
"autoload": {
"psr-4": {
- "Symfony\\Component\\Mailer\\Bridge\\Mailgun\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Symfony\\Contracts\\EventDispatcher\\": ""
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4121,18 +5112,26 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Mailgun Mailer Bridge",
+ "description": "Generic abstractions related to dispatching event",
"homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
"support": {
- "source": "https://github.com/symfony/mailgun-mailer/tree/v6.4.4"
+ "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
},
"funding": [
{
@@ -4148,49 +5147,32 @@
"type": "tidelift"
}
],
- "time": "2024-02-14T06:31:46+00:00"
+ "time": "2024-04-18T09:32:20+00:00"
},
{
- "name": "symfony/mime",
- "version": "v6.4.6",
+ "name": "symfony/expression-language",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/mime.git",
- "reference": "14762b86918823cb42e3558cdcca62e58b5227fe"
+ "url": "https://github.com/symfony/expression-language.git",
+ "reference": "0b63cb437741a42104d3ccc9bf60bbd8e1acbd2a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mime/zipball/14762b86918823cb42e3558cdcca62e58b5227fe",
- "reference": "14762b86918823cb42e3558cdcca62e58b5227fe",
+ "url": "https://api.github.com/repos/symfony/expression-language/zipball/0b63cb437741a42104d3ccc9bf60bbd8e1acbd2a",
+ "reference": "0b63cb437741a42104d3ccc9bf60bbd8e1acbd2a",
"shasum": ""
},
"require": {
"php": ">=8.1",
+ "symfony/cache": "^5.4|^6.0|^7.0",
"symfony/deprecation-contracts": "^2.5|^3",
- "symfony/polyfill-intl-idn": "^1.10",
- "symfony/polyfill-mbstring": "^1.0"
- },
- "conflict": {
- "egulias/email-validator": "~3.0.0",
- "phpdocumentor/reflection-docblock": "<3.2.2",
- "phpdocumentor/type-resolver": "<1.4.0",
- "symfony/mailer": "<5.4",
- "symfony/serializer": "<6.3.2"
- },
- "require-dev": {
- "egulias/email-validator": "^2.1.10|^3.1|^4",
- "league/html-to-markdown": "^5.0",
- "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
- "symfony/dependency-injection": "^5.4|^6.0|^7.0",
- "symfony/process": "^5.4|^6.4|^7.0",
- "symfony/property-access": "^5.4|^6.0|^7.0",
- "symfony/property-info": "^5.4|^6.0|^7.0",
- "symfony/serializer": "^6.3.2|^7.0"
+ "symfony/service-contracts": "^2.5|^3"
},
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\Mime\\": ""
+ "Symfony\\Component\\ExpressionLanguage\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -4210,14 +5192,10 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Allows manipulating MIME messages",
+ "description": "Provides an engine that can compile and evaluate expressions",
"homepage": "https://symfony.com",
- "keywords": [
- "mime",
- "mime-type"
- ],
"support": {
- "source": "https://github.com/symfony/mime/tree/v6.4.6"
+ "source": "https://github.com/symfony/expression-language/tree/v6.4.8"
},
"funding": [
{
@@ -4233,45 +5211,38 @@
"type": "tidelift"
}
],
- "time": "2024-03-21T19:36:20+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/polyfill-ctype",
- "version": "v1.29.0",
+ "name": "symfony/filesystem",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-ctype.git",
- "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
+ "url": "https://github.com/symfony/filesystem.git",
+ "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
- "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
+ "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
"shasum": ""
},
"require": {
- "php": ">=7.1"
- },
- "provide": {
- "ext-ctype": "*"
+ "php": ">=8.1",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.8"
},
- "suggest": {
- "ext-ctype": "For best performance"
+ "require-dev": {
+ "symfony/process": "^5.4|^6.4|^7.0"
},
"type": "library",
- "extra": {
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Ctype\\": ""
- }
+ "Symfony\\Component\\Filesystem\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4279,24 +5250,18 @@
],
"authors": [
{
- "name": "Gert de Pagter",
- "email": "BackEndTea@gmail.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill for ctype functions",
+ "description": "Provides basic utilities for the filesystem",
"homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "ctype",
- "polyfill",
- "portable"
- ],
"support": {
- "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
+ "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
},
"funding": [
{
@@ -4312,42 +5277,36 @@
"type": "tidelift"
}
],
- "time": "2024-01-29T20:11:03+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/polyfill-intl-grapheme",
- "version": "v1.29.0",
+ "name": "symfony/finder",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
- "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
+ "url": "https://github.com/symfony/finder.git",
+ "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
- "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
+ "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.1"
},
- "suggest": {
- "ext-intl": "For best performance"
+ "require-dev": {
+ "symfony/filesystem": "^6.0|^7.0"
},
"type": "library",
- "extra": {
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
- }
+ "Symfony\\Component\\Finder\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4355,26 +5314,18 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill for intl's grapheme_* functions",
+ "description": "Finds files and directories via an intuitive fluent interface",
"homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "grapheme",
- "intl",
- "polyfill",
- "portable",
- "shim"
- ],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
+ "source": "https://github.com/symfony/finder/tree/v6.4.8"
},
"funding": [
{
@@ -4390,43 +5341,40 @@
"type": "tidelift"
}
],
- "time": "2024-01-29T20:11:03+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/polyfill-intl-idn",
- "version": "v1.29.0",
+ "name": "symfony/flex",
+ "version": "v2.4.5",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-intl-idn.git",
- "reference": "a287ed7475f85bf6f61890146edbc932c0fff919"
+ "url": "https://github.com/symfony/flex.git",
+ "reference": "b0a405f40614c9f584b489d54f91091817b0e26e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919",
- "reference": "a287ed7475f85bf6f61890146edbc932c0fff919",
+ "url": "https://api.github.com/repos/symfony/flex/zipball/b0a405f40614c9f584b489d54f91091817b0e26e",
+ "reference": "b0a405f40614c9f584b489d54f91091817b0e26e",
"shasum": ""
},
"require": {
- "php": ">=7.1",
- "symfony/polyfill-intl-normalizer": "^1.10",
- "symfony/polyfill-php72": "^1.10"
+ "composer-plugin-api": "^2.1",
+ "php": ">=8.0"
},
- "suggest": {
- "ext-intl": "For best performance"
+ "require-dev": {
+ "composer/composer": "^2.1",
+ "symfony/dotenv": "^5.4|^6.0",
+ "symfony/filesystem": "^5.4|^6.0",
+ "symfony/phpunit-bridge": "^5.4|^6.0",
+ "symfony/process": "^5.4|^6.0"
},
- "type": "library",
+ "type": "composer-plugin",
"extra": {
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
+ "class": "Symfony\\Flex\\Flex"
},
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Intl\\Idn\\": ""
+ "Symfony\\Flex\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4435,30 +5383,14 @@
],
"authors": [
{
- "name": "Laurent Bassin",
- "email": "laurent@bassin.info"
- },
- {
- "name": "Trevor Rowbotham",
- "email": "trevor.rowbotham@pm.me"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
+ "name": "Fabien Potencier",
+ "email": "fabien.potencier@gmail.com"
}
],
- "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "idn",
- "intl",
- "polyfill",
- "portable",
- "shim"
- ],
+ "description": "Composer plugin for Symfony",
"support": {
- "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0"
+ "issues": "https://github.com/symfony/flex/issues",
+ "source": "https://github.com/symfony/flex/tree/v2.4.5"
},
"funding": [
{
@@ -4474,44 +5406,119 @@
"type": "tidelift"
}
],
- "time": "2024-01-29T20:11:03+00:00"
+ "time": "2024-03-02T08:16:47+00:00"
},
{
- "name": "symfony/polyfill-intl-normalizer",
- "version": "v1.29.0",
+ "name": "symfony/framework-bundle",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
- "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
+ "url": "https://github.com/symfony/framework-bundle.git",
+ "reference": "7c7739f87f1a8be1c2f5e7d28addfe763a917acb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
- "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
+ "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/7c7739f87f1a8be1c2f5e7d28addfe763a917acb",
+ "reference": "7c7739f87f1a8be1c2f5e7d28addfe763a917acb",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "composer-runtime-api": ">=2.1",
+ "ext-xml": "*",
+ "php": ">=8.1",
+ "symfony/cache": "^5.4|^6.0|^7.0",
+ "symfony/config": "^6.1|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/error-handler": "^6.1|^7.0",
+ "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
+ "symfony/filesystem": "^5.4|^6.0|^7.0",
+ "symfony/finder": "^5.4|^6.0|^7.0",
+ "symfony/http-foundation": "^6.4|^7.0",
+ "symfony/http-kernel": "^6.4",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/routing": "^6.4|^7.0"
},
- "suggest": {
- "ext-intl": "For best performance"
+ "conflict": {
+ "doctrine/annotations": "<1.13.1",
+ "doctrine/persistence": "<1.3",
+ "phpdocumentor/reflection-docblock": "<3.2.2",
+ "phpdocumentor/type-resolver": "<1.4.0",
+ "symfony/asset": "<5.4",
+ "symfony/asset-mapper": "<6.4",
+ "symfony/clock": "<6.3",
+ "symfony/console": "<5.4|>=7.0",
+ "symfony/dom-crawler": "<6.4",
+ "symfony/dotenv": "<5.4",
+ "symfony/form": "<5.4",
+ "symfony/http-client": "<6.3",
+ "symfony/lock": "<5.4",
+ "symfony/mailer": "<5.4",
+ "symfony/messenger": "<6.3",
+ "symfony/mime": "<6.4",
+ "symfony/property-access": "<5.4",
+ "symfony/property-info": "<5.4",
+ "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
+ "symfony/security-core": "<5.4",
+ "symfony/security-csrf": "<5.4",
+ "symfony/serializer": "<6.4",
+ "symfony/stopwatch": "<5.4",
+ "symfony/translation": "<6.4",
+ "symfony/twig-bridge": "<5.4",
+ "symfony/twig-bundle": "<5.4",
+ "symfony/validator": "<6.4",
+ "symfony/web-profiler-bundle": "<6.4",
+ "symfony/workflow": "<6.4"
},
- "type": "library",
- "extra": {
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
+ "require-dev": {
+ "doctrine/annotations": "^1.13.1|^2",
+ "doctrine/persistence": "^1.3|^2|^3",
+ "dragonmantank/cron-expression": "^3.1",
+ "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
+ "seld/jsonlint": "^1.10",
+ "symfony/asset": "^5.4|^6.0|^7.0",
+ "symfony/asset-mapper": "^6.4|^7.0",
+ "symfony/browser-kit": "^5.4|^6.0|^7.0",
+ "symfony/clock": "^6.2|^7.0",
+ "symfony/console": "^5.4.9|^6.0.9|^7.0",
+ "symfony/css-selector": "^5.4|^6.0|^7.0",
+ "symfony/dom-crawler": "^6.4|^7.0",
+ "symfony/dotenv": "^5.4|^6.0|^7.0",
+ "symfony/expression-language": "^5.4|^6.0|^7.0",
+ "symfony/form": "^5.4|^6.0|^7.0",
+ "symfony/html-sanitizer": "^6.1|^7.0",
+ "symfony/http-client": "^6.3|^7.0",
+ "symfony/lock": "^5.4|^6.0|^7.0",
+ "symfony/mailer": "^5.4|^6.0|^7.0",
+ "symfony/messenger": "^6.3|^7.0",
+ "symfony/mime": "^6.4|^7.0",
+ "symfony/notifier": "^5.4|^6.0|^7.0",
+ "symfony/polyfill-intl-icu": "~1.0",
+ "symfony/process": "^5.4|^6.0|^7.0",
+ "symfony/property-info": "^5.4|^6.0|^7.0",
+ "symfony/rate-limiter": "^5.4|^6.0|^7.0",
+ "symfony/scheduler": "^6.4.4|^7.0.4",
+ "symfony/security-bundle": "^5.4|^6.0|^7.0",
+ "symfony/semaphore": "^5.4|^6.0|^7.0",
+ "symfony/serializer": "^6.4|^7.0",
+ "symfony/stopwatch": "^5.4|^6.0|^7.0",
+ "symfony/string": "^5.4|^6.0|^7.0",
+ "symfony/translation": "^6.4|^7.0",
+ "symfony/twig-bundle": "^5.4|^6.0|^7.0",
+ "symfony/uid": "^5.4|^6.0|^7.0",
+ "symfony/validator": "^6.4|^7.0",
+ "symfony/web-link": "^5.4|^6.0|^7.0",
+ "symfony/workflow": "^6.4|^7.0",
+ "symfony/yaml": "^5.4|^6.0|^7.0",
+ "twig/twig": "^2.10|^3.0.4"
},
+ "type": "symfony-bundle",
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
+ "Symfony\\Bundle\\FrameworkBundle\\": ""
},
- "classmap": [
- "Resources/stubs"
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -4520,26 +5527,18 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill for intl's Normalizer class and related functions",
+ "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
"homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "intl",
- "normalizer",
- "polyfill",
- "portable",
- "shim"
- ],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
+ "source": "https://github.com/symfony/framework-bundle/tree/v6.4.8"
},
"funding": [
{
@@ -4555,45 +5554,62 @@
"type": "tidelift"
}
],
- "time": "2024-01-29T20:11:03+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/polyfill-mbstring",
- "version": "v1.29.0",
+ "name": "symfony/http-client",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
+ "url": "https://github.com/symfony/http-client.git",
+ "reference": "61faba993e620fc22d4f0ab3b6bcf8fbb0d44b05"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
- "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
+ "url": "https://api.github.com/repos/symfony/http-client/zipball/61faba993e620fc22d4f0ab3b6bcf8fbb0d44b05",
+ "reference": "61faba993e620fc22d4f0ab3b6bcf8fbb0d44b05",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.1",
+ "psr/log": "^1|^2|^3",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/http-client-contracts": "^3.4.1",
+ "symfony/service-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "php-http/discovery": "<1.15",
+ "symfony/http-foundation": "<6.3"
},
"provide": {
- "ext-mbstring": "*"
+ "php-http/async-client-implementation": "*",
+ "php-http/client-implementation": "*",
+ "psr/http-client-implementation": "1.0",
+ "symfony/http-client-implementation": "3.0"
},
- "suggest": {
- "ext-mbstring": "For best performance"
+ "require-dev": {
+ "amphp/amp": "^2.5",
+ "amphp/http-client": "^4.2.1",
+ "amphp/http-tunnel": "^1.0",
+ "amphp/socket": "^1.1",
+ "guzzlehttp/promises": "^1.4|^2.0",
+ "nyholm/psr7": "^1.0",
+ "php-http/httplug": "^1.0|^2.0",
+ "psr/http-client": "^1.0",
+ "symfony/dependency-injection": "^5.4|^6.0|^7.0",
+ "symfony/http-kernel": "^5.4|^6.0|^7.0",
+ "symfony/messenger": "^5.4|^6.0|^7.0",
+ "symfony/process": "^5.4|^6.0|^7.0",
+ "symfony/stopwatch": "^5.4|^6.0|^7.0"
},
"type": "library",
- "extra": {
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
- },
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Mbstring\\": ""
- }
+ "Symfony\\Component\\HttpClient\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4609,17 +5625,13 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill for the Mbstring extension",
+ "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
"homepage": "https://symfony.com",
"keywords": [
- "compatibility",
- "mbstring",
- "polyfill",
- "portable",
- "shim"
+ "http"
],
"support": {
- "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
+ "source": "https://github.com/symfony/http-client/tree/v6.4.8"
},
"funding": [
{
@@ -4635,39 +5647,42 @@
"type": "tidelift"
}
],
- "time": "2024-01-29T20:11:03+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/polyfill-php72",
- "version": "v1.29.0",
+ "name": "symfony/http-client-contracts",
+ "version": "v3.5.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php72.git",
- "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
+ "url": "https://github.com/symfony/http-client-contracts.git",
+ "reference": "20414d96f391677bf80078aa55baece78b82647d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
- "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
+ "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
+ "reference": "20414d96f391677bf80078aa55baece78b82647d",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.1"
},
"type": "library",
"extra": {
+ "branch-alias": {
+ "dev-main": "3.5-dev"
+ },
"thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
}
},
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Php72\\": ""
- }
+ "Symfony\\Contracts\\HttpClient\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Test/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -4683,16 +5698,18 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
+ "description": "Generic abstractions related to HTTP clients",
"homepage": "https://symfony.com",
"keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
+ "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
},
"funding": [
{
@@ -4708,41 +5725,48 @@
"type": "tidelift"
}
],
- "time": "2024-01-29T20:11:03+00:00"
+ "time": "2024-04-18T09:32:20+00:00"
},
{
- "name": "symfony/polyfill-php80",
- "version": "v1.29.0",
+ "name": "symfony/http-foundation",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php80.git",
- "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
+ "url": "https://github.com/symfony/http-foundation.git",
+ "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
- "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
+ "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/polyfill-mbstring": "~1.1",
+ "symfony/polyfill-php83": "^1.27"
},
- "type": "library",
- "extra": {
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
+ "conflict": {
+ "symfony/cache": "<6.3"
+ },
+ "require-dev": {
+ "doctrine/dbal": "^2.13.1|^3|^4",
+ "predis/predis": "^1.1|^2.0",
+ "symfony/cache": "^6.3|^7.0",
+ "symfony/dependency-injection": "^5.4|^6.0|^7.0",
+ "symfony/expression-language": "^5.4|^6.0|^7.0",
+ "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
+ "symfony/mime": "^5.4|^6.0|^7.0",
+ "symfony/rate-limiter": "^5.4|^6.0|^7.0"
},
+ "type": "library",
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Php80\\": ""
+ "Symfony\\Component\\HttpFoundation\\": ""
},
- "classmap": [
- "Resources/stubs"
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -4751,28 +5775,18 @@
],
"authors": [
{
- "name": "Ion Bazan",
- "email": "ion.bazan@gmail.com"
- },
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
+ "description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
"support": {
- "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
+ "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
},
"funding": [
{
@@ -4788,42 +5802,85 @@
"type": "tidelift"
}
],
- "time": "2024-01-29T20:11:03+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/polyfill-php83",
- "version": "v1.29.0",
+ "name": "symfony/http-kernel",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php83.git",
- "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
+ "url": "https://github.com/symfony/http-kernel.git",
+ "reference": "6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
- "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1",
+ "reference": "6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1",
"shasum": ""
},
"require": {
- "php": ">=7.1",
- "symfony/polyfill-php80": "^1.14"
+ "php": ">=8.1",
+ "psr/log": "^1|^2|^3",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/error-handler": "^6.4|^7.0",
+ "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
+ "symfony/http-foundation": "^6.4|^7.0",
+ "symfony/polyfill-ctype": "^1.8"
},
- "type": "library",
- "extra": {
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
- }
+ "conflict": {
+ "symfony/browser-kit": "<5.4",
+ "symfony/cache": "<5.4",
+ "symfony/config": "<6.1",
+ "symfony/console": "<5.4",
+ "symfony/dependency-injection": "<6.4",
+ "symfony/doctrine-bridge": "<5.4",
+ "symfony/form": "<5.4",
+ "symfony/http-client": "<5.4",
+ "symfony/http-client-contracts": "<2.5",
+ "symfony/mailer": "<5.4",
+ "symfony/messenger": "<5.4",
+ "symfony/translation": "<5.4",
+ "symfony/translation-contracts": "<2.5",
+ "symfony/twig-bridge": "<5.4",
+ "symfony/validator": "<6.4",
+ "symfony/var-dumper": "<6.3",
+ "twig/twig": "<2.13"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0|2.0|3.0"
+ },
+ "require-dev": {
+ "psr/cache": "^1.0|^2.0|^3.0",
+ "symfony/browser-kit": "^5.4|^6.0|^7.0",
+ "symfony/clock": "^6.2|^7.0",
+ "symfony/config": "^6.1|^7.0",
+ "symfony/console": "^5.4|^6.0|^7.0",
+ "symfony/css-selector": "^5.4|^6.0|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/dom-crawler": "^5.4|^6.0|^7.0",
+ "symfony/expression-language": "^5.4|^6.0|^7.0",
+ "symfony/finder": "^5.4|^6.0|^7.0",
+ "symfony/http-client-contracts": "^2.5|^3",
+ "symfony/process": "^5.4|^6.0|^7.0",
+ "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
+ "symfony/routing": "^5.4|^6.0|^7.0",
+ "symfony/serializer": "^6.4.4|^7.0.4",
+ "symfony/stopwatch": "^5.4|^6.0|^7.0",
+ "symfony/translation": "^5.4|^6.0|^7.0",
+ "symfony/translation-contracts": "^2.5|^3",
+ "symfony/uid": "^5.4|^6.0|^7.0",
+ "symfony/validator": "^6.4|^7.0",
+ "symfony/var-dumper": "^5.4|^6.4|^7.0",
+ "symfony/var-exporter": "^6.2|^7.0",
+ "twig/twig": "^2.13|^3.0.4"
},
+ "type": "library",
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
- "Symfony\\Polyfill\\Php83\\": ""
+ "Symfony\\Component\\HttpKernel\\": ""
},
- "classmap": [
- "Resources/stubs"
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -4832,24 +5889,18 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
+ "description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
"support": {
- "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
+ "source": "https://github.com/symfony/http-kernel/tree/v6.4.8"
},
"funding": [
{
@@ -4865,33 +5916,33 @@
"type": "tidelift"
}
],
- "time": "2024-01-29T20:11:03+00:00"
+ "time": "2024-06-02T16:06:25+00:00"
},
{
- "name": "symfony/property-access",
- "version": "v7.0.7",
+ "name": "symfony/mailchimp-mailer",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/property-access.git",
- "reference": "8661b861480d2807eb2789ff99d034c0c71ab955"
+ "url": "https://github.com/symfony/mailchimp-mailer.git",
+ "reference": "1e8e353bfa6ca7ce3f8a700b9ba5112094f65b89"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/property-access/zipball/8661b861480d2807eb2789ff99d034c0c71ab955",
- "reference": "8661b861480d2807eb2789ff99d034c0c71ab955",
+ "url": "https://api.github.com/repos/symfony/mailchimp-mailer/zipball/1e8e353bfa6ca7ce3f8a700b9ba5112094f65b89",
+ "reference": "1e8e353bfa6ca7ce3f8a700b9ba5112094f65b89",
"shasum": ""
},
"require": {
- "php": ">=8.2",
- "symfony/property-info": "^6.4|^7.0"
+ "php": ">=8.1",
+ "symfony/mailer": "^5.4.21|^6.2.7|^7.0"
},
"require-dev": {
- "symfony/cache": "^6.4|^7.0"
+ "symfony/http-client": "^6.3|^7.0"
},
- "type": "library",
+ "type": "symfony-mailer-bridge",
"autoload": {
"psr-4": {
- "Symfony\\Component\\PropertyAccess\\": ""
+ "Symfony\\Component\\Mailer\\Bridge\\Mailchimp\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -4911,21 +5962,10 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides functions to read and write from/to an object or array using a simple string notation",
+ "description": "Symfony Mailchimp Mailer Bridge",
"homepage": "https://symfony.com",
- "keywords": [
- "access",
- "array",
- "extraction",
- "index",
- "injection",
- "object",
- "property",
- "property-path",
- "reflection"
- ],
"support": {
- "source": "https://github.com/symfony/property-access/tree/v7.0.7"
+ "source": "https://github.com/symfony/mailchimp-mailer/tree/v6.4.8"
},
"funding": [
{
@@ -4941,43 +5981,48 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T09:29:19+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/property-info",
- "version": "v7.0.7",
+ "name": "symfony/mailer",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/property-info.git",
- "reference": "f0bdb46e19ab308527b324b7ec36161f6880a532"
+ "url": "https://github.com/symfony/mailer.git",
+ "reference": "76326421d44c07f7824b19487cfbf87870b37efc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/property-info/zipball/f0bdb46e19ab308527b324b7ec36161f6880a532",
- "reference": "f0bdb46e19ab308527b324b7ec36161f6880a532",
+ "url": "https://api.github.com/repos/symfony/mailer/zipball/76326421d44c07f7824b19487cfbf87870b37efc",
+ "reference": "76326421d44c07f7824b19487cfbf87870b37efc",
"shasum": ""
},
"require": {
- "php": ">=8.2",
- "symfony/string": "^6.4|^7.0"
+ "egulias/email-validator": "^2.1.10|^3|^4",
+ "php": ">=8.1",
+ "psr/event-dispatcher": "^1",
+ "psr/log": "^1|^2|^3",
+ "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
+ "symfony/mime": "^6.2|^7.0",
+ "symfony/service-contracts": "^2.5|^3"
},
"conflict": {
- "phpdocumentor/reflection-docblock": "<5.2",
- "phpdocumentor/type-resolver": "<1.5.1",
- "symfony/dependency-injection": "<6.4",
- "symfony/serializer": "<6.4"
+ "symfony/http-client-contracts": "<2.5",
+ "symfony/http-kernel": "<5.4",
+ "symfony/messenger": "<6.2",
+ "symfony/mime": "<6.2",
+ "symfony/twig-bridge": "<6.2.1"
},
"require-dev": {
- "phpdocumentor/reflection-docblock": "^5.2",
- "phpstan/phpdoc-parser": "^1.0",
- "symfony/cache": "^6.4|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/serializer": "^6.4|^7.0"
+ "symfony/console": "^5.4|^6.0|^7.0",
+ "symfony/http-client": "^5.4|^6.0|^7.0",
+ "symfony/messenger": "^6.2|^7.0",
+ "symfony/twig-bridge": "^6.2|^7.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\PropertyInfo\\": ""
+ "Symfony\\Component\\Mailer\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -4989,26 +6034,18 @@
],
"authors": [
{
- "name": "Kévin Dunglas",
- "email": "dunglas@gmail.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Extracts information about PHP class' properties using metadata of popular sources",
+ "description": "Helps sending emails",
"homepage": "https://symfony.com",
- "keywords": [
- "doctrine",
- "phpdoc",
- "property",
- "symfony",
- "type",
- "validator"
- ],
"support": {
- "source": "https://github.com/symfony/property-info/tree/v7.0.7"
+ "source": "https://github.com/symfony/mailer/tree/v6.4.8"
},
"funding": [
{
@@ -5024,43 +6061,37 @@
"type": "tidelift"
}
],
- "time": "2024-04-28T11:44:19+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/routing",
- "version": "v7.0.6",
+ "name": "symfony/mailgun-mailer",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/routing.git",
- "reference": "cded64e5bbf9f31786f1055fcc76718fdd77519c"
+ "url": "https://github.com/symfony/mailgun-mailer.git",
+ "reference": "748e534d760f9a9318319cbd2adec7c05055ee3c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/routing/zipball/cded64e5bbf9f31786f1055fcc76718fdd77519c",
- "reference": "cded64e5bbf9f31786f1055fcc76718fdd77519c",
+ "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/748e534d760f9a9318319cbd2adec7c05055ee3c",
+ "reference": "748e534d760f9a9318319cbd2adec7c05055ee3c",
"shasum": ""
},
"require": {
- "php": ">=8.2",
- "symfony/deprecation-contracts": "^2.5|^3"
+ "php": ">=8.1",
+ "symfony/mailer": "^5.4.21|^6.2.7|^7.0"
},
"conflict": {
- "symfony/config": "<6.4",
- "symfony/dependency-injection": "<6.4",
- "symfony/yaml": "<6.4"
+ "symfony/http-foundation": "<6.2"
},
"require-dev": {
- "psr/log": "^1|^2|^3",
- "symfony/config": "^6.4|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/expression-language": "^6.4|^7.0",
- "symfony/http-foundation": "^6.4|^7.0",
- "symfony/yaml": "^6.4|^7.0"
+ "symfony/http-client": "^6.3|^7.0",
+ "symfony/webhook": "^6.3|^7.0"
},
- "type": "library",
+ "type": "symfony-mailer-bridge",
"autoload": {
"psr-4": {
- "Symfony\\Component\\Routing\\": ""
+ "Symfony\\Component\\Mailer\\Bridge\\Mailgun\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -5080,16 +6111,10 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Maps an HTTP request to a set of configuration variables",
+ "description": "Symfony Mailgun Mailer Bridge",
"homepage": "https://symfony.com",
- "keywords": [
- "router",
- "routing",
- "uri",
- "url"
- ],
"support": {
- "source": "https://github.com/symfony/routing/tree/v7.0.6"
+ "source": "https://github.com/symfony/mailgun-mailer/tree/v6.4.8"
},
"funding": [
{
@@ -5105,42 +6130,55 @@
"type": "tidelift"
}
],
- "time": "2024-03-28T21:02:11+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/sendgrid-mailer",
- "version": "v6.4.3",
+ "name": "symfony/mercure",
+ "version": "v0.6.5",
"source": {
"type": "git",
- "url": "https://github.com/symfony/sendgrid-mailer.git",
- "reference": "910a1c8f8a44111b69de1e2539a2243a91eaf9be"
+ "url": "https://github.com/symfony/mercure.git",
+ "reference": "304cf84609ef645d63adc65fc6250292909a461b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/sendgrid-mailer/zipball/910a1c8f8a44111b69de1e2539a2243a91eaf9be",
- "reference": "910a1c8f8a44111b69de1e2539a2243a91eaf9be",
+ "url": "https://api.github.com/repos/symfony/mercure/zipball/304cf84609ef645d63adc65fc6250292909a461b",
+ "reference": "304cf84609ef645d63adc65fc6250292909a461b",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "symfony/mailer": "^5.4.21|^6.2.7|^7.0"
- },
- "conflict": {
- "symfony/http-foundation": "<6.2",
- "symfony/mime": "<6.2"
+ "php": ">=7.1.3",
+ "symfony/deprecation-contracts": "^2.0|^3.0|^4.0",
+ "symfony/http-client": "^4.4|^5.0|^6.0|^7.0",
+ "symfony/http-foundation": "^4.4|^5.0|^6.0|^7.0",
+ "symfony/polyfill-php80": "^1.22",
+ "symfony/web-link": "^4.4|^5.0|^6.0|^7.0"
},
"require-dev": {
- "symfony/http-client": "^5.4|^6.0|^7.0",
- "symfony/webhook": "^6.3|^7.0"
+ "lcobucci/jwt": "^3.4|^4.0|^5.0",
+ "symfony/event-dispatcher": "^4.4|^5.0|^6.0|^7.0",
+ "symfony/http-kernel": "^4.4|^5.0|^6.0|^7.0",
+ "symfony/phpunit-bridge": "^5.2|^6.0|^7.0",
+ "symfony/stopwatch": "^4.4|^5.0|^6.0|^7.0",
+ "twig/twig": "^2.0|^3.0|^4.0"
+ },
+ "suggest": {
+ "symfony/stopwatch": "Integration with the profiler performances"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "0.6.x-dev"
+ },
+ "thanks": {
+ "name": "dunglas/mercure",
+ "url": "https://github.com/dunglas/mercure"
+ }
},
- "type": "symfony-mailer-bridge",
"autoload": {
"psr-4": {
- "Symfony\\Component\\Mailer\\Bridge\\Sendgrid\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Symfony\\Component\\Mercure\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5148,94 +6186,80 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Kévin Dunglas",
+ "email": "dunglas@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Sendgrid Mailer Bridge",
+ "description": "Symfony Mercure Component",
"homepage": "https://symfony.com",
+ "keywords": [
+ "mercure",
+ "push",
+ "sse",
+ "updates"
+ ],
"support": {
- "source": "https://github.com/symfony/sendgrid-mailer/tree/v6.4.3"
+ "issues": "https://github.com/symfony/mercure/issues",
+ "source": "https://github.com/symfony/mercure/tree/v0.6.5"
},
"funding": [
{
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
+ "url": "https://github.com/dunglas",
"type": "github"
},
{
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "url": "https://tidelift.com/funding/github/packagist/symfony/mercure",
"type": "tidelift"
}
],
- "time": "2024-01-23T14:51:35+00:00"
+ "time": "2024-04-08T12:51:34+00:00"
},
{
- "name": "symfony/serializer",
- "version": "v7.0.7",
+ "name": "symfony/mercure-bundle",
+ "version": "v0.3.9",
"source": {
"type": "git",
- "url": "https://github.com/symfony/serializer.git",
- "reference": "08f0c517acf4b12dfc0d3963cd12f7b8023aea31"
+ "url": "https://github.com/symfony/mercure-bundle.git",
+ "reference": "77435d740b228e9f5f3f065b6db564f85f2cdb64"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/serializer/zipball/08f0c517acf4b12dfc0d3963cd12f7b8023aea31",
- "reference": "08f0c517acf4b12dfc0d3963cd12f7b8023aea31",
+ "url": "https://api.github.com/repos/symfony/mercure-bundle/zipball/77435d740b228e9f5f3f065b6db564f85f2cdb64",
+ "reference": "77435d740b228e9f5f3f065b6db564f85f2cdb64",
"shasum": ""
},
"require": {
- "php": ">=8.2",
- "symfony/polyfill-ctype": "~1.8"
- },
- "conflict": {
- "phpdocumentor/reflection-docblock": "<3.2.2",
- "phpdocumentor/type-resolver": "<1.4.0",
- "symfony/dependency-injection": "<6.4",
- "symfony/property-access": "<6.4",
- "symfony/property-info": "<6.4",
- "symfony/uid": "<6.4",
- "symfony/validator": "<6.4",
- "symfony/yaml": "<6.4"
+ "lcobucci/jwt": "^3.4|^4.0|^5.0",
+ "php": ">=7.1.3",
+ "symfony/config": "^4.4|^5.0|^6.0|^7.0",
+ "symfony/dependency-injection": "^4.4|^5.4|^6.0|^7.0",
+ "symfony/http-kernel": "^4.4|^5.0|^6.0|^7.0",
+ "symfony/mercure": "^0.6.1",
+ "symfony/web-link": "^4.4|^5.0|^6.0|^7.0"
},
"require-dev": {
- "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
- "seld/jsonlint": "^1.10",
- "symfony/cache": "^6.4|^7.0",
- "symfony/config": "^6.4|^7.0",
- "symfony/console": "^6.4|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/error-handler": "^6.4|^7.0",
- "symfony/filesystem": "^6.4|^7.0",
- "symfony/form": "^6.4|^7.0",
- "symfony/http-foundation": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/messenger": "^6.4|^7.0",
- "symfony/mime": "^6.4|^7.0",
- "symfony/property-access": "^6.4|^7.0",
- "symfony/property-info": "^6.4|^7.0",
- "symfony/translation-contracts": "^2.5|^3",
- "symfony/uid": "^6.4|^7.0",
- "symfony/validator": "^6.4|^7.0",
- "symfony/var-dumper": "^6.4|^7.0",
- "symfony/var-exporter": "^6.4|^7.0",
- "symfony/yaml": "^6.4|^7.0"
+ "symfony/phpunit-bridge": "^4.3.7|^5.0|^6.0|^7.0",
+ "symfony/stopwatch": "^4.3.7|^5.0|^6.0|^7.0",
+ "symfony/ux-turbo": "*",
+ "symfony/var-dumper": "^4.3.7|^5.0|^6.0|^7.0"
+ },
+ "suggest": {
+ "symfony/messenger": "To use the Messenger integration"
+ },
+ "type": "symfony-bundle",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "0.3.x-dev"
+ }
},
- "type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\Serializer\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Symfony\\Bundle\\MercureBundle\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5243,72 +6267,82 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Kévin Dunglas",
+ "email": "dunglas@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
+ "description": "Symfony MercureBundle",
"homepage": "https://symfony.com",
+ "keywords": [
+ "mercure",
+ "push",
+ "sse",
+ "updates"
+ ],
"support": {
- "source": "https://github.com/symfony/serializer/tree/v7.0.7"
+ "issues": "https://github.com/symfony/mercure-bundle/issues",
+ "source": "https://github.com/symfony/mercure-bundle/tree/v0.3.9"
},
"funding": [
{
- "url": "https://symfony.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
+ "url": "https://github.com/dunglas",
"type": "github"
},
{
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "url": "https://tidelift.com/funding/github/packagist/symfony/mercure-bundle",
"type": "tidelift"
}
],
- "time": "2024-04-28T11:44:19+00:00"
+ "time": "2024-05-31T09:07:18+00:00"
},
{
- "name": "symfony/service-contracts",
- "version": "v3.4.2",
+ "name": "symfony/mime",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/service-contracts.git",
- "reference": "11bbf19a0fb7b36345861e85c5768844c552906e"
+ "url": "https://github.com/symfony/mime.git",
+ "reference": "618597ab8b78ac86d1c75a9d0b35540cda074f33"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/11bbf19a0fb7b36345861e85c5768844c552906e",
- "reference": "11bbf19a0fb7b36345861e85c5768844c552906e",
+ "url": "https://api.github.com/repos/symfony/mime/zipball/618597ab8b78ac86d1c75a9d0b35540cda074f33",
+ "reference": "618597ab8b78ac86d1c75a9d0b35540cda074f33",
"shasum": ""
},
"require": {
"php": ">=8.1",
- "psr/container": "^1.1|^2.0"
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/polyfill-intl-idn": "^1.10",
+ "symfony/polyfill-mbstring": "^1.0"
},
"conflict": {
- "ext-psr": "<1.1|>=2"
+ "egulias/email-validator": "~3.0.0",
+ "phpdocumentor/reflection-docblock": "<3.2.2",
+ "phpdocumentor/type-resolver": "<1.4.0",
+ "symfony/mailer": "<5.4",
+ "symfony/serializer": "<6.3.2"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.4-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
- }
+ "require-dev": {
+ "egulias/email-validator": "^2.1.10|^3.1|^4",
+ "league/html-to-markdown": "^5.0",
+ "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
+ "symfony/dependency-injection": "^5.4|^6.0|^7.0",
+ "symfony/process": "^5.4|^6.4|^7.0",
+ "symfony/property-access": "^5.4|^6.0|^7.0",
+ "symfony/property-info": "^5.4|^6.0|^7.0",
+ "symfony/serializer": "^6.3.2|^7.0"
},
+ "type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Contracts\\Service\\": ""
+ "Symfony\\Component\\Mime\\": ""
},
"exclude-from-classmap": [
- "/Test/"
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -5317,26 +6351,22 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Generic abstractions related to writing services",
+ "description": "Allows manipulating MIME messages",
"homepage": "https://symfony.com",
"keywords": [
- "abstractions",
- "contracts",
- "decoupling",
- "interfaces",
- "interoperability",
- "standards"
+ "mime",
+ "mime-type"
],
"support": {
- "source": "https://github.com/symfony/service-contracts/tree/v3.4.2"
+ "source": "https://github.com/symfony/mime/tree/v6.4.8"
},
"funding": [
{
@@ -5352,46 +6382,47 @@
"type": "tidelift"
}
],
- "time": "2023-12-19T21:51:00+00:00"
+ "time": "2024-06-01T07:50:16+00:00"
},
{
- "name": "symfony/string",
- "version": "v7.0.4",
+ "name": "symfony/monolog-bridge",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/string.git",
- "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b"
+ "url": "https://github.com/symfony/monolog-bridge.git",
+ "reference": "0fbee64913b1c595e7650a1919ba3edba8d49ea7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/string/zipball/f5832521b998b0bec40bee688ad5de98d4cf111b",
- "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b",
+ "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/0fbee64913b1c595e7650a1919ba3edba8d49ea7",
+ "reference": "0fbee64913b1c595e7650a1919ba3edba8d49ea7",
"shasum": ""
},
"require": {
- "php": ">=8.2",
- "symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-intl-grapheme": "~1.0",
- "symfony/polyfill-intl-normalizer": "~1.0",
- "symfony/polyfill-mbstring": "~1.0"
+ "monolog/monolog": "^1.25.1|^2|^3",
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/http-kernel": "^5.4|^6.0|^7.0",
+ "symfony/service-contracts": "^2.5|^3"
},
"conflict": {
- "symfony/translation-contracts": "<2.5"
+ "symfony/console": "<5.4",
+ "symfony/http-foundation": "<5.4",
+ "symfony/security-core": "<5.4"
},
"require-dev": {
- "symfony/error-handler": "^6.4|^7.0",
- "symfony/http-client": "^6.4|^7.0",
- "symfony/intl": "^6.4|^7.0",
- "symfony/translation-contracts": "^2.5|^3.0",
- "symfony/var-exporter": "^6.4|^7.0"
+ "symfony/console": "^5.4|^6.0|^7.0",
+ "symfony/http-client": "^5.4|^6.0|^7.0",
+ "symfony/mailer": "^5.4|^6.0|^7.0",
+ "symfony/messenger": "^5.4|^6.0|^7.0",
+ "symfony/mime": "^5.4|^6.0|^7.0",
+ "symfony/security-core": "^5.4|^6.0|^7.0",
+ "symfony/var-dumper": "^5.4|^6.0|^7.0"
},
- "type": "library",
+ "type": "symfony-bridge",
"autoload": {
- "files": [
- "Resources/functions.php"
- ],
"psr-4": {
- "Symfony\\Component\\String\\": ""
+ "Symfony\\Bridge\\Monolog\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -5403,26 +6434,18 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
+ "description": "Provides integration for Monolog with various Symfony components",
"homepage": "https://symfony.com",
- "keywords": [
- "grapheme",
- "i18n",
- "string",
- "unicode",
- "utf-8",
- "utf8"
- ],
"support": {
- "source": "https://github.com/symfony/string/tree/v7.0.4"
+ "source": "https://github.com/symfony/monolog-bridge/tree/v6.4.8"
},
"funding": [
{
@@ -5438,41 +6461,47 @@
"type": "tidelift"
}
],
- "time": "2024-02-01T13:17:36+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/translation-contracts",
- "version": "v3.5.0",
+ "name": "symfony/monolog-bundle",
+ "version": "v3.10.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/translation-contracts.git",
- "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
+ "url": "https://github.com/symfony/monolog-bundle.git",
+ "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
- "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
+ "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
+ "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
+ "php": ">=7.2.5",
+ "symfony/config": "^5.4 || ^6.0 || ^7.0",
+ "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
+ "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
+ "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
},
- "type": "library",
+ "require-dev": {
+ "symfony/console": "^5.4 || ^6.0 || ^7.0",
+ "symfony/phpunit-bridge": "^6.3 || ^7.0",
+ "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
+ },
+ "type": "symfony-bundle",
"extra": {
"branch-alias": {
- "dev-main": "3.5-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
+ "dev-master": "3.x-dev"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Contracts\\Translation\\": ""
+ "Symfony\\Bundle\\MonologBundle\\": ""
},
"exclude-from-classmap": [
- "/Test/"
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -5481,26 +6510,23 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Generic abstractions related to translation",
+ "description": "Symfony MonologBundle",
"homepage": "https://symfony.com",
"keywords": [
- "abstractions",
- "contracts",
- "decoupling",
- "interfaces",
- "interoperability",
- "standards"
+ "log",
+ "logging"
],
"support": {
- "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
+ "issues": "https://github.com/symfony/monolog-bundle/issues",
+ "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
},
"funding": [
{
@@ -5516,62 +6542,36 @@
"type": "tidelift"
}
],
- "time": "2024-04-18T09:32:20+00:00"
+ "time": "2023-11-06T17:08:13+00:00"
},
{
- "name": "symfony/validator",
- "version": "v7.0.7",
+ "name": "symfony/password-hasher",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/validator.git",
- "reference": "ab4e75b9d23ba70e78480aecbe4d8da15adf10eb"
+ "url": "https://github.com/symfony/password-hasher.git",
+ "reference": "90ebbe946e5d64a5fad9ac9427e335045cf2bd31"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/validator/zipball/ab4e75b9d23ba70e78480aecbe4d8da15adf10eb",
- "reference": "ab4e75b9d23ba70e78480aecbe4d8da15adf10eb",
+ "url": "https://api.github.com/repos/symfony/password-hasher/zipball/90ebbe946e5d64a5fad9ac9427e335045cf2bd31",
+ "reference": "90ebbe946e5d64a5fad9ac9427e335045cf2bd31",
"shasum": ""
},
"require": {
- "php": ">=8.2",
- "symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/polyfill-php83": "^1.27",
- "symfony/translation-contracts": "^2.5|^3"
+ "php": ">=8.1"
},
"conflict": {
- "doctrine/lexer": "<1.1",
- "symfony/dependency-injection": "<6.4",
- "symfony/doctrine-bridge": "<7.0",
- "symfony/expression-language": "<6.4",
- "symfony/http-kernel": "<6.4",
- "symfony/intl": "<6.4",
- "symfony/property-info": "<6.4",
- "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
- "symfony/yaml": "<6.4"
+ "symfony/security-core": "<5.4"
},
"require-dev": {
- "egulias/email-validator": "^2.1.10|^3|^4",
- "symfony/cache": "^6.4|^7.0",
- "symfony/config": "^6.4|^7.0",
- "symfony/console": "^6.4|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/expression-language": "^6.4|^7.0",
- "symfony/finder": "^6.4|^7.0",
- "symfony/http-client": "^6.4|^7.0",
- "symfony/http-foundation": "^6.4|^7.0",
- "symfony/http-kernel": "^6.4|^7.0",
- "symfony/intl": "^6.4|^7.0",
- "symfony/mime": "^6.4|^7.0",
- "symfony/property-access": "^6.4|^7.0",
- "symfony/property-info": "^6.4|^7.0",
- "symfony/translation": "^6.4.3|^7.0.3",
- "symfony/yaml": "^6.4|^7.0"
+ "symfony/console": "^5.4|^6.0|^7.0",
+ "symfony/security-core": "^5.4|^6.0|^7.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\Validator\\": ""
+ "Symfony\\Component\\PasswordHasher\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -5583,18 +6583,22 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Robin Chalas",
+ "email": "robin.chalas@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides tools to validate values",
+ "description": "Provides password hashing utilities",
"homepage": "https://symfony.com",
+ "keywords": [
+ "hashing",
+ "password"
+ ],
"support": {
- "source": "https://github.com/symfony/validator/tree/v7.0.7"
+ "source": "https://github.com/symfony/password-hasher/tree/v6.4.8"
},
"funding": [
{
@@ -5610,53 +6614,44 @@
"type": "tidelift"
}
],
- "time": "2024-04-28T11:44:19+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/var-dumper",
- "version": "v6.4.6",
+ "name": "symfony/polyfill-intl-idn",
+ "version": "v1.29.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/var-dumper.git",
- "reference": "95bd2706a97fb875185b51ecaa6112ec184233d4"
+ "url": "https://github.com/symfony/polyfill-intl-idn.git",
+ "reference": "a287ed7475f85bf6f61890146edbc932c0fff919"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/95bd2706a97fb875185b51ecaa6112ec184233d4",
- "reference": "95bd2706a97fb875185b51ecaa6112ec184233d4",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919",
+ "reference": "a287ed7475f85bf6f61890146edbc932c0fff919",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/polyfill-mbstring": "~1.0"
- },
- "conflict": {
- "symfony/console": "<5.4"
+ "php": ">=7.1",
+ "symfony/polyfill-intl-normalizer": "^1.10",
+ "symfony/polyfill-php72": "^1.10"
},
- "require-dev": {
- "ext-iconv": "*",
- "symfony/console": "^5.4|^6.0|^7.0",
- "symfony/error-handler": "^6.3|^7.0",
- "symfony/http-kernel": "^5.4|^6.0|^7.0",
- "symfony/process": "^5.4|^6.0|^7.0",
- "symfony/uid": "^5.4|^6.0|^7.0",
- "twig/twig": "^2.13|^3.0.4"
+ "suggest": {
+ "ext-intl": "For best performance"
},
- "bin": [
- "Resources/bin/var-dump-server"
- ],
"type": "library",
+ "extra": {
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
"autoload": {
"files": [
- "Resources/functions/dump.php"
+ "bootstrap.php"
],
"psr-4": {
- "Symfony\\Component\\VarDumper\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Symfony\\Polyfill\\Intl\\Idn\\": ""
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5664,22 +6659,30 @@
],
"authors": [
{
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
+ "name": "Laurent Bassin",
+ "email": "laurent@bassin.info"
+ },
+ {
+ "name": "Trevor Rowbotham",
+ "email": "trevor.rowbotham@pm.me"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides mechanisms for walking through any arbitrary PHP variable",
+ "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
"homepage": "https://symfony.com",
"keywords": [
- "debug",
- "dump"
+ "compatibility",
+ "idn",
+ "intl",
+ "polyfill",
+ "portable",
+ "shim"
],
"support": {
- "source": "https://github.com/symfony/var-dumper/tree/v6.4.6"
+ "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0"
},
"funding": [
{
@@ -5695,37 +6698,42 @@
"type": "tidelift"
}
],
- "time": "2024-03-19T11:56:30+00:00"
+ "time": "2024-01-29T20:11:03+00:00"
},
{
- "name": "symfony/var-exporter",
- "version": "v7.0.6",
+ "name": "symfony/polyfill-php83",
+ "version": "v1.29.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/var-exporter.git",
- "reference": "c74c568d2a15a1d407cf40d61ea82bc2d521e27b"
+ "url": "https://github.com/symfony/polyfill-php83.git",
+ "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-exporter/zipball/c74c568d2a15a1d407cf40d61ea82bc2d521e27b",
- "reference": "c74c568d2a15a1d407cf40d61ea82bc2d521e27b",
+ "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
+ "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
"shasum": ""
},
"require": {
- "php": ">=8.2"
- },
- "require-dev": {
- "symfony/property-access": "^6.4|^7.0",
- "symfony/serializer": "^6.4|^7.0",
- "symfony/var-dumper": "^6.4|^7.0"
+ "php": ">=7.1",
+ "symfony/polyfill-php80": "^1.14"
},
"type": "library",
+ "extra": {
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
"autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
"psr-4": {
- "Symfony\\Component\\VarExporter\\": ""
+ "Symfony\\Polyfill\\Php83\\": ""
},
- "exclude-from-classmap": [
- "/Tests/"
+ "classmap": [
+ "Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -5742,20 +6750,16 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Allows exporting any serializable PHP data structure to plain PHP code",
+ "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
"homepage": "https://symfony.com",
"keywords": [
- "clone",
- "construct",
- "export",
- "hydrate",
- "instantiate",
- "lazy-loading",
- "proxy",
- "serialize"
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
],
"support": {
- "source": "https://github.com/symfony/var-exporter/tree/v7.0.6"
+ "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
},
"funding": [
{
@@ -5771,42 +6775,38 @@
"type": "tidelift"
}
],
- "time": "2024-03-20T21:25:22+00:00"
- }
- ],
- "packages-dev": [
+ "time": "2024-01-29T20:11:03+00:00"
+ },
{
- "name": "composer/pcre",
- "version": "3.1.3",
+ "name": "symfony/property-access",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/composer/pcre.git",
- "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8"
+ "url": "https://github.com/symfony/property-access.git",
+ "reference": "e4d9b00983612f9c0013ca37c61affdba2dd975a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/pcre/zipball/5b16e25a5355f1f3afdfc2f954a0a80aec4826a8",
- "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8",
+ "url": "https://api.github.com/repos/symfony/property-access/zipball/e4d9b00983612f9c0013ca37c61affdba2dd975a",
+ "reference": "e4d9b00983612f9c0013ca37c61affdba2dd975a",
"shasum": ""
},
"require": {
- "php": "^7.4 || ^8.0"
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/property-info": "^5.4|^6.0|^7.0"
},
"require-dev": {
- "phpstan/phpstan": "^1.3",
- "phpstan/phpstan-strict-rules": "^1.1",
- "symfony/phpunit-bridge": "^5"
+ "symfony/cache": "^5.4|^6.0|^7.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.x-dev"
- }
- },
"autoload": {
"psr-4": {
- "Composer\\Pcre\\": "src"
- }
+ "Symfony\\Component\\PropertyAccess\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5814,69 +6814,85 @@
],
"authors": [
{
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be",
- "homepage": "http://seld.be"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
+ "description": "Provides functions to read and write from/to an object or array using a simple string notation",
+ "homepage": "https://symfony.com",
"keywords": [
- "PCRE",
- "preg",
- "regex",
- "regular expression"
+ "access",
+ "array",
+ "extraction",
+ "index",
+ "injection",
+ "object",
+ "property",
+ "property-path",
+ "reflection"
],
"support": {
- "issues": "https://github.com/composer/pcre/issues",
- "source": "https://github.com/composer/pcre/tree/3.1.3"
+ "source": "https://github.com/symfony/property-access/tree/v6.4.8"
},
"funding": [
{
- "url": "https://packagist.com",
+ "url": "https://symfony.com/sponsor",
"type": "custom"
},
{
- "url": "https://github.com/composer",
+ "url": "https://github.com/fabpot",
"type": "github"
},
{
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
- "time": "2024-03-19T10:26:25+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "composer/semver",
- "version": "3.4.0",
+ "name": "symfony/property-info",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/composer/semver.git",
- "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
+ "url": "https://github.com/symfony/property-info.git",
+ "reference": "7f544bc6ceb1a6a2283c7af8e8621262c43b7ede"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
- "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
+ "url": "https://api.github.com/repos/symfony/property-info/zipball/7f544bc6ceb1a6a2283c7af8e8621262c43b7ede",
+ "reference": "7f544bc6ceb1a6a2283c7af8e8621262c43b7ede",
"shasum": ""
},
"require": {
- "php": "^5.3.2 || ^7.0 || ^8.0"
+ "php": ">=8.1",
+ "symfony/string": "^5.4|^6.0|^7.0"
+ },
+ "conflict": {
+ "phpdocumentor/reflection-docblock": "<5.2",
+ "phpdocumentor/type-resolver": "<1.5.1",
+ "symfony/dependency-injection": "<5.4",
+ "symfony/serializer": "<6.4"
},
"require-dev": {
- "phpstan/phpstan": "^1.4",
- "symfony/phpunit-bridge": "^4.2 || ^5"
+ "phpdocumentor/reflection-docblock": "^5.2",
+ "phpstan/phpdoc-parser": "^1.0",
+ "symfony/cache": "^5.4|^6.0|^7.0",
+ "symfony/dependency-injection": "^5.4|^6.0|^7.0",
+ "symfony/serializer": "^6.4|^7.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.x-dev"
- }
- },
"autoload": {
"psr-4": {
- "Composer\\Semver\\": "src"
- }
+ "Symfony\\Component\\PropertyInfo\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5884,78 +6900,84 @@
],
"authors": [
{
- "name": "Nils Adermann",
- "email": "naderman@naderman.de",
- "homepage": "http://www.naderman.de"
- },
- {
- "name": "Jordi Boggiano",
- "email": "j.boggiano@seld.be",
- "homepage": "http://seld.be"
+ "name": "Kévin Dunglas",
+ "email": "dunglas@gmail.com"
},
{
- "name": "Rob Bast",
- "email": "rob.bast@gmail.com",
- "homepage": "http://robbast.nl"
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Semver library that offers utilities, version constraint parsing and validation.",
+ "description": "Extracts information about PHP class' properties using metadata of popular sources",
+ "homepage": "https://symfony.com",
"keywords": [
- "semantic",
- "semver",
- "validation",
- "versioning"
+ "doctrine",
+ "phpdoc",
+ "property",
+ "symfony",
+ "type",
+ "validator"
],
"support": {
- "irc": "ircs://irc.libera.chat:6697/composer",
- "issues": "https://github.com/composer/semver/issues",
- "source": "https://github.com/composer/semver/tree/3.4.0"
+ "source": "https://github.com/symfony/property-info/tree/v6.4.8"
},
"funding": [
{
- "url": "https://packagist.com",
+ "url": "https://symfony.com/sponsor",
"type": "custom"
},
{
- "url": "https://github.com/composer",
+ "url": "https://github.com/fabpot",
"type": "github"
},
{
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
- "time": "2023-08-31T09:50:34+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "composer/xdebug-handler",
- "version": "3.0.4",
+ "name": "symfony/routing",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/composer/xdebug-handler.git",
- "reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255"
+ "url": "https://github.com/symfony/routing.git",
+ "reference": "8a40d0f9b01f0fbb80885d3ce0ad6714fb603a58"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/4f988f8fdf580d53bdb2d1278fe93d1ed5462255",
- "reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/8a40d0f9b01f0fbb80885d3ce0ad6714fb603a58",
+ "reference": "8a40d0f9b01f0fbb80885d3ce0ad6714fb603a58",
"shasum": ""
},
"require": {
- "composer/pcre": "^1 || ^2 || ^3",
- "php": "^7.2.5 || ^8.0",
- "psr/log": "^1 || ^2 || ^3"
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "doctrine/annotations": "<1.12",
+ "symfony/config": "<6.2",
+ "symfony/dependency-injection": "<5.4",
+ "symfony/yaml": "<5.4"
},
"require-dev": {
- "phpstan/phpstan": "^1.0",
- "phpstan/phpstan-strict-rules": "^1.1",
- "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
+ "doctrine/annotations": "^1.12|^2",
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^6.2|^7.0",
+ "symfony/dependency-injection": "^5.4|^6.0|^7.0",
+ "symfony/expression-language": "^5.4|^6.0|^7.0",
+ "symfony/http-foundation": "^5.4|^6.0|^7.0",
+ "symfony/yaml": "^5.4|^6.0|^7.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "Composer\\XdebugHandler\\": "src"
- }
+ "Symfony\\Component\\Routing\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -5963,84 +6985,81 @@
],
"authors": [
{
- "name": "John Stevenson",
- "email": "john-stevenson@blueyonder.co.uk"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Restarts a process without Xdebug.",
+ "description": "Maps an HTTP request to a set of configuration variables",
+ "homepage": "https://symfony.com",
"keywords": [
- "Xdebug",
- "performance"
+ "router",
+ "routing",
+ "uri",
+ "url"
],
"support": {
- "irc": "ircs://irc.libera.chat:6697/composer",
- "issues": "https://github.com/composer/xdebug-handler/issues",
- "source": "https://github.com/composer/xdebug-handler/tree/3.0.4"
+ "source": "https://github.com/symfony/routing/tree/v6.4.8"
},
"funding": [
{
- "url": "https://packagist.com",
+ "url": "https://symfony.com/sponsor",
"type": "custom"
},
{
- "url": "https://github.com/composer",
+ "url": "https://github.com/fabpot",
"type": "github"
},
{
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
- "time": "2024-03-26T18:29:49+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "doctrine/data-fixtures",
- "version": "1.7.0",
+ "name": "symfony/runtime",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/doctrine/data-fixtures.git",
- "reference": "bbcb74f2ac6dbe81a14b3c3687d7623490a0448f"
+ "url": "https://github.com/symfony/runtime.git",
+ "reference": "b4bfa2fd4cad1fee62f80b3dfe4eb674cc3302a0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/data-fixtures/zipball/bbcb74f2ac6dbe81a14b3c3687d7623490a0448f",
- "reference": "bbcb74f2ac6dbe81a14b3c3687d7623490a0448f",
+ "url": "https://api.github.com/repos/symfony/runtime/zipball/b4bfa2fd4cad1fee62f80b3dfe4eb674cc3302a0",
+ "reference": "b4bfa2fd4cad1fee62f80b3dfe4eb674cc3302a0",
"shasum": ""
},
"require": {
- "doctrine/deprecations": "^0.5.3 || ^1.0",
- "doctrine/persistence": "^2.0|^3.0",
- "php": "^7.4 || ^8.0"
+ "composer-plugin-api": "^1.0|^2.0",
+ "php": ">=8.1"
},
"conflict": {
- "doctrine/dbal": "<3.5 || >=5",
- "doctrine/orm": "<2.14 || >=4",
- "doctrine/phpcr-odm": "<1.3.0"
+ "symfony/dotenv": "<5.4"
},
"require-dev": {
- "doctrine/annotations": "^1.12 || ^2",
- "doctrine/coding-standard": "^12",
- "doctrine/dbal": "^3.5 || ^4",
- "doctrine/mongodb-odm": "^1.3.0 || ^2.0.0",
- "doctrine/orm": "^2.14 || ^3",
- "ext-sqlite3": "*",
- "phpstan/phpstan": "^1.10",
- "phpunit/phpunit": "^9.6.13 || ^10.4.2",
- "symfony/cache": "^5.4 || ^6.3 || ^7",
- "symfony/var-exporter": "^5.4 || ^6.3 || ^7",
- "vimeo/psalm": "^5.9"
+ "composer/composer": "^1.0.2|^2.0",
+ "symfony/console": "^5.4.9|^6.0.9|^7.0",
+ "symfony/dotenv": "^5.4|^6.0|^7.0",
+ "symfony/http-foundation": "^5.4|^6.0|^7.0",
+ "symfony/http-kernel": "^5.4|^6.0|^7.0"
},
- "suggest": {
- "alcaeus/mongo-php-adapter": "For using MongoDB ODM 1.3 with PHP 7 (deprecated)",
- "doctrine/mongodb-odm": "For loading MongoDB ODM fixtures",
- "doctrine/orm": "For loading ORM fixtures",
- "doctrine/phpcr-odm": "For loading PHPCR ODM fixtures"
+ "type": "composer-plugin",
+ "extra": {
+ "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
},
- "type": "library",
"autoload": {
"psr-4": {
- "Doctrine\\Common\\DataFixtures\\": "src"
- }
+ "Symfony\\Component\\Runtime\\": "",
+ "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -6048,93 +7067,1739 @@
],
"authors": [
{
- "name": "Jonathan Wage",
- "email": "jonwage@gmail.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Data Fixtures for all Doctrine Object Managers",
- "homepage": "https://www.doctrine-project.org",
+ "description": "Enables decoupling PHP applications from global state",
+ "homepage": "https://symfony.com",
"keywords": [
- "database"
+ "runtime"
],
"support": {
- "issues": "https://github.com/doctrine/data-fixtures/issues",
- "source": "https://github.com/doctrine/data-fixtures/tree/1.7.0"
+ "source": "https://github.com/symfony/runtime/tree/v6.4.8"
},
"funding": [
{
- "url": "https://www.doctrine-project.org/sponsorship.html",
+ "url": "https://symfony.com/sponsor",
"type": "custom"
},
{
- "url": "https://www.patreon.com/phpdoctrine",
- "type": "patreon"
+ "url": "https://github.com/fabpot",
+ "type": "github"
},
{
- "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdata-fixtures",
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
- "time": "2023-11-24T11:18:31+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "friendsofphp/php-cs-fixer",
- "version": "v3.54.0",
+ "name": "symfony/security-bundle",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
- "reference": "2aecbc8640d7906c38777b3dcab6f4ca79004d08"
+ "url": "https://github.com/symfony/security-bundle.git",
+ "reference": "dfb286069b0332e1f1c21962133d17c0fbc1e5e7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/2aecbc8640d7906c38777b3dcab6f4ca79004d08",
- "reference": "2aecbc8640d7906c38777b3dcab6f4ca79004d08",
+ "url": "https://api.github.com/repos/symfony/security-bundle/zipball/dfb286069b0332e1f1c21962133d17c0fbc1e5e7",
+ "reference": "dfb286069b0332e1f1c21962133d17c0fbc1e5e7",
"shasum": ""
},
"require": {
- "composer/semver": "^3.4",
- "composer/xdebug-handler": "^3.0.3",
- "ext-filter": "*",
- "ext-json": "*",
- "ext-tokenizer": "*",
- "php": "^7.4 || ^8.0",
- "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
- "symfony/console": "^5.4 || ^6.0 || ^7.0",
- "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
- "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
- "symfony/finder": "^5.4 || ^6.0 || ^7.0",
- "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
- "symfony/polyfill-mbstring": "^1.28",
- "symfony/polyfill-php80": "^1.28",
- "symfony/polyfill-php81": "^1.28",
- "symfony/process": "^5.4 || ^6.0 || ^7.0",
- "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
+ "composer-runtime-api": ">=2.1",
+ "ext-xml": "*",
+ "php": ">=8.1",
+ "symfony/clock": "^6.3|^7.0",
+ "symfony/config": "^6.1|^7.0",
+ "symfony/dependency-injection": "^6.2|^7.0",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
+ "symfony/http-foundation": "^6.2|^7.0",
+ "symfony/http-kernel": "^6.2",
+ "symfony/password-hasher": "^5.4|^6.0|^7.0",
+ "symfony/security-core": "^6.2|^7.0",
+ "symfony/security-csrf": "^5.4|^6.0|^7.0",
+ "symfony/security-http": "^6.3.6|^7.0",
+ "symfony/service-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "symfony/browser-kit": "<5.4",
+ "symfony/console": "<5.4",
+ "symfony/framework-bundle": "<6.4",
+ "symfony/http-client": "<5.4",
+ "symfony/ldap": "<5.4",
+ "symfony/serializer": "<6.4",
+ "symfony/twig-bundle": "<5.4",
+ "symfony/validator": "<6.4"
+ },
+ "require-dev": {
+ "symfony/asset": "^5.4|^6.0|^7.0",
+ "symfony/browser-kit": "^5.4|^6.0|^7.0",
+ "symfony/console": "^5.4|^6.0|^7.0",
+ "symfony/css-selector": "^5.4|^6.0|^7.0",
+ "symfony/dom-crawler": "^5.4|^6.0|^7.0",
+ "symfony/expression-language": "^5.4|^6.0|^7.0",
+ "symfony/form": "^5.4|^6.0|^7.0",
+ "symfony/framework-bundle": "^6.4|^7.0",
+ "symfony/http-client": "^5.4|^6.0|^7.0",
+ "symfony/ldap": "^5.4|^6.0|^7.0",
+ "symfony/process": "^5.4|^6.0|^7.0",
+ "symfony/rate-limiter": "^5.4|^6.0|^7.0",
+ "symfony/serializer": "^6.4|^7.0",
+ "symfony/translation": "^5.4|^6.0|^7.0",
+ "symfony/twig-bridge": "^5.4|^6.0|^7.0",
+ "symfony/twig-bundle": "^5.4|^6.0|^7.0",
+ "symfony/validator": "^6.4|^7.0",
+ "symfony/yaml": "^5.4|^6.0|^7.0",
+ "twig/twig": "^2.13|^3.0.4",
+ "web-token/jwt-checker": "^3.1",
+ "web-token/jwt-signature-algorithm-ecdsa": "^3.1",
+ "web-token/jwt-signature-algorithm-eddsa": "^3.1",
+ "web-token/jwt-signature-algorithm-hmac": "^3.1",
+ "web-token/jwt-signature-algorithm-none": "^3.1",
+ "web-token/jwt-signature-algorithm-rsa": "^3.1"
+ },
+ "type": "symfony-bundle",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Bundle\\SecurityBundle\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/security-bundle/tree/v6.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:49:08+00:00"
+ },
+ {
+ "name": "symfony/security-core",
+ "version": "v6.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/security-core.git",
+ "reference": "5fc7850ada5e8e03d78c1739c82c64d5e2f7d495"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/security-core/zipball/5fc7850ada5e8e03d78c1739c82c64d5e2f7d495",
+ "reference": "5fc7850ada5e8e03d78c1739c82c64d5e2f7d495",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/event-dispatcher-contracts": "^2.5|^3",
+ "symfony/password-hasher": "^5.4|^6.0|^7.0",
+ "symfony/service-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "symfony/event-dispatcher": "<5.4",
+ "symfony/http-foundation": "<5.4",
+ "symfony/ldap": "<5.4",
+ "symfony/security-guard": "<5.4",
+ "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
+ "symfony/validator": "<5.4"
+ },
+ "require-dev": {
+ "psr/cache": "^1.0|^2.0|^3.0",
+ "psr/container": "^1.1|^2.0",
+ "psr/log": "^1|^2|^3",
+ "symfony/cache": "^5.4|^6.0|^7.0",
+ "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
+ "symfony/expression-language": "^5.4|^6.0|^7.0",
+ "symfony/http-foundation": "^5.4|^6.0|^7.0",
+ "symfony/ldap": "^5.4|^6.0|^7.0",
+ "symfony/string": "^5.4|^6.0|^7.0",
+ "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
+ "symfony/validator": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Security\\Core\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony Security Component - Core Library",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/security-core/tree/v6.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:49:08+00:00"
+ },
+ {
+ "name": "symfony/security-csrf",
+ "version": "v6.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/security-csrf.git",
+ "reference": "f46ab02b76311087873257071559edcaf6d7ab99"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/security-csrf/zipball/f46ab02b76311087873257071559edcaf6d7ab99",
+ "reference": "f46ab02b76311087873257071559edcaf6d7ab99",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "symfony/security-core": "^5.4|^6.0|^7.0"
+ },
+ "conflict": {
+ "symfony/http-foundation": "<5.4"
+ },
+ "require-dev": {
+ "symfony/http-foundation": "^5.4|^6.0|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Security\\Csrf\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony Security Component - CSRF Library",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/security-csrf/tree/v6.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:49:08+00:00"
+ },
+ {
+ "name": "symfony/security-http",
+ "version": "v6.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/security-http.git",
+ "reference": "fb82ddec887dc67f3bcf4d6df3cb8efd529be104"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/security-http/zipball/fb82ddec887dc67f3bcf4d6df3cb8efd529be104",
+ "reference": "fb82ddec887dc67f3bcf4d6df3cb8efd529be104",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/http-foundation": "^6.2|^7.0",
+ "symfony/http-kernel": "^6.3|^7.0",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/property-access": "^5.4|^6.0|^7.0",
+ "symfony/security-core": "^6.4|^7.0",
+ "symfony/service-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "symfony/clock": "<6.3",
+ "symfony/event-dispatcher": "<5.4.9|>=6,<6.0.9",
+ "symfony/http-client-contracts": "<3.0",
+ "symfony/security-bundle": "<5.4",
+ "symfony/security-csrf": "<5.4"
+ },
+ "require-dev": {
+ "psr/log": "^1|^2|^3",
+ "symfony/cache": "^5.4|^6.0|^7.0",
+ "symfony/clock": "^6.3|^7.0",
+ "symfony/expression-language": "^5.4|^6.0|^7.0",
+ "symfony/http-client-contracts": "^3.0",
+ "symfony/rate-limiter": "^5.4|^6.0|^7.0",
+ "symfony/routing": "^5.4|^6.0|^7.0",
+ "symfony/security-csrf": "^5.4|^6.0|^7.0",
+ "symfony/translation": "^5.4|^6.0|^7.0",
+ "web-token/jwt-checker": "^3.1",
+ "web-token/jwt-signature-algorithm-ecdsa": "^3.1"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Security\\Http\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony Security Component - HTTP Integration",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/security-http/tree/v6.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:49:08+00:00"
+ },
+ {
+ "name": "symfony/sendgrid-mailer",
+ "version": "v6.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/sendgrid-mailer.git",
+ "reference": "de781810f7fbcef2d21a7e5b24cf4d85bac4bceb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/sendgrid-mailer/zipball/de781810f7fbcef2d21a7e5b24cf4d85bac4bceb",
+ "reference": "de781810f7fbcef2d21a7e5b24cf4d85bac4bceb",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "symfony/mailer": "^5.4.21|^6.2.7|^7.0"
+ },
+ "conflict": {
+ "symfony/http-foundation": "<6.2",
+ "symfony/mime": "<6.2"
+ },
+ "require-dev": {
+ "symfony/http-client": "^5.4|^6.0|^7.0",
+ "symfony/webhook": "^6.3|^7.0"
+ },
+ "type": "symfony-mailer-bridge",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Mailer\\Bridge\\Sendgrid\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony Sendgrid Mailer Bridge",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/sendgrid-mailer/tree/v6.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:49:08+00:00"
+ },
+ {
+ "name": "symfony/serializer",
+ "version": "v6.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/serializer.git",
+ "reference": "d6eda9966a3e5d1823c1cedf41bf98f8ed969d7c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/serializer/zipball/d6eda9966a3e5d1823c1cedf41bf98f8ed969d7c",
+ "reference": "d6eda9966a3e5d1823c1cedf41bf98f8ed969d7c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/polyfill-ctype": "~1.8"
+ },
+ "conflict": {
+ "doctrine/annotations": "<1.12",
+ "phpdocumentor/reflection-docblock": "<3.2.2",
+ "phpdocumentor/type-resolver": "<1.4.0",
+ "symfony/dependency-injection": "<5.4",
+ "symfony/property-access": "<5.4",
+ "symfony/property-info": "<5.4.24|>=6,<6.2.11",
+ "symfony/uid": "<5.4",
+ "symfony/validator": "<6.4",
+ "symfony/yaml": "<5.4"
+ },
+ "require-dev": {
+ "doctrine/annotations": "^1.12|^2",
+ "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
+ "seld/jsonlint": "^1.10",
+ "symfony/cache": "^5.4|^6.0|^7.0",
+ "symfony/config": "^5.4|^6.0|^7.0",
+ "symfony/console": "^5.4|^6.0|^7.0",
+ "symfony/dependency-injection": "^5.4|^6.0|^7.0",
+ "symfony/error-handler": "^5.4|^6.0|^7.0",
+ "symfony/filesystem": "^5.4|^6.0|^7.0",
+ "symfony/form": "^5.4|^6.0|^7.0",
+ "symfony/http-foundation": "^5.4|^6.0|^7.0",
+ "symfony/http-kernel": "^5.4|^6.0|^7.0",
+ "symfony/messenger": "^5.4|^6.0|^7.0",
+ "symfony/mime": "^5.4|^6.0|^7.0",
+ "symfony/property-access": "^5.4.26|^6.3|^7.0",
+ "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
+ "symfony/translation-contracts": "^2.5|^3",
+ "symfony/uid": "^5.4|^6.0|^7.0",
+ "symfony/validator": "^6.4|^7.0",
+ "symfony/var-dumper": "^5.4|^6.0|^7.0",
+ "symfony/var-exporter": "^5.4|^6.0|^7.0",
+ "symfony/yaml": "^5.4|^6.0|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Serializer\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/serializer/tree/v6.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:49:08+00:00"
+ },
+ {
+ "name": "symfony/service-contracts",
+ "version": "v3.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/service-contracts.git",
+ "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
+ "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "psr/container": "^1.1|^2.0",
+ "symfony/deprecation-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "ext-psr": "<1.1|>=2"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.5-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\Service\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Test/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to writing services",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-04-18T09:32:20+00:00"
+ },
+ {
+ "name": "symfony/stopwatch",
+ "version": "v6.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/stopwatch.git",
+ "reference": "63e069eb616049632cde9674c46957819454b8aa"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
+ "reference": "63e069eb616049632cde9674c46957819454b8aa",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "symfony/service-contracts": "^2.5|^3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Stopwatch\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides a way to profile code",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:49:08+00:00"
+ },
+ {
+ "name": "symfony/string",
+ "version": "v6.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/string.git",
+ "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
+ "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-intl-grapheme": "~1.0",
+ "symfony/polyfill-intl-normalizer": "~1.0",
+ "symfony/polyfill-mbstring": "~1.0"
+ },
+ "conflict": {
+ "symfony/translation-contracts": "<2.5"
+ },
+ "require-dev": {
+ "symfony/error-handler": "^5.4|^6.0|^7.0",
+ "symfony/http-client": "^5.4|^6.0|^7.0",
+ "symfony/intl": "^6.2|^7.0",
+ "symfony/translation-contracts": "^2.5|^3.0",
+ "symfony/var-exporter": "^5.4|^6.0|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "Resources/functions.php"
+ ],
+ "psr-4": {
+ "Symfony\\Component\\String\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "grapheme",
+ "i18n",
+ "string",
+ "unicode",
+ "utf-8",
+ "utf8"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/string/tree/v6.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:49:08+00:00"
+ },
+ {
+ "name": "symfony/translation-contracts",
+ "version": "v3.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/translation-contracts.git",
+ "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
+ "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.5-dev"
+ },
+ "thanks": {
+ "name": "symfony/contracts",
+ "url": "https://github.com/symfony/contracts"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\Translation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Test/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to translation",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-04-18T09:32:20+00:00"
+ },
+ {
+ "name": "symfony/twig-bridge",
+ "version": "v6.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/twig-bridge.git",
+ "reference": "57de1b7d7499053a2c5beb9344751e8bfd332649"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/57de1b7d7499053a2c5beb9344751e8bfd332649",
+ "reference": "57de1b7d7499053a2c5beb9344751e8bfd332649",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/translation-contracts": "^2.5|^3",
+ "twig/twig": "^2.13|^3.0.4"
+ },
+ "conflict": {
+ "phpdocumentor/reflection-docblock": "<3.2.2",
+ "phpdocumentor/type-resolver": "<1.4.0",
+ "symfony/console": "<5.4",
+ "symfony/form": "<6.3",
+ "symfony/http-foundation": "<5.4",
+ "symfony/http-kernel": "<6.4",
+ "symfony/mime": "<6.2",
+ "symfony/serializer": "<6.4",
+ "symfony/translation": "<5.4",
+ "symfony/workflow": "<5.4"
+ },
+ "require-dev": {
+ "egulias/email-validator": "^2.1.10|^3|^4",
+ "league/html-to-markdown": "^5.0",
+ "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
+ "symfony/asset": "^5.4|^6.0|^7.0",
+ "symfony/asset-mapper": "^6.3|^7.0",
+ "symfony/console": "^5.4|^6.0|^7.0",
+ "symfony/dependency-injection": "^5.4|^6.0|^7.0",
+ "symfony/expression-language": "^5.4|^6.0|^7.0",
+ "symfony/finder": "^5.4|^6.0|^7.0",
+ "symfony/form": "^6.4|^7.0",
+ "symfony/html-sanitizer": "^6.1|^7.0",
+ "symfony/http-foundation": "^5.4|^6.0|^7.0",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/intl": "^5.4|^6.0|^7.0",
+ "symfony/mime": "^6.2|^7.0",
+ "symfony/polyfill-intl-icu": "~1.0",
+ "symfony/property-info": "^5.4|^6.0|^7.0",
+ "symfony/routing": "^5.4|^6.0|^7.0",
+ "symfony/security-acl": "^2.8|^3.0",
+ "symfony/security-core": "^5.4|^6.0|^7.0",
+ "symfony/security-csrf": "^5.4|^6.0|^7.0",
+ "symfony/security-http": "^5.4|^6.0|^7.0",
+ "symfony/serializer": "^6.4.3|^7.0.3",
+ "symfony/stopwatch": "^5.4|^6.0|^7.0",
+ "symfony/translation": "^6.1|^7.0",
+ "symfony/web-link": "^5.4|^6.0|^7.0",
+ "symfony/workflow": "^5.4|^6.0|^7.0",
+ "symfony/yaml": "^5.4|^6.0|^7.0",
+ "twig/cssinliner-extra": "^2.12|^3",
+ "twig/inky-extra": "^2.12|^3",
+ "twig/markdown-extra": "^2.12|^3"
+ },
+ "type": "symfony-bridge",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Bridge\\Twig\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides integration for Twig with various Symfony components",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/twig-bridge/tree/v6.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:49:08+00:00"
+ },
+ {
+ "name": "symfony/twig-bundle",
+ "version": "v6.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/twig-bundle.git",
+ "reference": "ef17bc8fc2cb2376b235cd1b98f0275a78c5ba65"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/ef17bc8fc2cb2376b235cd1b98f0275a78c5ba65",
+ "reference": "ef17bc8fc2cb2376b235cd1b98f0275a78c5ba65",
+ "shasum": ""
+ },
+ "require": {
+ "composer-runtime-api": ">=2.1",
+ "php": ">=8.1",
+ "symfony/config": "^6.1|^7.0",
+ "symfony/dependency-injection": "^6.1|^7.0",
+ "symfony/http-foundation": "^5.4|^6.0|^7.0",
+ "symfony/http-kernel": "^6.2",
+ "symfony/twig-bridge": "^6.4",
+ "twig/twig": "^2.13|^3.0.4"
+ },
+ "conflict": {
+ "symfony/framework-bundle": "<5.4",
+ "symfony/translation": "<5.4"
+ },
+ "require-dev": {
+ "symfony/asset": "^5.4|^6.0|^7.0",
+ "symfony/expression-language": "^5.4|^6.0|^7.0",
+ "symfony/finder": "^5.4|^6.0|^7.0",
+ "symfony/form": "^5.4|^6.0|^7.0",
+ "symfony/framework-bundle": "^5.4|^6.0|^7.0",
+ "symfony/routing": "^5.4|^6.0|^7.0",
+ "symfony/stopwatch": "^5.4|^6.0|^7.0",
+ "symfony/translation": "^5.4|^6.0|^7.0",
+ "symfony/web-link": "^5.4|^6.0|^7.0",
+ "symfony/yaml": "^5.4|^6.0|^7.0"
+ },
+ "type": "symfony-bundle",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Bundle\\TwigBundle\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/twig-bundle/tree/v6.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:49:08+00:00"
+ },
+ {
+ "name": "symfony/validator",
+ "version": "v6.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/validator.git",
+ "reference": "dab2781371d54c86f6b25623ab16abb2dde2870c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/validator/zipball/dab2781371d54c86f6b25623ab16abb2dde2870c",
+ "reference": "dab2781371d54c86f6b25623ab16abb2dde2870c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/polyfill-php83": "^1.27",
+ "symfony/translation-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "doctrine/annotations": "<1.13",
+ "doctrine/lexer": "<1.1",
+ "symfony/dependency-injection": "<5.4",
+ "symfony/expression-language": "<5.4",
+ "symfony/http-kernel": "<5.4",
+ "symfony/intl": "<5.4",
+ "symfony/property-info": "<5.4",
+ "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
+ "symfony/yaml": "<5.4"
+ },
+ "require-dev": {
+ "doctrine/annotations": "^1.13|^2",
+ "egulias/email-validator": "^2.1.10|^3|^4",
+ "symfony/cache": "^5.4|^6.0|^7.0",
+ "symfony/config": "^5.4|^6.0|^7.0",
+ "symfony/console": "^5.4|^6.0|^7.0",
+ "symfony/dependency-injection": "^5.4|^6.0|^7.0",
+ "symfony/expression-language": "^5.4|^6.0|^7.0",
+ "symfony/finder": "^5.4|^6.0|^7.0",
+ "symfony/http-client": "^5.4|^6.0|^7.0",
+ "symfony/http-foundation": "^5.4|^6.0|^7.0",
+ "symfony/http-kernel": "^5.4|^6.0|^7.0",
+ "symfony/intl": "^5.4|^6.0|^7.0",
+ "symfony/mime": "^5.4|^6.0|^7.0",
+ "symfony/property-access": "^5.4|^6.0|^7.0",
+ "symfony/property-info": "^5.4|^6.0|^7.0",
+ "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
+ "symfony/yaml": "^5.4|^6.0|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Validator\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/",
+ "/Resources/bin/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides tools to validate values",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/validator/tree/v6.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-06-02T15:48:50+00:00"
+ },
+ {
+ "name": "symfony/var-dumper",
+ "version": "v6.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/var-dumper.git",
+ "reference": "ad23ca4312395f0a8a8633c831ef4c4ee542ed25"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ad23ca4312395f0a8a8633c831ef4c4ee542ed25",
+ "reference": "ad23ca4312395f0a8a8633c831ef4c4ee542ed25",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/polyfill-mbstring": "~1.0"
+ },
+ "conflict": {
+ "symfony/console": "<5.4"
+ },
+ "require-dev": {
+ "ext-iconv": "*",
+ "symfony/console": "^5.4|^6.0|^7.0",
+ "symfony/error-handler": "^6.3|^7.0",
+ "symfony/http-kernel": "^5.4|^6.0|^7.0",
+ "symfony/process": "^5.4|^6.0|^7.0",
+ "symfony/uid": "^5.4|^6.0|^7.0",
+ "twig/twig": "^2.13|^3.0.4"
+ },
+ "bin": [
+ "Resources/bin/var-dump-server"
+ ],
+ "type": "library",
+ "autoload": {
+ "files": [
+ "Resources/functions/dump.php"
+ ],
+ "psr-4": {
+ "Symfony\\Component\\VarDumper\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides mechanisms for walking through any arbitrary PHP variable",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "debug",
+ "dump"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/var-dumper/tree/v6.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:49:08+00:00"
+ },
+ {
+ "name": "symfony/var-exporter",
+ "version": "v6.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/var-exporter.git",
+ "reference": "792ca836f99b340f2e9ca9497c7953948c49a504"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/var-exporter/zipball/792ca836f99b340f2e9ca9497c7953948c49a504",
+ "reference": "792ca836f99b340f2e9ca9497c7953948c49a504",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3"
+ },
+ "require-dev": {
+ "symfony/property-access": "^6.4|^7.0",
+ "symfony/serializer": "^6.4|^7.0",
+ "symfony/var-dumper": "^5.4|^6.0|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\VarExporter\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Allows exporting any serializable PHP data structure to plain PHP code",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "clone",
+ "construct",
+ "export",
+ "hydrate",
+ "instantiate",
+ "lazy-loading",
+ "proxy",
+ "serialize"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/var-exporter/tree/v6.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:49:08+00:00"
+ },
+ {
+ "name": "symfony/web-link",
+ "version": "v6.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/web-link.git",
+ "reference": "304c67cefe7128ea3957e9bb1ac6ce08a90a635b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/web-link/zipball/304c67cefe7128ea3957e9bb1ac6ce08a90a635b",
+ "reference": "304c67cefe7128ea3957e9bb1ac6ce08a90a635b",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "psr/link": "^1.1|^2.0"
+ },
+ "conflict": {
+ "symfony/http-kernel": "<5.4"
+ },
+ "provide": {
+ "psr/link-implementation": "1.0|2.0"
+ },
+ "require-dev": {
+ "symfony/http-kernel": "^5.4|^6.0|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\WebLink\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Kévin Dunglas",
+ "email": "dunglas@gmail.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Manages links between resources",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "dns-prefetch",
+ "http",
+ "http2",
+ "link",
+ "performance",
+ "prefetch",
+ "preload",
+ "prerender",
+ "psr13",
+ "push"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/web-link/tree/v6.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:49:08+00:00"
+ },
+ {
+ "name": "symfony/yaml",
+ "version": "v6.4.8",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/yaml.git",
+ "reference": "52903de178d542850f6f341ba92995d3d63e60c9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/52903de178d542850f6f341ba92995d3d63e60c9",
+ "reference": "52903de178d542850f6f341ba92995d3d63e60c9",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/polyfill-ctype": "^1.8"
+ },
+ "conflict": {
+ "symfony/console": "<5.4"
+ },
+ "require-dev": {
+ "symfony/console": "^5.4|^6.0|^7.0"
+ },
+ "bin": [
+ "Resources/bin/yaml-lint"
+ ],
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Yaml\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Loads and dumps YAML files",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/yaml/tree/v6.4.8"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-31T14:49:08+00:00"
+ },
+ {
+ "name": "twig/twig",
+ "version": "v3.10.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/twigphp/Twig.git",
+ "reference": "67f29781ffafa520b0bbfbd8384674b42db04572"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/twigphp/Twig/zipball/67f29781ffafa520b0bbfbd8384674b42db04572",
+ "reference": "67f29781ffafa520b0bbfbd8384674b42db04572",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.5",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/polyfill-ctype": "^1.8",
+ "symfony/polyfill-mbstring": "^1.3",
+ "symfony/polyfill-php80": "^1.22"
+ },
+ "require-dev": {
+ "psr/container": "^1.0|^2.0",
+ "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "src/Resources/core.php",
+ "src/Resources/debug.php",
+ "src/Resources/escaper.php",
+ "src/Resources/string_loader.php"
+ ],
+ "psr-4": {
+ "Twig\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com",
+ "homepage": "http://fabien.potencier.org",
+ "role": "Lead Developer"
+ },
+ {
+ "name": "Twig Team",
+ "role": "Contributors"
+ },
+ {
+ "name": "Armin Ronacher",
+ "email": "armin.ronacher@active-4.com",
+ "role": "Project Founder"
+ }
+ ],
+ "description": "Twig, the flexible, fast, and secure template language for PHP",
+ "homepage": "https://twig.symfony.com",
+ "keywords": [
+ "templating"
+ ],
+ "support": {
+ "issues": "https://github.com/twigphp/Twig/issues",
+ "source": "https://github.com/twigphp/Twig/tree/v3.10.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/twig/twig",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-16T10:04:27+00:00"
+ },
+ {
+ "name": "willdurand/negotiation",
+ "version": "3.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/willdurand/Negotiation.git",
+ "reference": "68e9ea0553ef6e2ee8db5c1d98829f111e623ec2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/willdurand/Negotiation/zipball/68e9ea0553ef6e2ee8db5c1d98829f111e623ec2",
+ "reference": "68e9ea0553ef6e2ee8db5c1d98829f111e623ec2",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1.0"
+ },
+ "require-dev": {
+ "symfony/phpunit-bridge": "^5.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.0-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Negotiation\\": "src/Negotiation"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "William Durand",
+ "email": "will+git@drnd.me"
+ }
+ ],
+ "description": "Content Negotiation tools for PHP provided as a standalone library.",
+ "homepage": "http://williamdurand.fr/Negotiation/",
+ "keywords": [
+ "accept",
+ "content",
+ "format",
+ "header",
+ "negotiation"
+ ],
+ "support": {
+ "issues": "https://github.com/willdurand/Negotiation/issues",
+ "source": "https://github.com/willdurand/Negotiation/tree/3.1.0"
+ },
+ "time": "2022-01-30T20:08:53+00:00"
+ }
+ ],
+ "packages-dev": [
+ {
+ "name": "api-platform/schema-generator",
+ "version": "v5.2.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/api-platform/schema-generator.git",
+ "reference": "1709653e7349c354588f9cb311060c6d059be340"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/api-platform/schema-generator/zipball/1709653e7349c354588f9cb311060c6d059be340",
+ "reference": "1709653e7349c354588f9cb311060c6d059be340",
+ "shasum": ""
+ },
+ "require": {
+ "cebe/php-openapi": "^1.6",
+ "doctrine/inflector": "^1.4.3 || ^2.0",
+ "ext-json": "*",
+ "friendsofphp/php-cs-fixer": "^2.15 || ^3.0",
+ "league/html-to-markdown": "^5.0",
+ "nette/php-generator": "^3.6 || ^4.0",
+ "nikic/php-parser": "^4.13",
+ "php": ">=7.4",
+ "psr/log": "^1.0 || ^2.0 || ^3.0",
+ "sweetrdf/easyrdf": "^1.6",
+ "symfony/config": "^5.2 || ^6.0",
+ "symfony/console": "^5.2 || ^6.0",
+ "symfony/filesystem": "^5.2 || ^6.0",
+ "symfony/string": "^5.2 || ^6.0",
+ "symfony/yaml": "^5.2 || ^6.0",
+ "twig/twig": "^3.0"
},
"require-dev": {
- "facile-it/paraunit": "^1.3 || ^2.0",
- "infection/infection": "^0.27.11",
+ "api-platform/core": "^2.7 || ^3.0",
+ "doctrine/orm": "^2.7",
+ "myclabs/php-enum": "^1.7",
+ "phpspec/prophecy-phpunit": "^2.0",
+ "phpstan/phpstan": "^1.2.0",
+ "symfony/doctrine-bridge": "^5.2 || ^6.0",
+ "symfony/finder": "^5.2 || ^6.0",
+ "symfony/phpunit-bridge": "^5.2 || ^6.0",
+ "symfony/serializer": "^5.2 || ^6.0",
+ "symfony/validator": "^5.2 || ^6.0"
+ },
+ "bin": [
+ "bin/schema"
+ ],
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "ApiPlatform\\SchemaGenerator\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Kévin Dunglas",
+ "email": "dunglas@gmail.com"
+ }
+ ],
+ "description": "Various tools to generate a data model based on Schema.org vocables",
+ "homepage": "https://api-platform.com/docs/schema-generator/",
+ "keywords": [
+ "RDF",
+ "doctrine",
+ "entity",
+ "enum",
+ "model",
+ "owl",
+ "schema.org",
+ "semantic",
+ "symfony"
+ ],
+ "support": {
+ "issues": "https://github.com/api-platform/schema-generator/issues",
+ "source": "https://github.com/api-platform/schema-generator/tree/v5.2.2"
+ },
+ "time": "2023-07-19T21:17:31+00:00"
+ },
+ {
+ "name": "cebe/php-openapi",
+ "version": "1.7.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/cebe/php-openapi.git",
+ "reference": "020d72b8e3a9a60bc229953e93eda25c49f46f45"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/cebe/php-openapi/zipball/020d72b8e3a9a60bc229953e93eda25c49f46f45",
+ "reference": "020d72b8e3a9a60bc229953e93eda25c49f46f45",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
"justinrainbow/json-schema": "^5.2",
- "keradus/cli-executor": "^2.1",
- "mikey179/vfsstream": "^1.6.11",
- "php-coveralls/php-coveralls": "^2.7",
- "php-cs-fixer/accessible-object": "^1.1",
- "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
- "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
- "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
- "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
- "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
+ "php": ">=7.1.0",
+ "symfony/yaml": "^3.4 || ^4 || ^5 || ^6"
},
- "suggest": {
- "ext-dom": "For handling output formats in XML",
- "ext-mbstring": "For handling non-UTF8 characters."
+ "conflict": {
+ "symfony/yaml": "3.4.0 - 3.4.4 || 4.0.0 - 4.4.17 || 5.0.0 - 5.1.9 || 5.2.0"
+ },
+ "require-dev": {
+ "apis-guru/openapi-directory": "1.0.0",
+ "cebe/indent": "*",
+ "mermade/openapi3-examples": "1.0.0",
+ "nexmo/api-specification": "1.0.0",
+ "oai/openapi-specification": "3.0.3",
+ "phpstan/phpstan": "^0.12.0",
+ "phpunit/phpunit": "^6.5 || ^7.5 || ^8.5 || ^9.4"
},
"bin": [
- "php-cs-fixer"
+ "bin/php-openapi"
],
- "type": "application",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.6.x-dev"
+ }
+ },
"autoload": {
"psr-4": {
- "PhpCsFixer\\": "src/"
+ "cebe\\openapi\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -6143,656 +8808,847 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
+ "name": "Carsten Brandt",
+ "email": "mail@cebe.cc",
+ "homepage": "https://cebe.cc/",
+ "role": "Creator"
+ }
+ ],
+ "description": "Read and write OpenAPI yaml/json files and make the content accessable in PHP objects.",
+ "homepage": "https://github.com/cebe/php-openapi#readme",
+ "keywords": [
+ "openapi"
+ ],
+ "support": {
+ "issues": "https://github.com/cebe/php-openapi/issues",
+ "source": "https://github.com/cebe/php-openapi"
+ },
+ "time": "2022-04-20T14:46:44+00:00"
+ },
+ {
+ "name": "clue/ndjson-react",
+ "version": "v1.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/clue/reactphp-ndjson.git",
+ "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
+ "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3",
+ "react/stream": "^1.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
+ "react/event-loop": "^1.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Clue\\React\\NDJson\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
{
- "name": "Dariusz Rumiński",
- "email": "dariusz.ruminski@gmail.com"
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering"
}
],
- "description": "A tool to automatically fix PHP code style",
+ "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
+ "homepage": "https://github.com/clue/reactphp-ndjson",
"keywords": [
- "Static code analysis",
- "fixer",
- "standards",
- "static analysis"
+ "NDJSON",
+ "json",
+ "jsonlines",
+ "newline",
+ "reactphp",
+ "streaming"
],
"support": {
- "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
- "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.54.0"
+ "issues": "https://github.com/clue/reactphp-ndjson/issues",
+ "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
},
"funding": [
{
- "url": "https://github.com/keradus",
+ "url": "https://clue.engineering/support",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/clue",
"type": "github"
}
],
- "time": "2024-04-17T08:12:13+00:00"
+ "time": "2022-12-23T10:58:28+00:00"
},
{
- "name": "myclabs/deep-copy",
- "version": "1.11.1",
+ "name": "composer/pcre",
+ "version": "3.1.4",
"source": {
"type": "git",
- "url": "https://github.com/myclabs/DeepCopy.git",
- "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
+ "url": "https://github.com/composer/pcre.git",
+ "reference": "04229f163664973f68f38f6f73d917799168ef24"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
- "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
+ "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
+ "reference": "04229f163664973f68f38f6f73d917799168ef24",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0"
+ "php": "^7.4 || ^8.0"
},
- "conflict": {
- "doctrine/collections": "<1.6.8",
- "doctrine/common": "<2.13.3 || >=3,<3.2.2"
+ "require-dev": {
+ "phpstan/phpstan": "^1.3",
+ "phpstan/phpstan-strict-rules": "^1.1",
+ "symfony/phpunit-bridge": "^5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Composer\\Pcre\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ }
+ ],
+ "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
+ "keywords": [
+ "PCRE",
+ "preg",
+ "regex",
+ "regular expression"
+ ],
+ "support": {
+ "issues": "https://github.com/composer/pcre/issues",
+ "source": "https://github.com/composer/pcre/tree/3.1.4"
+ },
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-27T13:40:54+00:00"
+ },
+ {
+ "name": "composer/semver",
+ "version": "3.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/semver.git",
+ "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
+ "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3.2 || ^7.0 || ^8.0"
},
"require-dev": {
- "doctrine/collections": "^1.6.8",
- "doctrine/common": "^2.13.3 || ^3.2.2",
- "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
+ "phpstan/phpstan": "^1.4",
+ "symfony/phpunit-bridge": "^4.2 || ^5"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.x-dev"
+ }
+ },
"autoload": {
- "files": [
- "src/DeepCopy/deep_copy.php"
- ],
"psr-4": {
- "DeepCopy\\": "src/DeepCopy/"
+ "Composer\\Semver\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "description": "Create deep copies (clones) of your objects",
+ "authors": [
+ {
+ "name": "Nils Adermann",
+ "email": "naderman@naderman.de",
+ "homepage": "http://www.naderman.de"
+ },
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ },
+ {
+ "name": "Rob Bast",
+ "email": "rob.bast@gmail.com",
+ "homepage": "http://robbast.nl"
+ }
+ ],
+ "description": "Semver library that offers utilities, version constraint parsing and validation.",
"keywords": [
- "clone",
- "copy",
- "duplicate",
- "object",
- "object graph"
+ "semantic",
+ "semver",
+ "validation",
+ "versioning"
],
"support": {
- "issues": "https://github.com/myclabs/DeepCopy/issues",
- "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
+ "irc": "ircs://irc.libera.chat:6697/composer",
+ "issues": "https://github.com/composer/semver/issues",
+ "source": "https://github.com/composer/semver/tree/3.4.0"
},
"funding": [
{
- "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
"type": "tidelift"
}
],
- "time": "2023-03-08T13:26:56+00:00"
+ "time": "2023-08-31T09:50:34+00:00"
},
{
- "name": "phar-io/manifest",
- "version": "2.0.4",
+ "name": "composer/xdebug-handler",
+ "version": "3.0.5",
"source": {
"type": "git",
- "url": "https://github.com/phar-io/manifest.git",
- "reference": "54750ef60c58e43759730615a392c31c80e23176"
+ "url": "https://github.com/composer/xdebug-handler.git",
+ "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
- "reference": "54750ef60c58e43759730615a392c31c80e23176",
+ "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
+ "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
"shasum": ""
},
"require": {
- "ext-dom": "*",
- "ext-libxml": "*",
- "ext-phar": "*",
- "ext-xmlwriter": "*",
- "phar-io/version": "^3.0.1",
- "php": "^7.2 || ^8.0"
+ "composer/pcre": "^1 || ^2 || ^3",
+ "php": "^7.2.5 || ^8.0",
+ "psr/log": "^1 || ^2 || ^3"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.0",
+ "phpstan/phpstan-strict-rules": "^1.1",
+ "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0.x-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Composer\\XdebugHandler\\": "src"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Arne Blankerts",
- "email": "arne@blankerts.de",
- "role": "Developer"
- },
- {
- "name": "Sebastian Heuer",
- "email": "sebastian@phpeople.de",
- "role": "Developer"
- },
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "Developer"
+ "name": "John Stevenson",
+ "email": "john-stevenson@blueyonder.co.uk"
}
],
- "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
+ "description": "Restarts a process without Xdebug.",
+ "keywords": [
+ "Xdebug",
+ "performance"
+ ],
"support": {
- "issues": "https://github.com/phar-io/manifest/issues",
- "source": "https://github.com/phar-io/manifest/tree/2.0.4"
+ "irc": "ircs://irc.libera.chat:6697/composer",
+ "issues": "https://github.com/composer/xdebug-handler/issues",
+ "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
},
"funding": [
{
- "url": "https://github.com/theseer",
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
"type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
}
],
- "time": "2024-03-03T12:33:53+00:00"
+ "time": "2024-05-06T16:37:16+00:00"
},
{
- "name": "phar-io/version",
- "version": "3.2.1",
+ "name": "evenement/evenement",
+ "version": "v3.0.2",
"source": {
"type": "git",
- "url": "https://github.com/phar-io/version.git",
- "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
+ "url": "https://github.com/igorw/evenement.git",
+ "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
- "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
+ "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
+ "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
"shasum": ""
},
"require": {
- "php": "^7.2 || ^8.0"
+ "php": ">=7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9 || ^6"
},
"type": "library",
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Evenement\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Arne Blankerts",
- "email": "arne@blankerts.de",
- "role": "Developer"
- },
- {
- "name": "Sebastian Heuer",
- "email": "sebastian@phpeople.de",
- "role": "Developer"
- },
- {
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "Developer"
+ "name": "Igor Wiedler",
+ "email": "igor@wiedler.ch"
}
],
- "description": "Library for handling version information and constraints",
+ "description": "Événement is a very simple event dispatching library for PHP",
+ "keywords": [
+ "event-dispatcher",
+ "event-emitter"
+ ],
"support": {
- "issues": "https://github.com/phar-io/version/issues",
- "source": "https://github.com/phar-io/version/tree/3.2.1"
+ "issues": "https://github.com/igorw/evenement/issues",
+ "source": "https://github.com/igorw/evenement/tree/v3.0.2"
},
- "time": "2022-02-21T01:04:05+00:00"
+ "time": "2023-08-08T05:53:35+00:00"
},
{
- "name": "phpunit/php-code-coverage",
- "version": "10.1.14",
+ "name": "fidry/cpu-core-counter",
+ "version": "1.1.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
+ "url": "https://github.com/theofidry/cpu-core-counter.git",
+ "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
- "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
+ "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
+ "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
"shasum": ""
},
"require": {
- "ext-dom": "*",
- "ext-libxml": "*",
- "ext-xmlwriter": "*",
- "nikic/php-parser": "^4.18 || ^5.0",
- "php": ">=8.1",
- "phpunit/php-file-iterator": "^4.0",
- "phpunit/php-text-template": "^3.0",
- "sebastian/code-unit-reverse-lookup": "^3.0",
- "sebastian/complexity": "^3.0",
- "sebastian/environment": "^6.0",
- "sebastian/lines-of-code": "^2.0",
- "sebastian/version": "^4.0",
- "theseer/tokenizer": "^1.2.0"
+ "php": "^7.2 || ^8.0"
},
"require-dev": {
- "phpunit/phpunit": "^10.1"
- },
- "suggest": {
- "ext-pcov": "PHP extension that provides line coverage",
- "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
+ "fidry/makefile": "^0.2.0",
+ "fidry/php-cs-fixer-config": "^1.1.2",
+ "phpstan/extension-installer": "^1.2.0",
+ "phpstan/phpstan": "^1.9.2",
+ "phpstan/phpstan-deprecation-rules": "^1.0.0",
+ "phpstan/phpstan-phpunit": "^1.2.2",
+ "phpstan/phpstan-strict-rules": "^1.4.4",
+ "phpunit/phpunit": "^8.5.31 || ^9.5.26",
+ "webmozarts/strict-phpunit": "^7.5"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "10.1-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Fidry\\CpuCoreCounter\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Théo FIDRY",
+ "email": "theo.fidry@gmail.com"
}
],
- "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
- "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
+ "description": "Tiny utility to get the number of CPU cores.",
"keywords": [
- "coverage",
- "testing",
- "xunit"
+ "CPU",
+ "core"
],
"support": {
- "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
- "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
+ "issues": "https://github.com/theofidry/cpu-core-counter/issues",
+ "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "url": "https://github.com/theofidry",
"type": "github"
}
],
- "time": "2024-03-12T15:33:41+00:00"
+ "time": "2024-02-07T09:43:46+00:00"
},
{
- "name": "phpunit/php-file-iterator",
- "version": "4.1.0",
+ "name": "friendsofphp/php-cs-fixer",
+ "version": "v3.58.1",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
- "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
+ "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
+ "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
- "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
+ "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
+ "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "clue/ndjson-react": "^1.0",
+ "composer/semver": "^3.4",
+ "composer/xdebug-handler": "^3.0.3",
+ "ext-filter": "*",
+ "ext-json": "*",
+ "ext-tokenizer": "*",
+ "fidry/cpu-core-counter": "^1.0",
+ "php": "^7.4 || ^8.0",
+ "react/child-process": "^0.6.5",
+ "react/event-loop": "^1.0",
+ "react/promise": "^2.0 || ^3.0",
+ "react/socket": "^1.0",
+ "react/stream": "^1.0",
+ "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
+ "symfony/console": "^5.4 || ^6.0 || ^7.0",
+ "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
+ "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
+ "symfony/finder": "^5.4 || ^6.0 || ^7.0",
+ "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
+ "symfony/polyfill-mbstring": "^1.28",
+ "symfony/polyfill-php80": "^1.28",
+ "symfony/polyfill-php81": "^1.28",
+ "symfony/process": "^5.4 || ^6.0 || ^7.0",
+ "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
- "phpunit/phpunit": "^10.0"
+ "facile-it/paraunit": "^1.3 || ^2.0",
+ "infection/infection": "^0.27.11",
+ "justinrainbow/json-schema": "^5.2",
+ "keradus/cli-executor": "^2.1",
+ "mikey179/vfsstream": "^1.6.11",
+ "php-coveralls/php-coveralls": "^2.7",
+ "php-cs-fixer/accessible-object": "^1.1",
+ "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
+ "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
+ "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
+ "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
+ "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "4.0-dev"
- }
+ "suggest": {
+ "ext-dom": "For handling output formats in XML",
+ "ext-mbstring": "For handling non-UTF8 characters."
},
+ "bin": [
+ "php-cs-fixer"
+ ],
+ "type": "application",
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "PhpCsFixer\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Dariusz Rumiński",
+ "email": "dariusz.ruminski@gmail.com"
}
],
- "description": "FilterIterator implementation that filters files based on a list of suffixes.",
- "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
+ "description": "A tool to automatically fix PHP code style",
"keywords": [
- "filesystem",
- "iterator"
+ "Static code analysis",
+ "fixer",
+ "standards",
+ "static analysis"
],
"support": {
- "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
- "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
- "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
+ "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
+ "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "url": "https://github.com/keradus",
"type": "github"
}
],
- "time": "2023-08-31T06:24:48+00:00"
+ "time": "2024-05-29T16:39:07+00:00"
},
{
- "name": "phpunit/php-invoker",
- "version": "4.0.0",
+ "name": "justinrainbow/json-schema",
+ "version": "v5.2.13",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-invoker.git",
- "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
+ "url": "https://github.com/jsonrainbow/json-schema.git",
+ "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
- "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
+ "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793",
+ "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "php": ">=5.3.3"
},
"require-dev": {
- "ext-pcntl": "*",
- "phpunit/phpunit": "^10.0"
- },
- "suggest": {
- "ext-pcntl": "*"
+ "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
+ "json-schema/json-schema-test-suite": "1.2.0",
+ "phpunit/phpunit": "^4.8.35"
},
+ "bin": [
+ "bin/validate-json"
+ ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "4.0-dev"
+ "dev-master": "5.0.x-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "JsonSchema\\": "src/JsonSchema/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Bruno Prieto Reis",
+ "email": "bruno.p.reis@gmail.com"
+ },
+ {
+ "name": "Justin Rainbow",
+ "email": "justin.rainbow@gmail.com"
+ },
+ {
+ "name": "Igor Wiedler",
+ "email": "igor@wiedler.ch"
+ },
+ {
+ "name": "Robert Schönthal",
+ "email": "seroscho@googlemail.com"
}
],
- "description": "Invoke callables with a timeout",
- "homepage": "https://github.com/sebastianbergmann/php-invoker/",
+ "description": "A library to validate a json schema.",
+ "homepage": "https://github.com/justinrainbow/json-schema",
"keywords": [
- "process"
+ "json",
+ "schema"
],
"support": {
- "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
- "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
+ "issues": "https://github.com/jsonrainbow/json-schema/issues",
+ "source": "https://github.com/jsonrainbow/json-schema/tree/v5.2.13"
},
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2023-02-03T06:56:09+00:00"
+ "time": "2023-09-26T02:20:38+00:00"
},
{
- "name": "phpunit/php-text-template",
- "version": "3.0.1",
+ "name": "league/html-to-markdown",
+ "version": "5.1.1",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-text-template.git",
- "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
+ "url": "https://github.com/thephpleague/html-to-markdown.git",
+ "reference": "0b4066eede55c48f38bcee4fb8f0aa85654390fd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
- "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
+ "url": "https://api.github.com/repos/thephpleague/html-to-markdown/zipball/0b4066eede55c48f38bcee4fb8f0aa85654390fd",
+ "reference": "0b4066eede55c48f38bcee4fb8f0aa85654390fd",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "ext-dom": "*",
+ "ext-xml": "*",
+ "php": "^7.2.5 || ^8.0"
},
"require-dev": {
- "phpunit/phpunit": "^10.0"
+ "mikehaertl/php-shellcommand": "^1.1.0",
+ "phpstan/phpstan": "^1.8.8",
+ "phpunit/phpunit": "^8.5 || ^9.2",
+ "scrutinizer/ocular": "^1.6",
+ "unleashedtech/php-coding-standard": "^2.7 || ^3.0",
+ "vimeo/psalm": "^4.22 || ^5.0"
},
+ "bin": [
+ "bin/html-to-markdown"
+ ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "3.0-dev"
+ "dev-master": "5.2-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "League\\HTMLToMarkdown\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Colin O'Dell",
+ "email": "colinodell@gmail.com",
+ "homepage": "https://www.colinodell.com",
+ "role": "Lead Developer"
+ },
+ {
+ "name": "Nick Cernis",
+ "email": "nick@cern.is",
+ "homepage": "http://modernnerd.net",
+ "role": "Original Author"
}
],
- "description": "Simple template engine.",
- "homepage": "https://github.com/sebastianbergmann/php-text-template/",
+ "description": "An HTML-to-markdown conversion helper for PHP",
+ "homepage": "https://github.com/thephpleague/html-to-markdown",
"keywords": [
- "template"
+ "html",
+ "markdown"
],
"support": {
- "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
- "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
- "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
+ "issues": "https://github.com/thephpleague/html-to-markdown/issues",
+ "source": "https://github.com/thephpleague/html-to-markdown/tree/5.1.1"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "url": "https://www.colinodell.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.paypal.me/colinpodell/10.00",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/colinodell",
"type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/league/html-to-markdown",
+ "type": "tidelift"
}
],
- "time": "2023-08-31T14:07:24+00:00"
+ "time": "2023-07-12T21:21:09+00:00"
},
{
- "name": "phpunit/php-timer",
- "version": "6.0.0",
+ "name": "masterminds/html5",
+ "version": "2.9.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/php-timer.git",
- "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
+ "url": "https://github.com/Masterminds/html5-php.git",
+ "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
- "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
+ "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
+ "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "ext-dom": "*",
+ "php": ">=5.3.0"
},
"require-dev": {
- "phpunit/phpunit": "^10.0"
+ "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "6.0-dev"
+ "dev-master": "2.7-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "Masterminds\\": "src"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Matt Butcher",
+ "email": "technosophos@gmail.com"
+ },
+ {
+ "name": "Matt Farina",
+ "email": "matt@mattfarina.com"
+ },
+ {
+ "name": "Asmir Mustafic",
+ "email": "goetas@gmail.com"
}
],
- "description": "Utility class for timing",
- "homepage": "https://github.com/sebastianbergmann/php-timer/",
+ "description": "An HTML5 parser and serializer.",
+ "homepage": "http://masterminds.github.io/html5-php",
"keywords": [
- "timer"
+ "HTML5",
+ "dom",
+ "html",
+ "parser",
+ "querypath",
+ "serializer",
+ "xml"
],
"support": {
- "issues": "https://github.com/sebastianbergmann/php-timer/issues",
- "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
+ "issues": "https://github.com/Masterminds/html5-php/issues",
+ "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
},
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2023-02-03T06:57:52+00:00"
+ "time": "2024-03-31T07:05:07+00:00"
},
{
- "name": "phpunit/phpunit",
- "version": "10.5.19",
+ "name": "nette/php-generator",
+ "version": "v4.1.5",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "c726f0de022368f6ed103e452a765d3304a996a4"
+ "url": "https://github.com/nette/php-generator.git",
+ "reference": "690b00d81d42d5633e4457c43ef9754573b6f9d6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c726f0de022368f6ed103e452a765d3304a996a4",
- "reference": "c726f0de022368f6ed103e452a765d3304a996a4",
+ "url": "https://api.github.com/repos/nette/php-generator/zipball/690b00d81d42d5633e4457c43ef9754573b6f9d6",
+ "reference": "690b00d81d42d5633e4457c43ef9754573b6f9d6",
"shasum": ""
},
"require": {
- "ext-dom": "*",
- "ext-json": "*",
- "ext-libxml": "*",
- "ext-mbstring": "*",
- "ext-xml": "*",
- "ext-xmlwriter": "*",
- "myclabs/deep-copy": "^1.10.1",
- "phar-io/manifest": "^2.0.3",
- "phar-io/version": "^3.0.2",
- "php": ">=8.1",
- "phpunit/php-code-coverage": "^10.1.5",
- "phpunit/php-file-iterator": "^4.0",
- "phpunit/php-invoker": "^4.0",
- "phpunit/php-text-template": "^3.0",
- "phpunit/php-timer": "^6.0",
- "sebastian/cli-parser": "^2.0",
- "sebastian/code-unit": "^2.0",
- "sebastian/comparator": "^5.0",
- "sebastian/diff": "^5.0",
- "sebastian/environment": "^6.0",
- "sebastian/exporter": "^5.1",
- "sebastian/global-state": "^6.0.1",
- "sebastian/object-enumerator": "^5.0",
- "sebastian/recursion-context": "^5.0",
- "sebastian/type": "^4.0",
- "sebastian/version": "^4.0"
+ "nette/utils": "^3.2.9 || ^4.0",
+ "php": "8.0 - 8.3"
+ },
+ "require-dev": {
+ "jetbrains/phpstorm-attributes": "dev-master",
+ "nette/tester": "^2.4",
+ "nikic/php-parser": "^4.18 || ^5.0",
+ "phpstan/phpstan": "^1.0",
+ "tracy/tracy": "^2.8"
},
"suggest": {
- "ext-soap": "To be able to generate mocks based on WSDL files"
+ "nikic/php-parser": "to use ClassType::from(withBodies: true) & ClassType::fromCode()"
},
- "bin": [
- "phpunit"
- ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "10.5-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
- "files": [
- "src/Framework/Assert/Functions.php"
- ],
"classmap": [
"src/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "BSD-3-Clause",
+ "GPL-2.0-only",
+ "GPL-3.0-only"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "David Grudl",
+ "homepage": "https://davidgrudl.com"
+ },
+ {
+ "name": "Nette Community",
+ "homepage": "https://nette.org/contributors"
}
],
- "description": "The PHP Unit Testing framework.",
- "homepage": "https://phpunit.de/",
+ "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 8.3 features.",
+ "homepage": "https://nette.org",
"keywords": [
- "phpunit",
- "testing",
- "xunit"
+ "code",
+ "nette",
+ "php",
+ "scaffolding"
],
"support": {
- "issues": "https://github.com/sebastianbergmann/phpunit/issues",
- "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
- "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.19"
+ "issues": "https://github.com/nette/php-generator/issues",
+ "source": "https://github.com/nette/php-generator/tree/v4.1.5"
},
- "funding": [
- {
- "url": "https://phpunit.de/sponsors.html",
- "type": "custom"
- },
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
- "type": "tidelift"
- }
- ],
- "time": "2024-04-17T14:06:18+00:00"
+ "time": "2024-05-12T17:31:02+00:00"
},
{
- "name": "sebastian/cli-parser",
- "version": "2.0.1",
+ "name": "nette/utils",
+ "version": "v4.0.4",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/cli-parser.git",
- "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
+ "url": "https://github.com/nette/utils.git",
+ "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
- "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
+ "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
+ "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "php": ">=8.0 <8.4"
+ },
+ "conflict": {
+ "nette/finder": "<3",
+ "nette/schema": "<1.2.2"
},
"require-dev": {
- "phpunit/phpunit": "^10.0"
+ "jetbrains/phpstorm-attributes": "dev-master",
+ "nette/tester": "^2.5",
+ "phpstan/phpstan": "^1.0",
+ "tracy/tracy": "^2.9"
+ },
+ "suggest": {
+ "ext-gd": "to use Image",
+ "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
+ "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
+ "ext-json": "to use Nette\\Utils\\Json",
+ "ext-mbstring": "to use Strings::lower() etc...",
+ "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "2.0-dev"
+ "dev-master": "4.0-dev"
}
},
"autoload": {
@@ -6802,507 +9658,594 @@
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "BSD-3-Clause",
+ "GPL-2.0-only",
+ "GPL-3.0-only"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "David Grudl",
+ "homepage": "https://davidgrudl.com"
+ },
+ {
+ "name": "Nette Community",
+ "homepage": "https://nette.org/contributors"
}
],
- "description": "Library for parsing CLI options",
- "homepage": "https://github.com/sebastianbergmann/cli-parser",
+ "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
+ "homepage": "https://nette.org",
+ "keywords": [
+ "array",
+ "core",
+ "datetime",
+ "images",
+ "json",
+ "nette",
+ "paginator",
+ "password",
+ "slugify",
+ "string",
+ "unicode",
+ "utf-8",
+ "utility",
+ "validation"
+ ],
"support": {
- "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
- "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
- "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
+ "issues": "https://github.com/nette/utils/issues",
+ "source": "https://github.com/nette/utils/tree/v4.0.4"
},
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2024-03-02T07:12:49+00:00"
+ "time": "2024-01-17T16:50:36+00:00"
},
{
- "name": "sebastian/code-unit",
- "version": "2.0.0",
+ "name": "react/cache",
+ "version": "v1.2.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/code-unit.git",
- "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
+ "url": "https://github.com/reactphp/cache.git",
+ "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
- "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
+ "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
+ "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "php": ">=5.3.0",
+ "react/promise": "^3.0 || ^2.0 || ^1.1"
},
"require-dev": {
- "phpunit/phpunit": "^10.0"
+ "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "2.0-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "React\\Cache\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering",
+ "homepage": "https://clue.engineering/"
+ },
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "reactphp@ceesjankiewiet.nl",
+ "homepage": "https://wyrihaximus.net/"
+ },
+ {
+ "name": "Jan Sorgalla",
+ "email": "jsorgalla@gmail.com",
+ "homepage": "https://sorgalla.com/"
+ },
+ {
+ "name": "Chris Boden",
+ "email": "cboden@gmail.com",
+ "homepage": "https://cboden.dev/"
}
],
- "description": "Collection of value objects that represent the PHP code units",
- "homepage": "https://github.com/sebastianbergmann/code-unit",
+ "description": "Async, Promise-based cache interface for ReactPHP",
+ "keywords": [
+ "cache",
+ "caching",
+ "promise",
+ "reactphp"
+ ],
"support": {
- "issues": "https://github.com/sebastianbergmann/code-unit/issues",
- "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
+ "issues": "https://github.com/reactphp/cache/issues",
+ "source": "https://github.com/reactphp/cache/tree/v1.2.0"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
}
],
- "time": "2023-02-03T06:58:43+00:00"
+ "time": "2022-11-30T15:59:55+00:00"
},
{
- "name": "sebastian/code-unit-reverse-lookup",
- "version": "3.0.0",
+ "name": "react/child-process",
+ "version": "v0.6.5",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
- "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
+ "url": "https://github.com/reactphp/child-process.git",
+ "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
- "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
+ "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
+ "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
+ "php": ">=5.3.0",
+ "react/event-loop": "^1.2",
+ "react/stream": "^1.2"
},
"require-dev": {
- "phpunit/phpunit": "^10.0"
+ "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
+ "react/socket": "^1.8",
+ "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.0-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "React\\ChildProcess\\": "src"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering",
+ "homepage": "https://clue.engineering/"
+ },
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "reactphp@ceesjankiewiet.nl",
+ "homepage": "https://wyrihaximus.net/"
+ },
+ {
+ "name": "Jan Sorgalla",
+ "email": "jsorgalla@gmail.com",
+ "homepage": "https://sorgalla.com/"
+ },
+ {
+ "name": "Chris Boden",
+ "email": "cboden@gmail.com",
+ "homepage": "https://cboden.dev/"
}
],
- "description": "Looks up which function or method a line of code belongs to",
- "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
+ "description": "Event-driven library for executing child processes with ReactPHP.",
+ "keywords": [
+ "event-driven",
+ "process",
+ "reactphp"
+ ],
"support": {
- "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
- "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
+ "issues": "https://github.com/reactphp/child-process/issues",
+ "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "url": "https://github.com/WyriHaximus",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/clue",
"type": "github"
}
],
- "time": "2023-02-03T06:59:15+00:00"
+ "time": "2022-09-16T13:41:56+00:00"
},
{
- "name": "sebastian/comparator",
- "version": "5.0.1",
+ "name": "react/dns",
+ "version": "v1.13.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
+ "url": "https://github.com/reactphp/dns.git",
+ "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
- "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
+ "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
+ "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
"shasum": ""
},
"require": {
- "ext-dom": "*",
- "ext-mbstring": "*",
- "php": ">=8.1",
- "sebastian/diff": "^5.0",
- "sebastian/exporter": "^5.0"
+ "php": ">=5.3.0",
+ "react/cache": "^1.0 || ^0.6 || ^0.5",
+ "react/event-loop": "^1.2",
+ "react/promise": "^3.2 || ^2.7 || ^1.2.1"
},
"require-dev": {
- "phpunit/phpunit": "^10.3"
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
+ "react/async": "^4.3 || ^3 || ^2",
+ "react/promise-timer": "^1.11"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "5.0-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "React\\Dns\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering",
+ "homepage": "https://clue.engineering/"
},
{
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
+ "name": "Cees-Jan Kiewiet",
+ "email": "reactphp@ceesjankiewiet.nl",
+ "homepage": "https://wyrihaximus.net/"
},
{
- "name": "Volker Dusch",
- "email": "github@wallbash.com"
+ "name": "Jan Sorgalla",
+ "email": "jsorgalla@gmail.com",
+ "homepage": "https://sorgalla.com/"
},
{
- "name": "Bernhard Schussek",
- "email": "bschussek@2bepublished.at"
+ "name": "Chris Boden",
+ "email": "cboden@gmail.com",
+ "homepage": "https://cboden.dev/"
}
],
- "description": "Provides the functionality to compare PHP values for equality",
- "homepage": "https://github.com/sebastianbergmann/comparator",
+ "description": "Async DNS resolver for ReactPHP",
"keywords": [
- "comparator",
- "compare",
- "equality"
+ "async",
+ "dns",
+ "dns-resolver",
+ "reactphp"
],
"support": {
- "issues": "https://github.com/sebastianbergmann/comparator/issues",
- "security": "https://github.com/sebastianbergmann/comparator/security/policy",
- "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
+ "issues": "https://github.com/reactphp/dns/issues",
+ "source": "https://github.com/reactphp/dns/tree/v1.13.0"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
}
],
- "time": "2023-08-14T13:18:12+00:00"
+ "time": "2024-06-13T14:18:03+00:00"
},
{
- "name": "sebastian/complexity",
- "version": "3.2.0",
+ "name": "react/event-loop",
+ "version": "v1.5.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/complexity.git",
- "reference": "68ff824baeae169ec9f2137158ee529584553799"
+ "url": "https://github.com/reactphp/event-loop.git",
+ "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
- "reference": "68ff824baeae169ec9f2137158ee529584553799",
+ "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
+ "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
"shasum": ""
},
"require": {
- "nikic/php-parser": "^4.18 || ^5.0",
- "php": ">=8.1"
+ "php": ">=5.3.0"
},
"require-dev": {
- "phpunit/phpunit": "^10.0"
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.2-dev"
- }
+ "suggest": {
+ "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
},
+ "type": "library",
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "React\\EventLoop\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering",
+ "homepage": "https://clue.engineering/"
+ },
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "reactphp@ceesjankiewiet.nl",
+ "homepage": "https://wyrihaximus.net/"
+ },
+ {
+ "name": "Jan Sorgalla",
+ "email": "jsorgalla@gmail.com",
+ "homepage": "https://sorgalla.com/"
+ },
+ {
+ "name": "Chris Boden",
+ "email": "cboden@gmail.com",
+ "homepage": "https://cboden.dev/"
}
],
- "description": "Library for calculating the complexity of PHP code units",
- "homepage": "https://github.com/sebastianbergmann/complexity",
+ "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
+ "keywords": [
+ "asynchronous",
+ "event-loop"
+ ],
"support": {
- "issues": "https://github.com/sebastianbergmann/complexity/issues",
- "security": "https://github.com/sebastianbergmann/complexity/security/policy",
- "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
+ "issues": "https://github.com/reactphp/event-loop/issues",
+ "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
}
],
- "time": "2023-12-21T08:37:17+00:00"
+ "time": "2023-11-13T13:48:05+00:00"
},
{
- "name": "sebastian/diff",
- "version": "5.1.1",
+ "name": "react/promise",
+ "version": "v3.2.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/diff.git",
- "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
+ "url": "https://github.com/reactphp/promise.git",
+ "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
- "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
+ "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
+ "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "php": ">=7.1.0"
},
"require-dev": {
- "phpunit/phpunit": "^10.0",
- "symfony/process": "^6.4"
+ "phpstan/phpstan": "1.10.39 || 1.4.10",
+ "phpunit/phpunit": "^9.6 || ^7.5"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "5.1-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "files": [
+ "src/functions_include.php"
+ ],
+ "psr-4": {
+ "React\\Promise\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Jan Sorgalla",
+ "email": "jsorgalla@gmail.com",
+ "homepage": "https://sorgalla.com/"
},
{
- "name": "Kore Nordmann",
- "email": "mail@kore-nordmann.de"
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering",
+ "homepage": "https://clue.engineering/"
+ },
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "reactphp@ceesjankiewiet.nl",
+ "homepage": "https://wyrihaximus.net/"
+ },
+ {
+ "name": "Chris Boden",
+ "email": "cboden@gmail.com",
+ "homepage": "https://cboden.dev/"
}
],
- "description": "Diff implementation",
- "homepage": "https://github.com/sebastianbergmann/diff",
+ "description": "A lightweight implementation of CommonJS Promises/A for PHP",
"keywords": [
- "diff",
- "udiff",
- "unidiff",
- "unified diff"
+ "promise",
+ "promises"
],
"support": {
- "issues": "https://github.com/sebastianbergmann/diff/issues",
- "security": "https://github.com/sebastianbergmann/diff/security/policy",
- "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
+ "issues": "https://github.com/reactphp/promise/issues",
+ "source": "https://github.com/reactphp/promise/tree/v3.2.0"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
}
],
- "time": "2024-03-02T07:15:17+00:00"
+ "time": "2024-05-24T10:39:05+00:00"
},
{
- "name": "sebastian/environment",
- "version": "6.1.0",
+ "name": "react/socket",
+ "version": "v1.15.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/environment.git",
- "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
+ "url": "https://github.com/reactphp/socket.git",
+ "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
- "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
+ "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
+ "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
+ "php": ">=5.3.0",
+ "react/dns": "^1.11",
+ "react/event-loop": "^1.2",
+ "react/promise": "^3 || ^2.6 || ^1.2.1",
+ "react/stream": "^1.2"
},
"require-dev": {
- "phpunit/phpunit": "^10.0"
- },
- "suggest": {
- "ext-posix": "*"
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
+ "react/async": "^4 || ^3 || ^2",
+ "react/promise-stream": "^1.4",
+ "react/promise-timer": "^1.10"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "6.1-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "React\\Socket\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering",
+ "homepage": "https://clue.engineering/"
+ },
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "reactphp@ceesjankiewiet.nl",
+ "homepage": "https://wyrihaximus.net/"
+ },
+ {
+ "name": "Jan Sorgalla",
+ "email": "jsorgalla@gmail.com",
+ "homepage": "https://sorgalla.com/"
+ },
+ {
+ "name": "Chris Boden",
+ "email": "cboden@gmail.com",
+ "homepage": "https://cboden.dev/"
}
],
- "description": "Provides functionality to handle HHVM/PHP environments",
- "homepage": "https://github.com/sebastianbergmann/environment",
+ "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
"keywords": [
- "Xdebug",
- "environment",
- "hhvm"
+ "Connection",
+ "Socket",
+ "async",
+ "reactphp",
+ "stream"
],
"support": {
- "issues": "https://github.com/sebastianbergmann/environment/issues",
- "security": "https://github.com/sebastianbergmann/environment/security/policy",
- "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
+ "issues": "https://github.com/reactphp/socket/issues",
+ "source": "https://github.com/reactphp/socket/tree/v1.15.0"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
}
],
- "time": "2024-03-23T08:47:14+00:00"
+ "time": "2023-12-15T11:02:10+00:00"
},
{
- "name": "sebastian/exporter",
- "version": "5.1.2",
+ "name": "react/stream",
+ "version": "v1.4.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/exporter.git",
- "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
+ "url": "https://github.com/reactphp/stream.git",
+ "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
- "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
+ "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
+ "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
"shasum": ""
},
"require": {
- "ext-mbstring": "*",
- "php": ">=8.1",
- "sebastian/recursion-context": "^5.0"
+ "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
+ "php": ">=5.3.8",
+ "react/event-loop": "^1.2"
},
"require-dev": {
- "phpunit/phpunit": "^10.0"
+ "clue/stream-filter": "~1.2",
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "5.1-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "React\\Stream\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering",
+ "homepage": "https://clue.engineering/"
},
{
- "name": "Volker Dusch",
- "email": "github@wallbash.com"
+ "name": "Cees-Jan Kiewiet",
+ "email": "reactphp@ceesjankiewiet.nl",
+ "homepage": "https://wyrihaximus.net/"
},
{
- "name": "Adam Harvey",
- "email": "aharvey@php.net"
+ "name": "Jan Sorgalla",
+ "email": "jsorgalla@gmail.com",
+ "homepage": "https://sorgalla.com/"
},
{
- "name": "Bernhard Schussek",
- "email": "bschussek@gmail.com"
+ "name": "Chris Boden",
+ "email": "cboden@gmail.com",
+ "homepage": "https://cboden.dev/"
}
],
- "description": "Provides the functionality to export PHP variables for visualization",
- "homepage": "https://www.github.com/sebastianbergmann/exporter",
+ "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
"keywords": [
- "export",
- "exporter"
+ "event-driven",
+ "io",
+ "non-blocking",
+ "pipe",
+ "reactphp",
+ "readable",
+ "stream",
+ "writable"
],
"support": {
- "issues": "https://github.com/sebastianbergmann/exporter/issues",
- "security": "https://github.com/sebastianbergmann/exporter/security/policy",
- "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
+ "issues": "https://github.com/reactphp/stream/issues",
+ "source": "https://github.com/reactphp/stream/tree/v1.4.0"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
}
],
- "time": "2024-03-02T07:17:12+00:00"
+ "time": "2024-06-11T12:45:25+00:00"
},
{
- "name": "sebastian/global-state",
- "version": "6.0.2",
+ "name": "sebastian/diff",
+ "version": "6.0.1",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/global-state.git",
- "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
+ "url": "https://github.com/sebastianbergmann/diff.git",
+ "reference": "ab83243ecc233de5655b76f577711de9f842e712"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
- "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ab83243ecc233de5655b76f577711de9f842e712",
+ "reference": "ab83243ecc233de5655b76f577711de9f842e712",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "sebastian/object-reflector": "^3.0",
- "sebastian/recursion-context": "^5.0"
+ "php": ">=8.2"
},
"require-dev": {
- "ext-dom": "*",
- "phpunit/phpunit": "^10.0"
+ "phpunit/phpunit": "^11.0",
+ "symfony/process": "^4.2 || ^5"
},
"type": "library",
"extra": {
@@ -7323,17 +10266,24 @@
{
"name": "Sebastian Bergmann",
"email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Kore Nordmann",
+ "email": "mail@kore-nordmann.de"
}
],
- "description": "Snapshotting of global state",
- "homepage": "https://www.github.com/sebastianbergmann/global-state",
+ "description": "Diff implementation",
+ "homepage": "https://github.com/sebastianbergmann/diff",
"keywords": [
- "global state"
+ "diff",
+ "udiff",
+ "unidiff",
+ "unified diff"
],
"support": {
- "issues": "https://github.com/sebastianbergmann/global-state/issues",
- "security": "https://github.com/sebastianbergmann/global-state/security/policy",
- "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
+ "issues": "https://github.com/sebastianbergmann/diff/issues",
+ "security": "https://github.com/sebastianbergmann/diff/security/policy",
+ "source": "https://github.com/sebastianbergmann/diff/tree/6.0.1"
},
"funding": [
{
@@ -7341,39 +10291,49 @@
"type": "github"
}
],
- "time": "2024-03-02T07:19:19+00:00"
+ "time": "2024-03-02T07:30:33+00:00"
},
{
- "name": "sebastian/lines-of-code",
- "version": "2.0.2",
+ "name": "sweetrdf/easyrdf",
+ "version": "1.14.1",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/lines-of-code.git",
- "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
+ "url": "https://github.com/sweetrdf/easyrdf.git",
+ "reference": "b5eeeb31795fedd773acd867a461aeba75f8a347"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
- "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
+ "url": "https://api.github.com/repos/sweetrdf/easyrdf/zipball/b5eeeb31795fedd773acd867a461aeba75f8a347",
+ "reference": "b5eeeb31795fedd773acd867a461aeba75f8a347",
"shasum": ""
},
"require": {
- "nikic/php-parser": "^4.18 || ^5.0",
- "php": ">=8.1"
+ "ext-dom": "*",
+ "ext-mbstring": "*",
+ "ext-pcre": "*",
+ "ext-xmlreader": "*",
+ "lib-libxml": "*",
+ "php": "^8.0",
+ "sweetrdf/rdf-helpers": "^2.0"
+ },
+ "replace": {
+ "easyrdf/easyrdf": "1.1.*"
},
"require-dev": {
- "phpunit/phpunit": "^10.0"
+ "friendsofphp/php-cs-fixer": "^3.0",
+ "laminas/laminas-http": "^2",
+ "ml/json-ld": "^1.0",
+ "phpstan/phpstan": "^1.0",
+ "phpstan/phpstan-phpunit": "^1.0",
+ "phpunit/phpunit": "^9.5.0|^10.0.0",
+ "semsol/arc2": "^3",
+ "zendframework/zend-http": "^2"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "2.0-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "EasyRdf\\": "lib"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -7381,333 +10341,368 @@
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
- }
- ],
- "description": "Library for counting the lines of code in PHP source code",
- "homepage": "https://github.com/sebastianbergmann/lines-of-code",
- "support": {
- "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
- "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
- "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
- },
- "funding": [
+ "name": "Nicholas Humfrey",
+ "email": "njh@aelius.com",
+ "homepage": "http://www.aelius.com/njh/",
+ "role": "Developer"
+ },
{
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
+ "name": "Alexey Zakhlestin",
+ "email": "indeyets@gmail.com",
+ "homepage": "http://indeyets.ru/",
+ "role": "Developer"
+ },
+ {
+ "name": "Konrad Abicht",
+ "email": "hi@inspirito.de",
+ "homepage": "http://inspirito.de/",
+ "role": "Maintainer, Developer"
}
],
- "time": "2023-12-21T08:38:20+00:00"
+ "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
+ "keywords": [
+ "Linked Data",
+ "RDF",
+ "Semantic Web",
+ "Turtle",
+ "rdfa",
+ "sparql"
+ ],
+ "support": {
+ "issues": "https://github.com/sweetrdf/easyrdf/issues",
+ "source": "https://github.com/sweetrdf/easyrdf/tree/1.14.1"
+ },
+ "time": "2024-05-27T10:24:12+00:00"
},
{
- "name": "sebastian/object-enumerator",
- "version": "5.0.0",
+ "name": "sweetrdf/rdf-helpers",
+ "version": "2.0.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/object-enumerator.git",
- "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
+ "url": "https://github.com/sweetrdf/rdfHelpers.git",
+ "reference": "3c2cb15e86053fcf5c52235da75c2b141218e3f8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
- "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
+ "url": "https://api.github.com/repos/sweetrdf/rdfHelpers/zipball/3c2cb15e86053fcf5c52235da75c2b141218e3f8",
+ "reference": "3c2cb15e86053fcf5c52235da75c2b141218e3f8",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "sebastian/object-reflector": "^3.0",
- "sebastian/recursion-context": "^5.0"
+ "php": ">=8.0",
+ "sweetrdf/rdf-interface": "^2",
+ "zozlak/rdf-constants": "^1.1"
},
"require-dev": {
- "phpunit/phpunit": "^10.0"
+ "phpstan/phpstan": "^1",
+ "phpunit/phpunit": "^10"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "5.0-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "rdfHelpers\\": "src/rdfHelpers"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Mateusz Żółtak",
+ "email": "zozlak@zozlak.org",
+ "role": "Developer"
}
],
- "description": "Traverses array structures and object graphs to enumerate all referenced objects",
- "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
+ "description": "Set of low level helpers for implementing rdfInterface",
+ "homepage": "https://github.com/sweetrdf/rdfHelpers",
"support": {
- "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
- "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
+ "issues": "https://github.com/sweetrdf/rdfHelpers/issues",
+ "source": "https://github.com/sweetrdf/rdfHelpers/tree/2.0.0"
},
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2023-02-03T07:08:32+00:00"
+ "time": "2024-02-13T12:03:47+00:00"
},
{
- "name": "sebastian/object-reflector",
- "version": "3.0.0",
+ "name": "sweetrdf/rdf-interface",
+ "version": "2.0.0",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/object-reflector.git",
- "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
+ "url": "https://github.com/sweetrdf/rdfInterface.git",
+ "reference": "9a8c01779a214fa37f3420aa1d7228d51c170a19"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
- "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
+ "url": "https://api.github.com/repos/sweetrdf/rdfInterface/zipball/9a8c01779a214fa37f3420aa1d7228d51c170a19",
+ "reference": "9a8c01779a214fa37f3420aa1d7228d51c170a19",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "php": ">=8.0",
+ "psr/http-message": "^1.0 || ^2.0",
+ "zozlak/rdf-constants": "*"
},
"require-dev": {
- "phpunit/phpunit": "^10.0"
+ "phpstan/phpstan": "*"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.0-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "rdfInterface\\": "src/rdfInterface"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Mateusz Żółtak",
+ "email": "zozlak@zozlak.org",
+ "role": "Developer"
}
],
- "description": "Allows reflection of object attributes, including inherited and non-public ones",
- "homepage": "https://github.com/sebastianbergmann/object-reflector/",
+ "description": "A common RDF interface for PHP RDF libraries.",
+ "homepage": "https://github.com/sweetrdf/rdfInterface",
"support": {
- "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
- "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
+ "issues": "https://github.com/sweetrdf/rdfInterface/issues",
+ "source": "https://github.com/sweetrdf/rdfInterface/tree/2.0.0"
},
- "funding": [
- {
- "url": "https://github.com/sebastianbergmann",
- "type": "github"
- }
- ],
- "time": "2023-02-03T07:06:18+00:00"
+ "time": "2024-02-09T12:03:33+00:00"
},
{
- "name": "sebastian/recursion-context",
- "version": "5.0.0",
+ "name": "symfony/browser-kit",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/recursion-context.git",
- "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
+ "url": "https://github.com/symfony/browser-kit.git",
+ "reference": "62ab90b92066ef6cce5e79365625b4b1432464c8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
- "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
+ "url": "https://api.github.com/repos/symfony/browser-kit/zipball/62ab90b92066ef6cce5e79365625b4b1432464c8",
+ "reference": "62ab90b92066ef6cce5e79365625b4b1432464c8",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "php": ">=8.1",
+ "symfony/dom-crawler": "^5.4|^6.0|^7.0"
},
"require-dev": {
- "phpunit/phpunit": "^10.0"
+ "symfony/css-selector": "^5.4|^6.0|^7.0",
+ "symfony/http-client": "^5.4|^6.0|^7.0",
+ "symfony/mime": "^5.4|^6.0|^7.0",
+ "symfony/process": "^5.4|^6.0|^7.0"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "5.0-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
+ "psr-4": {
+ "Symfony\\Component\\BrowserKit\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
- },
- {
- "name": "Jeff Welch",
- "email": "whatthejeff@gmail.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
- "name": "Adam Harvey",
- "email": "aharvey@php.net"
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides functionality to recursively process PHP variables",
- "homepage": "https://github.com/sebastianbergmann/recursion-context",
+ "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
+ "homepage": "https://symfony.com",
"support": {
- "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
- "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
+ "source": "https://github.com/symfony/browser-kit/tree/v6.4.8"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
"type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
}
],
- "time": "2023-02-03T07:05:40+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "sebastian/type",
- "version": "4.0.0",
+ "name": "symfony/css-selector",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/type.git",
- "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
+ "url": "https://github.com/symfony/css-selector.git",
+ "reference": "4b61b02fe15db48e3687ce1c45ea385d1780fe08"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
- "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/4b61b02fe15db48e3687ce1c45ea385d1780fe08",
+ "reference": "4b61b02fe15db48e3687ce1c45ea385d1780fe08",
"shasum": ""
},
"require": {
"php": ">=8.1"
},
- "require-dev": {
- "phpunit/phpunit": "^10.0"
- },
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "4.0-dev"
- }
- },
"autoload": {
- "classmap": [
- "src/"
+ "psr-4": {
+ "Symfony\\Component\\CssSelector\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Jean-François Simon",
+ "email": "jeanfrancois.simon@sensiolabs.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Collection of value objects that represent the types of the PHP type system",
- "homepage": "https://github.com/sebastianbergmann/type",
+ "description": "Converts CSS selectors to XPath expressions",
+ "homepage": "https://symfony.com",
"support": {
- "issues": "https://github.com/sebastianbergmann/type/issues",
- "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
+ "source": "https://github.com/symfony/css-selector/tree/v6.4.8"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
"type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
}
],
- "time": "2023-02-03T07:10:45+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "sebastian/version",
- "version": "4.0.1",
+ "name": "symfony/debug-bundle",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/version.git",
- "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
+ "url": "https://github.com/symfony/debug-bundle.git",
+ "reference": "689f1bcb0bd3b945e3c671cbd06274b127c64dc9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
- "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
+ "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/689f1bcb0bd3b945e3c671cbd06274b127c64dc9",
+ "reference": "689f1bcb0bd3b945e3c671cbd06274b127c64dc9",
"shasum": ""
},
"require": {
- "php": ">=8.1"
+ "ext-xml": "*",
+ "php": ">=8.1",
+ "symfony/dependency-injection": "^5.4|^6.0|^7.0",
+ "symfony/http-kernel": "^5.4|^6.0|^7.0",
+ "symfony/twig-bridge": "^5.4|^6.0|^7.0",
+ "symfony/var-dumper": "^5.4|^6.0|^7.0"
},
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "4.0-dev"
- }
+ "conflict": {
+ "symfony/config": "<5.4",
+ "symfony/dependency-injection": "<5.4"
+ },
+ "require-dev": {
+ "symfony/config": "^5.4|^6.0|^7.0",
+ "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
},
+ "type": "symfony-bundle",
"autoload": {
- "classmap": [
- "src/"
+ "psr-4": {
+ "Symfony\\Bundle\\DebugBundle\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de",
- "role": "lead"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "description": "Library that helps with managing the version number of Git-hosted PHP projects",
- "homepage": "https://github.com/sebastianbergmann/version",
+ "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
+ "homepage": "https://symfony.com",
"support": {
- "issues": "https://github.com/sebastianbergmann/version/issues",
- "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
+ "source": "https://github.com/symfony/debug-bundle/tree/v6.4.8"
},
"funding": [
{
- "url": "https://github.com/sebastianbergmann",
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
"type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
}
],
- "time": "2023-02-07T11:34:05+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/filesystem",
- "version": "v7.0.6",
+ "name": "symfony/dom-crawler",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/filesystem.git",
- "reference": "408105dff4c104454100730bdfd1a9cdd993f04d"
+ "url": "https://github.com/symfony/dom-crawler.git",
+ "reference": "105b56a0305d219349edeb60a800082eca864e4b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/408105dff4c104454100730bdfd1a9cdd993f04d",
- "reference": "408105dff4c104454100730bdfd1a9cdd993f04d",
+ "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/105b56a0305d219349edeb60a800082eca864e4b",
+ "reference": "105b56a0305d219349edeb60a800082eca864e4b",
"shasum": ""
},
"require": {
- "php": ">=8.2",
+ "masterminds/html5": "^2.6",
+ "php": ">=8.1",
"symfony/polyfill-ctype": "~1.8",
- "symfony/polyfill-mbstring": "~1.8"
+ "symfony/polyfill-mbstring": "~1.0"
+ },
+ "require-dev": {
+ "symfony/css-selector": "^5.4|^6.0|^7.0"
},
"type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\Filesystem\\": ""
+ "Symfony\\Component\\DomCrawler\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -7727,10 +10722,10 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides basic utilities for the filesystem",
+ "description": "Eases DOM navigation for HTML and XML documents",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/filesystem/tree/v7.0.6"
+ "source": "https://github.com/symfony/dom-crawler/tree/v6.4.8"
},
"funding": [
{
@@ -7746,55 +10741,83 @@
"type": "tidelift"
}
],
- "time": "2024-03-21T19:37:36+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/finder",
- "version": "v7.0.0",
+ "name": "symfony/maker-bundle",
+ "version": "v1.60.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/finder.git",
- "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56"
+ "url": "https://github.com/symfony/maker-bundle.git",
+ "reference": "c305a02a22974670f359d4274c9431e1a191f559"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
- "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
+ "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/c305a02a22974670f359d4274c9431e1a191f559",
+ "reference": "c305a02a22974670f359d4274c9431e1a191f559",
"shasum": ""
},
"require": {
- "php": ">=8.2"
+ "doctrine/inflector": "^2.0",
+ "nikic/php-parser": "^4.18|^5.0",
+ "php": ">=8.1",
+ "symfony/config": "^6.4|^7.0",
+ "symfony/console": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/deprecation-contracts": "^2.2|^3",
+ "symfony/filesystem": "^6.4|^7.0",
+ "symfony/finder": "^6.4|^7.0",
+ "symfony/framework-bundle": "^6.4|^7.0",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/process": "^6.4|^7.0"
+ },
+ "conflict": {
+ "doctrine/doctrine-bundle": "<2.10",
+ "doctrine/orm": "<2.15"
},
"require-dev": {
- "symfony/filesystem": "^6.4|^7.0"
+ "composer/semver": "^3.0",
+ "doctrine/doctrine-bundle": "^2.5.0",
+ "doctrine/orm": "^2.15|^3",
+ "symfony/http-client": "^6.4|^7.0",
+ "symfony/phpunit-bridge": "^6.4.1|^7.0",
+ "symfony/security-core": "^6.4|^7.0",
+ "symfony/yaml": "^6.4|^7.0",
+ "twig/twig": "^3.0|^4.x-dev"
+ },
+ "type": "symfony-bundle",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.x-dev"
+ }
},
- "type": "library",
"autoload": {
"psr-4": {
- "Symfony\\Component\\Finder\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ "Symfony\\Bundle\\MakerBundle\\": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Finds files and directories via an intuitive fluent interface",
- "homepage": "https://symfony.com",
+ "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
+ "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
+ "keywords": [
+ "code generator",
+ "dev",
+ "generator",
+ "scaffold",
+ "scaffolding"
+ ],
"support": {
- "source": "https://github.com/symfony/finder/tree/v7.0.0"
+ "issues": "https://github.com/symfony/maker-bundle/issues",
+ "source": "https://github.com/symfony/maker-bundle/tree/v1.60.0"
},
"funding": [
{
@@ -7810,24 +10833,24 @@
"type": "tidelift"
}
],
- "time": "2023-10-31T17:59:56+00:00"
+ "time": "2024-06-10T06:03:18+00:00"
},
{
"name": "symfony/options-resolver",
- "version": "v7.0.0",
+ "version": "v6.4.8",
"source": {
"type": "git",
"url": "https://github.com/symfony/options-resolver.git",
- "reference": "700ff4096e346f54cb628ea650767c8130f1001f"
+ "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/options-resolver/zipball/700ff4096e346f54cb628ea650767c8130f1001f",
- "reference": "700ff4096e346f54cb628ea650767c8130f1001f",
+ "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
+ "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
"shasum": ""
},
"require": {
- "php": ">=8.2",
+ "php": ">=8.1",
"symfony/deprecation-contracts": "^2.5|^3"
},
"type": "library",
@@ -7861,7 +10884,7 @@
"options"
],
"support": {
- "source": "https://github.com/symfony/options-resolver/tree/v7.0.0"
+ "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
},
"funding": [
{
@@ -7877,30 +10900,41 @@
"type": "tidelift"
}
],
- "time": "2023-08-08T10:20:21+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/polyfill-php81",
- "version": "v1.29.0",
+ "name": "symfony/phpunit-bridge",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php81.git",
- "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
+ "url": "https://github.com/symfony/phpunit-bridge.git",
+ "reference": "937f47cc64922f283bb0c474f33415bba0a9fc0d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
- "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
+ "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/937f47cc64922f283bb0c474f33415bba0a9fc0d",
+ "reference": "937f47cc64922f283bb0c474f33415bba0a9fc0d",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=7.1.3"
},
- "type": "library",
+ "conflict": {
+ "phpunit/phpunit": "<7.5|9.1.2"
+ },
+ "require-dev": {
+ "symfony/deprecation-contracts": "^2.5|^3.0",
+ "symfony/error-handler": "^5.4|^6.0|^7.0",
+ "symfony/polyfill-php81": "^1.27"
+ },
+ "bin": [
+ "bin/simple-phpunit"
+ ],
+ "type": "symfony-bridge",
"extra": {
"thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
+ "name": "phpunit/phpunit",
+ "url": "https://github.com/sebastianbergmann/phpunit"
}
},
"autoload": {
@@ -7908,10 +10942,11 @@
"bootstrap.php"
],
"psr-4": {
- "Symfony\\Polyfill\\Php81\\": ""
+ "Symfony\\Bridge\\PhpUnit\\": ""
},
- "classmap": [
- "Resources/stubs"
+ "exclude-from-classmap": [
+ "/Tests/",
+ "/bin/"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -7928,16 +10963,10 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
+ "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
"homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
"support": {
- "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
+ "source": "https://github.com/symfony/phpunit-bridge/tree/v6.4.8"
},
"funding": [
{
@@ -7953,24 +10982,24 @@
"type": "tidelift"
}
],
- "time": "2024-01-29T20:11:03+00:00"
+ "time": "2024-06-02T15:48:50+00:00"
},
{
"name": "symfony/process",
- "version": "v7.0.4",
+ "version": "v6.4.8",
"source": {
"type": "git",
"url": "https://github.com/symfony/process.git",
- "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9"
+ "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/0e7727191c3b71ebec6d529fa0e50a01ca5679e9",
- "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9",
+ "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
+ "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
"shasum": ""
},
"require": {
- "php": ">=8.2"
+ "php": ">=8.1"
},
"type": "library",
"autoload": {
@@ -7998,7 +11027,7 @@
"description": "Executes commands in sub-processes",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/process/tree/v7.0.4"
+ "source": "https://github.com/symfony/process/tree/v6.4.8"
},
"funding": [
{
@@ -8014,30 +11043,47 @@
"type": "tidelift"
}
],
- "time": "2024-02-22T20:27:20+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "symfony/stopwatch",
- "version": "v7.0.3",
+ "name": "symfony/web-profiler-bundle",
+ "version": "v6.4.8",
"source": {
"type": "git",
- "url": "https://github.com/symfony/stopwatch.git",
- "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112"
+ "url": "https://github.com/symfony/web-profiler-bundle.git",
+ "reference": "bcc806d1360991de3bf78ac5ca0202db85de9bfc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/stopwatch/zipball/983900d6fddf2b0cbaacacbbad07610854bd8112",
- "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112",
+ "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/bcc806d1360991de3bf78ac5ca0202db85de9bfc",
+ "reference": "bcc806d1360991de3bf78ac5ca0202db85de9bfc",
"shasum": ""
},
"require": {
- "php": ">=8.2",
- "symfony/service-contracts": "^2.5|^3"
+ "php": ">=8.1",
+ "symfony/config": "^5.4|^6.0|^7.0",
+ "symfony/framework-bundle": "^6.4|^7.0",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/routing": "^5.4|^6.0|^7.0",
+ "symfony/twig-bundle": "^5.4|^6.0",
+ "twig/twig": "^2.13|^3.0.4"
},
- "type": "library",
+ "conflict": {
+ "symfony/form": "<5.4",
+ "symfony/mailer": "<5.4",
+ "symfony/messenger": "<5.4",
+ "symfony/twig-bundle": ">=7.0"
+ },
+ "require-dev": {
+ "symfony/browser-kit": "^5.4|^6.0|^7.0",
+ "symfony/console": "^5.4|^6.0|^7.0",
+ "symfony/css-selector": "^5.4|^6.0|^7.0",
+ "symfony/stopwatch": "^5.4|^6.0|^7.0"
+ },
+ "type": "symfony-bundle",
"autoload": {
"psr-4": {
- "Symfony\\Component\\Stopwatch\\": ""
+ "Symfony\\Bundle\\WebProfilerBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -8057,10 +11103,13 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides a way to profile code",
+ "description": "Provides a development tool that gives detailed information about the execution of any request",
"homepage": "https://symfony.com",
+ "keywords": [
+ "dev"
+ ],
"support": {
- "source": "https://github.com/symfony/stopwatch/tree/v7.0.3"
+ "source": "https://github.com/symfony/web-profiler-bundle/tree/v6.4.8"
},
"funding": [
{
@@ -8076,57 +11125,45 @@
"type": "tidelift"
}
],
- "time": "2024-01-23T15:02:46+00:00"
+ "time": "2024-05-31T14:49:08+00:00"
},
{
- "name": "theseer/tokenizer",
- "version": "1.2.3",
+ "name": "zozlak/rdf-constants",
+ "version": "1.2.1",
"source": {
"type": "git",
- "url": "https://github.com/theseer/tokenizer.git",
- "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
+ "url": "https://github.com/zozlak/RdfConstants.git",
+ "reference": "a8de0b50d23b213a68784ec2cec22b4ad838012b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
- "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
+ "url": "https://api.github.com/repos/zozlak/RdfConstants/zipball/a8de0b50d23b213a68784ec2cec22b4ad838012b",
+ "reference": "a8de0b50d23b213a68784ec2cec22b4ad838012b",
"shasum": ""
},
- "require": {
- "ext-dom": "*",
- "ext-tokenizer": "*",
- "ext-xmlwriter": "*",
- "php": "^7.2 || ^8.0"
- },
"type": "library",
"autoload": {
- "classmap": [
- "src/"
- ]
+ "psr-4": {
+ "zozlak\\": "src/zozlak"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Arne Blankerts",
- "email": "arne@blankerts.de",
- "role": "Developer"
+ "name": "Mateusz Żółtak",
+ "email": "zozlak@zozlak.org"
}
],
- "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
+ "description": "A set of commonly used RDF and XSD constants",
+ "homepage": "https://github.com/zozlak/RdfConstants",
"support": {
- "issues": "https://github.com/theseer/tokenizer/issues",
- "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
+ "issues": "https://github.com/zozlak/RdfConstants/issues",
+ "source": "https://github.com/zozlak/RdfConstants/tree/1.2.1"
},
- "funding": [
- {
- "url": "https://github.com/theseer",
- "type": "github"
- }
- ],
- "time": "2024-03-03T12:36:25+00:00"
+ "time": "2022-08-05T12:50:50+00:00"
}
],
"aliases": [],
@@ -8134,7 +11171,11 @@
"stability-flags": [],
"prefer-stable": false,
"prefer-lowest": false,
- "platform": [],
+ "platform": {
+ "php": ">=8.2",
+ "ext-ctype": "*",
+ "ext-iconv": "*"
+ },
"platform-dev": [],
"plugin-api-version": "2.6.0"
}
diff --git a/api/composer.phar b/api/composer.phar
new file mode 100755
index 0000000000..15c4a2081c
Binary files /dev/null and b/api/composer.phar differ
diff --git a/api/config/bootstrap.php b/api/config/bootstrap.php
new file mode 100644
index 0000000000..e41d0e73f3
--- /dev/null
+++ b/api/config/bootstrap.php
@@ -0,0 +1,23 @@
+=1.2)
+if (is_array($env = @include dirname(__DIR__).'/.env.local.php') && (!isset($env['APP_ENV']) || ($_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? $env['APP_ENV']) === $env['APP_ENV'])) {
+ (new Dotenv())->usePutenv(false)->populate($env);
+} else {
+ // load all the .env files
+ (new Dotenv())->usePutenv(false)->loadEnv(dirname(__DIR__).'/.env');
+}
+
+$_SERVER += $_ENV;
+$_SERVER['APP_ENV'] = $_ENV['APP_ENV'] = ($_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? null) ?: 'dev';
+$_SERVER['APP_DEBUG'] = $_SERVER['APP_DEBUG'] ?? $_ENV['APP_DEBUG'] ?? 'prod' !== $_SERVER['APP_ENV'];
+$_SERVER['APP_DEBUG'] = $_ENV['APP_DEBUG'] = (int) $_SERVER['APP_DEBUG'] || filter_var($_SERVER['APP_DEBUG'], FILTER_VALIDATE_BOOLEAN) ? '1' : '0';
diff --git a/api/config/bundles.php b/api/config/bundles.php
new file mode 100644
index 0000000000..e33ab8c484
--- /dev/null
+++ b/api/config/bundles.php
@@ -0,0 +1,16 @@
+ ['all' => true],
+ Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
+ Symfony\Bundle\MercureBundle\MercureBundle::class => ['all' => true],
+ Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
+ Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
+ ApiPlatform\Symfony\Bundle\ApiPlatformBundle::class => ['all' => true],
+ Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true],
+ Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
+ Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
+ Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
+ Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
+ Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true],
+];
diff --git a/api/config/packages/api_platform.yaml b/api/config/packages/api_platform.yaml
new file mode 100644
index 0000000000..27fe9908d1
--- /dev/null
+++ b/api/config/packages/api_platform.yaml
@@ -0,0 +1,23 @@
+api_platform:
+ title: Hello API Platform
+ version: 1.0.0
+ # Mercure integration, remove if unwanted
+ mercure:
+ include_type: true
+ formats:
+ jsonld: ['application/ld+json']
+ docs_formats:
+ jsonld: ['application/ld+json']
+ jsonopenapi: ['application/vnd.openapi+json']
+ html: ['text/html']
+ # Good defaults for REST APIs
+ defaults:
+ stateless: true
+ cache_headers:
+ vary: ['Content-Type', 'Authorization', 'Origin']
+ extra_properties:
+ standard_put: true
+ rfc_7807_compliant_errors: true
+ # change this to true if you use controllers
+ use_symfony_listeners: false
+ keep_legacy_inflector: false
diff --git a/api/config/packages/cache.yaml b/api/config/packages/cache.yaml
new file mode 100644
index 0000000000..6899b72003
--- /dev/null
+++ b/api/config/packages/cache.yaml
@@ -0,0 +1,19 @@
+framework:
+ cache:
+ # Unique name of your app: used to compute stable namespaces for cache keys.
+ #prefix_seed: your_vendor_name/app_name
+
+ # The "app" cache stores to the filesystem by default.
+ # The data in this cache should persist between deploys.
+ # Other options include:
+
+ # Redis
+ #app: cache.adapter.redis
+ #default_redis_provider: redis://localhost
+
+ # APCu (not recommended with heavy random-write workloads as memory fragmentation can cause perf issues)
+ #app: cache.adapter.apcu
+
+ # Namespaced pools use the above "app" backend by default
+ #pools:
+ #my.dedicated.cache: null
diff --git a/api/config/packages/debug.yaml b/api/config/packages/debug.yaml
new file mode 100644
index 0000000000..ad874afdde
--- /dev/null
+++ b/api/config/packages/debug.yaml
@@ -0,0 +1,5 @@
+when@dev:
+ debug:
+ # Forwards VarDumper Data clones to a centralized server allowing to inspect dumps on CLI or in your browser.
+ # See the "server:dump" command to start a new server.
+ dump_destination: "tcp://%env(VAR_DUMPER_SERVER)%"
diff --git a/api/config/packages/doctrine.yaml b/api/config/packages/doctrine.yaml
new file mode 100644
index 0000000000..75ec9e8410
--- /dev/null
+++ b/api/config/packages/doctrine.yaml
@@ -0,0 +1,52 @@
+doctrine:
+ dbal:
+ url: '%env(resolve:DATABASE_URL)%'
+
+ # IMPORTANT: You MUST configure your server version,
+ # either here or in the DATABASE_URL env var (see .env file)
+ #server_version: '16'
+
+ profiling_collect_backtrace: '%kernel.debug%'
+ use_savepoints: true
+ orm:
+ auto_generate_proxy_classes: true
+ enable_lazy_ghost_objects: true
+ report_fields_where_declared: true
+ validate_xml_mapping: true
+ naming_strategy: doctrine.orm.naming_strategy.underscore_number_aware
+ auto_mapping: true
+ mappings:
+ App:
+ type: attribute
+ is_bundle: false
+ dir: '%kernel.project_dir%/src/Entity'
+ prefix: 'App\Entity'
+ alias: App
+ controller_resolver:
+ auto_mapping: true
+
+when@test:
+ doctrine:
+ dbal:
+ # "TEST_TOKEN" is typically set by ParaTest
+ dbname_suffix: '_test%env(default::TEST_TOKEN)%'
+
+when@prod:
+ doctrine:
+ orm:
+ auto_generate_proxy_classes: false
+ proxy_dir: '%kernel.build_dir%/doctrine/orm/Proxies'
+ query_cache_driver:
+ type: pool
+ pool: doctrine.system_cache_pool
+ result_cache_driver:
+ type: pool
+ pool: doctrine.result_cache_pool
+
+ framework:
+ cache:
+ pools:
+ doctrine.result_cache_pool:
+ adapter: cache.app
+ doctrine.system_cache_pool:
+ adapter: cache.system
diff --git a/api/config/packages/doctrine_migrations.yaml b/api/config/packages/doctrine_migrations.yaml
new file mode 100644
index 0000000000..29231d94bd
--- /dev/null
+++ b/api/config/packages/doctrine_migrations.yaml
@@ -0,0 +1,6 @@
+doctrine_migrations:
+ migrations_paths:
+ # namespace is arbitrary but should be different from App\Migrations
+ # as migrations classes should NOT be autoloaded
+ 'DoctrineMigrations': '%kernel.project_dir%/migrations'
+ enable_profiler: false
diff --git a/api/config/packages/framework.yaml b/api/config/packages/framework.yaml
new file mode 100644
index 0000000000..34b7cb4f02
--- /dev/null
+++ b/api/config/packages/framework.yaml
@@ -0,0 +1,30 @@
+# see https://symfony.com/doc/current/reference/configuration/framework.html
+framework:
+ secret: '%env(APP_SECRET)%'
+ #csrf_protection: true
+ annotations: false
+ http_method_override: false
+ handle_all_throwables: true
+
+ trusted_proxies: '%env(TRUSTED_PROXIES)%'
+ trusted_hosts: '%env(TRUSTED_HOSTS)%'
+ # See https://caddyserver.com/docs/caddyfile/directives/reverse_proxy#headers
+ trusted_headers: [ 'x-forwarded-for', 'x-forwarded-proto' ]
+
+ # Enables session support. Note that the session will ONLY be started if you read or write from it.
+ # Remove or comment this section to explicitly disable session support.
+ #session:
+ # handler_id: null
+ # cookie_secure: auto
+ # cookie_samesite: lax
+
+ #esi: true
+ #fragments: true
+ php_errors:
+ log: true
+
+when@test:
+ framework:
+ test: true
+ #session:
+ # storage_factory_id: session.storage.factory.mock_file
diff --git a/api/config/packages/mailer.yaml b/api/config/packages/mailer.yaml
new file mode 100644
index 0000000000..56a650d89b
--- /dev/null
+++ b/api/config/packages/mailer.yaml
@@ -0,0 +1,3 @@
+framework:
+ mailer:
+ dsn: '%env(MAILER_DSN)%'
diff --git a/api/config/packages/mercure.yaml b/api/config/packages/mercure.yaml
new file mode 100644
index 0000000000..f2a7395403
--- /dev/null
+++ b/api/config/packages/mercure.yaml
@@ -0,0 +1,8 @@
+mercure:
+ hubs:
+ default:
+ url: '%env(MERCURE_URL)%'
+ public_url: '%env(MERCURE_PUBLIC_URL)%'
+ jwt:
+ secret: '%env(MERCURE_JWT_SECRET)%'
+ publish: '*'
diff --git a/api/config/packages/monolog.yaml b/api/config/packages/monolog.yaml
new file mode 100644
index 0000000000..9db7d8a7f1
--- /dev/null
+++ b/api/config/packages/monolog.yaml
@@ -0,0 +1,62 @@
+monolog:
+ channels:
+ - deprecation # Deprecations are logged in the dedicated "deprecation" channel when it exists
+
+when@dev:
+ monolog:
+ handlers:
+ main:
+ type: stream
+ path: "%kernel.logs_dir%/%kernel.environment%.log"
+ level: debug
+ channels: ["!event"]
+ # uncomment to get logging in your browser
+ # you may have to allow bigger header sizes in your Web server configuration
+ #firephp:
+ # type: firephp
+ # level: info
+ #chromephp:
+ # type: chromephp
+ # level: info
+ console:
+ type: console
+ process_psr_3_messages: false
+ channels: ["!event", "!doctrine", "!console"]
+
+when@test:
+ monolog:
+ handlers:
+ main:
+ type: fingers_crossed
+ action_level: error
+ handler: nested
+ excluded_http_codes: [404, 405]
+ channels: ["!event"]
+ nested:
+ type: stream
+ path: "%kernel.logs_dir%/%kernel.environment%.log"
+ level: debug
+
+when@prod:
+ monolog:
+ handlers:
+ main:
+ type: fingers_crossed
+ action_level: error
+ handler: nested
+ excluded_http_codes: [404, 405]
+ buffer_size: 50 # How many messages should be saved? Prevent memory leaks
+ nested:
+ type: stream
+ path: php://stderr
+ level: debug
+ formatter: monolog.formatter.json
+ console:
+ type: console
+ process_psr_3_messages: false
+ channels: ["!event", "!doctrine"]
+ deprecation:
+ type: stream
+ channels: [deprecation]
+ path: php://stderr
+ formatter: monolog.formatter.json
diff --git a/api/config/packages/nelmio_cors.yaml b/api/config/packages/nelmio_cors.yaml
new file mode 100644
index 0000000000..a75c7a552f
--- /dev/null
+++ b/api/config/packages/nelmio_cors.yaml
@@ -0,0 +1,10 @@
+nelmio_cors:
+ defaults:
+ origin_regex: true
+ allow_origin: ['%env(CORS_ALLOW_ORIGIN)%']
+ allow_methods: ['GET', 'OPTIONS', 'POST', 'PUT', 'PATCH', 'DELETE']
+ allow_headers: ['Content-Type', 'Authorization', 'Preload', 'Fields']
+ expose_headers: ['Link']
+ max_age: 3600
+ paths:
+ '^/': null
diff --git a/api/config/packages/routing.yaml b/api/config/packages/routing.yaml
new file mode 100644
index 0000000000..4b766ce57f
--- /dev/null
+++ b/api/config/packages/routing.yaml
@@ -0,0 +1,12 @@
+framework:
+ router:
+ utf8: true
+
+ # Configure how to generate URLs in non-HTTP contexts, such as CLI commands.
+ # See https://symfony.com/doc/current/routing.html#generating-urls-in-commands
+ #default_uri: http://localhost
+
+when@prod:
+ framework:
+ router:
+ strict_requirements: null
diff --git a/api/config/packages/security.yaml b/api/config/packages/security.yaml
new file mode 100644
index 0000000000..367af25a56
--- /dev/null
+++ b/api/config/packages/security.yaml
@@ -0,0 +1,39 @@
+security:
+ # https://symfony.com/doc/current/security.html#registering-the-user-hashing-passwords
+ password_hashers:
+ Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'auto'
+ # https://symfony.com/doc/current/security.html#loading-the-user-the-user-provider
+ providers:
+ users_in_memory: { memory: null }
+ firewalls:
+ dev:
+ pattern: ^/(_(profiler|wdt)|css|images|js)/
+ security: false
+ main:
+ lazy: true
+ provider: users_in_memory
+
+ # activate different ways to authenticate
+ # https://symfony.com/doc/current/security.html#the-firewall
+
+ # https://symfony.com/doc/current/security/impersonating_user.html
+ # switch_user: true
+
+ # Easy way to control access for large sections of your site
+ # Note: Only the *first* access control that matches will be used
+ access_control:
+ # - { path: ^/admin, roles: ROLE_ADMIN }
+ # - { path: ^/profile, roles: ROLE_USER }
+
+when@test:
+ security:
+ password_hashers:
+ # By default, password hashers are resource intensive and take time. This is
+ # important to generate secure password hashes. In tests however, secure hashes
+ # are not important, waste resources and increase test times. The following
+ # reduces the work factor to the lowest possible values.
+ Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface:
+ algorithm: auto
+ cost: 4 # Lowest possible value for bcrypt
+ time_cost: 3 # Lowest possible value for argon
+ memory_cost: 10 # Lowest possible value for argon
diff --git a/api/config/packages/twig.yaml b/api/config/packages/twig.yaml
new file mode 100644
index 0000000000..3f795d921e
--- /dev/null
+++ b/api/config/packages/twig.yaml
@@ -0,0 +1,6 @@
+twig:
+ file_name_pattern: '*.twig'
+
+when@test:
+ twig:
+ strict_variables: true
diff --git a/api/config/packages/validator.yaml b/api/config/packages/validator.yaml
new file mode 100644
index 0000000000..0201281d3c
--- /dev/null
+++ b/api/config/packages/validator.yaml
@@ -0,0 +1,13 @@
+framework:
+ validation:
+ email_validation_mode: html5
+
+ # Enables validator auto-mapping support.
+ # For instance, basic validation constraints will be inferred from Doctrine's metadata.
+ #auto_mapping:
+ # App\Entity\: []
+
+when@test:
+ framework:
+ validation:
+ not_compromised_password: false
diff --git a/api/config/packages/web_profiler.yaml b/api/config/packages/web_profiler.yaml
new file mode 100644
index 0000000000..b94611102d
--- /dev/null
+++ b/api/config/packages/web_profiler.yaml
@@ -0,0 +1,17 @@
+when@dev:
+ web_profiler:
+ toolbar: true
+ intercept_redirects: false
+
+ framework:
+ profiler:
+ only_exceptions: false
+ collect_serializer_data: true
+
+when@test:
+ web_profiler:
+ toolbar: false
+ intercept_redirects: false
+
+ framework:
+ profiler: { collect: false }
diff --git a/api/config/preload.php b/api/config/preload.php
new file mode 100644
index 0000000000..5ebcdb2153
--- /dev/null
+++ b/api/config/preload.php
@@ -0,0 +1,5 @@
+; rel="http://www.w3.org/ns/hydra/core#apiDocumentation", ; rel="mercure"`
+ # Disable Topics tracking if not enabled explicitly: https://github.com/jkarlin/topics
+ header ?Permissions-Policy "browsing-topics=()"
+
+ # Matches requests for HTML documents, for static files and for Next.js files,
+ # except for known API paths and paths with extensions handled by API Platform
+ @pwa expression `(
+ header({'Accept': '*text/html*'})
+ && !path(
+ '/docs*', '/graphql*', '/bundles*', '/contexts*', '/_profiler*', '/_wdt*',
+ '*.json*', '*.html', '*.csv', '*.yml', '*.yaml', '*.xml'
+ )
+ )
+ || path('/favicon.ico', '/manifest.json', '/robots.txt', '/sitemap*', '/_next*', '/__next*')
+ || query({'_rsc': '*'})`
+
+ # Comment the following line if you don't want Next.js to catch requests for HTML documents.
+ # In this case, they will be handled by the PHP app.
+ # reverse_proxy @pwa http://{$PWA_UPSTREAM}
+
+ php_server
+}
diff --git a/api/frankenphp/conf.d/app.dev.ini b/api/frankenphp/conf.d/app.dev.ini
new file mode 100644
index 0000000000..52bcb297df
--- /dev/null
+++ b/api/frankenphp/conf.d/app.dev.ini
@@ -0,0 +1,5 @@
+; See https://docs.docker.com/desktop/networking/#i-want-to-connect-from-a-container-to-a-service-on-the-host
+; See https://github.com/docker/for-linux/issues/264
+; The `client_host` below may optionally be replaced with `discover_client_host=yes`
+; Add `start_with_request=yes` to start debug session on each request
+xdebug.client_host = xdebug://gateway
diff --git a/api/frankenphp/conf.d/app.ini b/api/frankenphp/conf.d/app.ini
new file mode 100644
index 0000000000..79a17dd812
--- /dev/null
+++ b/api/frankenphp/conf.d/app.ini
@@ -0,0 +1,13 @@
+expose_php = 0
+date.timezone = UTC
+apc.enable_cli = 1
+session.use_strict_mode = 1
+zend.detect_unicode = 0
+
+; https://symfony.com/doc/current/performance.html
+realpath_cache_size = 4096K
+realpath_cache_ttl = 600
+opcache.interned_strings_buffer = 16
+opcache.max_accelerated_files = 20000
+opcache.memory_consumption = 256
+opcache.enable_file_override = 1
diff --git a/api/frankenphp/conf.d/app.prod.ini b/api/frankenphp/conf.d/app.prod.ini
new file mode 100644
index 0000000000..3bcaa71e43
--- /dev/null
+++ b/api/frankenphp/conf.d/app.prod.ini
@@ -0,0 +1,2 @@
+opcache.preload_user = root
+opcache.preload = /app/config/preload.php
diff --git a/api/frankenphp/docker-entrypoint.sh b/api/frankenphp/docker-entrypoint.sh
new file mode 100755
index 0000000000..cc779cdb8e
--- /dev/null
+++ b/api/frankenphp/docker-entrypoint.sh
@@ -0,0 +1,40 @@
+#!/bin/sh
+set -e
+
+if [ "$1" = 'frankenphp' ] || [ "$1" = 'php' ] || [ "$1" = 'bin/console' ]; then
+ if [ -z "$(ls -A 'vendor/' 2>/dev/null)" ]; then
+ composer install --prefer-dist --no-progress --no-interaction
+ fi
+
+ if grep -q ^DATABASE_URL= .env; then
+ echo "Waiting for database to be ready..."
+ ATTEMPTS_LEFT_TO_REACH_DATABASE=60
+ until [ $ATTEMPTS_LEFT_TO_REACH_DATABASE -eq 0 ] || DATABASE_ERROR=$(php bin/console dbal:run-sql -q "SELECT 1" 2>&1); do
+ if [ $? -eq 255 ]; then
+ # If the Doctrine command exits with 255, an unrecoverable error occurred
+ ATTEMPTS_LEFT_TO_REACH_DATABASE=0
+ break
+ fi
+ sleep 1
+ ATTEMPTS_LEFT_TO_REACH_DATABASE=$((ATTEMPTS_LEFT_TO_REACH_DATABASE - 1))
+ echo "Still waiting for database to be ready... Or maybe the database is not reachable. $ATTEMPTS_LEFT_TO_REACH_DATABASE attempts left."
+ done
+
+ if [ $ATTEMPTS_LEFT_TO_REACH_DATABASE -eq 0 ]; then
+ echo "The database is not up or not reachable:"
+ echo "$DATABASE_ERROR"
+ exit 1
+ else
+ echo "The database is now ready and reachable"
+ fi
+
+ if [ "$( find ./migrations -iname '*.php' -print -quit )" ]; then
+ php bin/console doctrine:migrations:migrate --no-interaction --all-or-nothing
+ fi
+ fi
+
+ setfacl -R -m u:www-data:rwX -m u:"$(whoami)":rwX var
+ setfacl -dR -m u:www-data:rwX -m u:"$(whoami)":rwX var
+fi
+
+exec docker-php-entrypoint "$@"
diff --git a/api/frankenphp/worker.Caddyfile b/api/frankenphp/worker.Caddyfile
new file mode 100644
index 0000000000..d384ae4cd5
--- /dev/null
+++ b/api/frankenphp/worker.Caddyfile
@@ -0,0 +1,4 @@
+worker {
+ file ./public/index.php
+ env APP_RUNTIME Runtime\FrankenPhpSymfony\Runtime
+}
diff --git a/.dockerignore b/api/mapas/.dockerignore
similarity index 100%
rename from .dockerignore
rename to api/mapas/.dockerignore
diff --git a/api/mapas/.gitignore b/api/mapas/.gitignore
new file mode 100644
index 0000000000..38c58af6af
--- /dev/null
+++ b/api/mapas/.gitignore
@@ -0,0 +1,17 @@
+vendor
+var
+public/router.php
+vendor
+src/modules/Components/assets/js/media-query.js
+src/modules/Components/assets/js/media-query/
+node_modules
+mix-manifest.json
+.pnpm-store
+dev/docker-data/
+src/themes/BaseV1/assets/css/main.css
+src/themes/BaseV1/assets/css/main.css.map
+.idea
+.phpunit.result.cache
+.php-cs-fixer.cache
+docker-data
+public/assets
diff --git a/.gitmodules b/api/mapas/.gitmodules
similarity index 100%
rename from .gitmodules
rename to api/mapas/.gitmodules
diff --git a/.gitpod.yml b/api/mapas/.gitpod.yml
similarity index 100%
rename from .gitpod.yml
rename to api/mapas/.gitpod.yml
diff --git a/.php-cs-fixer.php b/api/mapas/.php-cs-fixer.php
similarity index 100%
rename from .php-cs-fixer.php
rename to api/mapas/.php-cs-fixer.php
diff --git a/.travis.yml b/api/mapas/.travis.yml
similarity index 100%
rename from .travis.yml
rename to api/mapas/.travis.yml
diff --git a/CHANGELOG.md b/api/mapas/CHANGELOG.md
similarity index 100%
rename from CHANGELOG.md
rename to api/mapas/CHANGELOG.md
diff --git a/Dockerfile b/api/mapas/Dockerfile
similarity index 100%
rename from Dockerfile
rename to api/mapas/Dockerfile
diff --git a/api/mapas/LICENSE b/api/mapas/LICENSE
new file mode 100644
index 0000000000..d5445e7ac8
--- /dev/null
+++ b/api/mapas/LICENSE
@@ -0,0 +1,661 @@
+GNU AFFERO GENERAL PUBLIC LICENSE
+ Version 3, 19 November 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 Affero General Public License is a free, copyleft license for
+software and other kinds of works, specifically designed to ensure
+cooperation with the community in the case of network server software.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+our General Public Licenses are 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.
+
+ 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.
+
+ Developers that use our General Public Licenses protect your rights
+with two steps: (1) assert copyright on the software, and (2) offer
+you this License which gives you legal permission to copy, distribute
+and/or modify the software.
+
+ A secondary benefit of defending all users' freedom is that
+improvements made in alternate versions of the program, if they
+receive widespread use, become available for other developers to
+incorporate. Many developers of free software are heartened and
+encouraged by the resulting cooperation. However, in the case of
+software used on network servers, this result may fail to come about.
+The GNU General Public License permits making a modified version and
+letting the public access it on a server without ever releasing its
+source code to the public.
+
+ The GNU Affero General Public License is designed specifically to
+ensure that, in such cases, the modified source code becomes available
+to the community. It requires the operator of a network server to
+provide the source code of the modified version running there to the
+users of that server. Therefore, public use of a modified version, on
+a publicly accessible server, gives the public access to the source
+code of the modified version.
+
+ An older license, called the Affero General Public License and
+published by Affero, was designed to accomplish similar goals. This is
+a different license, not a version of the Affero GPL, but Affero has
+released a new version of the Affero GPL which permits relicensing under
+this license.
+
+ 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 Affero 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. Remote Network Interaction; Use with the GNU General Public License.
+
+ Notwithstanding any other provision of this License, if you modify the
+Program, your modified version must prominently offer all users
+interacting with it remotely through a computer network (if your version
+supports such interaction) an opportunity to receive the Corresponding
+Source of your version by providing access to the Corresponding Source
+from a network server at no charge, through some standard or customary
+means of facilitating copying of software. This Corresponding Source
+shall include the Corresponding Source for any work covered by version 3
+of the GNU General Public License that is incorporated pursuant to the
+following paragraph.
+
+ 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 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 work with which it is combined will remain governed by version
+3 of the GNU General Public License.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU Affero 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 Affero 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 Affero 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 Affero 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 Affero 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 Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If your software can interact with users remotely through a computer
+network, you should also make sure that it provides a way for users to
+get its source. For example, if your program is a web application, its
+interface could display a "Source" link that leads users to an archive
+of the code. There are many ways you could offer source, and different
+solutions will be better for different programs; see section 13 for the
+specific requirements.
+
+ 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 AGPL, see
+.
diff --git a/api/mapas/README.md b/api/mapas/README.md
new file mode 100644
index 0000000000..27c4bde3a4
--- /dev/null
+++ b/api/mapas/README.md
@@ -0,0 +1,114 @@
+# Rede Mapas
+
+Em julho de 2013, representantes culturais de diversos países da América Latina e do Brasil se uniram em um encontro histórico para debater a criação de uma ferramenta de mapeamento de iniciativas culturais e gestão cultural. Desse encontro, emergiram os alicerces para o desenvolvimento dos Mapas Culturais, um software de código aberto que possibilita o aprimoramento da gestão cultural em âmbito municipal e estadual.
+
+O projeto originalmente chamado Mapas Culturais é uma plataforma colaborativa que agrega informações detalhadas sobre agentes, espaços, eventos e projetos culturais. Com isso, oferece ao poder público uma visão abrangente da área da cultura, enquanto proporciona ao cidadão um mapa interativo de espaços e eventos culturais da região. Alinhada com o Sistema Nacional de Informação e Indicadores Culturais do Ministério da Cultura (SNIIC), essa plataforma desempenha um papel crucial na realização de diversos objetivos estabelecidos pelo Plano Nacional de Cultura.
+
+A plataforma já está em uso em diversos municipios, estados, no governo federal em diversos projetos do ministério da cultura e até mesmo fora do Brasil, no Uruguai.
+
+Mais detalhes sobre a História: [Clique aqui](https://rede.mapas.tec.br/)
+
+## Projeto Original (Mapas Culturais)
+O projeto original atualmente é mantido de forma aberta e colaborativa, gerenciada pelo time de desenvolvimento do @HackLab
+
+O repositório se encontra aqui:
+
+> Caso queira saber mais sobre o projeto MapasCulturais, gerenciado pelo HackLab, [Clique aqui](https://github.com/mapasculturais/mapasculturais/README.md)
+
+## Este Fork
+
+> Fork de Repositório (Fork de Código): No desenvolvimento de software, especialmente em plataformas de controle de versão como GitHub, um fork é a criação de uma cópia de um repositório de código. Isso permite que o desenvolvedor trabalhe no código de forma independente, podendo fazer modificações e melhorias sem afetar o projeto original. Caso essas modificações sejam benéficas, podem ser integradas ao projeto original por meio de um pull request.
+
+Optamos por criar um fork do projeto original com o objetivo de evoluir o sistema e oferecer uma plataforma ainda mais eficiente e acessível para a gestão cultural. As melhorias incluem uma nova arquitetura de arquivos e diretórios, uma conexão aprimorada com o banco de dados e um guia detalhado de colaboração, permitindo uma maior participação da comunidade no desenvolvimento e manutenção do projeto. Este fork visa não apenas otimizar o desempenho e a usabilidade do sistema, mas também fortalecer a rede de agentes culturais e facilitar o acesso à informação e à cultura.
+
+Agradecemos profundamente a todos que contribuíram até a última versão do projeto. A partir dela, realizamos várias mudanças significativas que podem ser detalhadas aqui:
+
+- [Nova Arquitetura](./app/README.md) de arquivos e diretórios
+- [Conexão](./app/README.md) com o Banco de Dados
+- [Como colaborar](./help/CREATE-ISSUES.md) criando issues
+- [Como implementar](./app/CREATE-PULL-REQUESTS.md) novos códigos através de pull requests
+
+## Tecnologias
+
+- PHP7^
+ - Symfony packages
+ - Slim packages
+ - Doctrine
+ - PHP DI
+ - PHPUnit
+- PostgreSQL
+
+---
+
+## Instalação
+A maneira mais simples e segura para instalar o MapaCultural é seguindo [Este tutorial](./help/INSTALL.md)
+
+## Documentação do Novo Código
+
+- [Getting Started](./app/README.md)
+- API
+ - [API V1](https://mapacultural.secult.ce.gov.br/mapas/docs/v1) do projeto original
+ - [API V2](https://mapacultural.secult.ce.gov.br/mapas/docs/v2) baseada em RestFul, implementada neste fork
+- Autenticação
+ - Web (ainda em desenvolvimento)
+ - API V2 (ainda em desenvolvimento)
+
+## Documentação Legada
+
+A documentação pode ser navegada no endereço (http://docs.mapasculturais.org)
+
+
+Saiba mais
+
+Toda documentação da aplicação está na pasta [documentation](documentation). Principais referências:
+- [API](http://docs.mapasculturais.org/apidoc/index.html?doctype=api)
+- [API - exemplos](documentation/docs/mc_config_api.md)
+- [Guia do desenvolvedor](documentation/docs/mc_developer_guide.md)
+- [Como contribuir](documentation/docs/mc_developer_contribute.md)
+- [Desenvolver um novo tema](documentation/docs/mc_developer_theme.md)
+- [Importação de arquivos de dados geoespaciais (Shapefiles)](documentation/docs/mc_deploy_shapefiles.md)
+- [Deploy diretamente no sistema operacional](https://docs.mapasculturais.org/mc_deploy/) - **NÃO RECOMENDADO**
+- [Habilitar um novo tema](documentation/docs/mc_deploy_theme.md)
+
+
+
+## Mais Informações
+
+Acesse aqui para ver a documentação do projeto original [aqui](./help/README.md)
+
+### [Hardware] Requisitos para instalação
+
+Para instalações de pequeno/medio porte nas quais o número de entidades, isto é, número de agentes, espaços, projetos e evento,giram em torno de 2000 ativos, recomenda-se o mínimo de recursos para um servidor (aplicação + base de dados):
+
+* 2 cores de CPU;
+* 2gb de RAM;
+* 50mbit de rede;
+
+Desejável:
+
+* 4 cores de CPU;
+* 4gb de RAM;
+* 100mbit de rede;
+
+Para instalações em cidades de grande porte onde o número de entidades, isto é, número de agentes, espaços, projetos e evento, giram em torno de dezenas de milhares de ativos de cada, recomenda-se o mínimo de recursos para um servidor:
+
+* 4 cores de CPU
+* 4gb de RAM
+* 100mbit de rede
+
+Recomendado:
+* 8 cores de CPU
+* 8gb de RAM
+* 500mbit de rede
+
+Vale lembrar que os requisitos de hardware podem variar de acordo com a latência da rede, velocidade dos cores dos cpus, uso de proxies, entre outros fatores. Recomendamos aos sysadmin da rede em que a aplicação será instalada um monitoramento de tráfego e uso durante o período de 6 meses a 1 ano para avaliação de cenário de uso.
+
+### Canais de comunicação
+
+* [Lista de discussão](https://groups.google.com/forum/?hl=en#!forum/mapas-culturais)
+* Telegram: [![Join the chat at https://t.me/joinchat/WCYOkiRbAWmxQM2y](https://patrolavia.github.io/telegram-badge/chat.png)](https://t.me/joinchat/WCYOkiRbAWmxQM2y)
+
+### Licença de uso e desenvolvimento
+
+Mapas Culturais é um software livre licenciado com [GPLv3](http://gplv3.fsf.org).
+
diff --git "a/README_espa\303\261ol.md" "b/api/mapas/README_espa\303\261ol.md"
similarity index 100%
rename from "README_espa\303\261ol.md"
rename to "api/mapas/README_espa\303\261ol.md"
diff --git a/app/.gitignore b/api/mapas/app/.gitignore
similarity index 100%
rename from app/.gitignore
rename to api/mapas/app/.gitignore
diff --git a/app/README.md b/api/mapas/app/README.md
similarity index 100%
rename from app/README.md
rename to api/mapas/app/README.md
diff --git a/app/bin/console b/api/mapas/app/bin/console
similarity index 100%
rename from app/bin/console
rename to api/mapas/app/bin/console
diff --git a/app/bin/doctrine b/api/mapas/app/bin/doctrine
similarity index 100%
rename from app/bin/doctrine
rename to api/mapas/app/bin/doctrine
diff --git a/app/routes/api.php b/api/mapas/app/routes/api.php
similarity index 100%
rename from app/routes/api.php
rename to api/mapas/app/routes/api.php
diff --git a/app/routes/api/agent.php b/api/mapas/app/routes/api/agent.php
similarity index 100%
rename from app/routes/api/agent.php
rename to api/mapas/app/routes/api/agent.php
diff --git a/app/routes/api/event.php b/api/mapas/app/routes/api/event.php
similarity index 100%
rename from app/routes/api/event.php
rename to api/mapas/app/routes/api/event.php
diff --git a/app/routes/api/opportunity.php b/api/mapas/app/routes/api/opportunity.php
similarity index 100%
rename from app/routes/api/opportunity.php
rename to api/mapas/app/routes/api/opportunity.php
diff --git a/app/routes/api/project.php b/api/mapas/app/routes/api/project.php
similarity index 100%
rename from app/routes/api/project.php
rename to api/mapas/app/routes/api/project.php
diff --git a/app/routes/api/seal.php b/api/mapas/app/routes/api/seal.php
similarity index 100%
rename from app/routes/api/seal.php
rename to api/mapas/app/routes/api/seal.php
diff --git a/app/routes/api/space.php b/api/mapas/app/routes/api/space.php
similarity index 100%
rename from app/routes/api/space.php
rename to api/mapas/app/routes/api/space.php
diff --git a/app/routes/api/term.php b/api/mapas/app/routes/api/term.php
similarity index 100%
rename from app/routes/api/term.php
rename to api/mapas/app/routes/api/term.php
diff --git a/app/routes/routes.php b/api/mapas/app/routes/routes.php
similarity index 100%
rename from app/routes/routes.php
rename to api/mapas/app/routes/routes.php
diff --git a/app/routes/web.php b/api/mapas/app/routes/web.php
similarity index 100%
rename from app/routes/web.php
rename to api/mapas/app/routes/web.php
diff --git a/app/src/Command/CodeStyleCommand.php b/api/mapas/app/src/Command/CodeStyleCommand.php
similarity index 100%
rename from app/src/Command/CodeStyleCommand.php
rename to api/mapas/app/src/Command/CodeStyleCommand.php
diff --git a/app/src/Command/DebugRouterCommand.php b/api/mapas/app/src/Command/DebugRouterCommand.php
similarity index 100%
rename from app/src/Command/DebugRouterCommand.php
rename to api/mapas/app/src/Command/DebugRouterCommand.php
diff --git a/app/src/Command/FixturesCommand.php b/api/mapas/app/src/Command/FixturesCommand.php
similarity index 100%
rename from app/src/Command/FixturesCommand.php
rename to api/mapas/app/src/Command/FixturesCommand.php
diff --git a/app/src/Command/TestsCommand.php b/api/mapas/app/src/Command/TestsCommand.php
similarity index 100%
rename from app/src/Command/TestsCommand.php
rename to api/mapas/app/src/Command/TestsCommand.php
diff --git a/app/src/Command/WelcomeCommand.php b/api/mapas/app/src/Command/WelcomeCommand.php
similarity index 100%
rename from app/src/Command/WelcomeCommand.php
rename to api/mapas/app/src/Command/WelcomeCommand.php
diff --git a/app/src/Connection/EntityManager.php b/api/mapas/app/src/Connection/EntityManager.php
similarity index 100%
rename from app/src/Connection/EntityManager.php
rename to api/mapas/app/src/Connection/EntityManager.php
diff --git a/app/src/Controller/AbstractController.php b/api/mapas/app/src/Controller/AbstractController.php
similarity index 100%
rename from app/src/Controller/AbstractController.php
rename to api/mapas/app/src/Controller/AbstractController.php
diff --git a/app/src/Controller/Api/AgentApiController.php b/api/mapas/app/src/Controller/Api/AgentApiController.php
similarity index 100%
rename from app/src/Controller/Api/AgentApiController.php
rename to api/mapas/app/src/Controller/Api/AgentApiController.php
diff --git a/app/src/Controller/Api/EventApiController.php b/api/mapas/app/src/Controller/Api/EventApiController.php
similarity index 100%
rename from app/src/Controller/Api/EventApiController.php
rename to api/mapas/app/src/Controller/Api/EventApiController.php
diff --git a/app/src/Controller/Api/OpportunityApiController.php b/api/mapas/app/src/Controller/Api/OpportunityApiController.php
similarity index 100%
rename from app/src/Controller/Api/OpportunityApiController.php
rename to api/mapas/app/src/Controller/Api/OpportunityApiController.php
diff --git a/app/src/Controller/Api/ProjectApiController.php b/api/mapas/app/src/Controller/Api/ProjectApiController.php
similarity index 100%
rename from app/src/Controller/Api/ProjectApiController.php
rename to api/mapas/app/src/Controller/Api/ProjectApiController.php
diff --git a/app/src/Controller/Api/SealApiController.php b/api/mapas/app/src/Controller/Api/SealApiController.php
similarity index 100%
rename from app/src/Controller/Api/SealApiController.php
rename to api/mapas/app/src/Controller/Api/SealApiController.php
diff --git a/app/src/Controller/Api/SpaceApiController.php b/api/mapas/app/src/Controller/Api/SpaceApiController.php
similarity index 100%
rename from app/src/Controller/Api/SpaceApiController.php
rename to api/mapas/app/src/Controller/Api/SpaceApiController.php
diff --git a/app/src/Controller/Api/TermApiController.php b/api/mapas/app/src/Controller/Api/TermApiController.php
similarity index 100%
rename from app/src/Controller/Api/TermApiController.php
rename to api/mapas/app/src/Controller/Api/TermApiController.php
diff --git a/app/src/Controller/Api/WelcomeApiController.php b/api/mapas/app/src/Controller/Api/WelcomeApiController.php
similarity index 100%
rename from app/src/Controller/Api/WelcomeApiController.php
rename to api/mapas/app/src/Controller/Api/WelcomeApiController.php
diff --git a/app/src/Controller/DocumentationController.php b/api/mapas/app/src/Controller/DocumentationController.php
similarity index 100%
rename from app/src/Controller/DocumentationController.php
rename to api/mapas/app/src/Controller/DocumentationController.php
diff --git a/app/src/DTO/SealDto.php b/api/mapas/app/src/DTO/SealDto.php
similarity index 100%
rename from app/src/DTO/SealDto.php
rename to api/mapas/app/src/DTO/SealDto.php
diff --git a/app/src/DataFixtures/AgentFixtures.php b/api/mapas/app/src/DataFixtures/AgentFixtures.php
similarity index 100%
rename from app/src/DataFixtures/AgentFixtures.php
rename to api/mapas/app/src/DataFixtures/AgentFixtures.php
diff --git a/app/src/DataFixtures/EventFixtures.php b/api/mapas/app/src/DataFixtures/EventFixtures.php
similarity index 100%
rename from app/src/DataFixtures/EventFixtures.php
rename to api/mapas/app/src/DataFixtures/EventFixtures.php
diff --git a/app/src/DataFixtures/Fixture.php b/api/mapas/app/src/DataFixtures/Fixture.php
similarity index 100%
rename from app/src/DataFixtures/Fixture.php
rename to api/mapas/app/src/DataFixtures/Fixture.php
diff --git a/app/src/DataFixtures/OpportunityFixtures.php b/api/mapas/app/src/DataFixtures/OpportunityFixtures.php
similarity index 100%
rename from app/src/DataFixtures/OpportunityFixtures.php
rename to api/mapas/app/src/DataFixtures/OpportunityFixtures.php
diff --git a/app/src/DataFixtures/ProjectFixtures.php b/api/mapas/app/src/DataFixtures/ProjectFixtures.php
similarity index 100%
rename from app/src/DataFixtures/ProjectFixtures.php
rename to api/mapas/app/src/DataFixtures/ProjectFixtures.php
diff --git a/app/src/DataFixtures/SealFixtures.php b/api/mapas/app/src/DataFixtures/SealFixtures.php
similarity index 100%
rename from app/src/DataFixtures/SealFixtures.php
rename to api/mapas/app/src/DataFixtures/SealFixtures.php
diff --git a/app/src/DataFixtures/SpaceFixtures.php b/api/mapas/app/src/DataFixtures/SpaceFixtures.php
similarity index 100%
rename from app/src/DataFixtures/SpaceFixtures.php
rename to api/mapas/app/src/DataFixtures/SpaceFixtures.php
diff --git a/app/src/DataFixtures/TermFixtures.php b/api/mapas/app/src/DataFixtures/TermFixtures.php
similarity index 100%
rename from app/src/DataFixtures/TermFixtures.php
rename to api/mapas/app/src/DataFixtures/TermFixtures.php
diff --git a/app/src/DataFixtures/UserFixtures.php b/api/mapas/app/src/DataFixtures/UserFixtures.php
similarity index 100%
rename from app/src/DataFixtures/UserFixtures.php
rename to api/mapas/app/src/DataFixtures/UserFixtures.php
diff --git a/app/src/Entity/Agent.php b/api/mapas/app/src/Entity/Agent.php
similarity index 100%
rename from app/src/Entity/Agent.php
rename to api/mapas/app/src/Entity/Agent.php
diff --git a/app/src/Entity/Event.php b/api/mapas/app/src/Entity/Event.php
similarity index 100%
rename from app/src/Entity/Event.php
rename to api/mapas/app/src/Entity/Event.php
diff --git a/app/src/Entity/Opportunity.php b/api/mapas/app/src/Entity/Opportunity.php
similarity index 100%
rename from app/src/Entity/Opportunity.php
rename to api/mapas/app/src/Entity/Opportunity.php
diff --git a/app/src/Entity/Project.php b/api/mapas/app/src/Entity/Project.php
similarity index 100%
rename from app/src/Entity/Project.php
rename to api/mapas/app/src/Entity/Project.php
diff --git a/app/src/Entity/Seal.php b/api/mapas/app/src/Entity/Seal.php
similarity index 100%
rename from app/src/Entity/Seal.php
rename to api/mapas/app/src/Entity/Seal.php
diff --git a/app/src/Entity/Space.php b/api/mapas/app/src/Entity/Space.php
similarity index 100%
rename from app/src/Entity/Space.php
rename to api/mapas/app/src/Entity/Space.php
diff --git a/app/src/Enum/AgentTypeEnum.php b/api/mapas/app/src/Enum/AgentTypeEnum.php
similarity index 100%
rename from app/src/Enum/AgentTypeEnum.php
rename to api/mapas/app/src/Enum/AgentTypeEnum.php
diff --git a/app/src/Enum/AuthProviderEnum.php b/api/mapas/app/src/Enum/AuthProviderEnum.php
similarity index 100%
rename from app/src/Enum/AuthProviderEnum.php
rename to api/mapas/app/src/Enum/AuthProviderEnum.php
diff --git a/app/src/Enum/EntityStatusEnum.php b/api/mapas/app/src/Enum/EntityStatusEnum.php
similarity index 100%
rename from app/src/Enum/EntityStatusEnum.php
rename to api/mapas/app/src/Enum/EntityStatusEnum.php
diff --git a/app/src/Exception/FieldInvalidException.php b/api/mapas/app/src/Exception/FieldInvalidException.php
similarity index 100%
rename from app/src/Exception/FieldInvalidException.php
rename to api/mapas/app/src/Exception/FieldInvalidException.php
diff --git a/app/src/Exception/FieldRequiredException.php b/api/mapas/app/src/Exception/FieldRequiredException.php
similarity index 100%
rename from app/src/Exception/FieldRequiredException.php
rename to api/mapas/app/src/Exception/FieldRequiredException.php
diff --git a/app/src/Exception/InvalidRequestException.php b/api/mapas/app/src/Exception/InvalidRequestException.php
similarity index 100%
rename from app/src/Exception/InvalidRequestException.php
rename to api/mapas/app/src/Exception/InvalidRequestException.php
diff --git a/app/src/Exception/RequiredIdParamException.php b/api/mapas/app/src/Exception/RequiredIdParamException.php
similarity index 100%
rename from app/src/Exception/RequiredIdParamException.php
rename to api/mapas/app/src/Exception/RequiredIdParamException.php
diff --git a/app/src/Exception/ResourceNotFoundException.php b/api/mapas/app/src/Exception/ResourceNotFoundException.php
similarity index 100%
rename from app/src/Exception/ResourceNotFoundException.php
rename to api/mapas/app/src/Exception/ResourceNotFoundException.php
diff --git a/app/src/Exception/ValidatorException.php b/api/mapas/app/src/Exception/ValidatorException.php
similarity index 100%
rename from app/src/Exception/ValidatorException.php
rename to api/mapas/app/src/Exception/ValidatorException.php
diff --git a/app/src/Kernel.php b/api/mapas/app/src/Kernel.php
similarity index 100%
rename from app/src/Kernel.php
rename to api/mapas/app/src/Kernel.php
diff --git a/app/src/Repository/AbstractRepository.php b/api/mapas/app/src/Repository/AbstractRepository.php
similarity index 100%
rename from app/src/Repository/AbstractRepository.php
rename to api/mapas/app/src/Repository/AbstractRepository.php
diff --git a/app/src/Repository/AgentRepository.php b/api/mapas/app/src/Repository/AgentRepository.php
similarity index 100%
rename from app/src/Repository/AgentRepository.php
rename to api/mapas/app/src/Repository/AgentRepository.php
diff --git a/app/src/Repository/EventRepository.php b/api/mapas/app/src/Repository/EventRepository.php
similarity index 100%
rename from app/src/Repository/EventRepository.php
rename to api/mapas/app/src/Repository/EventRepository.php
diff --git a/app/src/Repository/OpportunityRepository.php b/api/mapas/app/src/Repository/OpportunityRepository.php
similarity index 100%
rename from app/src/Repository/OpportunityRepository.php
rename to api/mapas/app/src/Repository/OpportunityRepository.php
diff --git a/app/src/Repository/ProjectRepository.php b/api/mapas/app/src/Repository/ProjectRepository.php
similarity index 100%
rename from app/src/Repository/ProjectRepository.php
rename to api/mapas/app/src/Repository/ProjectRepository.php
diff --git a/app/src/Repository/SealRepository.php b/api/mapas/app/src/Repository/SealRepository.php
similarity index 100%
rename from app/src/Repository/SealRepository.php
rename to api/mapas/app/src/Repository/SealRepository.php
diff --git a/app/src/Repository/SpaceRepository.php b/api/mapas/app/src/Repository/SpaceRepository.php
similarity index 100%
rename from app/src/Repository/SpaceRepository.php
rename to api/mapas/app/src/Repository/SpaceRepository.php
diff --git a/app/src/Repository/TermRepository.php b/api/mapas/app/src/Repository/TermRepository.php
similarity index 100%
rename from app/src/Repository/TermRepository.php
rename to api/mapas/app/src/Repository/TermRepository.php
diff --git a/app/src/Request/AgentRequest.php b/api/mapas/app/src/Request/AgentRequest.php
similarity index 100%
rename from app/src/Request/AgentRequest.php
rename to api/mapas/app/src/Request/AgentRequest.php
diff --git a/app/src/Request/EventRequest.php b/api/mapas/app/src/Request/EventRequest.php
similarity index 100%
rename from app/src/Request/EventRequest.php
rename to api/mapas/app/src/Request/EventRequest.php
diff --git a/app/src/Request/OpportunityRequest.php b/api/mapas/app/src/Request/OpportunityRequest.php
similarity index 100%
rename from app/src/Request/OpportunityRequest.php
rename to api/mapas/app/src/Request/OpportunityRequest.php
diff --git a/app/src/Request/ProjectRequest.php b/api/mapas/app/src/Request/ProjectRequest.php
similarity index 100%
rename from app/src/Request/ProjectRequest.php
rename to api/mapas/app/src/Request/ProjectRequest.php
diff --git a/app/src/Request/SealRequest.php b/api/mapas/app/src/Request/SealRequest.php
similarity index 100%
rename from app/src/Request/SealRequest.php
rename to api/mapas/app/src/Request/SealRequest.php
diff --git a/app/src/Request/SpaceRequest.php b/api/mapas/app/src/Request/SpaceRequest.php
similarity index 100%
rename from app/src/Request/SpaceRequest.php
rename to api/mapas/app/src/Request/SpaceRequest.php
diff --git a/app/src/Service/AbstractService.php b/api/mapas/app/src/Service/AbstractService.php
similarity index 100%
rename from app/src/Service/AbstractService.php
rename to api/mapas/app/src/Service/AbstractService.php
diff --git a/app/src/Service/AgentService.php b/api/mapas/app/src/Service/AgentService.php
similarity index 100%
rename from app/src/Service/AgentService.php
rename to api/mapas/app/src/Service/AgentService.php
diff --git a/app/src/Service/EventService.php b/api/mapas/app/src/Service/EventService.php
similarity index 100%
rename from app/src/Service/EventService.php
rename to api/mapas/app/src/Service/EventService.php
diff --git a/app/src/Service/OpportunityService.php b/api/mapas/app/src/Service/OpportunityService.php
similarity index 100%
rename from app/src/Service/OpportunityService.php
rename to api/mapas/app/src/Service/OpportunityService.php
diff --git a/app/src/Service/ProjectService.php b/api/mapas/app/src/Service/ProjectService.php
similarity index 100%
rename from app/src/Service/ProjectService.php
rename to api/mapas/app/src/Service/ProjectService.php
diff --git a/app/src/Service/SealService.php b/api/mapas/app/src/Service/SealService.php
similarity index 100%
rename from app/src/Service/SealService.php
rename to api/mapas/app/src/Service/SealService.php
diff --git a/app/src/Service/SpaceService.php b/api/mapas/app/src/Service/SpaceService.php
similarity index 100%
rename from app/src/Service/SpaceService.php
rename to api/mapas/app/src/Service/SpaceService.php
diff --git a/app/tests/AbstractTestCase.php b/api/mapas/app/tests/AbstractTestCase.php
similarity index 100%
rename from app/tests/AbstractTestCase.php
rename to api/mapas/app/tests/AbstractTestCase.php
diff --git a/app/tests/fixtures/AbstractTestFixtures.php b/api/mapas/app/tests/fixtures/AbstractTestFixtures.php
similarity index 100%
rename from app/tests/fixtures/AbstractTestFixtures.php
rename to api/mapas/app/tests/fixtures/AbstractTestFixtures.php
diff --git a/app/tests/fixtures/AgentTestFixtures.php b/api/mapas/app/tests/fixtures/AgentTestFixtures.php
similarity index 100%
rename from app/tests/fixtures/AgentTestFixtures.php
rename to api/mapas/app/tests/fixtures/AgentTestFixtures.php
diff --git a/app/tests/fixtures/EventTestFixtures.php b/api/mapas/app/tests/fixtures/EventTestFixtures.php
similarity index 100%
rename from app/tests/fixtures/EventTestFixtures.php
rename to api/mapas/app/tests/fixtures/EventTestFixtures.php
diff --git a/app/tests/fixtures/OpportunityTestFixtures.php b/api/mapas/app/tests/fixtures/OpportunityTestFixtures.php
similarity index 100%
rename from app/tests/fixtures/OpportunityTestFixtures.php
rename to api/mapas/app/tests/fixtures/OpportunityTestFixtures.php
diff --git a/app/tests/fixtures/ProjectTestFixtures.php b/api/mapas/app/tests/fixtures/ProjectTestFixtures.php
similarity index 100%
rename from app/tests/fixtures/ProjectTestFixtures.php
rename to api/mapas/app/tests/fixtures/ProjectTestFixtures.php
diff --git a/app/tests/fixtures/SealTestFixtures.php b/api/mapas/app/tests/fixtures/SealTestFixtures.php
similarity index 100%
rename from app/tests/fixtures/SealTestFixtures.php
rename to api/mapas/app/tests/fixtures/SealTestFixtures.php
diff --git a/app/tests/fixtures/SpaceTestFixtures.php b/api/mapas/app/tests/fixtures/SpaceTestFixtures.php
similarity index 100%
rename from app/tests/fixtures/SpaceTestFixtures.php
rename to api/mapas/app/tests/fixtures/SpaceTestFixtures.php
diff --git a/app/tests/fixtures/TestFixtures.php b/api/mapas/app/tests/fixtures/TestFixtures.php
similarity index 100%
rename from app/tests/fixtures/TestFixtures.php
rename to api/mapas/app/tests/fixtures/TestFixtures.php
diff --git a/app/tests/functional/AgentApiControllerTest.php b/api/mapas/app/tests/functional/AgentApiControllerTest.php
similarity index 100%
rename from app/tests/functional/AgentApiControllerTest.php
rename to api/mapas/app/tests/functional/AgentApiControllerTest.php
diff --git a/app/tests/functional/EventApiControllerTest.php b/api/mapas/app/tests/functional/EventApiControllerTest.php
similarity index 100%
rename from app/tests/functional/EventApiControllerTest.php
rename to api/mapas/app/tests/functional/EventApiControllerTest.php
diff --git a/app/tests/functional/OpportunityApiControllerTest.php b/api/mapas/app/tests/functional/OpportunityApiControllerTest.php
similarity index 100%
rename from app/tests/functional/OpportunityApiControllerTest.php
rename to api/mapas/app/tests/functional/OpportunityApiControllerTest.php
diff --git a/app/tests/functional/ProjectApiControllerTest.php b/api/mapas/app/tests/functional/ProjectApiControllerTest.php
similarity index 100%
rename from app/tests/functional/ProjectApiControllerTest.php
rename to api/mapas/app/tests/functional/ProjectApiControllerTest.php
diff --git a/app/tests/functional/SealApiControllerTest.php b/api/mapas/app/tests/functional/SealApiControllerTest.php
similarity index 100%
rename from app/tests/functional/SealApiControllerTest.php
rename to api/mapas/app/tests/functional/SealApiControllerTest.php
diff --git a/app/tests/functional/SpaceApiControllerTest.php b/api/mapas/app/tests/functional/SpaceApiControllerTest.php
similarity index 100%
rename from app/tests/functional/SpaceApiControllerTest.php
rename to api/mapas/app/tests/functional/SpaceApiControllerTest.php
diff --git a/app/tests/functional/TermApiControllerTest.php b/api/mapas/app/tests/functional/TermApiControllerTest.php
similarity index 100%
rename from app/tests/functional/TermApiControllerTest.php
rename to api/mapas/app/tests/functional/TermApiControllerTest.php
diff --git a/app/tests/functional/WelcomeApiControllerTest.php b/api/mapas/app/tests/functional/WelcomeApiControllerTest.php
similarity index 100%
rename from app/tests/functional/WelcomeApiControllerTest.php
rename to api/mapas/app/tests/functional/WelcomeApiControllerTest.php
diff --git a/config/0.main.php b/api/mapas/config/0.main.php
similarity index 100%
rename from config/0.main.php
rename to api/mapas/config/0.main.php
diff --git a/config/Metabase.php b/api/mapas/config/Metabase.php
similarity index 100%
rename from config/Metabase.php
rename to api/mapas/config/Metabase.php
diff --git a/config/assets-manager.php b/api/mapas/config/assets-manager.php
similarity index 100%
rename from config/assets-manager.php
rename to api/mapas/config/assets-manager.php
diff --git a/config/authentication.php b/api/mapas/config/authentication.php
similarity index 100%
rename from config/authentication.php
rename to api/mapas/config/authentication.php
diff --git a/config/cache.php b/api/mapas/config/cache.php
similarity index 100%
rename from config/cache.php
rename to api/mapas/config/cache.php
diff --git a/config/captcha.php b/api/mapas/config/captcha.php
similarity index 100%
rename from config/captcha.php
rename to api/mapas/config/captcha.php
diff --git a/config/cep.php b/api/mapas/config/cep.php
similarity index 100%
rename from config/cep.php
rename to api/mapas/config/cep.php
diff --git a/config/config.d/.gitkeep b/api/mapas/config/config.d/.gitkeep
similarity index 100%
rename from config/config.d/.gitkeep
rename to api/mapas/config/config.d/.gitkeep
diff --git a/config/db.php b/api/mapas/config/db.php
similarity index 100%
rename from config/db.php
rename to api/mapas/config/db.php
diff --git a/config/entities.php b/api/mapas/config/entities.php
similarity index 100%
rename from config/entities.php
rename to api/mapas/config/entities.php
diff --git a/config/favicon.php b/api/mapas/config/favicon.php
similarity index 100%
rename from config/favicon.php
rename to api/mapas/config/favicon.php
diff --git a/config/geodivisions.php b/api/mapas/config/geodivisions.php
similarity index 100%
rename from config/geodivisions.php
rename to api/mapas/config/geodivisions.php
diff --git a/config/home-header.php b/api/mapas/config/home-header.php
similarity index 100%
rename from config/home-header.php
rename to api/mapas/config/home-header.php
diff --git a/config/home.php b/api/mapas/config/home.php
similarity index 100%
rename from config/home.php
rename to api/mapas/config/home.php
diff --git a/config/lgpd-terms/images-use.html b/api/mapas/config/lgpd-terms/images-use.html
similarity index 100%
rename from config/lgpd-terms/images-use.html
rename to api/mapas/config/lgpd-terms/images-use.html
diff --git a/config/lgpd-terms/privacy-policy.html b/api/mapas/config/lgpd-terms/privacy-policy.html
similarity index 100%
rename from config/lgpd-terms/privacy-policy.html
rename to api/mapas/config/lgpd-terms/privacy-policy.html
diff --git a/config/lgpd-terms/terms-of-usage.html b/api/mapas/config/lgpd-terms/terms-of-usage.html
similarity index 100%
rename from config/lgpd-terms/terms-of-usage.html
rename to api/mapas/config/lgpd-terms/terms-of-usage.html
diff --git a/config/lgpd.php b/api/mapas/config/lgpd.php
similarity index 100%
rename from config/lgpd.php
rename to api/mapas/config/lgpd.php
diff --git a/config/logo.php b/api/mapas/config/logo.php
similarity index 100%
rename from config/logo.php
rename to api/mapas/config/logo.php
diff --git a/config/logs.php b/api/mapas/config/logs.php
similarity index 100%
rename from config/logs.php
rename to api/mapas/config/logs.php
diff --git a/config/mailer-templates.php b/api/mapas/config/mailer-templates.php
similarity index 100%
rename from config/mailer-templates.php
rename to api/mapas/config/mailer-templates.php
diff --git a/config/mailer.php b/api/mapas/config/mailer.php
similarity index 100%
rename from config/mailer.php
rename to api/mapas/config/mailer.php
diff --git a/config/maps.php b/api/mapas/config/maps.php
similarity index 100%
rename from config/maps.php
rename to api/mapas/config/maps.php
diff --git a/config/middlewares.php b/api/mapas/config/middlewares.php
similarity index 100%
rename from config/middlewares.php
rename to api/mapas/config/middlewares.php
diff --git a/config/module.FAQ.php b/api/mapas/config/module.FAQ.php
similarity index 100%
rename from config/module.FAQ.php
rename to api/mapas/config/module.FAQ.php
diff --git a/config/module.eventimporter.php b/api/mapas/config/module.eventimporter.php
similarity index 100%
rename from config/module.eventimporter.php
rename to api/mapas/config/module.eventimporter.php
diff --git a/config/module.home.php b/api/mapas/config/module.home.php
similarity index 100%
rename from config/module.home.php
rename to api/mapas/config/module.home.php
diff --git a/config/module.mailnotification.php b/api/mapas/config/module.mailnotification.php
similarity index 100%
rename from config/module.mailnotification.php
rename to api/mapas/config/module.mailnotification.php
diff --git a/config/module.profilecompletion.php b/api/mapas/config/module.profilecompletion.php
similarity index 100%
rename from config/module.profilecompletion.php
rename to api/mapas/config/module.profilecompletion.php
diff --git a/config/module.registrationFieldTypes.php b/api/mapas/config/module.registrationFieldTypes.php
similarity index 100%
rename from config/module.registrationFieldTypes.php
rename to api/mapas/config/module.registrationFieldTypes.php
diff --git a/config/module.report.php b/api/mapas/config/module.report.php
similarity index 100%
rename from config/module.report.php
rename to api/mapas/config/module.report.php
diff --git a/config/namespaces.php b/api/mapas/config/namespaces.php
similarity index 100%
rename from config/namespaces.php
rename to api/mapas/config/namespaces.php
diff --git a/config/notifications.php b/api/mapas/config/notifications.php
similarity index 100%
rename from config/notifications.php
rename to api/mapas/config/notifications.php
diff --git a/config/offline.php b/api/mapas/config/offline.php
similarity index 100%
rename from config/offline.php
rename to api/mapas/config/offline.php
diff --git a/config/plugins.php b/api/mapas/config/plugins.php
similarity index 100%
rename from config/plugins.php
rename to api/mapas/config/plugins.php
diff --git a/config/registrations.php b/api/mapas/config/registrations.php
similarity index 100%
rename from config/registrations.php
rename to api/mapas/config/registrations.php
diff --git a/config/routes.php b/api/mapas/config/routes.php
similarity index 100%
rename from config/routes.php
rename to api/mapas/config/routes.php
diff --git a/config/search.php b/api/mapas/config/search.php
similarity index 100%
rename from config/search.php
rename to api/mapas/config/search.php
diff --git a/config/sharing.php b/api/mapas/config/sharing.php
similarity index 100%
rename from config/sharing.php
rename to api/mapas/config/sharing.php
diff --git a/config/show.entityIds.php b/api/mapas/config/show.entityIds.php
similarity index 100%
rename from config/show.entityIds.php
rename to api/mapas/config/show.entityIds.php
diff --git a/config/social-media.php b/api/mapas/config/social-media.php
similarity index 100%
rename from config/social-media.php
rename to api/mapas/config/social-media.php
diff --git a/config/states-and-cities.php b/api/mapas/config/states-and-cities.php
similarity index 100%
rename from config/states-and-cities.php
rename to api/mapas/config/states-and-cities.php
diff --git a/dev/bash.sh b/api/mapas/dev/bash.sh
similarity index 100%
rename from dev/bash.sh
rename to api/mapas/dev/bash.sh
diff --git a/dev/compile-sass.sh b/api/mapas/dev/compile-sass.sh
similarity index 100%
rename from dev/compile-sass.sh
rename to api/mapas/dev/compile-sass.sh
diff --git a/dev/config.d/.gitkeep b/api/mapas/dev/config.d/.gitkeep
similarity index 100%
rename from dev/config.d/.gitkeep
rename to api/mapas/dev/config.d/.gitkeep
diff --git a/dev/config.d/0.main.php b/api/mapas/dev/config.d/0.main.php
similarity index 100%
rename from dev/config.d/0.main.php
rename to api/mapas/dev/config.d/0.main.php
diff --git a/dev/config.d/Metabase.php b/api/mapas/dev/config.d/Metabase.php
similarity index 100%
rename from dev/config.d/Metabase.php
rename to api/mapas/dev/config.d/Metabase.php
diff --git a/dev/config.d/auth.php b/api/mapas/dev/config.d/auth.php
similarity index 100%
rename from dev/config.d/auth.php
rename to api/mapas/dev/config.d/auth.php
diff --git a/dev/config.d/cache.php b/api/mapas/dev/config.d/cache.php
similarity index 100%
rename from dev/config.d/cache.php
rename to api/mapas/dev/config.d/cache.php
diff --git a/dev/config.d/log.php b/api/mapas/dev/config.d/log.php
similarity index 100%
rename from dev/config.d/log.php
rename to api/mapas/dev/config.d/log.php
diff --git a/dev/config.d/logo.php b/api/mapas/dev/config.d/logo.php
similarity index 100%
rename from dev/config.d/logo.php
rename to api/mapas/dev/config.d/logo.php
diff --git a/dev/config.d/middlewares.php b/api/mapas/dev/config.d/middlewares.php
similarity index 100%
rename from dev/config.d/middlewares.php
rename to api/mapas/dev/config.d/middlewares.php
diff --git a/dev/config.d/plugins.php b/api/mapas/dev/config.d/plugins.php
similarity index 100%
rename from dev/config.d/plugins.php
rename to api/mapas/dev/config.d/plugins.php
diff --git a/dev/config.d/sharing.php b/api/mapas/dev/config.d/sharing.php
similarity index 100%
rename from dev/config.d/sharing.php
rename to api/mapas/dev/config.d/sharing.php
diff --git a/dev/db.tgz b/api/mapas/dev/db.tgz
similarity index 100%
rename from dev/db.tgz
rename to api/mapas/dev/db.tgz
diff --git a/dev/db/dump.sql b/api/mapas/dev/db/dump.sql
similarity index 99%
rename from dev/db/dump.sql
rename to api/mapas/dev/db/dump.sql
index f74301d2c5..cf9c955e44 100644
--- a/dev/db/dump.sql
+++ b/api/mapas/dev/db/dump.sql
@@ -14,19 +14,35 @@ SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
-SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
--
--- TOC entry 8 (class 2615 OID 2200)
--- Name: public; Type: SCHEMA; Schema: -; Owner: mapas
+-- Name: tiger; Type: SCHEMA; Schema: -; Owner: mapas
--
--- CREATE SCHEMA public;
+CREATE SCHEMA tiger;
--- ALTER SCHEMA public OWNER TO mapas;
+ALTER SCHEMA tiger OWNER TO mapas;
+
+--
+-- Name: tiger_data; Type: SCHEMA; Schema: -; Owner: mapas
+--
+
+CREATE SCHEMA tiger_data;
+
+
+ALTER SCHEMA tiger_data OWNER TO mapas;
+
+--
+-- Name: topology; Type: SCHEMA; Schema: -; Owner: mapas
+--
+
+CREATE SCHEMA topology;
+
+
+ALTER SCHEMA topology OWNER TO mapas;
--
-- Name: SCHEMA topology; Type: COMMENT; Schema: -; Owner: mapas
@@ -99,7 +115,13 @@ CREATE EXTENSION IF NOT EXISTS unaccent WITH SCHEMA public;
--
--- TOC entry 2060 (class 1247 OID 18048)
+-- Name: EXTENSION unaccent; Type: COMMENT; Schema: -; Owner:
+--
+
+COMMENT ON EXTENSION unaccent IS 'text search dictionary that removes accents';
+
+
+--
-- Name: frequency; Type: DOMAIN; Schema: public; Owner: mapas
--
diff --git a/dev/docker-compose.yml b/api/mapas/dev/docker-compose.yml
similarity index 100%
rename from dev/docker-compose.yml
rename to api/mapas/dev/docker-compose.yml
diff --git a/dev/docker/php.ini b/api/mapas/dev/docker/php.ini
similarity index 100%
rename from dev/docker/php.ini
rename to api/mapas/dev/docker/php.ini
diff --git a/dev/docker/xdebug.ini b/api/mapas/dev/docker/xdebug.ini
similarity index 100%
rename from dev/docker/xdebug.ini
rename to api/mapas/dev/docker/xdebug.ini
diff --git a/dev/dump-db-updates.sh b/api/mapas/dev/dump-db-updates.sh
similarity index 100%
rename from dev/dump-db-updates.sh
rename to api/mapas/dev/dump-db-updates.sh
diff --git a/dev/exec-script.sh b/api/mapas/dev/exec-script.sh
similarity index 100%
rename from dev/exec-script.sh
rename to api/mapas/dev/exec-script.sh
diff --git a/dev/kill.sh b/api/mapas/dev/kill.sh
similarity index 100%
rename from dev/kill.sh
rename to api/mapas/dev/kill.sh
diff --git a/dev/pnpm.sh b/api/mapas/dev/pnpm.sh
similarity index 100%
rename from dev/pnpm.sh
rename to api/mapas/dev/pnpm.sh
diff --git a/dev/psql.sh b/api/mapas/dev/psql.sh
similarity index 100%
rename from dev/psql.sh
rename to api/mapas/dev/psql.sh
diff --git a/dev/shell.sh b/api/mapas/dev/shell.sh
similarity index 100%
rename from dev/shell.sh
rename to api/mapas/dev/shell.sh
diff --git a/dev/start.sh b/api/mapas/dev/start.sh
similarity index 100%
rename from dev/start.sh
rename to api/mapas/dev/start.sh
diff --git a/dev/watch-sass.sh b/api/mapas/dev/watch-sass.sh
similarity index 100%
rename from dev/watch-sass.sh
rename to api/mapas/dev/watch-sass.sh
diff --git a/dev/watch.sh b/api/mapas/dev/watch.sh
similarity index 100%
rename from dev/watch.sh
rename to api/mapas/dev/watch.sh
diff --git a/docker/Dockerfile b/api/mapas/docker/Dockerfile
similarity index 100%
rename from docker/Dockerfile
rename to api/mapas/docker/Dockerfile
diff --git a/docker/common/config.d/0.main.php b/api/mapas/docker/common/config.d/0.main.php
similarity index 100%
rename from docker/common/config.d/0.main.php
rename to api/mapas/docker/common/config.d/0.main.php
diff --git a/docker/common/config.d/logo.php b/api/mapas/docker/common/config.d/logo.php
similarity index 100%
rename from docker/common/config.d/logo.php
rename to api/mapas/docker/common/config.d/logo.php
diff --git a/docker/common/config.d/maps.php b/api/mapas/docker/common/config.d/maps.php
similarity index 100%
rename from docker/common/config.d/maps.php
rename to api/mapas/docker/common/config.d/maps.php
diff --git a/docker/common/config.d/plugins.php b/api/mapas/docker/common/config.d/plugins.php
similarity index 100%
rename from docker/common/config.d/plugins.php
rename to api/mapas/docker/common/config.d/plugins.php
diff --git a/docker/common/config.d/sharing.php b/api/mapas/docker/common/config.d/sharing.php
similarity index 100%
rename from docker/common/config.d/sharing.php
rename to api/mapas/docker/common/config.d/sharing.php
diff --git a/docker/common/config.php b/api/mapas/docker/common/config.php
similarity index 100%
rename from docker/common/config.php
rename to api/mapas/docker/common/config.php
diff --git a/docker/development/router.php b/api/mapas/docker/development/router.php
similarity index 100%
rename from docker/development/router.php
rename to api/mapas/docker/development/router.php
diff --git a/docker/development/start.sh b/api/mapas/docker/development/start.sh
similarity index 100%
rename from docker/development/start.sh
rename to api/mapas/docker/development/start.sh
diff --git a/docker/entrypoint.sh b/api/mapas/docker/entrypoint.sh
similarity index 100%
rename from docker/entrypoint.sh
rename to api/mapas/docker/entrypoint.sh
diff --git a/docker/jobs-cron.sh b/api/mapas/docker/jobs-cron.sh
similarity index 100%
rename from docker/jobs-cron.sh
rename to api/mapas/docker/jobs-cron.sh
diff --git a/docker/production/config.d/authentication.php b/api/mapas/docker/production/config.d/authentication.php
similarity index 100%
rename from docker/production/config.d/authentication.php
rename to api/mapas/docker/production/config.d/authentication.php
diff --git a/docker/production/nginx.conf b/api/mapas/docker/production/nginx.conf
similarity index 100%
rename from docker/production/nginx.conf
rename to api/mapas/docker/production/nginx.conf
diff --git a/docker/production/php.ini b/api/mapas/docker/production/php.ini
similarity index 100%
rename from docker/production/php.ini
rename to api/mapas/docker/production/php.ini
diff --git a/docker/recreate-pending-pcache-cron.sh b/api/mapas/docker/recreate-pending-pcache-cron.sh
similarity index 100%
rename from docker/recreate-pending-pcache-cron.sh
rename to api/mapas/docker/recreate-pending-pcache-cron.sh
diff --git a/docker/timezone.ini b/api/mapas/docker/timezone.ini
similarity index 100%
rename from docker/timezone.ini
rename to api/mapas/docker/timezone.ini
diff --git a/documentation/ApiHook-doc/apidoc.json b/api/mapas/documentation/ApiHook-doc/apidoc.json
similarity index 100%
rename from documentation/ApiHook-doc/apidoc.json
rename to api/mapas/documentation/ApiHook-doc/apidoc.json
diff --git a/documentation/ApiHook-doc/footer.md b/api/mapas/documentation/ApiHook-doc/footer.md
similarity index 100%
rename from documentation/ApiHook-doc/footer.md
rename to api/mapas/documentation/ApiHook-doc/footer.md
diff --git a/documentation/ApiHook-doc/header.md b/api/mapas/documentation/ApiHook-doc/header.md
similarity index 100%
rename from documentation/ApiHook-doc/header.md
rename to api/mapas/documentation/ApiHook-doc/header.md
diff --git a/documentation/ApiHook-doc/readme.md b/api/mapas/documentation/ApiHook-doc/readme.md
similarity index 100%
rename from documentation/ApiHook-doc/readme.md
rename to api/mapas/documentation/ApiHook-doc/readme.md
diff --git a/documentation/ApiHook-doc/template/css/style.css b/api/mapas/documentation/ApiHook-doc/template/css/style.css
similarity index 100%
rename from documentation/ApiHook-doc/template/css/style.css
rename to api/mapas/documentation/ApiHook-doc/template/css/style.css
diff --git a/documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.eot b/api/mapas/documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.eot
similarity index 100%
rename from documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.eot
rename to api/mapas/documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.eot
diff --git a/documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.svg b/api/mapas/documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.svg
similarity index 100%
rename from documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.svg
rename to api/mapas/documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.svg
diff --git a/documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.ttf b/api/mapas/documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.ttf
similarity index 100%
rename from documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.ttf
rename to api/mapas/documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.ttf
diff --git a/documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.woff b/api/mapas/documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.woff
similarity index 100%
rename from documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.woff
rename to api/mapas/documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.woff
diff --git a/documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.woff2 b/api/mapas/documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.woff2
similarity index 100%
rename from documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.woff2
rename to api/mapas/documentation/ApiHook-doc/template/fonts/glyphicons-halflings-regular.woff2
diff --git a/documentation/ApiHook-doc/template/img/favicon.ico b/api/mapas/documentation/ApiHook-doc/template/img/favicon.ico
similarity index 100%
rename from documentation/ApiHook-doc/template/img/favicon.ico
rename to api/mapas/documentation/ApiHook-doc/template/img/favicon.ico
diff --git a/documentation/ApiHook-doc/template/index.html b/api/mapas/documentation/ApiHook-doc/template/index.html
similarity index 100%
rename from documentation/ApiHook-doc/template/index.html
rename to api/mapas/documentation/ApiHook-doc/template/index.html
diff --git a/documentation/ApiHook-doc/template/locales/ca.js b/api/mapas/documentation/ApiHook-doc/template/locales/ca.js
similarity index 100%
rename from documentation/ApiHook-doc/template/locales/ca.js
rename to api/mapas/documentation/ApiHook-doc/template/locales/ca.js
diff --git a/documentation/ApiHook-doc/template/locales/de.js b/api/mapas/documentation/ApiHook-doc/template/locales/de.js
similarity index 100%
rename from documentation/ApiHook-doc/template/locales/de.js
rename to api/mapas/documentation/ApiHook-doc/template/locales/de.js
diff --git a/documentation/ApiHook-doc/template/locales/es.js b/api/mapas/documentation/ApiHook-doc/template/locales/es.js
similarity index 100%
rename from documentation/ApiHook-doc/template/locales/es.js
rename to api/mapas/documentation/ApiHook-doc/template/locales/es.js
diff --git a/documentation/ApiHook-doc/template/locales/fr.js b/api/mapas/documentation/ApiHook-doc/template/locales/fr.js
similarity index 100%
rename from documentation/ApiHook-doc/template/locales/fr.js
rename to api/mapas/documentation/ApiHook-doc/template/locales/fr.js
diff --git a/documentation/ApiHook-doc/template/locales/it.js b/api/mapas/documentation/ApiHook-doc/template/locales/it.js
similarity index 100%
rename from documentation/ApiHook-doc/template/locales/it.js
rename to api/mapas/documentation/ApiHook-doc/template/locales/it.js
diff --git a/documentation/ApiHook-doc/template/locales/locale.js b/api/mapas/documentation/ApiHook-doc/template/locales/locale.js
similarity index 100%
rename from documentation/ApiHook-doc/template/locales/locale.js
rename to api/mapas/documentation/ApiHook-doc/template/locales/locale.js
diff --git a/documentation/ApiHook-doc/template/locales/nl.js b/api/mapas/documentation/ApiHook-doc/template/locales/nl.js
similarity index 100%
rename from documentation/ApiHook-doc/template/locales/nl.js
rename to api/mapas/documentation/ApiHook-doc/template/locales/nl.js
diff --git a/documentation/ApiHook-doc/template/locales/pl.js b/api/mapas/documentation/ApiHook-doc/template/locales/pl.js
similarity index 100%
rename from documentation/ApiHook-doc/template/locales/pl.js
rename to api/mapas/documentation/ApiHook-doc/template/locales/pl.js
diff --git a/documentation/ApiHook-doc/template/locales/pt_br.js b/api/mapas/documentation/ApiHook-doc/template/locales/pt_br.js
similarity index 100%
rename from documentation/ApiHook-doc/template/locales/pt_br.js
rename to api/mapas/documentation/ApiHook-doc/template/locales/pt_br.js
diff --git a/documentation/ApiHook-doc/template/locales/ro.js b/api/mapas/documentation/ApiHook-doc/template/locales/ro.js
similarity index 100%
rename from documentation/ApiHook-doc/template/locales/ro.js
rename to api/mapas/documentation/ApiHook-doc/template/locales/ro.js
diff --git a/documentation/ApiHook-doc/template/locales/ru.js b/api/mapas/documentation/ApiHook-doc/template/locales/ru.js
similarity index 100%
rename from documentation/ApiHook-doc/template/locales/ru.js
rename to api/mapas/documentation/ApiHook-doc/template/locales/ru.js
diff --git a/documentation/ApiHook-doc/template/locales/tr.js b/api/mapas/documentation/ApiHook-doc/template/locales/tr.js
similarity index 100%
rename from documentation/ApiHook-doc/template/locales/tr.js
rename to api/mapas/documentation/ApiHook-doc/template/locales/tr.js
diff --git a/documentation/ApiHook-doc/template/locales/vi.js b/api/mapas/documentation/ApiHook-doc/template/locales/vi.js
similarity index 100%
rename from documentation/ApiHook-doc/template/locales/vi.js
rename to api/mapas/documentation/ApiHook-doc/template/locales/vi.js
diff --git a/documentation/ApiHook-doc/template/locales/zh.js b/api/mapas/documentation/ApiHook-doc/template/locales/zh.js
similarity index 100%
rename from documentation/ApiHook-doc/template/locales/zh.js
rename to api/mapas/documentation/ApiHook-doc/template/locales/zh.js
diff --git a/documentation/ApiHook-doc/template/locales/zh_cn.js b/api/mapas/documentation/ApiHook-doc/template/locales/zh_cn.js
similarity index 100%
rename from documentation/ApiHook-doc/template/locales/zh_cn.js
rename to api/mapas/documentation/ApiHook-doc/template/locales/zh_cn.js
diff --git a/documentation/ApiHook-doc/template/main.js b/api/mapas/documentation/ApiHook-doc/template/main.js
similarity index 100%
rename from documentation/ApiHook-doc/template/main.js
rename to api/mapas/documentation/ApiHook-doc/template/main.js
diff --git a/documentation/ApiHook-doc/template/utils/handlebars_helper.js b/api/mapas/documentation/ApiHook-doc/template/utils/handlebars_helper.js
similarity index 100%
rename from documentation/ApiHook-doc/template/utils/handlebars_helper.js
rename to api/mapas/documentation/ApiHook-doc/template/utils/handlebars_helper.js
diff --git a/documentation/ApiHook-doc/template/utils/send_sample_request.js b/api/mapas/documentation/ApiHook-doc/template/utils/send_sample_request.js
similarity index 97%
rename from documentation/ApiHook-doc/template/utils/send_sample_request.js
rename to api/mapas/documentation/ApiHook-doc/template/utils/send_sample_request.js
index f2396ea92e..b549bf681f 100755
--- a/documentation/ApiHook-doc/template/utils/send_sample_request.js
+++ b/api/mapas/documentation/ApiHook-doc/template/utils/send_sample_request.js
@@ -1,184 +1,184 @@
-define([
- 'jquery',
- 'lodash'
-], function($, _) {
-
- var initDynamic = function() {
- // Button send
- $(".sample-request-send").off("click");
- $(".sample-request-send").on("click", function(e) {
- e.preventDefault();
- var $root = $(this).parents("article");
- var group = $root.data("group");
- var name = $root.data("name");
- var version = $root.data("version");
- sendSampleRequest(group, name, version, $(this).data("sample-request-type"));
- });
-
- // Button clear
- $(".sample-request-clear").off("click");
- $(".sample-request-clear").on("click", function(e) {
- e.preventDefault();
- var $root = $(this).parents("article");
- var group = $root.data("group");
- var name = $root.data("name");
- var version = $root.data("version");
- clearSampleRequest(group, name, version);
- });
- }; // initDynamic
-
- function sendSampleRequest(group, name, version, type)
- {
- var $root = $('article[data-group="' + group + '"][data-name="' + name + '"][data-version="' + version + '"]');
-
- // Optional header
- var header = {};
- $root.find(".sample-request-header:checked").each(function(i, element) {
- var group = $(element).data("sample-request-header-group-id");
- $root.find("[data-sample-request-header-group=\"" + group + "\"]").each(function(i, element) {
- var key = $(element).data("sample-request-header-name");
- var value = element.value;
- if ( ! element.optional && element.defaultValue !== '') {
- value = element.defaultValue;
- }
- header[key] = value;
- });
- });
-
- // create JSON dictionary of parameters
- var param = {};
- var paramType = {};
- $root.find(".sample-request-param:checked").each(function(i, element) {
- var group = $(element).data("sample-request-param-group-id");
- $root.find("[data-sample-request-param-group=\"" + group + "\"]").not(function(){
- return $(this).val() == "" && $(this).is("[data-sample-request-param-optional='true']");
- }).each(function(i, element) {
- var key = $(element).data("sample-request-param-name");
- var value = element.value;
- if ( ! element.optional && element.defaultValue !== '') {
- value = element.defaultValue;
- }
- param[key] = value;
- paramType[key] = $(element).next().text();
- });
- });
-
- // grab user-inputted URL
- var url = $root.find(".sample-request-url").val();
-
- // Insert url parameter
- var pattern = pathToRegexp(url, null);
- var matches = pattern.exec(url);
- for (var i = 1; i < matches.length; i++) {
- var key = matches[i].substr(1);
- if (param[key] !== undefined) {
- url = url.replace(matches[i], encodeURIComponent(param[key]));
-
- // remove URL parameters from list
- delete param[key];
- }
- } // for
-
- $root.find(".sample-request-response").fadeTo(250, 1);
- $root.find(".sample-request-response-json").html("Loading...");
- refreshScrollSpy();
-
- _.each( param, function( val, key ) {
- var t = paramType[ key ].toLowerCase();
- if ( t === 'object' || t === 'array' ) {
- try {
- param[ key ] = JSON.parse( val );
- } catch (e) {
- }
- }
- });
-
- // send AJAX request, catch success or error callback
- var ajaxRequest = {
- url : url,
- headers : header,
- data : param,
- type : type.toUpperCase(),
- success : displaySuccess,
- error : displayError
- };
-
- $.ajax(ajaxRequest);
-
-
- function displaySuccess(data, status, jqXHR) {
- var jsonResponse;
- try {
- jsonResponse = JSON.parse(jqXHR.responseText);
- jsonResponse = JSON.stringify(jsonResponse, null, 4);
- } catch (e) {
- jsonResponse = data;
- }
- $root.find(".sample-request-response-json").html(jsonResponse);
- refreshScrollSpy();
- };
-
- function displayError(jqXHR, textStatus, error) {
- var message = "Error " + jqXHR.status + ": " + error;
- var jsonResponse;
- try {
- jsonResponse = JSON.parse(jqXHR.responseText);
- jsonResponse = JSON.stringify(jsonResponse, null, 4);
- } catch (e) {
- jsonResponse = escape(jqXHR.responseText);
- }
-
- if (jsonResponse)
- message += " " + jsonResponse;
-
- // flicker on previous error to make clear that there is a new response
- if($root.find(".sample-request-response").is(":visible"))
- $root.find(".sample-request-response").fadeTo(1, 0.1);
-
- $root.find(".sample-request-response").fadeTo(250, 1);
- $root.find(".sample-request-response-json").html(message);
- refreshScrollSpy();
- };
- }
-
- function clearSampleRequest(group, name, version)
- {
- var $root = $('article[data-group="' + group + '"][data-name="' + name + '"][data-version="' + version + '"]');
-
- // hide sample response
- $root.find(".sample-request-response-json").html("");
- $root.find(".sample-request-response").hide();
-
- // reset value of parameters
- $root.find(".sample-request-param").each(function(i, element) {
- element.value = "";
- });
-
- // restore default URL
- var $urlElement = $root.find(".sample-request-url");
- $urlElement.val($urlElement.prop("defaultValue"));
-
- refreshScrollSpy();
- }
-
- function refreshScrollSpy()
- {
- $('[data-spy="scroll"]').each(function () {
- $(this).scrollspy("refresh");
- });
- }
-
- function escapeHtml(str) {
- var div = document.createElement("div");
- div.appendChild(document.createTextNode(str));
- return div.innerHTML;
- }
-
- /**
- * Exports.
- */
- return {
- initDynamic: initDynamic
- };
-
-});
+define([
+ 'jquery',
+ 'lodash'
+], function($, _) {
+
+ var initDynamic = function() {
+ // Button send
+ $(".sample-request-send").off("click");
+ $(".sample-request-send").on("click", function(e) {
+ e.preventDefault();
+ var $root = $(this).parents("article");
+ var group = $root.data("group");
+ var name = $root.data("name");
+ var version = $root.data("version");
+ sendSampleRequest(group, name, version, $(this).data("sample-request-type"));
+ });
+
+ // Button clear
+ $(".sample-request-clear").off("click");
+ $(".sample-request-clear").on("click", function(e) {
+ e.preventDefault();
+ var $root = $(this).parents("article");
+ var group = $root.data("group");
+ var name = $root.data("name");
+ var version = $root.data("version");
+ clearSampleRequest(group, name, version);
+ });
+ }; // initDynamic
+
+ function sendSampleRequest(group, name, version, type)
+ {
+ var $root = $('article[data-group="' + group + '"][data-name="' + name + '"][data-version="' + version + '"]');
+
+ // Optional header
+ var header = {};
+ $root.find(".sample-request-header:checked").each(function(i, element) {
+ var group = $(element).data("sample-request-header-group-id");
+ $root.find("[data-sample-request-header-group=\"" + group + "\"]").each(function(i, element) {
+ var key = $(element).data("sample-request-header-name");
+ var value = element.value;
+ if ( ! element.optional && element.defaultValue !== '') {
+ value = element.defaultValue;
+ }
+ header[key] = value;
+ });
+ });
+
+ // create JSON dictionary of parameters
+ var param = {};
+ var paramType = {};
+ $root.find(".sample-request-param:checked").each(function(i, element) {
+ var group = $(element).data("sample-request-param-group-id");
+ $root.find("[data-sample-request-param-group=\"" + group + "\"]").not(function(){
+ return $(this).val() == "" && $(this).is("[data-sample-request-param-optional='true']");
+ }).each(function(i, element) {
+ var key = $(element).data("sample-request-param-name");
+ var value = element.value;
+ if ( ! element.optional && element.defaultValue !== '') {
+ value = element.defaultValue;
+ }
+ param[key] = value;
+ paramType[key] = $(element).next().text();
+ });
+ });
+
+ // grab user-inputted URL
+ var url = $root.find(".sample-request-url").val();
+
+ // Insert url parameter
+ var pattern = pathToRegexp(url, null);
+ var matches = pattern.exec(url);
+ for (var i = 1; i < matches.length; i++) {
+ var key = matches[i].substr(1);
+ if (param[key] !== undefined) {
+ url = url.replace(matches[i], encodeURIComponent(param[key]));
+
+ // remove URL parameters from list
+ delete param[key];
+ }
+ } // for
+
+ $root.find(".sample-request-response").fadeTo(250, 1);
+ $root.find(".sample-request-response-json").html("Loading...");
+ refreshScrollSpy();
+
+ _.each( param, function( val, key ) {
+ var t = paramType[ key ].toLowerCase();
+ if ( t === 'object' || t === 'array' ) {
+ try {
+ param[ key ] = JSON.parse( val );
+ } catch (e) {
+ }
+ }
+ });
+
+ // send AJAX request, catch success or error callback
+ var ajaxRequest = {
+ url : url,
+ headers : header,
+ data : param,
+ type : type.toUpperCase(),
+ success : displaySuccess,
+ error : displayError
+ };
+
+ $.ajax(ajaxRequest);
+
+
+ function displaySuccess(data, status, jqXHR) {
+ var jsonResponse;
+ try {
+ jsonResponse = JSON.parse(jqXHR.responseText);
+ jsonResponse = JSON.stringify(jsonResponse, null, 4);
+ } catch (e) {
+ jsonResponse = data;
+ }
+ $root.find(".sample-request-response-json").html(jsonResponse);
+ refreshScrollSpy();
+ };
+
+ function displayError(jqXHR, textStatus, error) {
+ var message = "Error " + jqXHR.status + ": " + error;
+ var jsonResponse;
+ try {
+ jsonResponse = JSON.parse(jqXHR.responseText);
+ jsonResponse = JSON.stringify(jsonResponse, null, 4);
+ } catch (e) {
+ jsonResponse = escape(jqXHR.responseText);
+ }
+
+ if (jsonResponse)
+ message += " " + jsonResponse;
+
+ // flicker on previous error to make clear that there is a new response
+ if($root.find(".sample-request-response").is(":visible"))
+ $root.find(".sample-request-response").fadeTo(1, 0.1);
+
+ $root.find(".sample-request-response").fadeTo(250, 1);
+ $root.find(".sample-request-response-json").html(message);
+ refreshScrollSpy();
+ };
+ }
+
+ function clearSampleRequest(group, name, version)
+ {
+ var $root = $('article[data-group="' + group + '"][data-name="' + name + '"][data-version="' + version + '"]');
+
+ // hide sample response
+ $root.find(".sample-request-response-json").html("");
+ $root.find(".sample-request-response").hide();
+
+ // reset value of parameters
+ $root.find(".sample-request-param").each(function(i, element) {
+ element.value = "";
+ });
+
+ // restore default URL
+ var $urlElement = $root.find(".sample-request-url");
+ $urlElement.val($urlElement.prop("defaultValue"));
+
+ refreshScrollSpy();
+ }
+
+ function refreshScrollSpy()
+ {
+ $('[data-spy="scroll"]').each(function () {
+ $(this).scrollspy("refresh");
+ });
+ }
+
+ function escapeHtml(str) {
+ var div = document.createElement("div");
+ div.appendChild(document.createTextNode(str));
+ return div.innerHTML;
+ }
+
+ /**
+ * Exports.
+ */
+ return {
+ initDynamic: initDynamic
+ };
+
+});
diff --git a/documentation/ERD.png b/api/mapas/documentation/ERD.png
similarity index 100%
rename from documentation/ERD.png
rename to api/mapas/documentation/ERD.png
diff --git a/documentation/changelogs/5.1.40.md b/api/mapas/documentation/changelogs/5.1.40.md
similarity index 100%
rename from documentation/changelogs/5.1.40.md
rename to api/mapas/documentation/changelogs/5.1.40.md
diff --git a/documentation/docker-compose.prod.yml b/api/mapas/documentation/docker-compose.prod.yml
similarity index 100%
rename from documentation/docker-compose.prod.yml
rename to api/mapas/documentation/docker-compose.prod.yml
diff --git a/documentation/docs/images/2016_05_19_branches.png b/api/mapas/documentation/docs/images/2016_05_19_branches.png
similarity index 100%
rename from documentation/docs/images/2016_05_19_branches.png
rename to api/mapas/documentation/docs/images/2016_05_19_branches.png
diff --git a/documentation/docs/images/logo.png b/api/mapas/documentation/docs/images/logo.png
similarity index 100%
rename from documentation/docs/images/logo.png
rename to api/mapas/documentation/docs/images/logo.png
diff --git a/documentation/docs/index.md b/api/mapas/documentation/docs/index.md
similarity index 100%
rename from documentation/docs/index.md
rename to api/mapas/documentation/docs/index.md
diff --git a/documentation/docs/mc_config_api.md b/api/mapas/documentation/docs/mc_config_api.md
similarity index 100%
rename from documentation/docs/mc_config_api.md
rename to api/mapas/documentation/docs/mc_config_api.md
diff --git a/documentation/docs/mc_config_authentication.md b/api/mapas/documentation/docs/mc_config_authentication.md
similarity index 100%
rename from documentation/docs/mc_config_authentication.md
rename to api/mapas/documentation/docs/mc_config_authentication.md
diff --git a/documentation/docs/mc_config_index.md b/api/mapas/documentation/docs/mc_config_index.md
similarity index 100%
rename from documentation/docs/mc_config_index.md
rename to api/mapas/documentation/docs/mc_config_index.md
diff --git a/documentation/docs/mc_config_keys.md b/api/mapas/documentation/docs/mc_config_keys.md
similarity index 100%
rename from documentation/docs/mc_config_keys.md
rename to api/mapas/documentation/docs/mc_config_keys.md
diff --git a/documentation/docs/mc_config_plugins.md b/api/mapas/documentation/docs/mc_config_plugins.md
similarity index 100%
rename from documentation/docs/mc_config_plugins.md
rename to api/mapas/documentation/docs/mc_config_plugins.md
diff --git a/documentation/docs/mc_config_saas.md b/api/mapas/documentation/docs/mc_config_saas.md
similarity index 100%
rename from documentation/docs/mc_config_saas.md
rename to api/mapas/documentation/docs/mc_config_saas.md
diff --git a/documentation/docs/mc_config_seal.md b/api/mapas/documentation/docs/mc_config_seal.md
similarity index 100%
rename from documentation/docs/mc_config_seal.md
rename to api/mapas/documentation/docs/mc_config_seal.md
diff --git a/documentation/docs/mc_deploy.md b/api/mapas/documentation/docs/mc_deploy.md
similarity index 100%
rename from documentation/docs/mc_deploy.md
rename to api/mapas/documentation/docs/mc_deploy.md
diff --git a/documentation/docs/mc_deploy_migration.md b/api/mapas/documentation/docs/mc_deploy_migration.md
similarity index 100%
rename from documentation/docs/mc_deploy_migration.md
rename to api/mapas/documentation/docs/mc_deploy_migration.md
diff --git a/documentation/docs/mc_deploy_shapefiles.md b/api/mapas/documentation/docs/mc_deploy_shapefiles.md
similarity index 100%
rename from documentation/docs/mc_deploy_shapefiles.md
rename to api/mapas/documentation/docs/mc_deploy_shapefiles.md
diff --git a/documentation/docs/mc_deploy_theme.md b/api/mapas/documentation/docs/mc_deploy_theme.md
similarity index 100%
rename from documentation/docs/mc_deploy_theme.md
rename to api/mapas/documentation/docs/mc_deploy_theme.md
diff --git a/documentation/docs/mc_deploy_update.md b/api/mapas/documentation/docs/mc_deploy_update.md
similarity index 100%
rename from documentation/docs/mc_deploy_update.md
rename to api/mapas/documentation/docs/mc_deploy_update.md
diff --git a/documentation/docs/mc_developer_address.md b/api/mapas/documentation/docs/mc_developer_address.md
similarity index 100%
rename from documentation/docs/mc_developer_address.md
rename to api/mapas/documentation/docs/mc_developer_address.md
diff --git a/documentation/docs/mc_developer_contribute.md b/api/mapas/documentation/docs/mc_developer_contribute.md
similarity index 100%
rename from documentation/docs/mc_developer_contribute.md
rename to api/mapas/documentation/docs/mc_developer_contribute.md
diff --git a/documentation/docs/mc_developer_entities.md b/api/mapas/documentation/docs/mc_developer_entities.md
similarity index 100%
rename from documentation/docs/mc_developer_entities.md
rename to api/mapas/documentation/docs/mc_developer_entities.md
diff --git a/documentation/docs/mc_developer_geocoding.md b/api/mapas/documentation/docs/mc_developer_geocoding.md
similarity index 100%
rename from documentation/docs/mc_developer_geocoding.md
rename to api/mapas/documentation/docs/mc_developer_geocoding.md
diff --git a/documentation/docs/mc_developer_guide.md b/api/mapas/documentation/docs/mc_developer_guide.md
similarity index 100%
rename from documentation/docs/mc_developer_guide.md
rename to api/mapas/documentation/docs/mc_developer_guide.md
diff --git a/documentation/docs/mc_developer_i18n.md b/api/mapas/documentation/docs/mc_developer_i18n.md
similarity index 100%
rename from documentation/docs/mc_developer_i18n.md
rename to api/mapas/documentation/docs/mc_developer_i18n.md
diff --git a/documentation/docs/mc_developer_keywords.md b/api/mapas/documentation/docs/mc_developer_keywords.md
similarity index 100%
rename from documentation/docs/mc_developer_keywords.md
rename to api/mapas/documentation/docs/mc_developer_keywords.md
diff --git a/documentation/docs/mc_developer_releases.md b/api/mapas/documentation/docs/mc_developer_releases.md
similarity index 100%
rename from documentation/docs/mc_developer_releases.md
rename to api/mapas/documentation/docs/mc_developer_releases.md
diff --git a/documentation/docs/mc_developer_tests.md b/api/mapas/documentation/docs/mc_developer_tests.md
similarity index 100%
rename from documentation/docs/mc_developer_tests.md
rename to api/mapas/documentation/docs/mc_developer_tests.md
diff --git a/documentation/docs/mc_developer_theme.md b/api/mapas/documentation/docs/mc_developer_theme.md
similarity index 100%
rename from documentation/docs/mc_developer_theme.md
rename to api/mapas/documentation/docs/mc_developer_theme.md
diff --git a/documentation/docs/mc_developer_theme_add_metadata.md b/api/mapas/documentation/docs/mc_developer_theme_add_metadata.md
similarity index 100%
rename from documentation/docs/mc_developer_theme_add_metadata.md
rename to api/mapas/documentation/docs/mc_developer_theme_add_metadata.md
diff --git a/documentation/docs/mc_developer_theme_infobox.md b/api/mapas/documentation/docs/mc_developer_theme_infobox.md
similarity index 100%
rename from documentation/docs/mc_developer_theme_infobox.md
rename to api/mapas/documentation/docs/mc_developer_theme_infobox.md
diff --git a/documentation/docs/mc_permission_cache.md b/api/mapas/documentation/docs/mc_permission_cache.md
similarity index 100%
rename from documentation/docs/mc_permission_cache.md
rename to api/mapas/documentation/docs/mc_permission_cache.md
diff --git a/documentation/docs/mc_user_history.md b/api/mapas/documentation/docs/mc_user_history.md
similarity index 100%
rename from documentation/docs/mc_user_history.md
rename to api/mapas/documentation/docs/mc_user_history.md
diff --git a/documentation/docs/mc_user_permissions.md b/api/mapas/documentation/docs/mc_user_permissions.md
similarity index 100%
rename from documentation/docs/mc_user_permissions.md
rename to api/mapas/documentation/docs/mc_user_permissions.md
diff --git a/documentation/docs/mc_user_profile.md b/api/mapas/documentation/docs/mc_user_profile.md
similarity index 100%
rename from documentation/docs/mc_user_profile.md
rename to api/mapas/documentation/docs/mc_user_profile.md
diff --git a/documentation/docs/mc_user_profiles.md b/api/mapas/documentation/docs/mc_user_profiles.md
similarity index 100%
rename from documentation/docs/mc_user_profiles.md
rename to api/mapas/documentation/docs/mc_user_profiles.md
diff --git a/documentation/docs/mc_user_seal.md b/api/mapas/documentation/docs/mc_user_seal.md
similarity index 100%
rename from documentation/docs/mc_user_seal.md
rename to api/mapas/documentation/docs/mc_user_seal.md
diff --git a/documentation/mkdocs.yml b/api/mapas/documentation/mkdocs.yml
similarity index 100%
rename from documentation/mkdocs.yml
rename to api/mapas/documentation/mkdocs.yml
diff --git "a/documentation/permiss\303\265es.png" "b/api/mapas/documentation/permiss\303\265es.png"
similarity index 100%
rename from "documentation/permiss\303\265es.png"
rename to "api/mapas/documentation/permiss\303\265es.png"
diff --git a/documentation/readme.md b/api/mapas/documentation/readme.md
similarity index 100%
rename from documentation/readme.md
rename to api/mapas/documentation/readme.md
diff --git a/documentation/releases-notes/3.2.md b/api/mapas/documentation/releases-notes/3.2.md
similarity index 100%
rename from documentation/releases-notes/3.2.md
rename to api/mapas/documentation/releases-notes/3.2.md
diff --git a/documentation/releases-notes/3.3.1.md b/api/mapas/documentation/releases-notes/3.3.1.md
similarity index 100%
rename from documentation/releases-notes/3.3.1.md
rename to api/mapas/documentation/releases-notes/3.3.1.md
diff --git a/documentation/releases-notes/3.3.md b/api/mapas/documentation/releases-notes/3.3.md
similarity index 100%
rename from documentation/releases-notes/3.3.md
rename to api/mapas/documentation/releases-notes/3.3.md
diff --git a/documentation/releases-notes/next.md b/api/mapas/documentation/releases-notes/next.md
similarity index 100%
rename from documentation/releases-notes/next.md
rename to api/mapas/documentation/releases-notes/next.md
diff --git a/help/CREATE-ISSUES.md b/api/mapas/help/CREATE-ISSUES.md
similarity index 100%
rename from help/CREATE-ISSUES.md
rename to api/mapas/help/CREATE-ISSUES.md
diff --git a/help/CREATE-PULL-REQUESTS.md b/api/mapas/help/CREATE-PULL-REQUESTS.md
similarity index 100%
rename from help/CREATE-PULL-REQUESTS.md
rename to api/mapas/help/CREATE-PULL-REQUESTS.md
diff --git a/help/INSTALL.md b/api/mapas/help/INSTALL.md
similarity index 100%
rename from help/INSTALL.md
rename to api/mapas/help/INSTALL.md
diff --git a/help/README.md b/api/mapas/help/README.md
similarity index 100%
rename from help/README.md
rename to api/mapas/help/README.md
diff --git a/src/themes/BaseV2/assets/fonts/OpenSans-Bold-webfont.ttf b/api/mapas/public/assets/fonts/OpenSans-Bold-webfont.ttf
similarity index 100%
rename from src/themes/BaseV2/assets/fonts/OpenSans-Bold-webfont.ttf
rename to api/mapas/public/assets/fonts/OpenSans-Bold-webfont.ttf
diff --git a/src/themes/BaseV2/assets/fonts/OpenSans-Bold-webfont.woff b/api/mapas/public/assets/fonts/OpenSans-Bold-webfont.woff
similarity index 100%
rename from src/themes/BaseV2/assets/fonts/OpenSans-Bold-webfont.woff
rename to api/mapas/public/assets/fonts/OpenSans-Bold-webfont.woff
diff --git a/src/themes/BaseV2/assets/fonts/OpenSans-BoldItalic-webfont.ttf b/api/mapas/public/assets/fonts/OpenSans-BoldItalic-webfont.ttf
similarity index 100%
rename from src/themes/BaseV2/assets/fonts/OpenSans-BoldItalic-webfont.ttf
rename to api/mapas/public/assets/fonts/OpenSans-BoldItalic-webfont.ttf
diff --git a/src/themes/BaseV2/assets/fonts/OpenSans-BoldItalic-webfont.woff b/api/mapas/public/assets/fonts/OpenSans-BoldItalic-webfont.woff
similarity index 100%
rename from src/themes/BaseV2/assets/fonts/OpenSans-BoldItalic-webfont.woff
rename to api/mapas/public/assets/fonts/OpenSans-BoldItalic-webfont.woff
diff --git a/src/themes/BaseV2/assets/fonts/OpenSans-Italic-webfont.ttf b/api/mapas/public/assets/fonts/OpenSans-Italic-webfont.ttf
similarity index 100%
rename from src/themes/BaseV2/assets/fonts/OpenSans-Italic-webfont.ttf
rename to api/mapas/public/assets/fonts/OpenSans-Italic-webfont.ttf
diff --git a/src/themes/BaseV2/assets/fonts/OpenSans-Italic-webfont.woff b/api/mapas/public/assets/fonts/OpenSans-Italic-webfont.woff
similarity index 100%
rename from src/themes/BaseV2/assets/fonts/OpenSans-Italic-webfont.woff
rename to api/mapas/public/assets/fonts/OpenSans-Italic-webfont.woff
diff --git a/src/themes/BaseV2/assets/fonts/OpenSans-Regular-webfont.ttf b/api/mapas/public/assets/fonts/OpenSans-Regular-webfont.ttf
similarity index 100%
rename from src/themes/BaseV2/assets/fonts/OpenSans-Regular-webfont.ttf
rename to api/mapas/public/assets/fonts/OpenSans-Regular-webfont.ttf
diff --git a/src/themes/BaseV2/assets/fonts/OpenSans-Regular-webfont.woff b/api/mapas/public/assets/fonts/OpenSans-Regular-webfont.woff
similarity index 100%
rename from src/themes/BaseV2/assets/fonts/OpenSans-Regular-webfont.woff
rename to api/mapas/public/assets/fonts/OpenSans-Regular-webfont.woff
diff --git a/src/themes/BaseV2/assets/fonts/OpenSans-Semibold-webfont.ttf b/api/mapas/public/assets/fonts/OpenSans-Semibold-webfont.ttf
similarity index 100%
rename from src/themes/BaseV2/assets/fonts/OpenSans-Semibold-webfont.ttf
rename to api/mapas/public/assets/fonts/OpenSans-Semibold-webfont.ttf
diff --git a/src/themes/BaseV2/assets/fonts/OpenSans-Semibold-webfont.woff b/api/mapas/public/assets/fonts/OpenSans-Semibold-webfont.woff
similarity index 100%
rename from src/themes/BaseV2/assets/fonts/OpenSans-Semibold-webfont.woff
rename to api/mapas/public/assets/fonts/OpenSans-Semibold-webfont.woff
diff --git a/src/themes/BaseV2/assets/fonts/OpenSans-SemiboldItalic-webfont.ttf b/api/mapas/public/assets/fonts/OpenSans-SemiboldItalic-webfont.ttf
similarity index 100%
rename from src/themes/BaseV2/assets/fonts/OpenSans-SemiboldItalic-webfont.ttf
rename to api/mapas/public/assets/fonts/OpenSans-SemiboldItalic-webfont.ttf
diff --git a/src/themes/BaseV2/assets/fonts/OpenSans-SemiboldItalic-webfont.woff b/api/mapas/public/assets/fonts/OpenSans-SemiboldItalic-webfont.woff
similarity index 100%
rename from src/themes/BaseV2/assets/fonts/OpenSans-SemiboldItalic-webfont.woff
rename to api/mapas/public/assets/fonts/OpenSans-SemiboldItalic-webfont.woff
diff --git a/public/bootstrap.php b/api/mapas/public/bootstrap.php
similarity index 100%
rename from public/bootstrap.php
rename to api/mapas/public/bootstrap.php
diff --git a/public/docs/v1/assets/css/styles.css b/api/mapas/public/docs/v1/assets/css/styles.css
similarity index 100%
rename from public/docs/v1/assets/css/styles.css
rename to api/mapas/public/docs/v1/assets/css/styles.css
diff --git a/public/docs/v1/assets/js/events.js b/api/mapas/public/docs/v1/assets/js/events.js
similarity index 100%
rename from public/docs/v1/assets/js/events.js
rename to api/mapas/public/docs/v1/assets/js/events.js
diff --git a/public/docs/v1/components/common-types/date.yaml b/api/mapas/public/docs/v1/components/common-types/date.yaml
similarity index 100%
rename from public/docs/v1/components/common-types/date.yaml
rename to api/mapas/public/docs/v1/components/common-types/date.yaml
diff --git a/public/docs/v1/components/parameters/count.yaml b/api/mapas/public/docs/v1/components/parameters/count.yaml
similarity index 100%
rename from public/docs/v1/components/parameters/count.yaml
rename to api/mapas/public/docs/v1/components/parameters/count.yaml
diff --git a/public/docs/v1/components/parameters/from.yaml b/api/mapas/public/docs/v1/components/parameters/from.yaml
similarity index 100%
rename from public/docs/v1/components/parameters/from.yaml
rename to api/mapas/public/docs/v1/components/parameters/from.yaml
diff --git a/public/docs/v1/components/parameters/id.yaml b/api/mapas/public/docs/v1/components/parameters/id.yaml
similarity index 100%
rename from public/docs/v1/components/parameters/id.yaml
rename to api/mapas/public/docs/v1/components/parameters/id.yaml
diff --git a/public/docs/v1/components/parameters/limit.yaml b/api/mapas/public/docs/v1/components/parameters/limit.yaml
similarity index 100%
rename from public/docs/v1/components/parameters/limit.yaml
rename to api/mapas/public/docs/v1/components/parameters/limit.yaml
diff --git a/public/docs/v1/components/parameters/offset.yaml b/api/mapas/public/docs/v1/components/parameters/offset.yaml
similarity index 100%
rename from public/docs/v1/components/parameters/offset.yaml
rename to api/mapas/public/docs/v1/components/parameters/offset.yaml
diff --git a/public/docs/v1/components/parameters/order.yaml b/api/mapas/public/docs/v1/components/parameters/order.yaml
similarity index 100%
rename from public/docs/v1/components/parameters/order.yaml
rename to api/mapas/public/docs/v1/components/parameters/order.yaml
diff --git a/public/docs/v1/components/parameters/page.yaml b/api/mapas/public/docs/v1/components/parameters/page.yaml
similarity index 100%
rename from public/docs/v1/components/parameters/page.yaml
rename to api/mapas/public/docs/v1/components/parameters/page.yaml
diff --git a/public/docs/v1/components/parameters/select.yaml b/api/mapas/public/docs/v1/components/parameters/select.yaml
similarity index 100%
rename from public/docs/v1/components/parameters/select.yaml
rename to api/mapas/public/docs/v1/components/parameters/select.yaml
diff --git a/public/docs/v1/components/parameters/space-id.yaml b/api/mapas/public/docs/v1/components/parameters/space-id.yaml
similarity index 100%
rename from public/docs/v1/components/parameters/space-id.yaml
rename to api/mapas/public/docs/v1/components/parameters/space-id.yaml
diff --git a/public/docs/v1/components/parameters/space.yaml b/api/mapas/public/docs/v1/components/parameters/space.yaml
similarity index 100%
rename from public/docs/v1/components/parameters/space.yaml
rename to api/mapas/public/docs/v1/components/parameters/space.yaml
diff --git a/public/docs/v1/components/parameters/to.yaml b/api/mapas/public/docs/v1/components/parameters/to.yaml
similarity index 100%
rename from public/docs/v1/components/parameters/to.yaml
rename to api/mapas/public/docs/v1/components/parameters/to.yaml
diff --git a/public/docs/v1/components/paths/agent/add-role.yaml b/api/mapas/public/docs/v1/components/paths/agent/add-role.yaml
similarity index 100%
rename from public/docs/v1/components/paths/agent/add-role.yaml
rename to api/mapas/public/docs/v1/components/paths/agent/add-role.yaml
diff --git a/public/docs/v1/components/paths/agent/archive.yaml b/api/mapas/public/docs/v1/components/paths/agent/archive.yaml
similarity index 100%
rename from public/docs/v1/components/paths/agent/archive.yaml
rename to api/mapas/public/docs/v1/components/paths/agent/archive.yaml
diff --git a/public/docs/v1/components/paths/agent/create.yaml b/api/mapas/public/docs/v1/components/paths/agent/create.yaml
similarity index 100%
rename from public/docs/v1/components/paths/agent/create.yaml
rename to api/mapas/public/docs/v1/components/paths/agent/create.yaml
diff --git a/public/docs/v1/components/paths/agent/delete.yaml b/api/mapas/public/docs/v1/components/paths/agent/delete.yaml
similarity index 100%
rename from public/docs/v1/components/paths/agent/delete.yaml
rename to api/mapas/public/docs/v1/components/paths/agent/delete.yaml
diff --git a/public/docs/v1/components/paths/agent/describe.yaml b/api/mapas/public/docs/v1/components/paths/agent/describe.yaml
similarity index 100%
rename from public/docs/v1/components/paths/agent/describe.yaml
rename to api/mapas/public/docs/v1/components/paths/agent/describe.yaml
diff --git a/public/docs/v1/components/paths/agent/find-one.yaml b/api/mapas/public/docs/v1/components/paths/agent/find-one.yaml
similarity index 100%
rename from public/docs/v1/components/paths/agent/find-one.yaml
rename to api/mapas/public/docs/v1/components/paths/agent/find-one.yaml
diff --git a/public/docs/v1/components/paths/agent/find.yaml b/api/mapas/public/docs/v1/components/paths/agent/find.yaml
similarity index 100%
rename from public/docs/v1/components/paths/agent/find.yaml
rename to api/mapas/public/docs/v1/components/paths/agent/find.yaml
diff --git a/public/docs/v1/components/paths/agent/get-type-groups.yaml b/api/mapas/public/docs/v1/components/paths/agent/get-type-groups.yaml
similarity index 100%
rename from public/docs/v1/components/paths/agent/get-type-groups.yaml
rename to api/mapas/public/docs/v1/components/paths/agent/get-type-groups.yaml
diff --git a/public/docs/v1/components/paths/agent/get-types.yaml b/api/mapas/public/docs/v1/components/paths/agent/get-types.yaml
similarity index 100%
rename from public/docs/v1/components/paths/agent/get-types.yaml
rename to api/mapas/public/docs/v1/components/paths/agent/get-types.yaml
diff --git a/public/docs/v1/components/paths/agent/patch.yaml b/api/mapas/public/docs/v1/components/paths/agent/patch.yaml
similarity index 100%
rename from public/docs/v1/components/paths/agent/patch.yaml
rename to api/mapas/public/docs/v1/components/paths/agent/patch.yaml
diff --git a/public/docs/v1/components/paths/agent/publish.yaml b/api/mapas/public/docs/v1/components/paths/agent/publish.yaml
similarity index 100%
rename from public/docs/v1/components/paths/agent/publish.yaml
rename to api/mapas/public/docs/v1/components/paths/agent/publish.yaml
diff --git a/public/docs/v1/components/paths/agent/put.yaml b/api/mapas/public/docs/v1/components/paths/agent/put.yaml
similarity index 100%
rename from public/docs/v1/components/paths/agent/put.yaml
rename to api/mapas/public/docs/v1/components/paths/agent/put.yaml
diff --git a/public/docs/v1/components/paths/agent/remove-role.yaml b/api/mapas/public/docs/v1/components/paths/agent/remove-role.yaml
similarity index 100%
rename from public/docs/v1/components/paths/agent/remove-role.yaml
rename to api/mapas/public/docs/v1/components/paths/agent/remove-role.yaml
diff --git a/public/docs/v1/components/paths/agent/route-single-id.yaml b/api/mapas/public/docs/v1/components/paths/agent/route-single-id.yaml
similarity index 100%
rename from public/docs/v1/components/paths/agent/route-single-id.yaml
rename to api/mapas/public/docs/v1/components/paths/agent/route-single-id.yaml
diff --git a/public/docs/v1/components/paths/agent/set-as-user-profile.yaml b/api/mapas/public/docs/v1/components/paths/agent/set-as-user-profile.yaml
similarity index 100%
rename from public/docs/v1/components/paths/agent/set-as-user-profile.yaml
rename to api/mapas/public/docs/v1/components/paths/agent/set-as-user-profile.yaml
diff --git a/public/docs/v1/components/paths/agent/undelete.yaml b/api/mapas/public/docs/v1/components/paths/agent/undelete.yaml
similarity index 100%
rename from public/docs/v1/components/paths/agent/undelete.yaml
rename to api/mapas/public/docs/v1/components/paths/agent/undelete.yaml
diff --git a/public/docs/v1/components/paths/event/create.yaml b/api/mapas/public/docs/v1/components/paths/event/create.yaml
similarity index 100%
rename from public/docs/v1/components/paths/event/create.yaml
rename to api/mapas/public/docs/v1/components/paths/event/create.yaml
diff --git a/public/docs/v1/components/paths/event/delete.yaml b/api/mapas/public/docs/v1/components/paths/event/delete.yaml
similarity index 100%
rename from public/docs/v1/components/paths/event/delete.yaml
rename to api/mapas/public/docs/v1/components/paths/event/delete.yaml
diff --git a/public/docs/v1/components/paths/event/describe.yaml b/api/mapas/public/docs/v1/components/paths/event/describe.yaml
similarity index 100%
rename from public/docs/v1/components/paths/event/describe.yaml
rename to api/mapas/public/docs/v1/components/paths/event/describe.yaml
diff --git a/public/docs/v1/components/paths/event/find-by-location.yaml b/api/mapas/public/docs/v1/components/paths/event/find-by-location.yaml
similarity index 100%
rename from public/docs/v1/components/paths/event/find-by-location.yaml
rename to api/mapas/public/docs/v1/components/paths/event/find-by-location.yaml
diff --git a/public/docs/v1/components/paths/event/find-by-space.yaml b/api/mapas/public/docs/v1/components/paths/event/find-by-space.yaml
similarity index 100%
rename from public/docs/v1/components/paths/event/find-by-space.yaml
rename to api/mapas/public/docs/v1/components/paths/event/find-by-space.yaml
diff --git a/public/docs/v1/components/paths/event/find-occurrences.yaml b/api/mapas/public/docs/v1/components/paths/event/find-occurrences.yaml
similarity index 100%
rename from public/docs/v1/components/paths/event/find-occurrences.yaml
rename to api/mapas/public/docs/v1/components/paths/event/find-occurrences.yaml
diff --git a/public/docs/v1/components/paths/event/find-one.yaml b/api/mapas/public/docs/v1/components/paths/event/find-one.yaml
similarity index 100%
rename from public/docs/v1/components/paths/event/find-one.yaml
rename to api/mapas/public/docs/v1/components/paths/event/find-one.yaml
diff --git a/public/docs/v1/components/paths/event/find.yaml b/api/mapas/public/docs/v1/components/paths/event/find.yaml
similarity index 100%
rename from public/docs/v1/components/paths/event/find.yaml
rename to api/mapas/public/docs/v1/components/paths/event/find.yaml
diff --git a/public/docs/v1/components/paths/event/get-type-groups.yaml b/api/mapas/public/docs/v1/components/paths/event/get-type-groups.yaml
similarity index 100%
rename from public/docs/v1/components/paths/event/get-type-groups.yaml
rename to api/mapas/public/docs/v1/components/paths/event/get-type-groups.yaml
diff --git a/public/docs/v1/components/paths/event/get-types.yaml b/api/mapas/public/docs/v1/components/paths/event/get-types.yaml
similarity index 100%
rename from public/docs/v1/components/paths/event/get-types.yaml
rename to api/mapas/public/docs/v1/components/paths/event/get-types.yaml
diff --git a/public/docs/v1/components/paths/event/patch.yaml b/api/mapas/public/docs/v1/components/paths/event/patch.yaml
similarity index 100%
rename from public/docs/v1/components/paths/event/patch.yaml
rename to api/mapas/public/docs/v1/components/paths/event/patch.yaml
diff --git a/public/docs/v1/components/paths/event/route-single-id.yaml b/api/mapas/public/docs/v1/components/paths/event/route-single-id.yaml
similarity index 100%
rename from public/docs/v1/components/paths/event/route-single-id.yaml
rename to api/mapas/public/docs/v1/components/paths/event/route-single-id.yaml
diff --git a/public/docs/v1/components/paths/opportunity/describe.yaml b/api/mapas/public/docs/v1/components/paths/opportunity/describe.yaml
similarity index 100%
rename from public/docs/v1/components/paths/opportunity/describe.yaml
rename to api/mapas/public/docs/v1/components/paths/opportunity/describe.yaml
diff --git a/public/docs/v1/components/paths/opportunity/find-one.yaml b/api/mapas/public/docs/v1/components/paths/opportunity/find-one.yaml
similarity index 100%
rename from public/docs/v1/components/paths/opportunity/find-one.yaml
rename to api/mapas/public/docs/v1/components/paths/opportunity/find-one.yaml
diff --git a/public/docs/v1/components/paths/opportunity/find-registrations.yaml b/api/mapas/public/docs/v1/components/paths/opportunity/find-registrations.yaml
similarity index 100%
rename from public/docs/v1/components/paths/opportunity/find-registrations.yaml
rename to api/mapas/public/docs/v1/components/paths/opportunity/find-registrations.yaml
diff --git a/public/docs/v1/components/paths/opportunity/find.yaml b/api/mapas/public/docs/v1/components/paths/opportunity/find.yaml
similarity index 100%
rename from public/docs/v1/components/paths/opportunity/find.yaml
rename to api/mapas/public/docs/v1/components/paths/opportunity/find.yaml
diff --git a/public/docs/v1/components/paths/opportunity/get-types.yaml b/api/mapas/public/docs/v1/components/paths/opportunity/get-types.yaml
similarity index 100%
rename from public/docs/v1/components/paths/opportunity/get-types.yaml
rename to api/mapas/public/docs/v1/components/paths/opportunity/get-types.yaml
diff --git a/public/docs/v1/components/paths/opportunity/select-fields.yaml b/api/mapas/public/docs/v1/components/paths/opportunity/select-fields.yaml
similarity index 100%
rename from public/docs/v1/components/paths/opportunity/select-fields.yaml
rename to api/mapas/public/docs/v1/components/paths/opportunity/select-fields.yaml
diff --git a/public/docs/v1/components/paths/project/create.yaml b/api/mapas/public/docs/v1/components/paths/project/create.yaml
similarity index 100%
rename from public/docs/v1/components/paths/project/create.yaml
rename to api/mapas/public/docs/v1/components/paths/project/create.yaml
diff --git a/public/docs/v1/components/paths/project/delete.yaml b/api/mapas/public/docs/v1/components/paths/project/delete.yaml
similarity index 100%
rename from public/docs/v1/components/paths/project/delete.yaml
rename to api/mapas/public/docs/v1/components/paths/project/delete.yaml
diff --git a/public/docs/v1/components/paths/project/describe.yaml b/api/mapas/public/docs/v1/components/paths/project/describe.yaml
similarity index 100%
rename from public/docs/v1/components/paths/project/describe.yaml
rename to api/mapas/public/docs/v1/components/paths/project/describe.yaml
diff --git a/public/docs/v1/components/paths/project/find-one.yaml b/api/mapas/public/docs/v1/components/paths/project/find-one.yaml
similarity index 100%
rename from public/docs/v1/components/paths/project/find-one.yaml
rename to api/mapas/public/docs/v1/components/paths/project/find-one.yaml
diff --git a/public/docs/v1/components/paths/project/find.yaml b/api/mapas/public/docs/v1/components/paths/project/find.yaml
similarity index 100%
rename from public/docs/v1/components/paths/project/find.yaml
rename to api/mapas/public/docs/v1/components/paths/project/find.yaml
diff --git a/public/docs/v1/components/paths/project/get-type-groups.yaml b/api/mapas/public/docs/v1/components/paths/project/get-type-groups.yaml
similarity index 100%
rename from public/docs/v1/components/paths/project/get-type-groups.yaml
rename to api/mapas/public/docs/v1/components/paths/project/get-type-groups.yaml
diff --git a/public/docs/v1/components/paths/project/get-types.yaml b/api/mapas/public/docs/v1/components/paths/project/get-types.yaml
similarity index 100%
rename from public/docs/v1/components/paths/project/get-types.yaml
rename to api/mapas/public/docs/v1/components/paths/project/get-types.yaml
diff --git a/public/docs/v1/components/paths/project/patch.yaml b/api/mapas/public/docs/v1/components/paths/project/patch.yaml
similarity index 100%
rename from public/docs/v1/components/paths/project/patch.yaml
rename to api/mapas/public/docs/v1/components/paths/project/patch.yaml
diff --git a/public/docs/v1/components/paths/project/put.yaml b/api/mapas/public/docs/v1/components/paths/project/put.yaml
similarity index 100%
rename from public/docs/v1/components/paths/project/put.yaml
rename to api/mapas/public/docs/v1/components/paths/project/put.yaml
diff --git a/public/docs/v1/components/paths/project/route-single-id.yaml b/api/mapas/public/docs/v1/components/paths/project/route-single-id.yaml
similarity index 100%
rename from public/docs/v1/components/paths/project/route-single-id.yaml
rename to api/mapas/public/docs/v1/components/paths/project/route-single-id.yaml
diff --git a/public/docs/v1/components/paths/seal/create.yaml b/api/mapas/public/docs/v1/components/paths/seal/create.yaml
similarity index 100%
rename from public/docs/v1/components/paths/seal/create.yaml
rename to api/mapas/public/docs/v1/components/paths/seal/create.yaml
diff --git a/public/docs/v1/components/paths/seal/delete.yaml b/api/mapas/public/docs/v1/components/paths/seal/delete.yaml
similarity index 100%
rename from public/docs/v1/components/paths/seal/delete.yaml
rename to api/mapas/public/docs/v1/components/paths/seal/delete.yaml
diff --git a/public/docs/v1/components/paths/seal/describe.yaml b/api/mapas/public/docs/v1/components/paths/seal/describe.yaml
similarity index 100%
rename from public/docs/v1/components/paths/seal/describe.yaml
rename to api/mapas/public/docs/v1/components/paths/seal/describe.yaml
diff --git a/public/docs/v1/components/paths/seal/find-one.yaml b/api/mapas/public/docs/v1/components/paths/seal/find-one.yaml
similarity index 100%
rename from public/docs/v1/components/paths/seal/find-one.yaml
rename to api/mapas/public/docs/v1/components/paths/seal/find-one.yaml
diff --git a/public/docs/v1/components/paths/seal/find.yaml b/api/mapas/public/docs/v1/components/paths/seal/find.yaml
similarity index 100%
rename from public/docs/v1/components/paths/seal/find.yaml
rename to api/mapas/public/docs/v1/components/paths/seal/find.yaml
diff --git a/public/docs/v1/components/paths/seal/get-type-groups.yaml b/api/mapas/public/docs/v1/components/paths/seal/get-type-groups.yaml
similarity index 100%
rename from public/docs/v1/components/paths/seal/get-type-groups.yaml
rename to api/mapas/public/docs/v1/components/paths/seal/get-type-groups.yaml
diff --git a/public/docs/v1/components/paths/seal/get-types.yaml b/api/mapas/public/docs/v1/components/paths/seal/get-types.yaml
similarity index 100%
rename from public/docs/v1/components/paths/seal/get-types.yaml
rename to api/mapas/public/docs/v1/components/paths/seal/get-types.yaml
diff --git a/public/docs/v1/components/paths/seal/patch.yaml b/api/mapas/public/docs/v1/components/paths/seal/patch.yaml
similarity index 100%
rename from public/docs/v1/components/paths/seal/patch.yaml
rename to api/mapas/public/docs/v1/components/paths/seal/patch.yaml
diff --git a/public/docs/v1/components/paths/seal/put.yaml b/api/mapas/public/docs/v1/components/paths/seal/put.yaml
similarity index 100%
rename from public/docs/v1/components/paths/seal/put.yaml
rename to api/mapas/public/docs/v1/components/paths/seal/put.yaml
diff --git a/public/docs/v1/components/paths/seal/route-single-id.yaml b/api/mapas/public/docs/v1/components/paths/seal/route-single-id.yaml
similarity index 100%
rename from public/docs/v1/components/paths/seal/route-single-id.yaml
rename to api/mapas/public/docs/v1/components/paths/seal/route-single-id.yaml
diff --git a/public/docs/v1/components/paths/site/info.yaml b/api/mapas/public/docs/v1/components/paths/site/info.yaml
similarity index 100%
rename from public/docs/v1/components/paths/site/info.yaml
rename to api/mapas/public/docs/v1/components/paths/site/info.yaml
diff --git a/public/docs/v1/components/paths/site/version.yaml b/api/mapas/public/docs/v1/components/paths/site/version.yaml
similarity index 100%
rename from public/docs/v1/components/paths/site/version.yaml
rename to api/mapas/public/docs/v1/components/paths/site/version.yaml
diff --git a/public/docs/v1/components/paths/space/create.yaml b/api/mapas/public/docs/v1/components/paths/space/create.yaml
similarity index 100%
rename from public/docs/v1/components/paths/space/create.yaml
rename to api/mapas/public/docs/v1/components/paths/space/create.yaml
diff --git a/public/docs/v1/components/paths/space/delete-and-update.yaml b/api/mapas/public/docs/v1/components/paths/space/delete-and-update.yaml
similarity index 100%
rename from public/docs/v1/components/paths/space/delete-and-update.yaml
rename to api/mapas/public/docs/v1/components/paths/space/delete-and-update.yaml
diff --git a/public/docs/v1/components/paths/space/delete.yaml b/api/mapas/public/docs/v1/components/paths/space/delete.yaml
similarity index 100%
rename from public/docs/v1/components/paths/space/delete.yaml
rename to api/mapas/public/docs/v1/components/paths/space/delete.yaml
diff --git a/public/docs/v1/components/paths/space/describe.yaml b/api/mapas/public/docs/v1/components/paths/space/describe.yaml
similarity index 100%
rename from public/docs/v1/components/paths/space/describe.yaml
rename to api/mapas/public/docs/v1/components/paths/space/describe.yaml
diff --git a/public/docs/v1/components/paths/space/find-by-events.yaml b/api/mapas/public/docs/v1/components/paths/space/find-by-events.yaml
similarity index 100%
rename from public/docs/v1/components/paths/space/find-by-events.yaml
rename to api/mapas/public/docs/v1/components/paths/space/find-by-events.yaml
diff --git a/public/docs/v1/components/paths/space/find-one.yaml b/api/mapas/public/docs/v1/components/paths/space/find-one.yaml
similarity index 100%
rename from public/docs/v1/components/paths/space/find-one.yaml
rename to api/mapas/public/docs/v1/components/paths/space/find-one.yaml
diff --git a/public/docs/v1/components/paths/space/find.yaml b/api/mapas/public/docs/v1/components/paths/space/find.yaml
similarity index 100%
rename from public/docs/v1/components/paths/space/find.yaml
rename to api/mapas/public/docs/v1/components/paths/space/find.yaml
diff --git a/public/docs/v1/components/paths/space/get-type-groups.yaml b/api/mapas/public/docs/v1/components/paths/space/get-type-groups.yaml
similarity index 100%
rename from public/docs/v1/components/paths/space/get-type-groups.yaml
rename to api/mapas/public/docs/v1/components/paths/space/get-type-groups.yaml
diff --git a/public/docs/v1/components/paths/space/get-types.yaml b/api/mapas/public/docs/v1/components/paths/space/get-types.yaml
similarity index 100%
rename from public/docs/v1/components/paths/space/get-types.yaml
rename to api/mapas/public/docs/v1/components/paths/space/get-types.yaml
diff --git a/public/docs/v1/components/paths/space/patch.yaml b/api/mapas/public/docs/v1/components/paths/space/patch.yaml
similarity index 100%
rename from public/docs/v1/components/paths/space/patch.yaml
rename to api/mapas/public/docs/v1/components/paths/space/patch.yaml
diff --git a/public/docs/v1/components/paths/space/put.yaml b/api/mapas/public/docs/v1/components/paths/space/put.yaml
similarity index 100%
rename from public/docs/v1/components/paths/space/put.yaml
rename to api/mapas/public/docs/v1/components/paths/space/put.yaml
diff --git a/public/docs/v1/components/paths/space/route-single-id.yaml b/api/mapas/public/docs/v1/components/paths/space/route-single-id.yaml
similarity index 100%
rename from public/docs/v1/components/paths/space/route-single-id.yaml
rename to api/mapas/public/docs/v1/components/paths/space/route-single-id.yaml
diff --git a/public/docs/v1/components/paths/term/slugs/area.yaml b/api/mapas/public/docs/v1/components/paths/term/slugs/area.yaml
similarity index 100%
rename from public/docs/v1/components/paths/term/slugs/area.yaml
rename to api/mapas/public/docs/v1/components/paths/term/slugs/area.yaml
diff --git a/public/docs/v1/components/paths/term/slugs/funcao.yaml b/api/mapas/public/docs/v1/components/paths/term/slugs/funcao.yaml
similarity index 100%
rename from public/docs/v1/components/paths/term/slugs/funcao.yaml
rename to api/mapas/public/docs/v1/components/paths/term/slugs/funcao.yaml
diff --git a/public/docs/v1/components/paths/term/slugs/linguagem.yaml b/api/mapas/public/docs/v1/components/paths/term/slugs/linguagem.yaml
similarity index 100%
rename from public/docs/v1/components/paths/term/slugs/linguagem.yaml
rename to api/mapas/public/docs/v1/components/paths/term/slugs/linguagem.yaml
diff --git a/public/docs/v1/components/paths/term/slugs/tag.yaml b/api/mapas/public/docs/v1/components/paths/term/slugs/tag.yaml
similarity index 100%
rename from public/docs/v1/components/paths/term/slugs/tag.yaml
rename to api/mapas/public/docs/v1/components/paths/term/slugs/tag.yaml
diff --git a/public/docs/v1/components/requestBodies/agent/patch.yaml b/api/mapas/public/docs/v1/components/requestBodies/agent/patch.yaml
similarity index 100%
rename from public/docs/v1/components/requestBodies/agent/patch.yaml
rename to api/mapas/public/docs/v1/components/requestBodies/agent/patch.yaml
diff --git a/public/docs/v1/components/requestBodies/agent/post-minimal.yaml b/api/mapas/public/docs/v1/components/requestBodies/agent/post-minimal.yaml
similarity index 100%
rename from public/docs/v1/components/requestBodies/agent/post-minimal.yaml
rename to api/mapas/public/docs/v1/components/requestBodies/agent/post-minimal.yaml
diff --git a/public/docs/v1/components/requestBodies/event/post-minimal.yaml b/api/mapas/public/docs/v1/components/requestBodies/event/post-minimal.yaml
similarity index 100%
rename from public/docs/v1/components/requestBodies/event/post-minimal.yaml
rename to api/mapas/public/docs/v1/components/requestBodies/event/post-minimal.yaml
diff --git a/public/docs/v1/components/requestBodies/project/post-minimal.yaml b/api/mapas/public/docs/v1/components/requestBodies/project/post-minimal.yaml
similarity index 100%
rename from public/docs/v1/components/requestBodies/project/post-minimal.yaml
rename to api/mapas/public/docs/v1/components/requestBodies/project/post-minimal.yaml
diff --git a/public/docs/v1/components/requestBodies/seal/post-minimal.yaml b/api/mapas/public/docs/v1/components/requestBodies/seal/post-minimal.yaml
similarity index 100%
rename from public/docs/v1/components/requestBodies/seal/post-minimal.yaml
rename to api/mapas/public/docs/v1/components/requestBodies/seal/post-minimal.yaml
diff --git a/public/docs/v1/components/requestBodies/space/patch.yaml b/api/mapas/public/docs/v1/components/requestBodies/space/patch.yaml
similarity index 100%
rename from public/docs/v1/components/requestBodies/space/patch.yaml
rename to api/mapas/public/docs/v1/components/requestBodies/space/patch.yaml
diff --git a/public/docs/v1/components/requestBodies/space/post-minimal.yaml b/api/mapas/public/docs/v1/components/requestBodies/space/post-minimal.yaml
similarity index 100%
rename from public/docs/v1/components/requestBodies/space/post-minimal.yaml
rename to api/mapas/public/docs/v1/components/requestBodies/space/post-minimal.yaml
diff --git a/public/docs/v1/components/responses/agent/archive.yaml b/api/mapas/public/docs/v1/components/responses/agent/archive.yaml
similarity index 100%
rename from public/docs/v1/components/responses/agent/archive.yaml
rename to api/mapas/public/docs/v1/components/responses/agent/archive.yaml
diff --git a/public/docs/v1/components/responses/agent/publish.yaml b/api/mapas/public/docs/v1/components/responses/agent/publish.yaml
similarity index 100%
rename from public/docs/v1/components/responses/agent/publish.yaml
rename to api/mapas/public/docs/v1/components/responses/agent/publish.yaml
diff --git a/public/docs/v1/components/responses/agent/undelete.yaml b/api/mapas/public/docs/v1/components/responses/agent/undelete.yaml
similarity index 100%
rename from public/docs/v1/components/responses/agent/undelete.yaml
rename to api/mapas/public/docs/v1/components/responses/agent/undelete.yaml
diff --git a/public/docs/v1/components/responses/error/404.yaml b/api/mapas/public/docs/v1/components/responses/error/404.yaml
similarity index 100%
rename from public/docs/v1/components/responses/error/404.yaml
rename to api/mapas/public/docs/v1/components/responses/error/404.yaml
diff --git a/public/docs/v1/components/responses/term/slugs/area.yaml b/api/mapas/public/docs/v1/components/responses/term/slugs/area.yaml
similarity index 100%
rename from public/docs/v1/components/responses/term/slugs/area.yaml
rename to api/mapas/public/docs/v1/components/responses/term/slugs/area.yaml
diff --git a/public/docs/v1/components/responses/term/slugs/funcao.yaml b/api/mapas/public/docs/v1/components/responses/term/slugs/funcao.yaml
similarity index 100%
rename from public/docs/v1/components/responses/term/slugs/funcao.yaml
rename to api/mapas/public/docs/v1/components/responses/term/slugs/funcao.yaml
diff --git a/public/docs/v1/components/responses/term/slugs/linguagem.yaml b/api/mapas/public/docs/v1/components/responses/term/slugs/linguagem.yaml
similarity index 100%
rename from public/docs/v1/components/responses/term/slugs/linguagem.yaml
rename to api/mapas/public/docs/v1/components/responses/term/slugs/linguagem.yaml
diff --git a/public/docs/v1/components/schemas/agent-type-groups.yaml b/api/mapas/public/docs/v1/components/schemas/agent-type-groups.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/agent-type-groups.yaml
rename to api/mapas/public/docs/v1/components/schemas/agent-type-groups.yaml
diff --git a/public/docs/v1/components/schemas/agent-type.yaml b/api/mapas/public/docs/v1/components/schemas/agent-type.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/agent-type.yaml
rename to api/mapas/public/docs/v1/components/schemas/agent-type.yaml
diff --git a/public/docs/v1/components/schemas/agent.yaml b/api/mapas/public/docs/v1/components/schemas/agent.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/agent.yaml
rename to api/mapas/public/docs/v1/components/schemas/agent.yaml
diff --git a/public/docs/v1/components/schemas/describe-item.yaml b/api/mapas/public/docs/v1/components/schemas/describe-item.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/describe-item.yaml
rename to api/mapas/public/docs/v1/components/schemas/describe-item.yaml
diff --git a/public/docs/v1/components/schemas/event-describe.yaml b/api/mapas/public/docs/v1/components/schemas/event-describe.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/event-describe.yaml
rename to api/mapas/public/docs/v1/components/schemas/event-describe.yaml
diff --git a/public/docs/v1/components/schemas/event-find-occurrences.yaml b/api/mapas/public/docs/v1/components/schemas/event-find-occurrences.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/event-find-occurrences.yaml
rename to api/mapas/public/docs/v1/components/schemas/event-find-occurrences.yaml
diff --git a/public/docs/v1/components/schemas/event-type-groups.yaml b/api/mapas/public/docs/v1/components/schemas/event-type-groups.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/event-type-groups.yaml
rename to api/mapas/public/docs/v1/components/schemas/event-type-groups.yaml
diff --git a/public/docs/v1/components/schemas/event-type.yaml b/api/mapas/public/docs/v1/components/schemas/event-type.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/event-type.yaml
rename to api/mapas/public/docs/v1/components/schemas/event-type.yaml
diff --git a/public/docs/v1/components/schemas/event.yaml b/api/mapas/public/docs/v1/components/schemas/event.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/event.yaml
rename to api/mapas/public/docs/v1/components/schemas/event.yaml
diff --git a/public/docs/v1/components/schemas/opportunity-type.yaml b/api/mapas/public/docs/v1/components/schemas/opportunity-type.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/opportunity-type.yaml
rename to api/mapas/public/docs/v1/components/schemas/opportunity-type.yaml
diff --git a/public/docs/v1/components/schemas/opportunity.yaml b/api/mapas/public/docs/v1/components/schemas/opportunity.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/opportunity.yaml
rename to api/mapas/public/docs/v1/components/schemas/opportunity.yaml
diff --git a/public/docs/v1/components/schemas/project-describe.yaml b/api/mapas/public/docs/v1/components/schemas/project-describe.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/project-describe.yaml
rename to api/mapas/public/docs/v1/components/schemas/project-describe.yaml
diff --git a/public/docs/v1/components/schemas/project-type-groups.yaml b/api/mapas/public/docs/v1/components/schemas/project-type-groups.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/project-type-groups.yaml
rename to api/mapas/public/docs/v1/components/schemas/project-type-groups.yaml
diff --git a/public/docs/v1/components/schemas/project-type.yaml b/api/mapas/public/docs/v1/components/schemas/project-type.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/project-type.yaml
rename to api/mapas/public/docs/v1/components/schemas/project-type.yaml
diff --git a/public/docs/v1/components/schemas/project.yaml b/api/mapas/public/docs/v1/components/schemas/project.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/project.yaml
rename to api/mapas/public/docs/v1/components/schemas/project.yaml
diff --git a/public/docs/v1/components/schemas/seal-describe.yaml b/api/mapas/public/docs/v1/components/schemas/seal-describe.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/seal-describe.yaml
rename to api/mapas/public/docs/v1/components/schemas/seal-describe.yaml
diff --git a/public/docs/v1/components/schemas/seal-type-groups.yaml b/api/mapas/public/docs/v1/components/schemas/seal-type-groups.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/seal-type-groups.yaml
rename to api/mapas/public/docs/v1/components/schemas/seal-type-groups.yaml
diff --git a/public/docs/v1/components/schemas/seal-type.yaml b/api/mapas/public/docs/v1/components/schemas/seal-type.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/seal-type.yaml
rename to api/mapas/public/docs/v1/components/schemas/seal-type.yaml
diff --git a/public/docs/v1/components/schemas/seal.yaml b/api/mapas/public/docs/v1/components/schemas/seal.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/seal.yaml
rename to api/mapas/public/docs/v1/components/schemas/seal.yaml
diff --git a/public/docs/v1/components/schemas/space-type-group.yaml b/api/mapas/public/docs/v1/components/schemas/space-type-group.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/space-type-group.yaml
rename to api/mapas/public/docs/v1/components/schemas/space-type-group.yaml
diff --git a/public/docs/v1/components/schemas/space-type.yaml b/api/mapas/public/docs/v1/components/schemas/space-type.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/space-type.yaml
rename to api/mapas/public/docs/v1/components/schemas/space-type.yaml
diff --git a/public/docs/v1/components/schemas/space.yaml b/api/mapas/public/docs/v1/components/schemas/space.yaml
similarity index 100%
rename from public/docs/v1/components/schemas/space.yaml
rename to api/mapas/public/docs/v1/components/schemas/space.yaml
diff --git a/public/docs/v1/index.html b/api/mapas/public/docs/v1/index.html
similarity index 100%
rename from public/docs/v1/index.html
rename to api/mapas/public/docs/v1/index.html
diff --git a/public/docs/v1/openapi.yaml b/api/mapas/public/docs/v1/openapi.yaml
similarity index 100%
rename from public/docs/v1/openapi.yaml
rename to api/mapas/public/docs/v1/openapi.yaml
diff --git a/public/docs/v1/swagger/index.css b/api/mapas/public/docs/v1/swagger/index.css
similarity index 100%
rename from public/docs/v1/swagger/index.css
rename to api/mapas/public/docs/v1/swagger/index.css
diff --git a/public/docs/v1/swagger/swagger-ui-bundle.js b/api/mapas/public/docs/v1/swagger/swagger-ui-bundle.js
similarity index 100%
rename from public/docs/v1/swagger/swagger-ui-bundle.js
rename to api/mapas/public/docs/v1/swagger/swagger-ui-bundle.js
diff --git a/public/docs/v1/swagger/swagger-ui-bundle.js.map b/api/mapas/public/docs/v1/swagger/swagger-ui-bundle.js.map
similarity index 100%
rename from public/docs/v1/swagger/swagger-ui-bundle.js.map
rename to api/mapas/public/docs/v1/swagger/swagger-ui-bundle.js.map
diff --git a/public/docs/v1/swagger/swagger-ui-es-bundle-core.js b/api/mapas/public/docs/v1/swagger/swagger-ui-es-bundle-core.js
similarity index 100%
rename from public/docs/v1/swagger/swagger-ui-es-bundle-core.js
rename to api/mapas/public/docs/v1/swagger/swagger-ui-es-bundle-core.js
diff --git a/public/docs/v1/swagger/swagger-ui-es-bundle-core.js.map b/api/mapas/public/docs/v1/swagger/swagger-ui-es-bundle-core.js.map
similarity index 100%
rename from public/docs/v1/swagger/swagger-ui-es-bundle-core.js.map
rename to api/mapas/public/docs/v1/swagger/swagger-ui-es-bundle-core.js.map
diff --git a/public/docs/v1/swagger/swagger-ui-es-bundle.js b/api/mapas/public/docs/v1/swagger/swagger-ui-es-bundle.js
similarity index 100%
rename from public/docs/v1/swagger/swagger-ui-es-bundle.js
rename to api/mapas/public/docs/v1/swagger/swagger-ui-es-bundle.js
diff --git a/public/docs/v1/swagger/swagger-ui-es-bundle.js.map b/api/mapas/public/docs/v1/swagger/swagger-ui-es-bundle.js.map
similarity index 100%
rename from public/docs/v1/swagger/swagger-ui-es-bundle.js.map
rename to api/mapas/public/docs/v1/swagger/swagger-ui-es-bundle.js.map
diff --git a/public/docs/v1/swagger/swagger-ui-standalone-preset.js b/api/mapas/public/docs/v1/swagger/swagger-ui-standalone-preset.js
similarity index 100%
rename from public/docs/v1/swagger/swagger-ui-standalone-preset.js
rename to api/mapas/public/docs/v1/swagger/swagger-ui-standalone-preset.js
diff --git a/public/docs/v1/swagger/swagger-ui-standalone-preset.js.map b/api/mapas/public/docs/v1/swagger/swagger-ui-standalone-preset.js.map
similarity index 100%
rename from public/docs/v1/swagger/swagger-ui-standalone-preset.js.map
rename to api/mapas/public/docs/v1/swagger/swagger-ui-standalone-preset.js.map
diff --git a/public/docs/v1/swagger/swagger-ui.css b/api/mapas/public/docs/v1/swagger/swagger-ui.css
similarity index 100%
rename from public/docs/v1/swagger/swagger-ui.css
rename to api/mapas/public/docs/v1/swagger/swagger-ui.css
diff --git a/public/docs/v1/swagger/swagger-ui.css.map b/api/mapas/public/docs/v1/swagger/swagger-ui.css.map
similarity index 100%
rename from public/docs/v1/swagger/swagger-ui.css.map
rename to api/mapas/public/docs/v1/swagger/swagger-ui.css.map
diff --git a/public/docs/v1/swagger/swagger-ui.js b/api/mapas/public/docs/v1/swagger/swagger-ui.js
similarity index 100%
rename from public/docs/v1/swagger/swagger-ui.js
rename to api/mapas/public/docs/v1/swagger/swagger-ui.js
diff --git a/public/docs/v1/swagger/swagger-ui.js.map b/api/mapas/public/docs/v1/swagger/swagger-ui.js.map
similarity index 100%
rename from public/docs/v1/swagger/swagger-ui.js.map
rename to api/mapas/public/docs/v1/swagger/swagger-ui.js.map
diff --git a/public/docs/v2/assets/css/styles.css b/api/mapas/public/docs/v2/assets/css/styles.css
similarity index 100%
rename from public/docs/v2/assets/css/styles.css
rename to api/mapas/public/docs/v2/assets/css/styles.css
diff --git a/public/docs/v2/assets/js/events.js b/api/mapas/public/docs/v2/assets/js/events.js
similarity index 100%
rename from public/docs/v2/assets/js/events.js
rename to api/mapas/public/docs/v2/assets/js/events.js
diff --git a/public/docs/v2/components/common-types/date.yaml b/api/mapas/public/docs/v2/components/common-types/date.yaml
similarity index 100%
rename from public/docs/v2/components/common-types/date.yaml
rename to api/mapas/public/docs/v2/components/common-types/date.yaml
diff --git a/public/docs/v2/components/common-types/owner.yaml b/api/mapas/public/docs/v2/components/common-types/owner.yaml
similarity index 100%
rename from public/docs/v2/components/common-types/owner.yaml
rename to api/mapas/public/docs/v2/components/common-types/owner.yaml
diff --git a/public/docs/v2/components/parameters/path/id.yaml b/api/mapas/public/docs/v2/components/parameters/path/id.yaml
similarity index 100%
rename from public/docs/v2/components/parameters/path/id.yaml
rename to api/mapas/public/docs/v2/components/parameters/path/id.yaml
diff --git a/public/docs/v2/components/paths/agent/create.yaml b/api/mapas/public/docs/v2/components/paths/agent/create.yaml
similarity index 100%
rename from public/docs/v2/components/paths/agent/create.yaml
rename to api/mapas/public/docs/v2/components/paths/agent/create.yaml
diff --git a/public/docs/v2/components/paths/agent/delete.yaml b/api/mapas/public/docs/v2/components/paths/agent/delete.yaml
similarity index 100%
rename from public/docs/v2/components/paths/agent/delete.yaml
rename to api/mapas/public/docs/v2/components/paths/agent/delete.yaml
diff --git a/public/docs/v2/components/paths/agent/get-list.yaml b/api/mapas/public/docs/v2/components/paths/agent/get-list.yaml
similarity index 100%
rename from public/docs/v2/components/paths/agent/get-list.yaml
rename to api/mapas/public/docs/v2/components/paths/agent/get-list.yaml
diff --git a/public/docs/v2/components/paths/agent/get-one.yaml b/api/mapas/public/docs/v2/components/paths/agent/get-one.yaml
similarity index 100%
rename from public/docs/v2/components/paths/agent/get-one.yaml
rename to api/mapas/public/docs/v2/components/paths/agent/get-one.yaml
diff --git a/public/docs/v2/components/paths/agent/get-opportunity.yaml b/api/mapas/public/docs/v2/components/paths/agent/get-opportunity.yaml
similarity index 100%
rename from public/docs/v2/components/paths/agent/get-opportunity.yaml
rename to api/mapas/public/docs/v2/components/paths/agent/get-opportunity.yaml
diff --git a/public/docs/v2/components/paths/agent/get-type-list.yaml b/api/mapas/public/docs/v2/components/paths/agent/get-type-list.yaml
similarity index 100%
rename from public/docs/v2/components/paths/agent/get-type-list.yaml
rename to api/mapas/public/docs/v2/components/paths/agent/get-type-list.yaml
diff --git a/public/docs/v2/components/paths/agent/group-get-post.yaml b/api/mapas/public/docs/v2/components/paths/agent/group-get-post.yaml
similarity index 100%
rename from public/docs/v2/components/paths/agent/group-get-post.yaml
rename to api/mapas/public/docs/v2/components/paths/agent/group-get-post.yaml
diff --git a/public/docs/v2/components/paths/agent/group-param-id.yaml b/api/mapas/public/docs/v2/components/paths/agent/group-param-id.yaml
similarity index 100%
rename from public/docs/v2/components/paths/agent/group-param-id.yaml
rename to api/mapas/public/docs/v2/components/paths/agent/group-param-id.yaml
diff --git a/public/docs/v2/components/paths/agent/update.yaml b/api/mapas/public/docs/v2/components/paths/agent/update.yaml
similarity index 100%
rename from public/docs/v2/components/paths/agent/update.yaml
rename to api/mapas/public/docs/v2/components/paths/agent/update.yaml
diff --git a/public/docs/v2/components/paths/event/create.yaml b/api/mapas/public/docs/v2/components/paths/event/create.yaml
similarity index 100%
rename from public/docs/v2/components/paths/event/create.yaml
rename to api/mapas/public/docs/v2/components/paths/event/create.yaml
diff --git a/public/docs/v2/components/paths/event/delete.yaml b/api/mapas/public/docs/v2/components/paths/event/delete.yaml
similarity index 100%
rename from public/docs/v2/components/paths/event/delete.yaml
rename to api/mapas/public/docs/v2/components/paths/event/delete.yaml
diff --git a/public/docs/v2/components/paths/event/get-list.yaml b/api/mapas/public/docs/v2/components/paths/event/get-list.yaml
similarity index 100%
rename from public/docs/v2/components/paths/event/get-list.yaml
rename to api/mapas/public/docs/v2/components/paths/event/get-list.yaml
diff --git a/public/docs/v2/components/paths/event/get-one.yaml b/api/mapas/public/docs/v2/components/paths/event/get-one.yaml
similarity index 100%
rename from public/docs/v2/components/paths/event/get-one.yaml
rename to api/mapas/public/docs/v2/components/paths/event/get-one.yaml
diff --git a/public/docs/v2/components/paths/event/get-type-list.yaml b/api/mapas/public/docs/v2/components/paths/event/get-type-list.yaml
similarity index 100%
rename from public/docs/v2/components/paths/event/get-type-list.yaml
rename to api/mapas/public/docs/v2/components/paths/event/get-type-list.yaml
diff --git a/public/docs/v2/components/paths/event/group-get-post.yaml b/api/mapas/public/docs/v2/components/paths/event/group-get-post.yaml
similarity index 100%
rename from public/docs/v2/components/paths/event/group-get-post.yaml
rename to api/mapas/public/docs/v2/components/paths/event/group-get-post.yaml
diff --git a/public/docs/v2/components/paths/event/group-param-id.yaml b/api/mapas/public/docs/v2/components/paths/event/group-param-id.yaml
similarity index 100%
rename from public/docs/v2/components/paths/event/group-param-id.yaml
rename to api/mapas/public/docs/v2/components/paths/event/group-param-id.yaml
diff --git a/public/docs/v2/components/paths/event/update.yaml b/api/mapas/public/docs/v2/components/paths/event/update.yaml
similarity index 100%
rename from public/docs/v2/components/paths/event/update.yaml
rename to api/mapas/public/docs/v2/components/paths/event/update.yaml
diff --git a/public/docs/v2/components/paths/opportunity/create.yaml b/api/mapas/public/docs/v2/components/paths/opportunity/create.yaml
similarity index 100%
rename from public/docs/v2/components/paths/opportunity/create.yaml
rename to api/mapas/public/docs/v2/components/paths/opportunity/create.yaml
diff --git a/public/docs/v2/components/paths/opportunity/delete.yaml b/api/mapas/public/docs/v2/components/paths/opportunity/delete.yaml
similarity index 100%
rename from public/docs/v2/components/paths/opportunity/delete.yaml
rename to api/mapas/public/docs/v2/components/paths/opportunity/delete.yaml
diff --git a/public/docs/v2/components/paths/opportunity/get-list.yaml b/api/mapas/public/docs/v2/components/paths/opportunity/get-list.yaml
similarity index 100%
rename from public/docs/v2/components/paths/opportunity/get-list.yaml
rename to api/mapas/public/docs/v2/components/paths/opportunity/get-list.yaml
diff --git a/public/docs/v2/components/paths/opportunity/get-one.yaml b/api/mapas/public/docs/v2/components/paths/opportunity/get-one.yaml
similarity index 100%
rename from public/docs/v2/components/paths/opportunity/get-one.yaml
rename to api/mapas/public/docs/v2/components/paths/opportunity/get-one.yaml
diff --git a/public/docs/v2/components/paths/opportunity/group-get-post.yaml b/api/mapas/public/docs/v2/components/paths/opportunity/group-get-post.yaml
similarity index 100%
rename from public/docs/v2/components/paths/opportunity/group-get-post.yaml
rename to api/mapas/public/docs/v2/components/paths/opportunity/group-get-post.yaml
diff --git a/public/docs/v2/components/paths/opportunity/group-param-id.yaml b/api/mapas/public/docs/v2/components/paths/opportunity/group-param-id.yaml
similarity index 100%
rename from public/docs/v2/components/paths/opportunity/group-param-id.yaml
rename to api/mapas/public/docs/v2/components/paths/opportunity/group-param-id.yaml
diff --git a/public/docs/v2/components/paths/opportunity/patch.yaml b/api/mapas/public/docs/v2/components/paths/opportunity/patch.yaml
similarity index 100%
rename from public/docs/v2/components/paths/opportunity/patch.yaml
rename to api/mapas/public/docs/v2/components/paths/opportunity/patch.yaml
diff --git a/public/docs/v2/components/paths/project/create.yaml b/api/mapas/public/docs/v2/components/paths/project/create.yaml
similarity index 100%
rename from public/docs/v2/components/paths/project/create.yaml
rename to api/mapas/public/docs/v2/components/paths/project/create.yaml
diff --git a/public/docs/v2/components/paths/project/delete.yaml b/api/mapas/public/docs/v2/components/paths/project/delete.yaml
similarity index 100%
rename from public/docs/v2/components/paths/project/delete.yaml
rename to api/mapas/public/docs/v2/components/paths/project/delete.yaml
diff --git a/public/docs/v2/components/paths/project/get-list.yaml b/api/mapas/public/docs/v2/components/paths/project/get-list.yaml
similarity index 100%
rename from public/docs/v2/components/paths/project/get-list.yaml
rename to api/mapas/public/docs/v2/components/paths/project/get-list.yaml
diff --git a/public/docs/v2/components/paths/project/get-one.yaml b/api/mapas/public/docs/v2/components/paths/project/get-one.yaml
similarity index 100%
rename from public/docs/v2/components/paths/project/get-one.yaml
rename to api/mapas/public/docs/v2/components/paths/project/get-one.yaml
diff --git a/public/docs/v2/components/paths/project/group-get-post.yaml b/api/mapas/public/docs/v2/components/paths/project/group-get-post.yaml
similarity index 100%
rename from public/docs/v2/components/paths/project/group-get-post.yaml
rename to api/mapas/public/docs/v2/components/paths/project/group-get-post.yaml
diff --git a/public/docs/v2/components/paths/project/group-param-id.yaml b/api/mapas/public/docs/v2/components/paths/project/group-param-id.yaml
similarity index 100%
rename from public/docs/v2/components/paths/project/group-param-id.yaml
rename to api/mapas/public/docs/v2/components/paths/project/group-param-id.yaml
diff --git a/public/docs/v2/components/paths/project/patch.yaml b/api/mapas/public/docs/v2/components/paths/project/patch.yaml
similarity index 100%
rename from public/docs/v2/components/paths/project/patch.yaml
rename to api/mapas/public/docs/v2/components/paths/project/patch.yaml
diff --git a/public/docs/v2/components/paths/seal/create.yaml b/api/mapas/public/docs/v2/components/paths/seal/create.yaml
similarity index 100%
rename from public/docs/v2/components/paths/seal/create.yaml
rename to api/mapas/public/docs/v2/components/paths/seal/create.yaml
diff --git a/public/docs/v2/components/paths/seal/get-list.yaml b/api/mapas/public/docs/v2/components/paths/seal/get-list.yaml
similarity index 100%
rename from public/docs/v2/components/paths/seal/get-list.yaml
rename to api/mapas/public/docs/v2/components/paths/seal/get-list.yaml
diff --git a/public/docs/v2/components/paths/seal/group-get-post.yaml b/api/mapas/public/docs/v2/components/paths/seal/group-get-post.yaml
similarity index 100%
rename from public/docs/v2/components/paths/seal/group-get-post.yaml
rename to api/mapas/public/docs/v2/components/paths/seal/group-get-post.yaml
diff --git a/public/docs/v2/components/paths/seal/group-param-id.yaml b/api/mapas/public/docs/v2/components/paths/seal/group-param-id.yaml
similarity index 100%
rename from public/docs/v2/components/paths/seal/group-param-id.yaml
rename to api/mapas/public/docs/v2/components/paths/seal/group-param-id.yaml
diff --git a/public/docs/v2/components/paths/seal/update.yaml b/api/mapas/public/docs/v2/components/paths/seal/update.yaml
similarity index 100%
rename from public/docs/v2/components/paths/seal/update.yaml
rename to api/mapas/public/docs/v2/components/paths/seal/update.yaml
diff --git a/public/docs/v2/components/paths/space/create.yaml b/api/mapas/public/docs/v2/components/paths/space/create.yaml
similarity index 100%
rename from public/docs/v2/components/paths/space/create.yaml
rename to api/mapas/public/docs/v2/components/paths/space/create.yaml
diff --git a/public/docs/v2/components/paths/space/delete.yaml b/api/mapas/public/docs/v2/components/paths/space/delete.yaml
similarity index 100%
rename from public/docs/v2/components/paths/space/delete.yaml
rename to api/mapas/public/docs/v2/components/paths/space/delete.yaml
diff --git a/public/docs/v2/components/paths/space/get-events-by-spaces.yaml b/api/mapas/public/docs/v2/components/paths/space/get-events-by-spaces.yaml
similarity index 100%
rename from public/docs/v2/components/paths/space/get-events-by-spaces.yaml
rename to api/mapas/public/docs/v2/components/paths/space/get-events-by-spaces.yaml
diff --git a/public/docs/v2/components/paths/space/get-list.yaml b/api/mapas/public/docs/v2/components/paths/space/get-list.yaml
similarity index 100%
rename from public/docs/v2/components/paths/space/get-list.yaml
rename to api/mapas/public/docs/v2/components/paths/space/get-list.yaml
diff --git a/public/docs/v2/components/paths/space/get-one.yaml b/api/mapas/public/docs/v2/components/paths/space/get-one.yaml
similarity index 100%
rename from public/docs/v2/components/paths/space/get-one.yaml
rename to api/mapas/public/docs/v2/components/paths/space/get-one.yaml
diff --git a/public/docs/v2/components/paths/space/group-get-post.yaml b/api/mapas/public/docs/v2/components/paths/space/group-get-post.yaml
similarity index 100%
rename from public/docs/v2/components/paths/space/group-get-post.yaml
rename to api/mapas/public/docs/v2/components/paths/space/group-get-post.yaml
diff --git a/public/docs/v2/components/paths/space/group-param-id.yaml b/api/mapas/public/docs/v2/components/paths/space/group-param-id.yaml
similarity index 100%
rename from public/docs/v2/components/paths/space/group-param-id.yaml
rename to api/mapas/public/docs/v2/components/paths/space/group-param-id.yaml
diff --git a/public/docs/v2/components/paths/space/patch.yaml b/api/mapas/public/docs/v2/components/paths/space/patch.yaml
similarity index 100%
rename from public/docs/v2/components/paths/space/patch.yaml
rename to api/mapas/public/docs/v2/components/paths/space/patch.yaml
diff --git a/public/docs/v2/components/paths/term/get-list.yaml b/api/mapas/public/docs/v2/components/paths/term/get-list.yaml
similarity index 100%
rename from public/docs/v2/components/paths/term/get-list.yaml
rename to api/mapas/public/docs/v2/components/paths/term/get-list.yaml
diff --git a/public/docs/v2/components/paths/term/get-one.yaml b/api/mapas/public/docs/v2/components/paths/term/get-one.yaml
similarity index 100%
rename from public/docs/v2/components/paths/term/get-one.yaml
rename to api/mapas/public/docs/v2/components/paths/term/get-one.yaml
diff --git a/public/docs/v2/components/paths/term/group-get-post.yaml b/api/mapas/public/docs/v2/components/paths/term/group-get-post.yaml
similarity index 100%
rename from public/docs/v2/components/paths/term/group-get-post.yaml
rename to api/mapas/public/docs/v2/components/paths/term/group-get-post.yaml
diff --git a/public/docs/v2/components/paths/term/group-param-id.yaml b/api/mapas/public/docs/v2/components/paths/term/group-param-id.yaml
similarity index 100%
rename from public/docs/v2/components/paths/term/group-param-id.yaml
rename to api/mapas/public/docs/v2/components/paths/term/group-param-id.yaml
diff --git a/public/docs/v2/components/requestBodies/agent/post-complete.yaml b/api/mapas/public/docs/v2/components/requestBodies/agent/post-complete.yaml
similarity index 100%
rename from public/docs/v2/components/requestBodies/agent/post-complete.yaml
rename to api/mapas/public/docs/v2/components/requestBodies/agent/post-complete.yaml
diff --git a/public/docs/v2/components/requestBodies/agent/post-minimal.yaml b/api/mapas/public/docs/v2/components/requestBodies/agent/post-minimal.yaml
similarity index 100%
rename from public/docs/v2/components/requestBodies/agent/post-minimal.yaml
rename to api/mapas/public/docs/v2/components/requestBodies/agent/post-minimal.yaml
diff --git a/public/docs/v2/components/requestBodies/event/post-complete.yaml b/api/mapas/public/docs/v2/components/requestBodies/event/post-complete.yaml
similarity index 100%
rename from public/docs/v2/components/requestBodies/event/post-complete.yaml
rename to api/mapas/public/docs/v2/components/requestBodies/event/post-complete.yaml
diff --git a/public/docs/v2/components/requestBodies/event/post-minimal.yaml b/api/mapas/public/docs/v2/components/requestBodies/event/post-minimal.yaml
similarity index 100%
rename from public/docs/v2/components/requestBodies/event/post-minimal.yaml
rename to api/mapas/public/docs/v2/components/requestBodies/event/post-minimal.yaml
diff --git a/public/docs/v2/components/requestBodies/opportunity/post-complete.yaml b/api/mapas/public/docs/v2/components/requestBodies/opportunity/post-complete.yaml
similarity index 100%
rename from public/docs/v2/components/requestBodies/opportunity/post-complete.yaml
rename to api/mapas/public/docs/v2/components/requestBodies/opportunity/post-complete.yaml
diff --git a/public/docs/v2/components/requestBodies/opportunity/post-minimal.yaml b/api/mapas/public/docs/v2/components/requestBodies/opportunity/post-minimal.yaml
similarity index 100%
rename from public/docs/v2/components/requestBodies/opportunity/post-minimal.yaml
rename to api/mapas/public/docs/v2/components/requestBodies/opportunity/post-minimal.yaml
diff --git a/public/docs/v2/components/requestBodies/project/post-complete.yaml b/api/mapas/public/docs/v2/components/requestBodies/project/post-complete.yaml
similarity index 100%
rename from public/docs/v2/components/requestBodies/project/post-complete.yaml
rename to api/mapas/public/docs/v2/components/requestBodies/project/post-complete.yaml
diff --git a/public/docs/v2/components/requestBodies/project/post-minimal.yaml b/api/mapas/public/docs/v2/components/requestBodies/project/post-minimal.yaml
similarity index 100%
rename from public/docs/v2/components/requestBodies/project/post-minimal.yaml
rename to api/mapas/public/docs/v2/components/requestBodies/project/post-minimal.yaml
diff --git a/public/docs/v2/components/requestBodies/seals/post-complete.yaml b/api/mapas/public/docs/v2/components/requestBodies/seals/post-complete.yaml
similarity index 100%
rename from public/docs/v2/components/requestBodies/seals/post-complete.yaml
rename to api/mapas/public/docs/v2/components/requestBodies/seals/post-complete.yaml
diff --git a/public/docs/v2/components/requestBodies/seals/post-minimal.yaml b/api/mapas/public/docs/v2/components/requestBodies/seals/post-minimal.yaml
similarity index 100%
rename from public/docs/v2/components/requestBodies/seals/post-minimal.yaml
rename to api/mapas/public/docs/v2/components/requestBodies/seals/post-minimal.yaml
diff --git a/public/docs/v2/components/requestBodies/space/post-complete.yaml b/api/mapas/public/docs/v2/components/requestBodies/space/post-complete.yaml
similarity index 100%
rename from public/docs/v2/components/requestBodies/space/post-complete.yaml
rename to api/mapas/public/docs/v2/components/requestBodies/space/post-complete.yaml
diff --git a/public/docs/v2/components/requestBodies/space/post-minimal.yaml b/api/mapas/public/docs/v2/components/requestBodies/space/post-minimal.yaml
similarity index 100%
rename from public/docs/v2/components/requestBodies/space/post-minimal.yaml
rename to api/mapas/public/docs/v2/components/requestBodies/space/post-minimal.yaml
diff --git a/public/docs/v2/components/responses/agent/created.yaml b/api/mapas/public/docs/v2/components/responses/agent/created.yaml
similarity index 100%
rename from public/docs/v2/components/responses/agent/created.yaml
rename to api/mapas/public/docs/v2/components/responses/agent/created.yaml
diff --git a/public/docs/v2/components/responses/error/404.yaml b/api/mapas/public/docs/v2/components/responses/error/404.yaml
similarity index 100%
rename from public/docs/v2/components/responses/error/404.yaml
rename to api/mapas/public/docs/v2/components/responses/error/404.yaml
diff --git a/public/docs/v2/components/responses/event/created.yaml b/api/mapas/public/docs/v2/components/responses/event/created.yaml
similarity index 100%
rename from public/docs/v2/components/responses/event/created.yaml
rename to api/mapas/public/docs/v2/components/responses/event/created.yaml
diff --git a/public/docs/v2/components/responses/event/error-delete.yaml b/api/mapas/public/docs/v2/components/responses/event/error-delete.yaml
similarity index 100%
rename from public/docs/v2/components/responses/event/error-delete.yaml
rename to api/mapas/public/docs/v2/components/responses/event/error-delete.yaml
diff --git a/public/docs/v2/components/responses/opportunity/created.yaml b/api/mapas/public/docs/v2/components/responses/opportunity/created.yaml
similarity index 100%
rename from public/docs/v2/components/responses/opportunity/created.yaml
rename to api/mapas/public/docs/v2/components/responses/opportunity/created.yaml
diff --git a/public/docs/v2/components/responses/project/created.yaml b/api/mapas/public/docs/v2/components/responses/project/created.yaml
similarity index 100%
rename from public/docs/v2/components/responses/project/created.yaml
rename to api/mapas/public/docs/v2/components/responses/project/created.yaml
diff --git a/public/docs/v2/components/schemas/agent-type.yaml b/api/mapas/public/docs/v2/components/schemas/agent-type.yaml
similarity index 100%
rename from public/docs/v2/components/schemas/agent-type.yaml
rename to api/mapas/public/docs/v2/components/schemas/agent-type.yaml
diff --git a/public/docs/v2/components/schemas/agent.yaml b/api/mapas/public/docs/v2/components/schemas/agent.yaml
similarity index 100%
rename from public/docs/v2/components/schemas/agent.yaml
rename to api/mapas/public/docs/v2/components/schemas/agent.yaml
diff --git a/public/docs/v2/components/schemas/event-occurrence.yaml b/api/mapas/public/docs/v2/components/schemas/event-occurrence.yaml
similarity index 100%
rename from public/docs/v2/components/schemas/event-occurrence.yaml
rename to api/mapas/public/docs/v2/components/schemas/event-occurrence.yaml
diff --git a/public/docs/v2/components/schemas/event-type.yaml b/api/mapas/public/docs/v2/components/schemas/event-type.yaml
similarity index 100%
rename from public/docs/v2/components/schemas/event-type.yaml
rename to api/mapas/public/docs/v2/components/schemas/event-type.yaml
diff --git a/public/docs/v2/components/schemas/event.yaml b/api/mapas/public/docs/v2/components/schemas/event.yaml
similarity index 100%
rename from public/docs/v2/components/schemas/event.yaml
rename to api/mapas/public/docs/v2/components/schemas/event.yaml
diff --git a/public/docs/v2/components/schemas/opportunity.yaml b/api/mapas/public/docs/v2/components/schemas/opportunity.yaml
similarity index 100%
rename from public/docs/v2/components/schemas/opportunity.yaml
rename to api/mapas/public/docs/v2/components/schemas/opportunity.yaml
diff --git a/public/docs/v2/components/schemas/project.yaml b/api/mapas/public/docs/v2/components/schemas/project.yaml
similarity index 100%
rename from public/docs/v2/components/schemas/project.yaml
rename to api/mapas/public/docs/v2/components/schemas/project.yaml
diff --git a/public/docs/v2/components/schemas/seal.yaml b/api/mapas/public/docs/v2/components/schemas/seal.yaml
similarity index 100%
rename from public/docs/v2/components/schemas/seal.yaml
rename to api/mapas/public/docs/v2/components/schemas/seal.yaml
diff --git a/public/docs/v2/components/schemas/space.yaml b/api/mapas/public/docs/v2/components/schemas/space.yaml
similarity index 100%
rename from public/docs/v2/components/schemas/space.yaml
rename to api/mapas/public/docs/v2/components/schemas/space.yaml
diff --git a/public/docs/v2/components/schemas/term.yaml b/api/mapas/public/docs/v2/components/schemas/term.yaml
similarity index 100%
rename from public/docs/v2/components/schemas/term.yaml
rename to api/mapas/public/docs/v2/components/schemas/term.yaml
diff --git a/public/docs/v2/index.html b/api/mapas/public/docs/v2/index.html
similarity index 100%
rename from public/docs/v2/index.html
rename to api/mapas/public/docs/v2/index.html
diff --git a/public/docs/v2/openapi.yaml b/api/mapas/public/docs/v2/openapi.yaml
similarity index 100%
rename from public/docs/v2/openapi.yaml
rename to api/mapas/public/docs/v2/openapi.yaml
diff --git a/public/docs/v2/swagger/index.css b/api/mapas/public/docs/v2/swagger/index.css
similarity index 100%
rename from public/docs/v2/swagger/index.css
rename to api/mapas/public/docs/v2/swagger/index.css
diff --git a/public/docs/v2/swagger/swagger-ui-bundle.js b/api/mapas/public/docs/v2/swagger/swagger-ui-bundle.js
similarity index 100%
rename from public/docs/v2/swagger/swagger-ui-bundle.js
rename to api/mapas/public/docs/v2/swagger/swagger-ui-bundle.js
diff --git a/public/docs/v2/swagger/swagger-ui-bundle.js.map b/api/mapas/public/docs/v2/swagger/swagger-ui-bundle.js.map
similarity index 100%
rename from public/docs/v2/swagger/swagger-ui-bundle.js.map
rename to api/mapas/public/docs/v2/swagger/swagger-ui-bundle.js.map
diff --git a/public/docs/v2/swagger/swagger-ui-es-bundle-core.js b/api/mapas/public/docs/v2/swagger/swagger-ui-es-bundle-core.js
similarity index 100%
rename from public/docs/v2/swagger/swagger-ui-es-bundle-core.js
rename to api/mapas/public/docs/v2/swagger/swagger-ui-es-bundle-core.js
diff --git a/public/docs/v2/swagger/swagger-ui-es-bundle-core.js.map b/api/mapas/public/docs/v2/swagger/swagger-ui-es-bundle-core.js.map
similarity index 100%
rename from public/docs/v2/swagger/swagger-ui-es-bundle-core.js.map
rename to api/mapas/public/docs/v2/swagger/swagger-ui-es-bundle-core.js.map
diff --git a/public/docs/v2/swagger/swagger-ui-es-bundle.js b/api/mapas/public/docs/v2/swagger/swagger-ui-es-bundle.js
similarity index 100%
rename from public/docs/v2/swagger/swagger-ui-es-bundle.js
rename to api/mapas/public/docs/v2/swagger/swagger-ui-es-bundle.js
diff --git a/public/docs/v2/swagger/swagger-ui-es-bundle.js.map b/api/mapas/public/docs/v2/swagger/swagger-ui-es-bundle.js.map
similarity index 100%
rename from public/docs/v2/swagger/swagger-ui-es-bundle.js.map
rename to api/mapas/public/docs/v2/swagger/swagger-ui-es-bundle.js.map
diff --git a/public/docs/v2/swagger/swagger-ui-standalone-preset.js b/api/mapas/public/docs/v2/swagger/swagger-ui-standalone-preset.js
similarity index 100%
rename from public/docs/v2/swagger/swagger-ui-standalone-preset.js
rename to api/mapas/public/docs/v2/swagger/swagger-ui-standalone-preset.js
diff --git a/public/docs/v2/swagger/swagger-ui-standalone-preset.js.map b/api/mapas/public/docs/v2/swagger/swagger-ui-standalone-preset.js.map
similarity index 100%
rename from public/docs/v2/swagger/swagger-ui-standalone-preset.js.map
rename to api/mapas/public/docs/v2/swagger/swagger-ui-standalone-preset.js.map
diff --git a/public/docs/v2/swagger/swagger-ui.css b/api/mapas/public/docs/v2/swagger/swagger-ui.css
similarity index 100%
rename from public/docs/v2/swagger/swagger-ui.css
rename to api/mapas/public/docs/v2/swagger/swagger-ui.css
diff --git a/public/docs/v2/swagger/swagger-ui.css.map b/api/mapas/public/docs/v2/swagger/swagger-ui.css.map
similarity index 100%
rename from public/docs/v2/swagger/swagger-ui.css.map
rename to api/mapas/public/docs/v2/swagger/swagger-ui.css.map
diff --git a/public/docs/v2/swagger/swagger-ui.js b/api/mapas/public/docs/v2/swagger/swagger-ui.js
similarity index 100%
rename from public/docs/v2/swagger/swagger-ui.js
rename to api/mapas/public/docs/v2/swagger/swagger-ui.js
diff --git a/public/docs/v2/swagger/swagger-ui.js.map b/api/mapas/public/docs/v2/swagger/swagger-ui.js.map
similarity index 100%
rename from public/docs/v2/swagger/swagger-ui.js.map
rename to api/mapas/public/docs/v2/swagger/swagger-ui.js.map
diff --git a/public/index.php b/api/mapas/public/index.php
similarity index 100%
rename from public/index.php
rename to api/mapas/public/index.php
diff --git a/scripts/compile-sass.sh b/api/mapas/scripts/compile-sass.sh
similarity index 100%
rename from scripts/compile-sass.sh
rename to api/mapas/scripts/compile-sass.sh
diff --git a/scripts/db-update.sh b/api/mapas/scripts/db-update.sh
similarity index 100%
rename from scripts/db-update.sh
rename to api/mapas/scripts/db-update.sh
diff --git a/scripts/deploy.sh b/api/mapas/scripts/deploy.sh
similarity index 100%
rename from scripts/deploy.sh
rename to api/mapas/scripts/deploy.sh
diff --git a/scripts/execute-job.sh b/api/mapas/scripts/execute-job.sh
similarity index 100%
rename from scripts/execute-job.sh
rename to api/mapas/scripts/execute-job.sh
diff --git a/scripts/generate-config-documentation.sh b/api/mapas/scripts/generate-config-documentation.sh
similarity index 100%
rename from scripts/generate-config-documentation.sh
rename to api/mapas/scripts/generate-config-documentation.sh
diff --git a/scripts/generate-proxies.sh b/api/mapas/scripts/generate-proxies.sh
similarity index 100%
rename from scripts/generate-proxies.sh
rename to api/mapas/scripts/generate-proxies.sh
diff --git a/scripts/mc-db-updates.sh b/api/mapas/scripts/mc-db-updates.sh
similarity index 100%
rename from scripts/mc-db-updates.sh
rename to api/mapas/scripts/mc-db-updates.sh
diff --git a/scripts/recreate-pcache.sh b/api/mapas/scripts/recreate-pcache.sh
similarity index 100%
rename from scripts/recreate-pcache.sh
rename to api/mapas/scripts/recreate-pcache.sh
diff --git a/scripts/recreate-pending-pcache.sh b/api/mapas/scripts/recreate-pending-pcache.sh
similarity index 100%
rename from scripts/recreate-pending-pcache.sh
rename to api/mapas/scripts/recreate-pending-pcache.sh
diff --git a/scripts/restore-dump.sh b/api/mapas/scripts/restore-dump.sh
similarity index 100%
rename from scripts/restore-dump.sh
rename to api/mapas/scripts/restore-dump.sh
diff --git a/scripts/run-tests-docker.sh b/api/mapas/scripts/run-tests-docker.sh
similarity index 100%
rename from scripts/run-tests-docker.sh
rename to api/mapas/scripts/run-tests-docker.sh
diff --git a/scripts/shell.sh b/api/mapas/scripts/shell.sh
similarity index 100%
rename from scripts/shell.sh
rename to api/mapas/scripts/shell.sh
diff --git a/scripts/watch-active-theme-sass.sh b/api/mapas/scripts/watch-active-theme-sass.sh
similarity index 100%
rename from scripts/watch-active-theme-sass.sh
rename to api/mapas/scripts/watch-active-theme-sass.sh
diff --git a/src/bootstrap.php b/api/mapas/src/bootstrap.php
similarity index 100%
rename from src/bootstrap.php
rename to api/mapas/src/bootstrap.php
diff --git a/src/conf/agent-types.php b/api/mapas/src/conf/agent-types.php
similarity index 100%
rename from src/conf/agent-types.php
rename to api/mapas/src/conf/agent-types.php
diff --git a/src/conf/config.php b/api/mapas/src/conf/config.php
similarity index 100%
rename from src/conf/config.php
rename to api/mapas/src/conf/config.php
diff --git a/src/conf/event-types.php b/api/mapas/src/conf/event-types.php
similarity index 100%
rename from src/conf/event-types.php
rename to api/mapas/src/conf/event-types.php
diff --git a/src/conf/image-transformations.php b/api/mapas/src/conf/image-transformations.php
similarity index 100%
rename from src/conf/image-transformations.php
rename to api/mapas/src/conf/image-transformations.php
diff --git a/src/conf/notification-types.php b/api/mapas/src/conf/notification-types.php
similarity index 100%
rename from src/conf/notification-types.php
rename to api/mapas/src/conf/notification-types.php
diff --git a/src/conf/opportunity-types.php b/api/mapas/src/conf/opportunity-types.php
similarity index 100%
rename from src/conf/opportunity-types.php
rename to api/mapas/src/conf/opportunity-types.php
diff --git a/src/conf/project-types.php b/api/mapas/src/conf/project-types.php
similarity index 100%
rename from src/conf/project-types.php
rename to api/mapas/src/conf/project-types.php
diff --git a/src/conf/seal-types.php b/api/mapas/src/conf/seal-types.php
similarity index 100%
rename from src/conf/seal-types.php
rename to api/mapas/src/conf/seal-types.php
diff --git a/src/conf/space-types.php b/api/mapas/src/conf/space-types.php
similarity index 100%
rename from src/conf/space-types.php
rename to api/mapas/src/conf/space-types.php
diff --git a/src/conf/subsite-types.php b/api/mapas/src/conf/subsite-types.php
similarity index 100%
rename from src/conf/subsite-types.php
rename to api/mapas/src/conf/subsite-types.php
diff --git a/src/conf/taxonomies.php b/api/mapas/src/conf/taxonomies.php
similarity index 100%
rename from src/conf/taxonomies.php
rename to api/mapas/src/conf/taxonomies.php
diff --git a/src/core/API.php b/api/mapas/src/core/API.php
similarity index 100%
rename from src/core/API.php
rename to api/mapas/src/core/API.php
diff --git a/src/core/ApiOutput.php b/api/mapas/src/core/ApiOutput.php
similarity index 100%
rename from src/core/ApiOutput.php
rename to api/mapas/src/core/ApiOutput.php
diff --git a/src/core/ApiOutputs/Dump.php b/api/mapas/src/core/ApiOutputs/Dump.php
similarity index 100%
rename from src/core/ApiOutputs/Dump.php
rename to api/mapas/src/core/ApiOutputs/Dump.php
diff --git a/src/core/ApiOutputs/Excel.php b/api/mapas/src/core/ApiOutputs/Excel.php
similarity index 100%
rename from src/core/ApiOutputs/Excel.php
rename to api/mapas/src/core/ApiOutputs/Excel.php
diff --git a/src/core/ApiOutputs/Html.php b/api/mapas/src/core/ApiOutputs/Html.php
similarity index 100%
rename from src/core/ApiOutputs/Html.php
rename to api/mapas/src/core/ApiOutputs/Html.php
diff --git a/src/core/ApiOutputs/Json.php b/api/mapas/src/core/ApiOutputs/Json.php
similarity index 100%
rename from src/core/ApiOutputs/Json.php
rename to api/mapas/src/core/ApiOutputs/Json.php
diff --git a/src/core/ApiOutputs/TextTable.php b/api/mapas/src/core/ApiOutputs/TextTable.php
similarity index 100%
rename from src/core/ApiOutputs/TextTable.php
rename to api/mapas/src/core/ApiOutputs/TextTable.php
diff --git a/src/core/ApiQuery.php b/api/mapas/src/core/ApiQuery.php
similarity index 100%
rename from src/core/ApiQuery.php
rename to api/mapas/src/core/ApiQuery.php
diff --git a/src/core/App.php b/api/mapas/src/core/App.php
similarity index 100%
rename from src/core/App.php
rename to api/mapas/src/core/App.php
diff --git a/src/core/AssetManager.php b/api/mapas/src/core/AssetManager.php
similarity index 100%
rename from src/core/AssetManager.php
rename to api/mapas/src/core/AssetManager.php
diff --git a/src/core/AssetManagers/FileSystem.php b/api/mapas/src/core/AssetManagers/FileSystem.php
similarity index 100%
rename from src/core/AssetManagers/FileSystem.php
rename to api/mapas/src/core/AssetManagers/FileSystem.php
diff --git a/src/core/AuthProvider.php b/api/mapas/src/core/AuthProvider.php
similarity index 100%
rename from src/core/AuthProvider.php
rename to api/mapas/src/core/AuthProvider.php
diff --git a/src/core/AuthProviders/Fake.php b/api/mapas/src/core/AuthProviders/Fake.php
similarity index 100%
rename from src/core/AuthProviders/Fake.php
rename to api/mapas/src/core/AuthProviders/Fake.php
diff --git a/src/core/AuthProviders/OpauthAuthentik.php b/api/mapas/src/core/AuthProviders/OpauthAuthentik.php
similarity index 100%
rename from src/core/AuthProviders/OpauthAuthentik.php
rename to api/mapas/src/core/AuthProviders/OpauthAuthentik.php
diff --git a/src/core/AuthProviders/OpauthLoginCidadao.php b/api/mapas/src/core/AuthProviders/OpauthLoginCidadao.php
similarity index 100%
rename from src/core/AuthProviders/OpauthLoginCidadao.php
rename to api/mapas/src/core/AuthProviders/OpauthLoginCidadao.php
diff --git a/src/core/AuthProviders/OpauthOpenId.php b/api/mapas/src/core/AuthProviders/OpauthOpenId.php
similarity index 100%
rename from src/core/AuthProviders/OpauthOpenId.php
rename to api/mapas/src/core/AuthProviders/OpauthOpenId.php
diff --git a/src/core/AuthProviders/Test.php b/api/mapas/src/core/AuthProviders/Test.php
similarity index 100%
rename from src/core/AuthProviders/Test.php
rename to api/mapas/src/core/AuthProviders/Test.php
diff --git a/src/core/Cache.php b/api/mapas/src/core/Cache.php
similarity index 100%
rename from src/core/Cache.php
rename to api/mapas/src/core/Cache.php
diff --git a/src/core/Connection.php b/api/mapas/src/core/Connection.php
similarity index 100%
rename from src/core/Connection.php
rename to api/mapas/src/core/Connection.php
diff --git a/src/core/Controller.php b/api/mapas/src/core/Controller.php
similarity index 100%
rename from src/core/Controller.php
rename to api/mapas/src/core/Controller.php
diff --git a/src/core/Controllers/Agent.php b/api/mapas/src/core/Controllers/Agent.php
similarity index 100%
rename from src/core/Controllers/Agent.php
rename to api/mapas/src/core/Controllers/Agent.php
diff --git a/src/core/Controllers/Auth.php b/api/mapas/src/core/Controllers/Auth.php
similarity index 100%
rename from src/core/Controllers/Auth.php
rename to api/mapas/src/core/Controllers/Auth.php
diff --git a/src/core/Controllers/ChatMessage.php b/api/mapas/src/core/Controllers/ChatMessage.php
similarity index 100%
rename from src/core/Controllers/ChatMessage.php
rename to api/mapas/src/core/Controllers/ChatMessage.php
diff --git a/src/core/Controllers/ChatThread.php b/api/mapas/src/core/Controllers/ChatThread.php
similarity index 100%
rename from src/core/Controllers/ChatThread.php
rename to api/mapas/src/core/Controllers/ChatThread.php
diff --git a/src/core/Controllers/EntityController.php b/api/mapas/src/core/Controllers/EntityController.php
similarity index 100%
rename from src/core/Controllers/EntityController.php
rename to api/mapas/src/core/Controllers/EntityController.php
diff --git a/src/core/Controllers/EntityRevision.php b/api/mapas/src/core/Controllers/EntityRevision.php
similarity index 100%
rename from src/core/Controllers/EntityRevision.php
rename to api/mapas/src/core/Controllers/EntityRevision.php
diff --git a/src/core/Controllers/EvaluationMethodConfiguration.php b/api/mapas/src/core/Controllers/EvaluationMethodConfiguration.php
similarity index 100%
rename from src/core/Controllers/EvaluationMethodConfiguration.php
rename to api/mapas/src/core/Controllers/EvaluationMethodConfiguration.php
diff --git a/src/core/Controllers/Event.php b/api/mapas/src/core/Controllers/Event.php
similarity index 100%
rename from src/core/Controllers/Event.php
rename to api/mapas/src/core/Controllers/Event.php
diff --git a/src/core/Controllers/EventAttendance.php b/api/mapas/src/core/Controllers/EventAttendance.php
similarity index 100%
rename from src/core/Controllers/EventAttendance.php
rename to api/mapas/src/core/Controllers/EventAttendance.php
diff --git a/src/core/Controllers/EventOccurrence.php b/api/mapas/src/core/Controllers/EventOccurrence.php
similarity index 100%
rename from src/core/Controllers/EventOccurrence.php
rename to api/mapas/src/core/Controllers/EventOccurrence.php
diff --git a/src/core/Controllers/File.php b/api/mapas/src/core/Controllers/File.php
similarity index 100%
rename from src/core/Controllers/File.php
rename to api/mapas/src/core/Controllers/File.php
diff --git a/src/core/Controllers/MetaList.php b/api/mapas/src/core/Controllers/MetaList.php
similarity index 100%
rename from src/core/Controllers/MetaList.php
rename to api/mapas/src/core/Controllers/MetaList.php
diff --git a/src/core/Controllers/Notification.php b/api/mapas/src/core/Controllers/Notification.php
similarity index 100%
rename from src/core/Controllers/Notification.php
rename to api/mapas/src/core/Controllers/Notification.php
diff --git a/src/core/Controllers/Opportunity.php b/api/mapas/src/core/Controllers/Opportunity.php
similarity index 100%
rename from src/core/Controllers/Opportunity.php
rename to api/mapas/src/core/Controllers/Opportunity.php
diff --git a/src/core/Controllers/Panel.php b/api/mapas/src/core/Controllers/Panel.php
similarity index 100%
rename from src/core/Controllers/Panel.php
rename to api/mapas/src/core/Controllers/Panel.php
diff --git a/src/core/Controllers/PermissionCache.php b/api/mapas/src/core/Controllers/PermissionCache.php
similarity index 100%
rename from src/core/Controllers/PermissionCache.php
rename to api/mapas/src/core/Controllers/PermissionCache.php
diff --git a/src/core/Controllers/Project.php b/api/mapas/src/core/Controllers/Project.php
similarity index 100%
rename from src/core/Controllers/Project.php
rename to api/mapas/src/core/Controllers/Project.php
diff --git a/src/core/Controllers/Registration.php b/api/mapas/src/core/Controllers/Registration.php
similarity index 100%
rename from src/core/Controllers/Registration.php
rename to api/mapas/src/core/Controllers/Registration.php
diff --git a/src/core/Controllers/RegistrationFieldConfiguration.php b/api/mapas/src/core/Controllers/RegistrationFieldConfiguration.php
similarity index 100%
rename from src/core/Controllers/RegistrationFieldConfiguration.php
rename to api/mapas/src/core/Controllers/RegistrationFieldConfiguration.php
diff --git a/src/core/Controllers/RegistrationFileConfiguration.php b/api/mapas/src/core/Controllers/RegistrationFileConfiguration.php
similarity index 100%
rename from src/core/Controllers/RegistrationFileConfiguration.php
rename to api/mapas/src/core/Controllers/RegistrationFileConfiguration.php
diff --git a/src/core/Controllers/Site.php b/api/mapas/src/core/Controllers/Site.php
similarity index 100%
rename from src/core/Controllers/Site.php
rename to api/mapas/src/core/Controllers/Site.php
diff --git a/src/core/Controllers/Space.php b/api/mapas/src/core/Controllers/Space.php
similarity index 100%
rename from src/core/Controllers/Space.php
rename to api/mapas/src/core/Controllers/Space.php
diff --git a/src/core/Controllers/Subsite.php b/api/mapas/src/core/Controllers/Subsite.php
similarity index 100%
rename from src/core/Controllers/Subsite.php
rename to api/mapas/src/core/Controllers/Subsite.php
diff --git a/src/core/Controllers/Term.php b/api/mapas/src/core/Controllers/Term.php
similarity index 100%
rename from src/core/Controllers/Term.php
rename to api/mapas/src/core/Controllers/Term.php
diff --git a/src/core/Controllers/User.php b/api/mapas/src/core/Controllers/User.php
similarity index 100%
rename from src/core/Controllers/User.php
rename to api/mapas/src/core/Controllers/User.php
diff --git a/src/core/Definition.php b/api/mapas/src/core/Definition.php
similarity index 100%
rename from src/core/Definition.php
rename to api/mapas/src/core/Definition.php
diff --git a/src/core/Definitions/ChatThreadType.php b/api/mapas/src/core/Definitions/ChatThreadType.php
similarity index 100%
rename from src/core/Definitions/ChatThreadType.php
rename to api/mapas/src/core/Definitions/ChatThreadType.php
diff --git a/src/core/Definitions/EntityType.php b/api/mapas/src/core/Definitions/EntityType.php
similarity index 100%
rename from src/core/Definitions/EntityType.php
rename to api/mapas/src/core/Definitions/EntityType.php
diff --git a/src/core/Definitions/EntityTypeGroup.php b/api/mapas/src/core/Definitions/EntityTypeGroup.php
similarity index 100%
rename from src/core/Definitions/EntityTypeGroup.php
rename to api/mapas/src/core/Definitions/EntityTypeGroup.php
diff --git a/src/core/Definitions/EvaluationMethod.php b/api/mapas/src/core/Definitions/EvaluationMethod.php
similarity index 100%
rename from src/core/Definitions/EvaluationMethod.php
rename to api/mapas/src/core/Definitions/EvaluationMethod.php
diff --git a/src/core/Definitions/FileGroup.php b/api/mapas/src/core/Definitions/FileGroup.php
similarity index 100%
rename from src/core/Definitions/FileGroup.php
rename to api/mapas/src/core/Definitions/FileGroup.php
diff --git a/src/core/Definitions/JobType.php b/api/mapas/src/core/Definitions/JobType.php
similarity index 100%
rename from src/core/Definitions/JobType.php
rename to api/mapas/src/core/Definitions/JobType.php
diff --git a/src/core/Definitions/MetaListGroup.php b/api/mapas/src/core/Definitions/MetaListGroup.php
similarity index 100%
rename from src/core/Definitions/MetaListGroup.php
rename to api/mapas/src/core/Definitions/MetaListGroup.php
diff --git a/src/core/Definitions/Metadata.php b/api/mapas/src/core/Definitions/Metadata.php
similarity index 100%
rename from src/core/Definitions/Metadata.php
rename to api/mapas/src/core/Definitions/Metadata.php
diff --git a/src/core/Definitions/RegistrationAgentRelation.php b/api/mapas/src/core/Definitions/RegistrationAgentRelation.php
similarity index 100%
rename from src/core/Definitions/RegistrationAgentRelation.php
rename to api/mapas/src/core/Definitions/RegistrationAgentRelation.php
diff --git a/src/core/Definitions/RegistrationFieldType.php b/api/mapas/src/core/Definitions/RegistrationFieldType.php
similarity index 100%
rename from src/core/Definitions/RegistrationFieldType.php
rename to api/mapas/src/core/Definitions/RegistrationFieldType.php
diff --git a/src/core/Definitions/Role.php b/api/mapas/src/core/Definitions/Role.php
similarity index 100%
rename from src/core/Definitions/Role.php
rename to api/mapas/src/core/Definitions/Role.php
diff --git a/src/core/Definitions/Taxonomy.php b/api/mapas/src/core/Definitions/Taxonomy.php
similarity index 100%
rename from src/core/Definitions/Taxonomy.php
rename to api/mapas/src/core/Definitions/Taxonomy.php
diff --git a/src/core/DoctrineEnumType.php b/api/mapas/src/core/DoctrineEnumType.php
similarity index 100%
rename from src/core/DoctrineEnumType.php
rename to api/mapas/src/core/DoctrineEnumType.php
diff --git a/src/core/DoctrineEnumTypes/ObjectType.php b/api/mapas/src/core/DoctrineEnumTypes/ObjectType.php
similarity index 100%
rename from src/core/DoctrineEnumTypes/ObjectType.php
rename to api/mapas/src/core/DoctrineEnumTypes/ObjectType.php
diff --git a/src/core/DoctrineEnumTypes/PermissionAction.php b/api/mapas/src/core/DoctrineEnumTypes/PermissionAction.php
similarity index 100%
rename from src/core/DoctrineEnumTypes/PermissionAction.php
rename to api/mapas/src/core/DoctrineEnumTypes/PermissionAction.php
diff --git a/src/core/DoctrineMappings/Functions/Cast.php b/api/mapas/src/core/DoctrineMappings/Functions/Cast.php
similarity index 100%
rename from src/core/DoctrineMappings/Functions/Cast.php
rename to api/mapas/src/core/DoctrineMappings/Functions/Cast.php
diff --git a/src/core/DoctrineMappings/Functions/RecurringEventOcurrenceFor.php b/api/mapas/src/core/DoctrineMappings/Functions/RecurringEventOcurrenceFor.php
similarity index 100%
rename from src/core/DoctrineMappings/Functions/RecurringEventOcurrenceFor.php
rename to api/mapas/src/core/DoctrineMappings/Functions/RecurringEventOcurrenceFor.php
diff --git a/src/core/DoctrineMappings/Functions/STDWithin.php b/api/mapas/src/core/DoctrineMappings/Functions/STDWithin.php
similarity index 100%
rename from src/core/DoctrineMappings/Functions/STDWithin.php
rename to api/mapas/src/core/DoctrineMappings/Functions/STDWithin.php
diff --git a/src/core/DoctrineMappings/Functions/STEnvelope.php b/api/mapas/src/core/DoctrineMappings/Functions/STEnvelope.php
similarity index 100%
rename from src/core/DoctrineMappings/Functions/STEnvelope.php
rename to api/mapas/src/core/DoctrineMappings/Functions/STEnvelope.php
diff --git a/src/core/DoctrineMappings/Functions/STMakePoint.php b/api/mapas/src/core/DoctrineMappings/Functions/STMakePoint.php
similarity index 100%
rename from src/core/DoctrineMappings/Functions/STMakePoint.php
rename to api/mapas/src/core/DoctrineMappings/Functions/STMakePoint.php
diff --git a/src/core/DoctrineMappings/Functions/STWithin.php b/api/mapas/src/core/DoctrineMappings/Functions/STWithin.php
similarity index 100%
rename from src/core/DoctrineMappings/Functions/STWithin.php
rename to api/mapas/src/core/DoctrineMappings/Functions/STWithin.php
diff --git a/src/core/DoctrineMappings/Functions/StringAgg.php b/api/mapas/src/core/DoctrineMappings/Functions/StringAgg.php
similarity index 100%
rename from src/core/DoctrineMappings/Functions/StringAgg.php
rename to api/mapas/src/core/DoctrineMappings/Functions/StringAgg.php
diff --git a/src/core/DoctrineMappings/Functions/Unaccent.php b/api/mapas/src/core/DoctrineMappings/Functions/Unaccent.php
similarity index 100%
rename from src/core/DoctrineMappings/Functions/Unaccent.php
rename to api/mapas/src/core/DoctrineMappings/Functions/Unaccent.php
diff --git a/src/core/DoctrineMappings/RandomIdGenerator.php b/api/mapas/src/core/DoctrineMappings/RandomIdGenerator.php
similarity index 100%
rename from src/core/DoctrineMappings/RandomIdGenerator.php
rename to api/mapas/src/core/DoctrineMappings/RandomIdGenerator.php
diff --git a/src/core/DoctrineMappings/Types/Frequency.php b/api/mapas/src/core/DoctrineMappings/Types/Frequency.php
similarity index 100%
rename from src/core/DoctrineMappings/Types/Frequency.php
rename to api/mapas/src/core/DoctrineMappings/Types/Frequency.php
diff --git a/src/core/DoctrineMappings/Types/Geography.php b/api/mapas/src/core/DoctrineMappings/Types/Geography.php
similarity index 100%
rename from src/core/DoctrineMappings/Types/Geography.php
rename to api/mapas/src/core/DoctrineMappings/Types/Geography.php
diff --git a/src/core/DoctrineMappings/Types/Geometry.php b/api/mapas/src/core/DoctrineMappings/Types/Geometry.php
similarity index 100%
rename from src/core/DoctrineMappings/Types/Geometry.php
rename to api/mapas/src/core/DoctrineMappings/Types/Geometry.php
diff --git a/src/core/DoctrineMappings/Types/ObjectType.php b/api/mapas/src/core/DoctrineMappings/Types/ObjectType.php
similarity index 100%
rename from src/core/DoctrineMappings/Types/ObjectType.php
rename to api/mapas/src/core/DoctrineMappings/Types/ObjectType.php
diff --git a/src/core/DoctrineMappings/Types/PermissionAction.php b/api/mapas/src/core/DoctrineMappings/Types/PermissionAction.php
similarity index 100%
rename from src/core/DoctrineMappings/Types/PermissionAction.php
rename to api/mapas/src/core/DoctrineMappings/Types/PermissionAction.php
diff --git a/src/core/DoctrineMappings/Types/Point.php b/api/mapas/src/core/DoctrineMappings/Types/Point.php
similarity index 100%
rename from src/core/DoctrineMappings/Types/Point.php
rename to api/mapas/src/core/DoctrineMappings/Types/Point.php
diff --git a/src/core/Entities/Agent.php b/api/mapas/src/core/Entities/Agent.php
similarity index 100%
rename from src/core/Entities/Agent.php
rename to api/mapas/src/core/Entities/Agent.php
diff --git a/src/core/Entities/AgentAgentRelation.php b/api/mapas/src/core/Entities/AgentAgentRelation.php
similarity index 100%
rename from src/core/Entities/AgentAgentRelation.php
rename to api/mapas/src/core/Entities/AgentAgentRelation.php
diff --git a/src/core/Entities/AgentFile.php b/api/mapas/src/core/Entities/AgentFile.php
similarity index 100%
rename from src/core/Entities/AgentFile.php
rename to api/mapas/src/core/Entities/AgentFile.php
diff --git a/src/core/Entities/AgentMeta.php b/api/mapas/src/core/Entities/AgentMeta.php
similarity index 100%
rename from src/core/Entities/AgentMeta.php
rename to api/mapas/src/core/Entities/AgentMeta.php
diff --git a/src/core/Entities/AgentOpportunity.php b/api/mapas/src/core/Entities/AgentOpportunity.php
similarity index 100%
rename from src/core/Entities/AgentOpportunity.php
rename to api/mapas/src/core/Entities/AgentOpportunity.php
diff --git a/src/core/Entities/AgentPermissionCache.php b/api/mapas/src/core/Entities/AgentPermissionCache.php
similarity index 100%
rename from src/core/Entities/AgentPermissionCache.php
rename to api/mapas/src/core/Entities/AgentPermissionCache.php
diff --git a/src/core/Entities/AgentRelation.php b/api/mapas/src/core/Entities/AgentRelation.php
similarity index 100%
rename from src/core/Entities/AgentRelation.php
rename to api/mapas/src/core/Entities/AgentRelation.php
diff --git a/src/core/Entities/AgentSealRelation.php b/api/mapas/src/core/Entities/AgentSealRelation.php
similarity index 100%
rename from src/core/Entities/AgentSealRelation.php
rename to api/mapas/src/core/Entities/AgentSealRelation.php
diff --git a/src/core/Entities/AgentTermRelation.php b/api/mapas/src/core/Entities/AgentTermRelation.php
similarity index 100%
rename from src/core/Entities/AgentTermRelation.php
rename to api/mapas/src/core/Entities/AgentTermRelation.php
diff --git a/src/core/Entities/AuthorityRequest.php b/api/mapas/src/core/Entities/AuthorityRequest.php
similarity index 100%
rename from src/core/Entities/AuthorityRequest.php
rename to api/mapas/src/core/Entities/AuthorityRequest.php
diff --git a/src/core/Entities/ChatMessage.php b/api/mapas/src/core/Entities/ChatMessage.php
similarity index 100%
rename from src/core/Entities/ChatMessage.php
rename to api/mapas/src/core/Entities/ChatMessage.php
diff --git a/src/core/Entities/ChatMessagePermissionCache.php b/api/mapas/src/core/Entities/ChatMessagePermissionCache.php
similarity index 100%
rename from src/core/Entities/ChatMessagePermissionCache.php
rename to api/mapas/src/core/Entities/ChatMessagePermissionCache.php
diff --git a/src/core/Entities/ChatThread.php b/api/mapas/src/core/Entities/ChatThread.php
similarity index 100%
rename from src/core/Entities/ChatThread.php
rename to api/mapas/src/core/Entities/ChatThread.php
diff --git a/src/core/Entities/ChatThreadAgentRelation.php b/api/mapas/src/core/Entities/ChatThreadAgentRelation.php
similarity index 100%
rename from src/core/Entities/ChatThreadAgentRelation.php
rename to api/mapas/src/core/Entities/ChatThreadAgentRelation.php
diff --git a/src/core/Entities/DbUpdate.php b/api/mapas/src/core/Entities/DbUpdate.php
similarity index 100%
rename from src/core/Entities/DbUpdate.php
rename to api/mapas/src/core/Entities/DbUpdate.php
diff --git a/src/core/Entities/EntityRevision.php b/api/mapas/src/core/Entities/EntityRevision.php
similarity index 100%
rename from src/core/Entities/EntityRevision.php
rename to api/mapas/src/core/Entities/EntityRevision.php
diff --git a/src/core/Entities/EntityRevisionData.php b/api/mapas/src/core/Entities/EntityRevisionData.php
similarity index 100%
rename from src/core/Entities/EntityRevisionData.php
rename to api/mapas/src/core/Entities/EntityRevisionData.php
diff --git a/src/core/Entities/EvaluationMethodConfiguration.php b/api/mapas/src/core/Entities/EvaluationMethodConfiguration.php
similarity index 100%
rename from src/core/Entities/EvaluationMethodConfiguration.php
rename to api/mapas/src/core/Entities/EvaluationMethodConfiguration.php
diff --git a/src/core/Entities/EvaluationMethodConfigurationAgentRelation.php b/api/mapas/src/core/Entities/EvaluationMethodConfigurationAgentRelation.php
similarity index 100%
rename from src/core/Entities/EvaluationMethodConfigurationAgentRelation.php
rename to api/mapas/src/core/Entities/EvaluationMethodConfigurationAgentRelation.php
diff --git a/src/core/Entities/EvaluationMethodConfigurationMeta.php b/api/mapas/src/core/Entities/EvaluationMethodConfigurationMeta.php
similarity index 100%
rename from src/core/Entities/EvaluationMethodConfigurationMeta.php
rename to api/mapas/src/core/Entities/EvaluationMethodConfigurationMeta.php
diff --git a/src/core/Entities/EvaluationMethodConfigurationPermissionCache.php b/api/mapas/src/core/Entities/EvaluationMethodConfigurationPermissionCache.php
similarity index 100%
rename from src/core/Entities/EvaluationMethodConfigurationPermissionCache.php
rename to api/mapas/src/core/Entities/EvaluationMethodConfigurationPermissionCache.php
diff --git a/src/core/Entities/Event.php b/api/mapas/src/core/Entities/Event.php
similarity index 100%
rename from src/core/Entities/Event.php
rename to api/mapas/src/core/Entities/Event.php
diff --git a/src/core/Entities/EventAgentRelation.php b/api/mapas/src/core/Entities/EventAgentRelation.php
similarity index 100%
rename from src/core/Entities/EventAgentRelation.php
rename to api/mapas/src/core/Entities/EventAgentRelation.php
diff --git a/src/core/Entities/EventAttendance.php b/api/mapas/src/core/Entities/EventAttendance.php
similarity index 100%
rename from src/core/Entities/EventAttendance.php
rename to api/mapas/src/core/Entities/EventAttendance.php
diff --git a/src/core/Entities/EventFile.php b/api/mapas/src/core/Entities/EventFile.php
similarity index 100%
rename from src/core/Entities/EventFile.php
rename to api/mapas/src/core/Entities/EventFile.php
diff --git a/src/core/Entities/EventMeta.php b/api/mapas/src/core/Entities/EventMeta.php
similarity index 100%
rename from src/core/Entities/EventMeta.php
rename to api/mapas/src/core/Entities/EventMeta.php
diff --git a/src/core/Entities/EventOccurrence.php b/api/mapas/src/core/Entities/EventOccurrence.php
similarity index 100%
rename from src/core/Entities/EventOccurrence.php
rename to api/mapas/src/core/Entities/EventOccurrence.php
diff --git a/src/core/Entities/EventOccurrenceCancellation.php b/api/mapas/src/core/Entities/EventOccurrenceCancellation.php
similarity index 100%
rename from src/core/Entities/EventOccurrenceCancellation.php
rename to api/mapas/src/core/Entities/EventOccurrenceCancellation.php
diff --git a/src/core/Entities/EventOccurrenceRecurrence.php b/api/mapas/src/core/Entities/EventOccurrenceRecurrence.php
similarity index 100%
rename from src/core/Entities/EventOccurrenceRecurrence.php
rename to api/mapas/src/core/Entities/EventOccurrenceRecurrence.php
diff --git a/src/core/Entities/EventOpportunity.php b/api/mapas/src/core/Entities/EventOpportunity.php
similarity index 100%
rename from src/core/Entities/EventOpportunity.php
rename to api/mapas/src/core/Entities/EventOpportunity.php
diff --git a/src/core/Entities/EventPermissionCache.php b/api/mapas/src/core/Entities/EventPermissionCache.php
similarity index 100%
rename from src/core/Entities/EventPermissionCache.php
rename to api/mapas/src/core/Entities/EventPermissionCache.php
diff --git a/src/core/Entities/EventSealRelation.php b/api/mapas/src/core/Entities/EventSealRelation.php
similarity index 100%
rename from src/core/Entities/EventSealRelation.php
rename to api/mapas/src/core/Entities/EventSealRelation.php
diff --git a/src/core/Entities/EventTermRelation.php b/api/mapas/src/core/Entities/EventTermRelation.php
similarity index 100%
rename from src/core/Entities/EventTermRelation.php
rename to api/mapas/src/core/Entities/EventTermRelation.php
diff --git a/src/core/Entities/File.php b/api/mapas/src/core/Entities/File.php
similarity index 100%
rename from src/core/Entities/File.php
rename to api/mapas/src/core/Entities/File.php
diff --git a/src/core/Entities/Job.php b/api/mapas/src/core/Entities/Job.php
similarity index 100%
rename from src/core/Entities/Job.php
rename to api/mapas/src/core/Entities/Job.php
diff --git a/src/core/Entities/MetaList.php b/api/mapas/src/core/Entities/MetaList.php
similarity index 100%
rename from src/core/Entities/MetaList.php
rename to api/mapas/src/core/Entities/MetaList.php
diff --git a/src/core/Entities/Metadata.php b/api/mapas/src/core/Entities/Metadata.php
similarity index 100%
rename from src/core/Entities/Metadata.php
rename to api/mapas/src/core/Entities/Metadata.php
diff --git a/src/core/Entities/Notification.php b/api/mapas/src/core/Entities/Notification.php
similarity index 100%
rename from src/core/Entities/Notification.php
rename to api/mapas/src/core/Entities/Notification.php
diff --git a/src/core/Entities/NotificationMeta.php b/api/mapas/src/core/Entities/NotificationMeta.php
similarity index 100%
rename from src/core/Entities/NotificationMeta.php
rename to api/mapas/src/core/Entities/NotificationMeta.php
diff --git a/src/core/Entities/NotificationPermissionCache.php b/api/mapas/src/core/Entities/NotificationPermissionCache.php
similarity index 100%
rename from src/core/Entities/NotificationPermissionCache.php
rename to api/mapas/src/core/Entities/NotificationPermissionCache.php
diff --git a/src/core/Entities/Opportunity.php b/api/mapas/src/core/Entities/Opportunity.php
similarity index 100%
rename from src/core/Entities/Opportunity.php
rename to api/mapas/src/core/Entities/Opportunity.php
diff --git a/src/core/Entities/OpportunityAgentRelation.php b/api/mapas/src/core/Entities/OpportunityAgentRelation.php
similarity index 100%
rename from src/core/Entities/OpportunityAgentRelation.php
rename to api/mapas/src/core/Entities/OpportunityAgentRelation.php
diff --git a/src/core/Entities/OpportunityFile.php b/api/mapas/src/core/Entities/OpportunityFile.php
similarity index 100%
rename from src/core/Entities/OpportunityFile.php
rename to api/mapas/src/core/Entities/OpportunityFile.php
diff --git a/src/core/Entities/OpportunityMeta.php b/api/mapas/src/core/Entities/OpportunityMeta.php
similarity index 100%
rename from src/core/Entities/OpportunityMeta.php
rename to api/mapas/src/core/Entities/OpportunityMeta.php
diff --git a/src/core/Entities/OpportunityPermissionCache.php b/api/mapas/src/core/Entities/OpportunityPermissionCache.php
similarity index 100%
rename from src/core/Entities/OpportunityPermissionCache.php
rename to api/mapas/src/core/Entities/OpportunityPermissionCache.php
diff --git a/src/core/Entities/OpportunitySealRelation.php b/api/mapas/src/core/Entities/OpportunitySealRelation.php
similarity index 100%
rename from src/core/Entities/OpportunitySealRelation.php
rename to api/mapas/src/core/Entities/OpportunitySealRelation.php
diff --git a/src/core/Entities/OpportunityTermRelation.php b/api/mapas/src/core/Entities/OpportunityTermRelation.php
similarity index 100%
rename from src/core/Entities/OpportunityTermRelation.php
rename to api/mapas/src/core/Entities/OpportunityTermRelation.php
diff --git a/src/core/Entities/PermissionCache.php b/api/mapas/src/core/Entities/PermissionCache.php
similarity index 100%
rename from src/core/Entities/PermissionCache.php
rename to api/mapas/src/core/Entities/PermissionCache.php
diff --git a/src/core/Entities/PermissionCachePending.php b/api/mapas/src/core/Entities/PermissionCachePending.php
similarity index 100%
rename from src/core/Entities/PermissionCachePending.php
rename to api/mapas/src/core/Entities/PermissionCachePending.php
diff --git a/src/core/Entities/Procuration.php b/api/mapas/src/core/Entities/Procuration.php
similarity index 100%
rename from src/core/Entities/Procuration.php
rename to api/mapas/src/core/Entities/Procuration.php
diff --git a/src/core/Entities/Project.php b/api/mapas/src/core/Entities/Project.php
similarity index 100%
rename from src/core/Entities/Project.php
rename to api/mapas/src/core/Entities/Project.php
diff --git a/src/core/Entities/ProjectAgentRelation.php b/api/mapas/src/core/Entities/ProjectAgentRelation.php
similarity index 100%
rename from src/core/Entities/ProjectAgentRelation.php
rename to api/mapas/src/core/Entities/ProjectAgentRelation.php
diff --git a/src/core/Entities/ProjectFile.php b/api/mapas/src/core/Entities/ProjectFile.php
similarity index 100%
rename from src/core/Entities/ProjectFile.php
rename to api/mapas/src/core/Entities/ProjectFile.php
diff --git a/src/core/Entities/ProjectMeta.php b/api/mapas/src/core/Entities/ProjectMeta.php
similarity index 100%
rename from src/core/Entities/ProjectMeta.php
rename to api/mapas/src/core/Entities/ProjectMeta.php
diff --git a/src/core/Entities/ProjectOpportunity.php b/api/mapas/src/core/Entities/ProjectOpportunity.php
similarity index 100%
rename from src/core/Entities/ProjectOpportunity.php
rename to api/mapas/src/core/Entities/ProjectOpportunity.php
diff --git a/src/core/Entities/ProjectPermissionCache.php b/api/mapas/src/core/Entities/ProjectPermissionCache.php
similarity index 100%
rename from src/core/Entities/ProjectPermissionCache.php
rename to api/mapas/src/core/Entities/ProjectPermissionCache.php
diff --git a/src/core/Entities/ProjectSealRelation.php b/api/mapas/src/core/Entities/ProjectSealRelation.php
similarity index 100%
rename from src/core/Entities/ProjectSealRelation.php
rename to api/mapas/src/core/Entities/ProjectSealRelation.php
diff --git a/src/core/Entities/ProjectTermRelation.php b/api/mapas/src/core/Entities/ProjectTermRelation.php
similarity index 100%
rename from src/core/Entities/ProjectTermRelation.php
rename to api/mapas/src/core/Entities/ProjectTermRelation.php
diff --git a/src/core/Entities/Registration.php b/api/mapas/src/core/Entities/Registration.php
similarity index 100%
rename from src/core/Entities/Registration.php
rename to api/mapas/src/core/Entities/Registration.php
diff --git a/src/core/Entities/RegistrationAgentRelation.php b/api/mapas/src/core/Entities/RegistrationAgentRelation.php
similarity index 100%
rename from src/core/Entities/RegistrationAgentRelation.php
rename to api/mapas/src/core/Entities/RegistrationAgentRelation.php
diff --git a/src/core/Entities/RegistrationEvaluation.php b/api/mapas/src/core/Entities/RegistrationEvaluation.php
similarity index 100%
rename from src/core/Entities/RegistrationEvaluation.php
rename to api/mapas/src/core/Entities/RegistrationEvaluation.php
diff --git a/src/core/Entities/RegistrationFieldConfiguration.php b/api/mapas/src/core/Entities/RegistrationFieldConfiguration.php
similarity index 100%
rename from src/core/Entities/RegistrationFieldConfiguration.php
rename to api/mapas/src/core/Entities/RegistrationFieldConfiguration.php
diff --git a/src/core/Entities/RegistrationFile.php b/api/mapas/src/core/Entities/RegistrationFile.php
similarity index 100%
rename from src/core/Entities/RegistrationFile.php
rename to api/mapas/src/core/Entities/RegistrationFile.php
diff --git a/src/core/Entities/RegistrationFileConfiguration.php b/api/mapas/src/core/Entities/RegistrationFileConfiguration.php
similarity index 100%
rename from src/core/Entities/RegistrationFileConfiguration.php
rename to api/mapas/src/core/Entities/RegistrationFileConfiguration.php
diff --git a/src/core/Entities/RegistrationFileConfigurationFile.php b/api/mapas/src/core/Entities/RegistrationFileConfigurationFile.php
similarity index 100%
rename from src/core/Entities/RegistrationFileConfigurationFile.php
rename to api/mapas/src/core/Entities/RegistrationFileConfigurationFile.php
diff --git a/src/core/Entities/RegistrationMeta.php b/api/mapas/src/core/Entities/RegistrationMeta.php
similarity index 100%
rename from src/core/Entities/RegistrationMeta.php
rename to api/mapas/src/core/Entities/RegistrationMeta.php
diff --git a/src/core/Entities/RegistrationPermissionCache.php b/api/mapas/src/core/Entities/RegistrationPermissionCache.php
similarity index 100%
rename from src/core/Entities/RegistrationPermissionCache.php
rename to api/mapas/src/core/Entities/RegistrationPermissionCache.php
diff --git a/src/core/Entities/RegistrationSpaceRelation.php b/api/mapas/src/core/Entities/RegistrationSpaceRelation.php
similarity index 100%
rename from src/core/Entities/RegistrationSpaceRelation.php
rename to api/mapas/src/core/Entities/RegistrationSpaceRelation.php
diff --git a/src/core/Entities/Request.php b/api/mapas/src/core/Entities/Request.php
similarity index 100%
rename from src/core/Entities/Request.php
rename to api/mapas/src/core/Entities/Request.php
diff --git a/src/core/Entities/RequestAgentRelation.php b/api/mapas/src/core/Entities/RequestAgentRelation.php
similarity index 100%
rename from src/core/Entities/RequestAgentRelation.php
rename to api/mapas/src/core/Entities/RequestAgentRelation.php
diff --git a/src/core/Entities/RequestChangeOwnership.php b/api/mapas/src/core/Entities/RequestChangeOwnership.php
similarity index 100%
rename from src/core/Entities/RequestChangeOwnership.php
rename to api/mapas/src/core/Entities/RequestChangeOwnership.php
diff --git a/src/core/Entities/RequestChildEntity.php b/api/mapas/src/core/Entities/RequestChildEntity.php
similarity index 100%
rename from src/core/Entities/RequestChildEntity.php
rename to api/mapas/src/core/Entities/RequestChildEntity.php
diff --git a/src/core/Entities/RequestEntitiesTransference.php b/api/mapas/src/core/Entities/RequestEntitiesTransference.php
similarity index 100%
rename from src/core/Entities/RequestEntitiesTransference.php
rename to api/mapas/src/core/Entities/RequestEntitiesTransference.php
diff --git a/src/core/Entities/RequestEventOccurrence.php b/api/mapas/src/core/Entities/RequestEventOccurrence.php
similarity index 100%
rename from src/core/Entities/RequestEventOccurrence.php
rename to api/mapas/src/core/Entities/RequestEventOccurrence.php
diff --git a/src/core/Entities/RequestEventProject.php b/api/mapas/src/core/Entities/RequestEventProject.php
similarity index 100%
rename from src/core/Entities/RequestEventProject.php
rename to api/mapas/src/core/Entities/RequestEventProject.php
diff --git a/src/core/Entities/RequestPermissionCache.php b/api/mapas/src/core/Entities/RequestPermissionCache.php
similarity index 100%
rename from src/core/Entities/RequestPermissionCache.php
rename to api/mapas/src/core/Entities/RequestPermissionCache.php
diff --git a/src/core/Entities/RequestSealRelation.php b/api/mapas/src/core/Entities/RequestSealRelation.php
similarity index 100%
rename from src/core/Entities/RequestSealRelation.php
rename to api/mapas/src/core/Entities/RequestSealRelation.php
diff --git a/src/core/Entities/RequestSpaceRelation.php b/api/mapas/src/core/Entities/RequestSpaceRelation.php
similarity index 100%
rename from src/core/Entities/RequestSpaceRelation.php
rename to api/mapas/src/core/Entities/RequestSpaceRelation.php
diff --git a/src/core/Entities/Role.php b/api/mapas/src/core/Entities/Role.php
similarity index 100%
rename from src/core/Entities/Role.php
rename to api/mapas/src/core/Entities/Role.php
diff --git a/src/core/Entities/Seal.php b/api/mapas/src/core/Entities/Seal.php
similarity index 100%
rename from src/core/Entities/Seal.php
rename to api/mapas/src/core/Entities/Seal.php
diff --git a/src/core/Entities/SealAgentRelation.php b/api/mapas/src/core/Entities/SealAgentRelation.php
similarity index 100%
rename from src/core/Entities/SealAgentRelation.php
rename to api/mapas/src/core/Entities/SealAgentRelation.php
diff --git a/src/core/Entities/SealFile.php b/api/mapas/src/core/Entities/SealFile.php
similarity index 100%
rename from src/core/Entities/SealFile.php
rename to api/mapas/src/core/Entities/SealFile.php
diff --git a/src/core/Entities/SealMeta.php b/api/mapas/src/core/Entities/SealMeta.php
similarity index 100%
rename from src/core/Entities/SealMeta.php
rename to api/mapas/src/core/Entities/SealMeta.php
diff --git a/src/core/Entities/SealPermissionCache.php b/api/mapas/src/core/Entities/SealPermissionCache.php
similarity index 100%
rename from src/core/Entities/SealPermissionCache.php
rename to api/mapas/src/core/Entities/SealPermissionCache.php
diff --git a/src/core/Entities/SealRelation.php b/api/mapas/src/core/Entities/SealRelation.php
similarity index 100%
rename from src/core/Entities/SealRelation.php
rename to api/mapas/src/core/Entities/SealRelation.php
diff --git a/src/core/Entities/Space.php b/api/mapas/src/core/Entities/Space.php
similarity index 100%
rename from src/core/Entities/Space.php
rename to api/mapas/src/core/Entities/Space.php
diff --git a/src/core/Entities/SpaceAgentRelation.php b/api/mapas/src/core/Entities/SpaceAgentRelation.php
similarity index 100%
rename from src/core/Entities/SpaceAgentRelation.php
rename to api/mapas/src/core/Entities/SpaceAgentRelation.php
diff --git a/src/core/Entities/SpaceFile.php b/api/mapas/src/core/Entities/SpaceFile.php
similarity index 100%
rename from src/core/Entities/SpaceFile.php
rename to api/mapas/src/core/Entities/SpaceFile.php
diff --git a/src/core/Entities/SpaceMeta.php b/api/mapas/src/core/Entities/SpaceMeta.php
similarity index 100%
rename from src/core/Entities/SpaceMeta.php
rename to api/mapas/src/core/Entities/SpaceMeta.php
diff --git a/src/core/Entities/SpaceOpportunity.php b/api/mapas/src/core/Entities/SpaceOpportunity.php
similarity index 100%
rename from src/core/Entities/SpaceOpportunity.php
rename to api/mapas/src/core/Entities/SpaceOpportunity.php
diff --git a/src/core/Entities/SpacePermissionCache.php b/api/mapas/src/core/Entities/SpacePermissionCache.php
similarity index 100%
rename from src/core/Entities/SpacePermissionCache.php
rename to api/mapas/src/core/Entities/SpacePermissionCache.php
diff --git a/src/core/Entities/SpaceRelation.php b/api/mapas/src/core/Entities/SpaceRelation.php
similarity index 100%
rename from src/core/Entities/SpaceRelation.php
rename to api/mapas/src/core/Entities/SpaceRelation.php
diff --git a/src/core/Entities/SpaceSealRelation.php b/api/mapas/src/core/Entities/SpaceSealRelation.php
similarity index 100%
rename from src/core/Entities/SpaceSealRelation.php
rename to api/mapas/src/core/Entities/SpaceSealRelation.php
diff --git a/src/core/Entities/SpaceTermRelation.php b/api/mapas/src/core/Entities/SpaceTermRelation.php
similarity index 100%
rename from src/core/Entities/SpaceTermRelation.php
rename to api/mapas/src/core/Entities/SpaceTermRelation.php
diff --git a/src/core/Entities/Subsite.php b/api/mapas/src/core/Entities/Subsite.php
similarity index 100%
rename from src/core/Entities/Subsite.php
rename to api/mapas/src/core/Entities/Subsite.php
diff --git a/src/core/Entities/SubsiteFile.php b/api/mapas/src/core/Entities/SubsiteFile.php
similarity index 100%
rename from src/core/Entities/SubsiteFile.php
rename to api/mapas/src/core/Entities/SubsiteFile.php
diff --git a/src/core/Entities/SubsiteMeta.php b/api/mapas/src/core/Entities/SubsiteMeta.php
similarity index 100%
rename from src/core/Entities/SubsiteMeta.php
rename to api/mapas/src/core/Entities/SubsiteMeta.php
diff --git a/src/core/Entities/Term.php b/api/mapas/src/core/Entities/Term.php
similarity index 100%
rename from src/core/Entities/Term.php
rename to api/mapas/src/core/Entities/Term.php
diff --git a/src/core/Entities/TermRelation.php b/api/mapas/src/core/Entities/TermRelation.php
similarity index 100%
rename from src/core/Entities/TermRelation.php
rename to api/mapas/src/core/Entities/TermRelation.php
diff --git a/src/core/Entities/User.php b/api/mapas/src/core/Entities/User.php
similarity index 100%
rename from src/core/Entities/User.php
rename to api/mapas/src/core/Entities/User.php
diff --git a/src/core/Entities/UserMeta.php b/api/mapas/src/core/Entities/UserMeta.php
similarity index 100%
rename from src/core/Entities/UserMeta.php
rename to api/mapas/src/core/Entities/UserMeta.php
diff --git a/src/core/Entities/UserPermissionCache.php b/api/mapas/src/core/Entities/UserPermissionCache.php
similarity index 100%
rename from src/core/Entities/UserPermissionCache.php
rename to api/mapas/src/core/Entities/UserPermissionCache.php
diff --git a/src/core/Entity.php b/api/mapas/src/core/Entity.php
similarity index 100%
rename from src/core/Entity.php
rename to api/mapas/src/core/Entity.php
diff --git a/src/core/ErrorHandler.php b/api/mapas/src/core/ErrorHandler.php
similarity index 100%
rename from src/core/ErrorHandler.php
rename to api/mapas/src/core/ErrorHandler.php
diff --git a/src/core/ErrorRender.php b/api/mapas/src/core/ErrorRender.php
similarity index 100%
rename from src/core/ErrorRender.php
rename to api/mapas/src/core/ErrorRender.php
diff --git a/src/core/EvaluationMethod.php b/api/mapas/src/core/EvaluationMethod.php
similarity index 100%
rename from src/core/EvaluationMethod.php
rename to api/mapas/src/core/EvaluationMethod.php
diff --git a/src/core/Exceptions/Api/InvalidArgument.php b/api/mapas/src/core/Exceptions/Api/InvalidArgument.php
similarity index 100%
rename from src/core/Exceptions/Api/InvalidArgument.php
rename to api/mapas/src/core/Exceptions/Api/InvalidArgument.php
diff --git a/src/core/Exceptions/Api/InvalidExpression.php b/api/mapas/src/core/Exceptions/Api/InvalidExpression.php
similarity index 100%
rename from src/core/Exceptions/Api/InvalidExpression.php
rename to api/mapas/src/core/Exceptions/Api/InvalidExpression.php
diff --git a/src/core/Exceptions/Api/PropertyDoesNotExists.php b/api/mapas/src/core/Exceptions/Api/PropertyDoesNotExists.php
similarity index 100%
rename from src/core/Exceptions/Api/PropertyDoesNotExists.php
rename to api/mapas/src/core/Exceptions/Api/PropertyDoesNotExists.php
diff --git a/src/core/Exceptions/BadRequest.php b/api/mapas/src/core/Exceptions/BadRequest.php
similarity index 100%
rename from src/core/Exceptions/BadRequest.php
rename to api/mapas/src/core/Exceptions/BadRequest.php
diff --git a/src/core/Exceptions/FileUploadError.php b/api/mapas/src/core/Exceptions/FileUploadError.php
similarity index 100%
rename from src/core/Exceptions/FileUploadError.php
rename to api/mapas/src/core/Exceptions/FileUploadError.php
diff --git a/src/core/Exceptions/Halt.php b/api/mapas/src/core/Exceptions/Halt.php
similarity index 100%
rename from src/core/Exceptions/Halt.php
rename to api/mapas/src/core/Exceptions/Halt.php
diff --git a/src/core/Exceptions/MailTemplateNotFound.php b/api/mapas/src/core/Exceptions/MailTemplateNotFound.php
similarity index 100%
rename from src/core/Exceptions/MailTemplateNotFound.php
rename to api/mapas/src/core/Exceptions/MailTemplateNotFound.php
diff --git a/src/core/Exceptions/NotFound.php b/api/mapas/src/core/Exceptions/NotFound.php
similarity index 100%
rename from src/core/Exceptions/NotFound.php
rename to api/mapas/src/core/Exceptions/NotFound.php
diff --git a/src/core/Exceptions/PermissionDenied.php b/api/mapas/src/core/Exceptions/PermissionDenied.php
similarity index 100%
rename from src/core/Exceptions/PermissionDenied.php
rename to api/mapas/src/core/Exceptions/PermissionDenied.php
diff --git a/src/core/Exceptions/WorkflowRequest.php b/api/mapas/src/core/Exceptions/WorkflowRequest.php
similarity index 100%
rename from src/core/Exceptions/WorkflowRequest.php
rename to api/mapas/src/core/Exceptions/WorkflowRequest.php
diff --git a/src/core/Exceptions/WorkflowRequestTransport.php b/api/mapas/src/core/Exceptions/WorkflowRequestTransport.php
similarity index 100%
rename from src/core/Exceptions/WorkflowRequestTransport.php
rename to api/mapas/src/core/Exceptions/WorkflowRequestTransport.php
diff --git a/src/core/GuestUser.php b/api/mapas/src/core/GuestUser.php
similarity index 100%
rename from src/core/GuestUser.php
rename to api/mapas/src/core/GuestUser.php
diff --git a/src/core/Hooks.php b/api/mapas/src/core/Hooks.php
similarity index 100%
rename from src/core/Hooks.php
rename to api/mapas/src/core/Hooks.php
diff --git a/src/core/JobTypes/ReopenEvaluations.php b/api/mapas/src/core/JobTypes/ReopenEvaluations.php
similarity index 100%
rename from src/core/JobTypes/ReopenEvaluations.php
rename to api/mapas/src/core/JobTypes/ReopenEvaluations.php
diff --git a/src/core/Middlewares/ExecutionTime.php b/api/mapas/src/core/Middlewares/ExecutionTime.php
similarity index 100%
rename from src/core/Middlewares/ExecutionTime.php
rename to api/mapas/src/core/Middlewares/ExecutionTime.php
diff --git a/src/core/Module.php b/api/mapas/src/core/Module.php
similarity index 100%
rename from src/core/Module.php
rename to api/mapas/src/core/Module.php
diff --git a/src/core/Plugin.php b/api/mapas/src/core/Plugin.php
similarity index 100%
rename from src/core/Plugin.php
rename to api/mapas/src/core/Plugin.php
diff --git a/src/core/QueryLogger.php b/api/mapas/src/core/QueryLogger.php
similarity index 100%
rename from src/core/QueryLogger.php
rename to api/mapas/src/core/QueryLogger.php
diff --git a/src/core/Repositories/Agent.php b/api/mapas/src/core/Repositories/Agent.php
similarity index 100%
rename from src/core/Repositories/Agent.php
rename to api/mapas/src/core/Repositories/Agent.php
diff --git a/src/core/Repositories/EntityRevision.php b/api/mapas/src/core/Repositories/EntityRevision.php
similarity index 100%
rename from src/core/Repositories/EntityRevision.php
rename to api/mapas/src/core/Repositories/EntityRevision.php
diff --git a/src/core/Repositories/Event.php b/api/mapas/src/core/Repositories/Event.php
similarity index 100%
rename from src/core/Repositories/Event.php
rename to api/mapas/src/core/Repositories/Event.php
diff --git a/src/core/Repositories/EventOccurrence.php b/api/mapas/src/core/Repositories/EventOccurrence.php
similarity index 100%
rename from src/core/Repositories/EventOccurrence.php
rename to api/mapas/src/core/Repositories/EventOccurrence.php
diff --git a/src/core/Repositories/File.php b/api/mapas/src/core/Repositories/File.php
similarity index 100%
rename from src/core/Repositories/File.php
rename to api/mapas/src/core/Repositories/File.php
diff --git a/src/core/Repositories/MetaList.php b/api/mapas/src/core/Repositories/MetaList.php
similarity index 100%
rename from src/core/Repositories/MetaList.php
rename to api/mapas/src/core/Repositories/MetaList.php
diff --git a/src/core/Repositories/Notification.php b/api/mapas/src/core/Repositories/Notification.php
similarity index 100%
rename from src/core/Repositories/Notification.php
rename to api/mapas/src/core/Repositories/Notification.php
diff --git a/src/core/Repositories/Opportunity.php b/api/mapas/src/core/Repositories/Opportunity.php
similarity index 100%
rename from src/core/Repositories/Opportunity.php
rename to api/mapas/src/core/Repositories/Opportunity.php
diff --git a/src/core/Repositories/Project.php b/api/mapas/src/core/Repositories/Project.php
similarity index 100%
rename from src/core/Repositories/Project.php
rename to api/mapas/src/core/Repositories/Project.php
diff --git a/src/core/Repositories/Registration.php b/api/mapas/src/core/Repositories/Registration.php
similarity index 100%
rename from src/core/Repositories/Registration.php
rename to api/mapas/src/core/Repositories/Registration.php
diff --git a/src/core/Repositories/RegistrationEvaluation.php b/api/mapas/src/core/Repositories/RegistrationEvaluation.php
similarity index 100%
rename from src/core/Repositories/RegistrationEvaluation.php
rename to api/mapas/src/core/Repositories/RegistrationEvaluation.php
diff --git a/src/core/Repositories/RequestEventOccurrence.php b/api/mapas/src/core/Repositories/RequestEventOccurrence.php
similarity index 100%
rename from src/core/Repositories/RequestEventOccurrence.php
rename to api/mapas/src/core/Repositories/RequestEventOccurrence.php
diff --git a/src/core/Repositories/Seal.php b/api/mapas/src/core/Repositories/Seal.php
similarity index 100%
rename from src/core/Repositories/Seal.php
rename to api/mapas/src/core/Repositories/Seal.php
diff --git a/src/core/Repositories/Space.php b/api/mapas/src/core/Repositories/Space.php
similarity index 100%
rename from src/core/Repositories/Space.php
rename to api/mapas/src/core/Repositories/Space.php
diff --git a/src/core/Repositories/Subsite.php b/api/mapas/src/core/Repositories/Subsite.php
similarity index 100%
rename from src/core/Repositories/Subsite.php
rename to api/mapas/src/core/Repositories/Subsite.php
diff --git a/src/core/Repositories/Term.php b/api/mapas/src/core/Repositories/Term.php
similarity index 100%
rename from src/core/Repositories/Term.php
rename to api/mapas/src/core/Repositories/Term.php
diff --git a/src/core/Repositories/User.php b/api/mapas/src/core/Repositories/User.php
similarity index 100%
rename from src/core/Repositories/User.php
rename to api/mapas/src/core/Repositories/User.php
diff --git a/src/core/Repository.php b/api/mapas/src/core/Repository.php
similarity index 100%
rename from src/core/Repository.php
rename to api/mapas/src/core/Repository.php
diff --git a/src/core/Request.php b/api/mapas/src/core/Request.php
similarity index 100%
rename from src/core/Request.php
rename to api/mapas/src/core/Request.php
diff --git a/src/core/RoutesManager.php b/api/mapas/src/core/RoutesManager.php
similarity index 100%
rename from src/core/RoutesManager.php
rename to api/mapas/src/core/RoutesManager.php
diff --git a/src/core/Storage.php b/api/mapas/src/core/Storage.php
similarity index 100%
rename from src/core/Storage.php
rename to api/mapas/src/core/Storage.php
diff --git a/src/core/Storage/FileSystem.php b/api/mapas/src/core/Storage/FileSystem.php
similarity index 100%
rename from src/core/Storage/FileSystem.php
rename to api/mapas/src/core/Storage/FileSystem.php
diff --git a/src/core/Theme.php b/api/mapas/src/core/Theme.php
similarity index 100%
rename from src/core/Theme.php
rename to api/mapas/src/core/Theme.php
diff --git a/src/core/Traits/ControllerAPI.php b/api/mapas/src/core/Traits/ControllerAPI.php
similarity index 100%
rename from src/core/Traits/ControllerAPI.php
rename to api/mapas/src/core/Traits/ControllerAPI.php
diff --git a/src/core/Traits/ControllerAPINested.php b/api/mapas/src/core/Traits/ControllerAPINested.php
similarity index 100%
rename from src/core/Traits/ControllerAPINested.php
rename to api/mapas/src/core/Traits/ControllerAPINested.php
diff --git a/src/core/Traits/ControllerAgentRelation.php b/api/mapas/src/core/Traits/ControllerAgentRelation.php
similarity index 100%
rename from src/core/Traits/ControllerAgentRelation.php
rename to api/mapas/src/core/Traits/ControllerAgentRelation.php
diff --git a/src/core/Traits/ControllerApiV2.php b/api/mapas/src/core/Traits/ControllerApiV2.php
similarity index 100%
rename from src/core/Traits/ControllerApiV2.php
rename to api/mapas/src/core/Traits/ControllerApiV2.php
diff --git a/src/core/Traits/ControllerArchive.php b/api/mapas/src/core/Traits/ControllerArchive.php
similarity index 100%
rename from src/core/Traits/ControllerArchive.php
rename to api/mapas/src/core/Traits/ControllerArchive.php
diff --git a/src/core/Traits/ControllerChangeOwner.php b/api/mapas/src/core/Traits/ControllerChangeOwner.php
similarity index 100%
rename from src/core/Traits/ControllerChangeOwner.php
rename to api/mapas/src/core/Traits/ControllerChangeOwner.php
diff --git a/src/core/Traits/ControllerDraft.php b/api/mapas/src/core/Traits/ControllerDraft.php
similarity index 100%
rename from src/core/Traits/ControllerDraft.php
rename to api/mapas/src/core/Traits/ControllerDraft.php
diff --git a/src/core/Traits/ControllerEntity.php b/api/mapas/src/core/Traits/ControllerEntity.php
similarity index 100%
rename from src/core/Traits/ControllerEntity.php
rename to api/mapas/src/core/Traits/ControllerEntity.php
diff --git a/src/core/Traits/ControllerEntityActions.php b/api/mapas/src/core/Traits/ControllerEntityActions.php
similarity index 100%
rename from src/core/Traits/ControllerEntityActions.php
rename to api/mapas/src/core/Traits/ControllerEntityActions.php
diff --git a/src/core/Traits/ControllerEntityViews.php b/api/mapas/src/core/Traits/ControllerEntityViews.php
similarity index 100%
rename from src/core/Traits/ControllerEntityViews.php
rename to api/mapas/src/core/Traits/ControllerEntityViews.php
diff --git a/src/core/Traits/ControllerMetaLists.php b/api/mapas/src/core/Traits/ControllerMetaLists.php
similarity index 100%
rename from src/core/Traits/ControllerMetaLists.php
rename to api/mapas/src/core/Traits/ControllerMetaLists.php
diff --git a/src/core/Traits/ControllerOpportunities.php b/api/mapas/src/core/Traits/ControllerOpportunities.php
similarity index 100%
rename from src/core/Traits/ControllerOpportunities.php
rename to api/mapas/src/core/Traits/ControllerOpportunities.php
diff --git a/src/core/Traits/ControllerSealRelation.php b/api/mapas/src/core/Traits/ControllerSealRelation.php
similarity index 100%
rename from src/core/Traits/ControllerSealRelation.php
rename to api/mapas/src/core/Traits/ControllerSealRelation.php
diff --git a/src/core/Traits/ControllerSoftDelete.php b/api/mapas/src/core/Traits/ControllerSoftDelete.php
similarity index 100%
rename from src/core/Traits/ControllerSoftDelete.php
rename to api/mapas/src/core/Traits/ControllerSoftDelete.php
diff --git a/src/core/Traits/ControllerSubSiteAdmin.php b/api/mapas/src/core/Traits/ControllerSubSiteAdmin.php
similarity index 100%
rename from src/core/Traits/ControllerSubSiteAdmin.php
rename to api/mapas/src/core/Traits/ControllerSubSiteAdmin.php
diff --git a/src/core/Traits/ControllerTypes.php b/api/mapas/src/core/Traits/ControllerTypes.php
similarity index 100%
rename from src/core/Traits/ControllerTypes.php
rename to api/mapas/src/core/Traits/ControllerTypes.php
diff --git a/src/core/Traits/ControllerUploads.php b/api/mapas/src/core/Traits/ControllerUploads.php
similarity index 100%
rename from src/core/Traits/ControllerUploads.php
rename to api/mapas/src/core/Traits/ControllerUploads.php
diff --git a/src/core/Traits/EntityAgentRelation.php b/api/mapas/src/core/Traits/EntityAgentRelation.php
similarity index 100%
rename from src/core/Traits/EntityAgentRelation.php
rename to api/mapas/src/core/Traits/EntityAgentRelation.php
diff --git a/src/core/Traits/EntityArchive.php b/api/mapas/src/core/Traits/EntityArchive.php
similarity index 100%
rename from src/core/Traits/EntityArchive.php
rename to api/mapas/src/core/Traits/EntityArchive.php
diff --git a/src/core/Traits/EntityAvatar.php b/api/mapas/src/core/Traits/EntityAvatar.php
similarity index 100%
rename from src/core/Traits/EntityAvatar.php
rename to api/mapas/src/core/Traits/EntityAvatar.php
diff --git a/src/core/Traits/EntityDraft.php b/api/mapas/src/core/Traits/EntityDraft.php
similarity index 100%
rename from src/core/Traits/EntityDraft.php
rename to api/mapas/src/core/Traits/EntityDraft.php
diff --git a/src/core/Traits/EntityFiles.php b/api/mapas/src/core/Traits/EntityFiles.php
similarity index 100%
rename from src/core/Traits/EntityFiles.php
rename to api/mapas/src/core/Traits/EntityFiles.php
diff --git a/src/core/Traits/EntityGeoLocation.php b/api/mapas/src/core/Traits/EntityGeoLocation.php
similarity index 100%
rename from src/core/Traits/EntityGeoLocation.php
rename to api/mapas/src/core/Traits/EntityGeoLocation.php
diff --git a/src/core/Traits/EntityMetaLists.php b/api/mapas/src/core/Traits/EntityMetaLists.php
similarity index 100%
rename from src/core/Traits/EntityMetaLists.php
rename to api/mapas/src/core/Traits/EntityMetaLists.php
diff --git a/src/core/Traits/EntityMetadata.php b/api/mapas/src/core/Traits/EntityMetadata.php
similarity index 100%
rename from src/core/Traits/EntityMetadata.php
rename to api/mapas/src/core/Traits/EntityMetadata.php
diff --git a/src/core/Traits/EntityNested.php b/api/mapas/src/core/Traits/EntityNested.php
similarity index 100%
rename from src/core/Traits/EntityNested.php
rename to api/mapas/src/core/Traits/EntityNested.php
diff --git a/src/core/Traits/EntityOpportunities.php b/api/mapas/src/core/Traits/EntityOpportunities.php
similarity index 100%
rename from src/core/Traits/EntityOpportunities.php
rename to api/mapas/src/core/Traits/EntityOpportunities.php
diff --git a/src/core/Traits/EntityOriginSubsite.php b/api/mapas/src/core/Traits/EntityOriginSubsite.php
similarity index 100%
rename from src/core/Traits/EntityOriginSubsite.php
rename to api/mapas/src/core/Traits/EntityOriginSubsite.php
diff --git a/src/core/Traits/EntityOwnerAgent.php b/api/mapas/src/core/Traits/EntityOwnerAgent.php
similarity index 100%
rename from src/core/Traits/EntityOwnerAgent.php
rename to api/mapas/src/core/Traits/EntityOwnerAgent.php
diff --git a/src/core/Traits/EntityPermissionCache.php b/api/mapas/src/core/Traits/EntityPermissionCache.php
similarity index 100%
rename from src/core/Traits/EntityPermissionCache.php
rename to api/mapas/src/core/Traits/EntityPermissionCache.php
diff --git a/src/core/Traits/EntityRevision.php b/api/mapas/src/core/Traits/EntityRevision.php
similarity index 100%
rename from src/core/Traits/EntityRevision.php
rename to api/mapas/src/core/Traits/EntityRevision.php
diff --git a/src/core/Traits/EntitySealRelation.php b/api/mapas/src/core/Traits/EntitySealRelation.php
similarity index 100%
rename from src/core/Traits/EntitySealRelation.php
rename to api/mapas/src/core/Traits/EntitySealRelation.php
diff --git a/src/core/Traits/EntitySoftDelete.php b/api/mapas/src/core/Traits/EntitySoftDelete.php
similarity index 100%
rename from src/core/Traits/EntitySoftDelete.php
rename to api/mapas/src/core/Traits/EntitySoftDelete.php
diff --git a/src/core/Traits/EntityTaxonomies.php b/api/mapas/src/core/Traits/EntityTaxonomies.php
similarity index 100%
rename from src/core/Traits/EntityTaxonomies.php
rename to api/mapas/src/core/Traits/EntityTaxonomies.php
diff --git a/src/core/Traits/EntityTypes.php b/api/mapas/src/core/Traits/EntityTypes.php
similarity index 100%
rename from src/core/Traits/EntityTypes.php
rename to api/mapas/src/core/Traits/EntityTypes.php
diff --git a/src/core/Traits/MagicCallers.php b/api/mapas/src/core/Traits/MagicCallers.php
similarity index 100%
rename from src/core/Traits/MagicCallers.php
rename to api/mapas/src/core/Traits/MagicCallers.php
diff --git a/src/core/Traits/MagicGetter.php b/api/mapas/src/core/Traits/MagicGetter.php
similarity index 100%
rename from src/core/Traits/MagicGetter.php
rename to api/mapas/src/core/Traits/MagicGetter.php
diff --git a/src/core/Traits/MagicSetter.php b/api/mapas/src/core/Traits/MagicSetter.php
similarity index 100%
rename from src/core/Traits/MagicSetter.php
rename to api/mapas/src/core/Traits/MagicSetter.php
diff --git a/src/core/Traits/RegisterFunctions.php b/api/mapas/src/core/Traits/RegisterFunctions.php
similarity index 100%
rename from src/core/Traits/RegisterFunctions.php
rename to api/mapas/src/core/Traits/RegisterFunctions.php
diff --git a/src/core/Traits/RepositoryAgentRelation.php b/api/mapas/src/core/Traits/RepositoryAgentRelation.php
similarity index 100%
rename from src/core/Traits/RepositoryAgentRelation.php
rename to api/mapas/src/core/Traits/RepositoryAgentRelation.php
diff --git a/src/core/Traits/RepositoryKeyword.php b/api/mapas/src/core/Traits/RepositoryKeyword.php
similarity index 100%
rename from src/core/Traits/RepositoryKeyword.php
rename to api/mapas/src/core/Traits/RepositoryKeyword.php
diff --git a/src/core/Traits/Singleton.php b/api/mapas/src/core/Traits/Singleton.php
similarity index 100%
rename from src/core/Traits/Singleton.php
rename to api/mapas/src/core/Traits/Singleton.php
diff --git a/src/core/Types/GeoPoint.php b/api/mapas/src/core/Types/GeoPoint.php
similarity index 100%
rename from src/core/Types/GeoPoint.php
rename to api/mapas/src/core/Types/GeoPoint.php
diff --git a/src/core/UserInterface.php b/api/mapas/src/core/UserInterface.php
similarity index 100%
rename from src/core/UserInterface.php
rename to api/mapas/src/core/UserInterface.php
diff --git a/src/core/Utils.php b/api/mapas/src/core/Utils.php
similarity index 100%
rename from src/core/Utils.php
rename to api/mapas/src/core/Utils.php
diff --git a/src/core/Validators/Exceptions/BrCurrencyException.php b/api/mapas/src/core/Validators/Exceptions/BrCurrencyException.php
similarity index 100%
rename from src/core/Validators/Exceptions/BrCurrencyException.php
rename to api/mapas/src/core/Validators/Exceptions/BrCurrencyException.php
diff --git a/src/core/Validators/Exceptions/BrPhoneException.php b/api/mapas/src/core/Validators/Exceptions/BrPhoneException.php
similarity index 100%
rename from src/core/Validators/Exceptions/BrPhoneException.php
rename to api/mapas/src/core/Validators/Exceptions/BrPhoneException.php
diff --git a/src/core/Validators/Exceptions/UrlDomainException.php b/api/mapas/src/core/Validators/Exceptions/UrlDomainException.php
similarity index 100%
rename from src/core/Validators/Exceptions/UrlDomainException.php
rename to api/mapas/src/core/Validators/Exceptions/UrlDomainException.php
diff --git a/src/core/Validators/Rules/BrCurrency.php b/api/mapas/src/core/Validators/Rules/BrCurrency.php
similarity index 100%
rename from src/core/Validators/Rules/BrCurrency.php
rename to api/mapas/src/core/Validators/Rules/BrCurrency.php
diff --git a/src/core/Validators/Rules/BrPhone.php b/api/mapas/src/core/Validators/Rules/BrPhone.php
similarity index 100%
rename from src/core/Validators/Rules/BrPhone.php
rename to api/mapas/src/core/Validators/Rules/BrPhone.php
diff --git a/src/core/Validators/Rules/UrlDomain.php b/api/mapas/src/core/Validators/Rules/UrlDomain.php
similarity index 100%
rename from src/core/Validators/Rules/UrlDomain.php
rename to api/mapas/src/core/Validators/Rules/UrlDomain.php
diff --git a/src/core/i.php b/api/mapas/src/core/i.php
similarity index 100%
rename from src/core/i.php
rename to api/mapas/src/core/i.php
diff --git a/src/cypress.config.js b/api/mapas/src/cypress.config.js
similarity index 100%
rename from src/cypress.config.js
rename to api/mapas/src/cypress.config.js
diff --git a/src/cypress/.eslintrc.js b/api/mapas/src/cypress/.eslintrc.js
similarity index 100%
rename from src/cypress/.eslintrc.js
rename to api/mapas/src/cypress/.eslintrc.js
diff --git a/src/cypress/.gitignore b/api/mapas/src/cypress/.gitignore
similarity index 100%
rename from src/cypress/.gitignore
rename to api/mapas/src/cypress/.gitignore
diff --git a/src/cypress/README.md b/api/mapas/src/cypress/README.md
similarity index 100%
rename from src/cypress/README.md
rename to api/mapas/src/cypress/README.md
diff --git a/src/cypress/commands/backFaqPage.js b/api/mapas/src/cypress/commands/backFaqPage.js
similarity index 100%
rename from src/cypress/commands/backFaqPage.js
rename to api/mapas/src/cypress/commands/backFaqPage.js
diff --git a/src/cypress/commands/backHomepage.js b/api/mapas/src/cypress/commands/backHomepage.js
similarity index 100%
rename from src/cypress/commands/backHomepage.js
rename to api/mapas/src/cypress/commands/backHomepage.js
diff --git a/src/cypress/commands/backHomepageCompact.js b/api/mapas/src/cypress/commands/backHomepageCompact.js
similarity index 100%
rename from src/cypress/commands/backHomepageCompact.js
rename to api/mapas/src/cypress/commands/backHomepageCompact.js
diff --git a/src/cypress/commands/checkFilterCountOf.js b/api/mapas/src/cypress/commands/checkFilterCountOf.js
similarity index 100%
rename from src/cypress/commands/checkFilterCountOf.js
rename to api/mapas/src/cypress/commands/checkFilterCountOf.js
diff --git a/src/cypress/commands/clearAllFilters.js b/api/mapas/src/cypress/commands/clearAllFilters.js
similarity index 100%
rename from src/cypress/commands/clearAllFilters.js
rename to api/mapas/src/cypress/commands/clearAllFilters.js
diff --git a/src/cypress/commands/footer.js b/api/mapas/src/cypress/commands/footer.js
similarity index 100%
rename from src/cypress/commands/footer.js
rename to api/mapas/src/cypress/commands/footer.js
diff --git a/src/cypress/commands/genCPF.js b/api/mapas/src/cypress/commands/genCPF.js
similarity index 100%
rename from src/cypress/commands/genCPF.js
rename to api/mapas/src/cypress/commands/genCPF.js
diff --git a/src/cypress/commands/genString.js b/api/mapas/src/cypress/commands/genString.js
similarity index 100%
rename from src/cypress/commands/genString.js
rename to api/mapas/src/cypress/commands/genString.js
diff --git a/src/cypress/commands/login.js b/api/mapas/src/cypress/commands/login.js
similarity index 100%
rename from src/cypress/commands/login.js
rename to api/mapas/src/cypress/commands/login.js
diff --git a/src/cypress/commands/recaptcha.js b/api/mapas/src/cypress/commands/recaptcha.js
similarity index 100%
rename from src/cypress/commands/recaptcha.js
rename to api/mapas/src/cypress/commands/recaptcha.js
diff --git a/src/cypress/cypress.config.js b/api/mapas/src/cypress/cypress.config.js
similarity index 100%
rename from src/cypress/cypress.config.js
rename to api/mapas/src/cypress/cypress.config.js
diff --git a/src/cypress/cypress/fixtures/example.json b/api/mapas/src/cypress/cypress/fixtures/example.json
similarity index 100%
rename from src/cypress/cypress/fixtures/example.json
rename to api/mapas/src/cypress/cypress/fixtures/example.json
diff --git a/src/cypress/cypress/support/commands.js b/api/mapas/src/cypress/cypress/support/commands.js
similarity index 100%
rename from src/cypress/cypress/support/commands.js
rename to api/mapas/src/cypress/cypress/support/commands.js
diff --git a/src/cypress/cypress/support/e2e.js b/api/mapas/src/cypress/cypress/support/e2e.js
similarity index 100%
rename from src/cypress/cypress/support/e2e.js
rename to api/mapas/src/cypress/cypress/support/e2e.js
diff --git a/src/cypress/e2e/agentesPage/compact.cy.js b/api/mapas/src/cypress/e2e/agentesPage/compact.cy.js
similarity index 100%
rename from src/cypress/e2e/agentesPage/compact.cy.js
rename to api/mapas/src/cypress/e2e/agentesPage/compact.cy.js
diff --git a/src/cypress/e2e/agentesPage/full.cy.js b/api/mapas/src/cypress/e2e/agentesPage/full.cy.js
similarity index 100%
rename from src/cypress/e2e/agentesPage/full.cy.js
rename to api/mapas/src/cypress/e2e/agentesPage/full.cy.js
diff --git a/src/cypress/e2e/agentesPage/index.cy.js b/api/mapas/src/cypress/e2e/agentesPage/index.cy.js
similarity index 100%
rename from src/cypress/e2e/agentesPage/index.cy.js
rename to api/mapas/src/cypress/e2e/agentesPage/index.cy.js
diff --git a/src/cypress/e2e/eventsPage/index.cy.js b/api/mapas/src/cypress/e2e/eventsPage/index.cy.js
similarity index 100%
rename from src/cypress/e2e/eventsPage/index.cy.js
rename to api/mapas/src/cypress/e2e/eventsPage/index.cy.js
diff --git a/src/cypress/e2e/faqPage/index.cy.js b/api/mapas/src/cypress/e2e/faqPage/index.cy.js
similarity index 100%
rename from src/cypress/e2e/faqPage/index.cy.js
rename to api/mapas/src/cypress/e2e/faqPage/index.cy.js
diff --git a/src/cypress/e2e/footer/index.cy.js b/api/mapas/src/cypress/e2e/footer/index.cy.js
similarity index 100%
rename from src/cypress/e2e/footer/index.cy.js
rename to api/mapas/src/cypress/e2e/footer/index.cy.js
diff --git a/src/cypress/e2e/homepage/compact.cy.js b/api/mapas/src/cypress/e2e/homepage/compact.cy.js
similarity index 100%
rename from src/cypress/e2e/homepage/compact.cy.js
rename to api/mapas/src/cypress/e2e/homepage/compact.cy.js
diff --git a/src/cypress/e2e/homepage/full.cy.js b/api/mapas/src/cypress/e2e/homepage/full.cy.js
similarity index 100%
rename from src/cypress/e2e/homepage/full.cy.js
rename to api/mapas/src/cypress/e2e/homepage/full.cy.js
diff --git a/src/cypress/e2e/homepage/index.cy.js b/api/mapas/src/cypress/e2e/homepage/index.cy.js
similarity index 100%
rename from src/cypress/e2e/homepage/index.cy.js
rename to api/mapas/src/cypress/e2e/homepage/index.cy.js
diff --git a/src/cypress/e2e/loginPage/index.cy.js b/api/mapas/src/cypress/e2e/loginPage/index.cy.js
similarity index 100%
rename from src/cypress/e2e/loginPage/index.cy.js
rename to api/mapas/src/cypress/e2e/loginPage/index.cy.js
diff --git a/src/cypress/e2e/navbar/compact.cy.js b/api/mapas/src/cypress/e2e/navbar/compact.cy.js
similarity index 100%
rename from src/cypress/e2e/navbar/compact.cy.js
rename to api/mapas/src/cypress/e2e/navbar/compact.cy.js
diff --git a/src/cypress/e2e/navbar/full.cy.js b/api/mapas/src/cypress/e2e/navbar/full.cy.js
similarity index 100%
rename from src/cypress/e2e/navbar/full.cy.js
rename to api/mapas/src/cypress/e2e/navbar/full.cy.js
diff --git a/src/cypress/e2e/opportunity/index.cy.js b/api/mapas/src/cypress/e2e/opportunity/index.cy.js
similarity index 100%
rename from src/cypress/e2e/opportunity/index.cy.js
rename to api/mapas/src/cypress/e2e/opportunity/index.cy.js
diff --git a/src/cypress/e2e/opportunityPage/index.cy.js b/api/mapas/src/cypress/e2e/opportunityPage/index.cy.js
similarity index 100%
rename from src/cypress/e2e/opportunityPage/index.cy.js
rename to api/mapas/src/cypress/e2e/opportunityPage/index.cy.js
diff --git a/src/cypress/e2e/projectsPage/compact.cy.js b/api/mapas/src/cypress/e2e/projectsPage/compact.cy.js
similarity index 100%
rename from src/cypress/e2e/projectsPage/compact.cy.js
rename to api/mapas/src/cypress/e2e/projectsPage/compact.cy.js
diff --git a/src/cypress/e2e/projectsPage/full.cy.js b/api/mapas/src/cypress/e2e/projectsPage/full.cy.js
similarity index 100%
rename from src/cypress/e2e/projectsPage/full.cy.js
rename to api/mapas/src/cypress/e2e/projectsPage/full.cy.js
diff --git a/src/cypress/e2e/projectsPage/index.cy.js b/api/mapas/src/cypress/e2e/projectsPage/index.cy.js
similarity index 100%
rename from src/cypress/e2e/projectsPage/index.cy.js
rename to api/mapas/src/cypress/e2e/projectsPage/index.cy.js
diff --git a/src/cypress/e2e/recoverPass/index.cy.js b/api/mapas/src/cypress/e2e/recoverPass/index.cy.js
similarity index 100%
rename from src/cypress/e2e/recoverPass/index.cy.js
rename to api/mapas/src/cypress/e2e/recoverPass/index.cy.js
diff --git a/src/cypress/e2e/registerPage/index.cy.js b/api/mapas/src/cypress/e2e/registerPage/index.cy.js
similarity index 100%
rename from src/cypress/e2e/registerPage/index.cy.js
rename to api/mapas/src/cypress/e2e/registerPage/index.cy.js
diff --git a/src/cypress/e2e/spacesPage/compact.cy.js b/api/mapas/src/cypress/e2e/spacesPage/compact.cy.js
similarity index 100%
rename from src/cypress/e2e/spacesPage/compact.cy.js
rename to api/mapas/src/cypress/e2e/spacesPage/compact.cy.js
diff --git a/src/cypress/e2e/spacesPage/full.cy.js b/api/mapas/src/cypress/e2e/spacesPage/full.cy.js
similarity index 100%
rename from src/cypress/e2e/spacesPage/full.cy.js
rename to api/mapas/src/cypress/e2e/spacesPage/full.cy.js
diff --git a/src/cypress/fixtures/example.json b/api/mapas/src/cypress/fixtures/example.json
similarity index 100%
rename from src/cypress/fixtures/example.json
rename to api/mapas/src/cypress/fixtures/example.json
diff --git a/src/cypress/support/commands.js b/api/mapas/src/cypress/support/commands.js
similarity index 100%
rename from src/cypress/support/commands.js
rename to api/mapas/src/cypress/support/commands.js
diff --git a/src/cypress/support/e2e.js b/api/mapas/src/cypress/support/e2e.js
similarity index 100%
rename from src/cypress/support/e2e.js
rename to api/mapas/src/cypress/support/e2e.js
diff --git a/src/cypress/support/full.cy.js b/api/mapas/src/cypress/support/full.cy.js
similarity index 100%
rename from src/cypress/support/full.cy.js
rename to api/mapas/src/cypress/support/full.cy.js
diff --git a/src/db-updates.php b/api/mapas/src/db-updates.php
similarity index 100%
rename from src/db-updates.php
rename to api/mapas/src/db-updates.php
diff --git a/src/functions.php b/api/mapas/src/functions.php
similarity index 100%
rename from src/functions.php
rename to api/mapas/src/functions.php
diff --git a/src/load-translation.php b/api/mapas/src/load-translation.php
similarity index 100%
rename from src/load-translation.php
rename to api/mapas/src/load-translation.php
diff --git a/src/mc-updates.php b/api/mapas/src/mc-updates.php
similarity index 100%
rename from src/mc-updates.php
rename to api/mapas/src/mc-updates.php
diff --git a/src/modules/ApiKeywords/Module.php b/api/mapas/src/modules/ApiKeywords/Module.php
similarity index 100%
rename from src/modules/ApiKeywords/Module.php
rename to api/mapas/src/modules/ApiKeywords/Module.php
diff --git a/src/modules/Apps/Controller.php b/api/mapas/src/modules/Apps/Controller.php
similarity index 100%
rename from src/modules/Apps/Controller.php
rename to api/mapas/src/modules/Apps/Controller.php
diff --git a/src/modules/Apps/Entities/UserApp.php b/api/mapas/src/modules/Apps/Entities/UserApp.php
similarity index 100%
rename from src/modules/Apps/Entities/UserApp.php
rename to api/mapas/src/modules/Apps/Entities/UserApp.php
diff --git a/src/modules/Apps/JWTAuthProvider.php b/api/mapas/src/modules/Apps/JWTAuthProvider.php
similarity index 100%
rename from src/modules/Apps/JWTAuthProvider.php
rename to api/mapas/src/modules/Apps/JWTAuthProvider.php
diff --git a/src/modules/Apps/Module.php b/api/mapas/src/modules/Apps/Module.php
similarity index 100%
rename from src/modules/Apps/Module.php
rename to api/mapas/src/modules/Apps/Module.php
diff --git a/src/modules/Apps/assets/.gitkeep b/api/mapas/src/modules/Apps/assets/.gitkeep
similarity index 100%
rename from src/modules/Apps/assets/.gitkeep
rename to api/mapas/src/modules/Apps/assets/.gitkeep
diff --git a/src/modules/Apps/components/app-card-content/README.md b/api/mapas/src/modules/Apps/components/app-card-content/README.md
similarity index 100%
rename from src/modules/Apps/components/app-card-content/README.md
rename to api/mapas/src/modules/Apps/components/app-card-content/README.md
diff --git a/src/modules/Apps/components/app-card-content/script.js b/api/mapas/src/modules/Apps/components/app-card-content/script.js
similarity index 100%
rename from src/modules/Apps/components/app-card-content/script.js
rename to api/mapas/src/modules/Apps/components/app-card-content/script.js
diff --git a/src/modules/Apps/components/app-card-content/template.php b/api/mapas/src/modules/Apps/components/app-card-content/template.php
similarity index 100%
rename from src/modules/Apps/components/app-card-content/template.php
rename to api/mapas/src/modules/Apps/components/app-card-content/template.php
diff --git a/src/modules/Apps/components/app-card-content/texts.php b/api/mapas/src/modules/Apps/components/app-card-content/texts.php
similarity index 100%
rename from src/modules/Apps/components/app-card-content/texts.php
rename to api/mapas/src/modules/Apps/components/app-card-content/texts.php
diff --git a/src/modules/Apps/components/create-app/script.js b/api/mapas/src/modules/Apps/components/create-app/script.js
similarity index 100%
rename from src/modules/Apps/components/create-app/script.js
rename to api/mapas/src/modules/Apps/components/create-app/script.js
diff --git a/src/modules/Apps/components/create-app/template.php b/api/mapas/src/modules/Apps/components/create-app/template.php
similarity index 100%
rename from src/modules/Apps/components/create-app/template.php
rename to api/mapas/src/modules/Apps/components/create-app/template.php
diff --git a/src/modules/Apps/components/create-app/texts.php b/api/mapas/src/modules/Apps/components/create-app/texts.php
similarity index 100%
rename from src/modules/Apps/components/create-app/texts.php
rename to api/mapas/src/modules/Apps/components/create-app/texts.php
diff --git a/src/modules/Apps/views/panel/apps.php b/api/mapas/src/modules/Apps/views/panel/apps.php
similarity index 100%
rename from src/modules/Apps/views/panel/apps.php
rename to api/mapas/src/modules/Apps/views/panel/apps.php
diff --git a/src/modules/BaseV1EmbedTools/Controller.php b/api/mapas/src/modules/BaseV1EmbedTools/Controller.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/Controller.php
rename to api/mapas/src/modules/BaseV1EmbedTools/Controller.php
diff --git a/src/modules/BaseV1EmbedTools/LICENSE b/api/mapas/src/modules/BaseV1EmbedTools/LICENSE
similarity index 100%
rename from src/modules/BaseV1EmbedTools/LICENSE
rename to api/mapas/src/modules/BaseV1EmbedTools/LICENSE
diff --git a/src/modules/BaseV1EmbedTools/Module.php b/api/mapas/src/modules/BaseV1EmbedTools/Module.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/Module.php
rename to api/mapas/src/modules/BaseV1EmbedTools/Module.php
diff --git a/src/modules/BaseV1EmbedTools/README.md b/api/mapas/src/modules/BaseV1EmbedTools/README.md
similarity index 100%
rename from src/modules/BaseV1EmbedTools/README.md
rename to api/mapas/src/modules/BaseV1EmbedTools/README.md
diff --git a/src/modules/BaseV1EmbedTools/assets/css/embedtools.css b/api/mapas/src/modules/BaseV1EmbedTools/assets/css/embedtools.css
similarity index 100%
rename from src/modules/BaseV1EmbedTools/assets/css/embedtools.css
rename to api/mapas/src/modules/BaseV1EmbedTools/assets/css/embedtools.css
diff --git a/src/modules/BaseV1EmbedTools/assets/js/embedtools-evaluations.js b/api/mapas/src/modules/BaseV1EmbedTools/assets/js/embedtools-evaluations.js
similarity index 100%
rename from src/modules/BaseV1EmbedTools/assets/js/embedtools-evaluations.js
rename to api/mapas/src/modules/BaseV1EmbedTools/assets/js/embedtools-evaluations.js
diff --git a/src/modules/BaseV1EmbedTools/assets/js/embedtools.js b/api/mapas/src/modules/BaseV1EmbedTools/assets/js/embedtools.js
similarity index 100%
rename from src/modules/BaseV1EmbedTools/assets/js/embedtools.js
rename to api/mapas/src/modules/BaseV1EmbedTools/assets/js/embedtools.js
diff --git a/src/modules/BaseV1EmbedTools/assets/js/v1-embedtools-evaluations.js b/api/mapas/src/modules/BaseV1EmbedTools/assets/js/v1-embedtools-evaluations.js
similarity index 100%
rename from src/modules/BaseV1EmbedTools/assets/js/v1-embedtools-evaluations.js
rename to api/mapas/src/modules/BaseV1EmbedTools/assets/js/v1-embedtools-evaluations.js
diff --git a/src/modules/BaseV1EmbedTools/components/v1-embed-tool/README.md b/api/mapas/src/modules/BaseV1EmbedTools/components/v1-embed-tool/README.md
similarity index 100%
rename from src/modules/BaseV1EmbedTools/components/v1-embed-tool/README.md
rename to api/mapas/src/modules/BaseV1EmbedTools/components/v1-embed-tool/README.md
diff --git a/src/modules/BaseV1EmbedTools/components/v1-embed-tool/script.js b/api/mapas/src/modules/BaseV1EmbedTools/components/v1-embed-tool/script.js
similarity index 100%
rename from src/modules/BaseV1EmbedTools/components/v1-embed-tool/script.js
rename to api/mapas/src/modules/BaseV1EmbedTools/components/v1-embed-tool/script.js
diff --git a/src/modules/BaseV1EmbedTools/components/v1-embed-tool/template.php b/api/mapas/src/modules/BaseV1EmbedTools/components/v1-embed-tool/template.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/components/v1-embed-tool/template.php
rename to api/mapas/src/modules/BaseV1EmbedTools/components/v1-embed-tool/template.php
diff --git a/src/modules/BaseV1EmbedTools/layouts/embedtools-opportunity.php b/api/mapas/src/modules/BaseV1EmbedTools/layouts/embedtools-opportunity.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/layouts/embedtools-opportunity.php
rename to api/mapas/src/modules/BaseV1EmbedTools/layouts/embedtools-opportunity.php
diff --git a/src/modules/BaseV1EmbedTools/layouts/embedtools-registration.php b/api/mapas/src/modules/BaseV1EmbedTools/layouts/embedtools-registration.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/layouts/embedtools-registration.php
rename to api/mapas/src/modules/BaseV1EmbedTools/layouts/embedtools-registration.php
diff --git a/src/modules/BaseV1EmbedTools/layouts/parts/evaluation--form.php b/api/mapas/src/modules/BaseV1EmbedTools/layouts/parts/evaluation--form.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/layouts/parts/evaluation--form.php
rename to api/mapas/src/modules/BaseV1EmbedTools/layouts/parts/evaluation--form.php
diff --git a/src/modules/BaseV1EmbedTools/layouts/parts/evaluations-admin-table.php b/api/mapas/src/modules/BaseV1EmbedTools/layouts/parts/evaluations-admin-table.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/layouts/parts/evaluations-admin-table.php
rename to api/mapas/src/modules/BaseV1EmbedTools/layouts/parts/evaluations-admin-table.php
diff --git a/src/modules/BaseV1EmbedTools/layouts/parts/evaluations-evaluator-table.php b/api/mapas/src/modules/BaseV1EmbedTools/layouts/parts/evaluations-evaluator-table.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/layouts/parts/evaluations-evaluator-table.php
rename to api/mapas/src/modules/BaseV1EmbedTools/layouts/parts/evaluations-evaluator-table.php
diff --git a/src/modules/BaseV1EmbedTools/layouts/parts/registration--manager.php b/api/mapas/src/modules/BaseV1EmbedTools/layouts/parts/registration--manager.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/layouts/parts/registration--manager.php
rename to api/mapas/src/modules/BaseV1EmbedTools/layouts/parts/registration--manager.php
diff --git a/src/modules/BaseV1EmbedTools/layouts/parts/support-edit-view.php b/api/mapas/src/modules/BaseV1EmbedTools/layouts/parts/support-edit-view.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/layouts/parts/support-edit-view.php
rename to api/mapas/src/modules/BaseV1EmbedTools/layouts/parts/support-edit-view.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/affirmative-policies-manager.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/affirmative-policies-manager.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/affirmative-policies-manager.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/affirmative-policies-manager.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/evaluation-forms.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/evaluation-forms.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/evaluation-forms.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/evaluation-forms.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/evaluation-manager.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/evaluation-manager.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/evaluation-manager.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/evaluation-manager.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/evaluations-admin-list.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/evaluations-admin-list.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/evaluations-admin-list.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/evaluations-admin-list.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/evaluations-evaluator-list.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/evaluations-evaluator-list.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/evaluations-evaluator-list.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/evaluations-evaluator-list.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/fields-visible.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/fields-visible.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/fields-visible.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/fields-visible.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/form-builder.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/form-builder.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/form-builder.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/form-builder.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/opportunity-result.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/opportunity-result.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/opportunity-result.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/opportunity-result.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/registration-form-preview.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/registration-form-preview.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/registration-form-preview.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/registration-form-preview.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/registration-form.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/registration-form.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/registration-form.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/registration-form.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/registration-manager.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/registration-manager.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/registration-manager.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/registration-manager.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/registration-support.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/registration-support.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/registration-support.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/registration-support.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/registration-valuers.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/registration-valuers.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/registration-valuers.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/registration-valuers.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/registration-view.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/registration-view.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/registration-view.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/registration-view.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/report-manager.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/report-manager.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/report-manager.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/report-manager.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/sidebar-lefte-valuations.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/sidebar-lefte-valuations.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/sidebar-lefte-valuations.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/sidebar-lefte-valuations.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/support--edit-view.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/support--edit-view.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/support--edit-view.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/support--edit-view.php
diff --git a/src/modules/BaseV1EmbedTools/views/embedtools/support-builder.php b/api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/support-builder.php
similarity index 100%
rename from src/modules/BaseV1EmbedTools/views/embedtools/support-builder.php
rename to api/mapas/src/modules/BaseV1EmbedTools/views/embedtools/support-builder.php
diff --git a/src/modules/CEPAberto/Module.php b/api/mapas/src/modules/CEPAberto/Module.php
similarity index 100%
rename from src/modules/CEPAberto/Module.php
rename to api/mapas/src/modules/CEPAberto/Module.php
diff --git a/src/modules/Charts/Module.php b/api/mapas/src/modules/Charts/Module.php
similarity index 100%
rename from src/modules/Charts/Module.php
rename to api/mapas/src/modules/Charts/Module.php
diff --git a/src/modules/Charts/assets/js/charts-main.js b/api/mapas/src/modules/Charts/assets/js/charts-main.js
similarity index 100%
rename from src/modules/Charts/assets/js/charts-main.js
rename to api/mapas/src/modules/Charts/assets/js/charts-main.js
diff --git a/src/modules/Charts/layouts/parts/charts/bar.php b/api/mapas/src/modules/Charts/layouts/parts/charts/bar.php
similarity index 100%
rename from src/modules/Charts/layouts/parts/charts/bar.php
rename to api/mapas/src/modules/Charts/layouts/parts/charts/bar.php
diff --git a/src/modules/Charts/layouts/parts/charts/line.php b/api/mapas/src/modules/Charts/layouts/parts/charts/line.php
similarity index 100%
rename from src/modules/Charts/layouts/parts/charts/line.php
rename to api/mapas/src/modules/Charts/layouts/parts/charts/line.php
diff --git a/src/modules/Charts/layouts/parts/charts/pie.php b/api/mapas/src/modules/Charts/layouts/parts/charts/pie.php
similarity index 100%
rename from src/modules/Charts/layouts/parts/charts/pie.php
rename to api/mapas/src/modules/Charts/layouts/parts/charts/pie.php
diff --git a/src/modules/CompliantSuggestion/Module.php b/api/mapas/src/modules/CompliantSuggestion/Module.php
similarity index 100%
rename from src/modules/CompliantSuggestion/Module.php
rename to api/mapas/src/modules/CompliantSuggestion/Module.php
diff --git a/src/modules/CompliantSuggestion/assets/js/ng.modules.compliantSuggestion.js b/api/mapas/src/modules/CompliantSuggestion/assets/js/ng.modules.compliantSuggestion.js
similarity index 100%
rename from src/modules/CompliantSuggestion/assets/js/ng.modules.compliantSuggestion.js
rename to api/mapas/src/modules/CompliantSuggestion/assets/js/ng.modules.compliantSuggestion.js
diff --git a/src/modules/CompliantSuggestion/layouts/parts/compliant_suggestion.php b/api/mapas/src/modules/CompliantSuggestion/layouts/parts/compliant_suggestion.php
similarity index 100%
rename from src/modules/CompliantSuggestion/layouts/parts/compliant_suggestion.php
rename to api/mapas/src/modules/CompliantSuggestion/layouts/parts/compliant_suggestion.php
diff --git a/src/modules/Components/.gitignore b/api/mapas/src/modules/Components/.gitignore
similarity index 100%
rename from src/modules/Components/.gitignore
rename to api/mapas/src/modules/Components/.gitignore
diff --git a/src/modules/Components/Module.php b/api/mapas/src/modules/Components/Module.php
similarity index 100%
rename from src/modules/Components/Module.php
rename to api/mapas/src/modules/Components/Module.php
diff --git a/src/modules/Components/assets-src/js/media-query.js b/api/mapas/src/modules/Components/assets-src/js/media-query.js
similarity index 100%
rename from src/modules/Components/assets-src/js/media-query.js
rename to api/mapas/src/modules/Components/assets-src/js/media-query.js
diff --git a/src/modules/Components/assets-src/js/vue-init.js b/api/mapas/src/modules/Components/assets-src/js/vue-init.js
similarity index 100%
rename from src/modules/Components/assets-src/js/vue-init.js
rename to api/mapas/src/modules/Components/assets-src/js/vue-init.js
diff --git a/src/modules/Components/assets/css/components-base/carousel.css b/api/mapas/src/modules/Components/assets/css/components-base/carousel.css
similarity index 100%
rename from src/modules/Components/assets/css/components-base/carousel.css
rename to api/mapas/src/modules/Components/assets/css/components-base/carousel.css
diff --git a/src/modules/Components/assets/js/components-base/API.js b/api/mapas/src/modules/Components/assets/js/components-base/API.js
similarity index 100%
rename from src/modules/Components/assets/js/components-base/API.js
rename to api/mapas/src/modules/Components/assets/js/components-base/API.js
diff --git a/src/modules/Components/assets/js/components-base/Entity.js b/api/mapas/src/modules/Components/assets/js/components-base/Entity.js
similarity index 100%
rename from src/modules/Components/assets/js/components-base/Entity.js
rename to api/mapas/src/modules/Components/assets/js/components-base/Entity.js
diff --git a/src/modules/Components/assets/js/components-base/EntityFile.js b/api/mapas/src/modules/Components/assets/js/components-base/EntityFile.js
similarity index 100%
rename from src/modules/Components/assets/js/components-base/EntityFile.js
rename to api/mapas/src/modules/Components/assets/js/components-base/EntityFile.js
diff --git a/src/modules/Components/assets/js/components-base/EntityMetalist.js b/api/mapas/src/modules/Components/assets/js/components-base/EntityMetalist.js
similarity index 100%
rename from src/modules/Components/assets/js/components-base/EntityMetalist.js
rename to api/mapas/src/modules/Components/assets/js/components-base/EntityMetalist.js
diff --git a/src/modules/Components/assets/js/components-base/McDate.js b/api/mapas/src/modules/Components/assets/js/components-base/McDate.js
similarity index 100%
rename from src/modules/Components/assets/js/components-base/McDate.js
rename to api/mapas/src/modules/Components/assets/js/components-base/McDate.js
diff --git a/src/modules/Components/assets/js/components-base/Utils.js b/api/mapas/src/modules/Components/assets/js/components-base/Utils.js
similarity index 100%
rename from src/modules/Components/assets/js/components-base/Utils.js
rename to api/mapas/src/modules/Components/assets/js/components-base/Utils.js
diff --git a/src/modules/Components/assets/js/components-base/global-state.js b/api/mapas/src/modules/Components/assets/js/components-base/global-state.js
similarity index 100%
rename from src/modules/Components/assets/js/components-base/global-state.js
rename to api/mapas/src/modules/Components/assets/js/components-base/global-state.js
diff --git a/src/modules/Components/components/__template__/README.md b/api/mapas/src/modules/Components/components/__template__/README.md
similarity index 100%
rename from src/modules/Components/components/__template__/README.md
rename to api/mapas/src/modules/Components/components/__template__/README.md
diff --git a/src/modules/Components/components/__template__/script.js b/api/mapas/src/modules/Components/components/__template__/script.js
similarity index 100%
rename from src/modules/Components/components/__template__/script.js
rename to api/mapas/src/modules/Components/components/__template__/script.js
diff --git a/src/modules/Components/components/__template__/template.php b/api/mapas/src/modules/Components/components/__template__/template.php
similarity index 100%
rename from src/modules/Components/components/__template__/template.php
rename to api/mapas/src/modules/Components/components/__template__/template.php
diff --git a/src/modules/Components/components/__template__/texts.php b/api/mapas/src/modules/Components/components/__template__/texts.php
similarity index 100%
rename from src/modules/Components/components/__template__/texts.php
rename to api/mapas/src/modules/Components/components/__template__/texts.php
diff --git a/src/modules/Components/components/complaint-suggestion/README.md b/api/mapas/src/modules/Components/components/complaint-suggestion/README.md
similarity index 100%
rename from src/modules/Components/components/complaint-suggestion/README.md
rename to api/mapas/src/modules/Components/components/complaint-suggestion/README.md
diff --git a/src/modules/Components/components/complaint-suggestion/init.php b/api/mapas/src/modules/Components/components/complaint-suggestion/init.php
similarity index 100%
rename from src/modules/Components/components/complaint-suggestion/init.php
rename to api/mapas/src/modules/Components/components/complaint-suggestion/init.php
diff --git a/src/modules/Components/components/complaint-suggestion/script.js b/api/mapas/src/modules/Components/components/complaint-suggestion/script.js
similarity index 100%
rename from src/modules/Components/components/complaint-suggestion/script.js
rename to api/mapas/src/modules/Components/components/complaint-suggestion/script.js
diff --git a/src/modules/Components/components/complaint-suggestion/template.php b/api/mapas/src/modules/Components/components/complaint-suggestion/template.php
similarity index 100%
rename from src/modules/Components/components/complaint-suggestion/template.php
rename to api/mapas/src/modules/Components/components/complaint-suggestion/template.php
diff --git a/src/modules/Components/components/complaint-suggestion/texts.php b/api/mapas/src/modules/Components/components/complaint-suggestion/texts.php
similarity index 100%
rename from src/modules/Components/components/complaint-suggestion/texts.php
rename to api/mapas/src/modules/Components/components/complaint-suggestion/texts.php
diff --git a/src/modules/Components/components/cropper-stencil/script.js b/api/mapas/src/modules/Components/components/cropper-stencil/script.js
similarity index 100%
rename from src/modules/Components/components/cropper-stencil/script.js
rename to api/mapas/src/modules/Components/components/cropper-stencil/script.js
diff --git a/src/modules/Components/components/cropper-stencil/template.php b/api/mapas/src/modules/Components/components/cropper-stencil/template.php
similarity index 100%
rename from src/modules/Components/components/cropper-stencil/template.php
rename to api/mapas/src/modules/Components/components/cropper-stencil/template.php
diff --git a/src/modules/Components/components/entity-card/README.md b/api/mapas/src/modules/Components/components/entity-card/README.md
similarity index 100%
rename from src/modules/Components/components/entity-card/README.md
rename to api/mapas/src/modules/Components/components/entity-card/README.md
diff --git a/src/modules/Components/components/entity-card/script.js b/api/mapas/src/modules/Components/components/entity-card/script.js
similarity index 100%
rename from src/modules/Components/components/entity-card/script.js
rename to api/mapas/src/modules/Components/components/entity-card/script.js
diff --git a/src/modules/Components/components/entity-card/template.php b/api/mapas/src/modules/Components/components/entity-card/template.php
similarity index 100%
rename from src/modules/Components/components/entity-card/template.php
rename to api/mapas/src/modules/Components/components/entity-card/template.php
diff --git a/src/modules/Components/components/entity-card/texts.php b/api/mapas/src/modules/Components/components/entity-card/texts.php
similarity index 100%
rename from src/modules/Components/components/entity-card/texts.php
rename to api/mapas/src/modules/Components/components/entity-card/texts.php
diff --git a/src/modules/Components/components/error-display/script.js b/api/mapas/src/modules/Components/components/error-display/script.js
similarity index 100%
rename from src/modules/Components/components/error-display/script.js
rename to api/mapas/src/modules/Components/components/error-display/script.js
diff --git a/src/modules/Components/components/error-display/template.php b/api/mapas/src/modules/Components/components/error-display/template.php
similarity index 100%
rename from src/modules/Components/components/error-display/template.php
rename to api/mapas/src/modules/Components/components/error-display/template.php
diff --git a/src/modules/Components/components/event-info/script.js b/api/mapas/src/modules/Components/components/event-info/script.js
similarity index 100%
rename from src/modules/Components/components/event-info/script.js
rename to api/mapas/src/modules/Components/components/event-info/script.js
diff --git a/src/modules/Components/components/event-info/template.php b/api/mapas/src/modules/Components/components/event-info/template.php
similarity index 100%
rename from src/modules/Components/components/event-info/template.php
rename to api/mapas/src/modules/Components/components/event-info/template.php
diff --git a/src/modules/Components/components/main-footer/script.js b/api/mapas/src/modules/Components/components/main-footer/script.js
similarity index 100%
rename from src/modules/Components/components/main-footer/script.js
rename to api/mapas/src/modules/Components/components/main-footer/script.js
diff --git a/src/modules/Components/components/main-footer/template.php b/api/mapas/src/modules/Components/components/main-footer/template.php
similarity index 100%
rename from src/modules/Components/components/main-footer/template.php
rename to api/mapas/src/modules/Components/components/main-footer/template.php
diff --git a/src/modules/Components/components/mc-accordion/script.js b/api/mapas/src/modules/Components/components/mc-accordion/script.js
similarity index 100%
rename from src/modules/Components/components/mc-accordion/script.js
rename to api/mapas/src/modules/Components/components/mc-accordion/script.js
diff --git a/src/modules/Components/components/mc-accordion/template.php b/api/mapas/src/modules/Components/components/mc-accordion/template.php
similarity index 100%
rename from src/modules/Components/components/mc-accordion/template.php
rename to api/mapas/src/modules/Components/components/mc-accordion/template.php
diff --git a/src/modules/Components/components/mc-alert/README.md b/api/mapas/src/modules/Components/components/mc-alert/README.md
similarity index 100%
rename from src/modules/Components/components/mc-alert/README.md
rename to api/mapas/src/modules/Components/components/mc-alert/README.md
diff --git a/src/modules/Components/components/mc-alert/script.js b/api/mapas/src/modules/Components/components/mc-alert/script.js
similarity index 100%
rename from src/modules/Components/components/mc-alert/script.js
rename to api/mapas/src/modules/Components/components/mc-alert/script.js
diff --git a/src/modules/Components/components/mc-alert/template.php b/api/mapas/src/modules/Components/components/mc-alert/template.php
similarity index 100%
rename from src/modules/Components/components/mc-alert/template.php
rename to api/mapas/src/modules/Components/components/mc-alert/template.php
diff --git a/src/modules/Components/components/mc-alert/texts.php b/api/mapas/src/modules/Components/components/mc-alert/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-alert/texts.php
rename to api/mapas/src/modules/Components/components/mc-alert/texts.php
diff --git a/src/modules/Components/components/mc-avatar/script.js b/api/mapas/src/modules/Components/components/mc-avatar/script.js
similarity index 100%
rename from src/modules/Components/components/mc-avatar/script.js
rename to api/mapas/src/modules/Components/components/mc-avatar/script.js
diff --git a/src/modules/Components/components/mc-avatar/template.php b/api/mapas/src/modules/Components/components/mc-avatar/template.php
similarity index 100%
rename from src/modules/Components/components/mc-avatar/template.php
rename to api/mapas/src/modules/Components/components/mc-avatar/template.php
diff --git a/src/modules/Components/components/mc-breadcrumb/README.md b/api/mapas/src/modules/Components/components/mc-breadcrumb/README.md
similarity index 100%
rename from src/modules/Components/components/mc-breadcrumb/README.md
rename to api/mapas/src/modules/Components/components/mc-breadcrumb/README.md
diff --git a/src/modules/Components/components/mc-breadcrumb/init.php b/api/mapas/src/modules/Components/components/mc-breadcrumb/init.php
similarity index 100%
rename from src/modules/Components/components/mc-breadcrumb/init.php
rename to api/mapas/src/modules/Components/components/mc-breadcrumb/init.php
diff --git a/src/modules/Components/components/mc-breadcrumb/script.js b/api/mapas/src/modules/Components/components/mc-breadcrumb/script.js
similarity index 100%
rename from src/modules/Components/components/mc-breadcrumb/script.js
rename to api/mapas/src/modules/Components/components/mc-breadcrumb/script.js
diff --git a/src/modules/Components/components/mc-breadcrumb/template.php b/api/mapas/src/modules/Components/components/mc-breadcrumb/template.php
similarity index 100%
rename from src/modules/Components/components/mc-breadcrumb/template.php
rename to api/mapas/src/modules/Components/components/mc-breadcrumb/template.php
diff --git a/src/modules/Components/components/mc-card/script.js b/api/mapas/src/modules/Components/components/mc-card/script.js
similarity index 100%
rename from src/modules/Components/components/mc-card/script.js
rename to api/mapas/src/modules/Components/components/mc-card/script.js
diff --git a/src/modules/Components/components/mc-card/template.php b/api/mapas/src/modules/Components/components/mc-card/template.php
similarity index 100%
rename from src/modules/Components/components/mc-card/template.php
rename to api/mapas/src/modules/Components/components/mc-card/template.php
diff --git a/src/modules/Components/components/mc-collapse/README.md b/api/mapas/src/modules/Components/components/mc-collapse/README.md
similarity index 100%
rename from src/modules/Components/components/mc-collapse/README.md
rename to api/mapas/src/modules/Components/components/mc-collapse/README.md
diff --git a/src/modules/Components/components/mc-collapse/script.js b/api/mapas/src/modules/Components/components/mc-collapse/script.js
similarity index 100%
rename from src/modules/Components/components/mc-collapse/script.js
rename to api/mapas/src/modules/Components/components/mc-collapse/script.js
diff --git a/src/modules/Components/components/mc-collapse/template.php b/api/mapas/src/modules/Components/components/mc-collapse/template.php
similarity index 100%
rename from src/modules/Components/components/mc-collapse/template.php
rename to api/mapas/src/modules/Components/components/mc-collapse/template.php
diff --git a/src/modules/Components/components/mc-collapse/texts.php b/api/mapas/src/modules/Components/components/mc-collapse/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-collapse/texts.php
rename to api/mapas/src/modules/Components/components/mc-collapse/texts.php
diff --git a/src/modules/Components/components/mc-confirm-button/README.md b/api/mapas/src/modules/Components/components/mc-confirm-button/README.md
similarity index 100%
rename from src/modules/Components/components/mc-confirm-button/README.md
rename to api/mapas/src/modules/Components/components/mc-confirm-button/README.md
diff --git a/src/modules/Components/components/mc-confirm-button/script.js b/api/mapas/src/modules/Components/components/mc-confirm-button/script.js
similarity index 100%
rename from src/modules/Components/components/mc-confirm-button/script.js
rename to api/mapas/src/modules/Components/components/mc-confirm-button/script.js
diff --git a/src/modules/Components/components/mc-confirm-button/template.php b/api/mapas/src/modules/Components/components/mc-confirm-button/template.php
similarity index 100%
rename from src/modules/Components/components/mc-confirm-button/template.php
rename to api/mapas/src/modules/Components/components/mc-confirm-button/template.php
diff --git a/src/modules/Components/components/mc-container/script.js b/api/mapas/src/modules/Components/components/mc-container/script.js
similarity index 100%
rename from src/modules/Components/components/mc-container/script.js
rename to api/mapas/src/modules/Components/components/mc-container/script.js
diff --git a/src/modules/Components/components/mc-container/template.php b/api/mapas/src/modules/Components/components/mc-container/template.php
similarity index 100%
rename from src/modules/Components/components/mc-container/template.php
rename to api/mapas/src/modules/Components/components/mc-container/template.php
diff --git a/src/modules/Components/components/mc-currency-input/script.js b/api/mapas/src/modules/Components/components/mc-currency-input/script.js
similarity index 100%
rename from src/modules/Components/components/mc-currency-input/script.js
rename to api/mapas/src/modules/Components/components/mc-currency-input/script.js
diff --git a/src/modules/Components/components/mc-currency-input/template.php b/api/mapas/src/modules/Components/components/mc-currency-input/template.php
similarity index 100%
rename from src/modules/Components/components/mc-currency-input/template.php
rename to api/mapas/src/modules/Components/components/mc-currency-input/template.php
diff --git a/src/modules/Components/components/mc-debug/README.md b/api/mapas/src/modules/Components/components/mc-debug/README.md
similarity index 100%
rename from src/modules/Components/components/mc-debug/README.md
rename to api/mapas/src/modules/Components/components/mc-debug/README.md
diff --git a/src/modules/Components/components/mc-debug/script.js b/api/mapas/src/modules/Components/components/mc-debug/script.js
similarity index 100%
rename from src/modules/Components/components/mc-debug/script.js
rename to api/mapas/src/modules/Components/components/mc-debug/script.js
diff --git a/src/modules/Components/components/mc-debug/template.php b/api/mapas/src/modules/Components/components/mc-debug/template.php
similarity index 100%
rename from src/modules/Components/components/mc-debug/template.php
rename to api/mapas/src/modules/Components/components/mc-debug/template.php
diff --git a/src/modules/Components/components/mc-entities/README.md b/api/mapas/src/modules/Components/components/mc-entities/README.md
similarity index 100%
rename from src/modules/Components/components/mc-entities/README.md
rename to api/mapas/src/modules/Components/components/mc-entities/README.md
diff --git a/src/modules/Components/components/mc-entities/script.js b/api/mapas/src/modules/Components/components/mc-entities/script.js
similarity index 100%
rename from src/modules/Components/components/mc-entities/script.js
rename to api/mapas/src/modules/Components/components/mc-entities/script.js
diff --git a/src/modules/Components/components/mc-entities/template.php b/api/mapas/src/modules/Components/components/mc-entities/template.php
similarity index 100%
rename from src/modules/Components/components/mc-entities/template.php
rename to api/mapas/src/modules/Components/components/mc-entities/template.php
diff --git a/src/modules/Components/components/mc-entity/script.js b/api/mapas/src/modules/Components/components/mc-entity/script.js
similarity index 100%
rename from src/modules/Components/components/mc-entity/script.js
rename to api/mapas/src/modules/Components/components/mc-entity/script.js
diff --git a/src/modules/Components/components/mc-entity/template.php b/api/mapas/src/modules/Components/components/mc-entity/template.php
similarity index 100%
rename from src/modules/Components/components/mc-entity/template.php
rename to api/mapas/src/modules/Components/components/mc-entity/template.php
diff --git a/src/modules/Components/components/mc-entity/texts.php b/api/mapas/src/modules/Components/components/mc-entity/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-entity/texts.php
rename to api/mapas/src/modules/Components/components/mc-entity/texts.php
diff --git a/src/modules/Components/components/mc-file/README.md b/api/mapas/src/modules/Components/components/mc-file/README.md
similarity index 100%
rename from src/modules/Components/components/mc-file/README.md
rename to api/mapas/src/modules/Components/components/mc-file/README.md
diff --git a/src/modules/Components/components/mc-file/script.js b/api/mapas/src/modules/Components/components/mc-file/script.js
similarity index 100%
rename from src/modules/Components/components/mc-file/script.js
rename to api/mapas/src/modules/Components/components/mc-file/script.js
diff --git a/src/modules/Components/components/mc-file/template.php b/api/mapas/src/modules/Components/components/mc-file/template.php
similarity index 100%
rename from src/modules/Components/components/mc-file/template.php
rename to api/mapas/src/modules/Components/components/mc-file/template.php
diff --git a/src/modules/Components/components/mc-file/texts.php b/api/mapas/src/modules/Components/components/mc-file/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-file/texts.php
rename to api/mapas/src/modules/Components/components/mc-file/texts.php
diff --git a/src/modules/Components/components/mc-header-menu-user/script.js b/api/mapas/src/modules/Components/components/mc-header-menu-user/script.js
similarity index 100%
rename from src/modules/Components/components/mc-header-menu-user/script.js
rename to api/mapas/src/modules/Components/components/mc-header-menu-user/script.js
diff --git a/src/modules/Components/components/mc-header-menu-user/template.php b/api/mapas/src/modules/Components/components/mc-header-menu-user/template.php
similarity index 100%
rename from src/modules/Components/components/mc-header-menu-user/template.php
rename to api/mapas/src/modules/Components/components/mc-header-menu-user/template.php
diff --git a/src/modules/Components/components/mc-header-menu/script.js b/api/mapas/src/modules/Components/components/mc-header-menu/script.js
similarity index 100%
rename from src/modules/Components/components/mc-header-menu/script.js
rename to api/mapas/src/modules/Components/components/mc-header-menu/script.js
diff --git a/src/modules/Components/components/mc-header-menu/template.php b/api/mapas/src/modules/Components/components/mc-header-menu/template.php
similarity index 100%
rename from src/modules/Components/components/mc-header-menu/template.php
rename to api/mapas/src/modules/Components/components/mc-header-menu/template.php
diff --git a/src/modules/Components/components/mc-header-menu/texts.php b/api/mapas/src/modules/Components/components/mc-header-menu/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-header-menu/texts.php
rename to api/mapas/src/modules/Components/components/mc-header-menu/texts.php
diff --git a/src/modules/Components/components/mc-icon/README.md b/api/mapas/src/modules/Components/components/mc-icon/README.md
similarity index 100%
rename from src/modules/Components/components/mc-icon/README.md
rename to api/mapas/src/modules/Components/components/mc-icon/README.md
diff --git a/src/modules/Components/components/mc-icon/init.php b/api/mapas/src/modules/Components/components/mc-icon/init.php
similarity index 100%
rename from src/modules/Components/components/mc-icon/init.php
rename to api/mapas/src/modules/Components/components/mc-icon/init.php
diff --git a/src/modules/Components/components/mc-icon/script.js b/api/mapas/src/modules/Components/components/mc-icon/script.js
similarity index 100%
rename from src/modules/Components/components/mc-icon/script.js
rename to api/mapas/src/modules/Components/components/mc-icon/script.js
diff --git a/src/modules/Components/components/mc-icon/template.php b/api/mapas/src/modules/Components/components/mc-icon/template.php
similarity index 100%
rename from src/modules/Components/components/mc-icon/template.php
rename to api/mapas/src/modules/Components/components/mc-icon/template.php
diff --git a/src/modules/Components/components/mc-icon/texts.php b/api/mapas/src/modules/Components/components/mc-icon/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-icon/texts.php
rename to api/mapas/src/modules/Components/components/mc-icon/texts.php
diff --git a/src/modules/Components/components/mc-image-uploader/script.js b/api/mapas/src/modules/Components/components/mc-image-uploader/script.js
similarity index 100%
rename from src/modules/Components/components/mc-image-uploader/script.js
rename to api/mapas/src/modules/Components/components/mc-image-uploader/script.js
diff --git a/src/modules/Components/components/mc-image-uploader/style.css b/api/mapas/src/modules/Components/components/mc-image-uploader/style.css
similarity index 100%
rename from src/modules/Components/components/mc-image-uploader/style.css
rename to api/mapas/src/modules/Components/components/mc-image-uploader/style.css
diff --git a/src/modules/Components/components/mc-image-uploader/template.php b/api/mapas/src/modules/Components/components/mc-image-uploader/template.php
similarity index 100%
rename from src/modules/Components/components/mc-image-uploader/template.php
rename to api/mapas/src/modules/Components/components/mc-image-uploader/template.php
diff --git a/src/modules/Components/components/mc-link/README.md b/api/mapas/src/modules/Components/components/mc-link/README.md
similarity index 100%
rename from src/modules/Components/components/mc-link/README.md
rename to api/mapas/src/modules/Components/components/mc-link/README.md
diff --git a/src/modules/Components/components/mc-link/script.js b/api/mapas/src/modules/Components/components/mc-link/script.js
similarity index 100%
rename from src/modules/Components/components/mc-link/script.js
rename to api/mapas/src/modules/Components/components/mc-link/script.js
diff --git a/src/modules/Components/components/mc-link/template.php b/api/mapas/src/modules/Components/components/mc-link/template.php
similarity index 100%
rename from src/modules/Components/components/mc-link/template.php
rename to api/mapas/src/modules/Components/components/mc-link/template.php
diff --git a/src/modules/Components/components/mc-link/texts.php b/api/mapas/src/modules/Components/components/mc-link/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-link/texts.php
rename to api/mapas/src/modules/Components/components/mc-link/texts.php
diff --git a/src/modules/Components/components/mc-loading/script.js b/api/mapas/src/modules/Components/components/mc-loading/script.js
similarity index 100%
rename from src/modules/Components/components/mc-loading/script.js
rename to api/mapas/src/modules/Components/components/mc-loading/script.js
diff --git a/src/modules/Components/components/mc-loading/template.php b/api/mapas/src/modules/Components/components/mc-loading/template.php
similarity index 100%
rename from src/modules/Components/components/mc-loading/template.php
rename to api/mapas/src/modules/Components/components/mc-loading/template.php
diff --git a/src/modules/Components/components/mc-map-card/README.md b/api/mapas/src/modules/Components/components/mc-map-card/README.md
similarity index 100%
rename from src/modules/Components/components/mc-map-card/README.md
rename to api/mapas/src/modules/Components/components/mc-map-card/README.md
diff --git a/src/modules/Components/components/mc-map-card/script.js b/api/mapas/src/modules/Components/components/mc-map-card/script.js
similarity index 100%
rename from src/modules/Components/components/mc-map-card/script.js
rename to api/mapas/src/modules/Components/components/mc-map-card/script.js
diff --git a/src/modules/Components/components/mc-map-card/template.php b/api/mapas/src/modules/Components/components/mc-map-card/template.php
similarity index 100%
rename from src/modules/Components/components/mc-map-card/template.php
rename to api/mapas/src/modules/Components/components/mc-map-card/template.php
diff --git a/src/modules/Components/components/mc-map-card/texts.php b/api/mapas/src/modules/Components/components/mc-map-card/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-map-card/texts.php
rename to api/mapas/src/modules/Components/components/mc-map-card/texts.php
diff --git a/src/modules/Components/components/mc-map-marker/README.md b/api/mapas/src/modules/Components/components/mc-map-marker/README.md
similarity index 100%
rename from src/modules/Components/components/mc-map-marker/README.md
rename to api/mapas/src/modules/Components/components/mc-map-marker/README.md
diff --git a/src/modules/Components/components/mc-map-marker/script.js b/api/mapas/src/modules/Components/components/mc-map-marker/script.js
similarity index 100%
rename from src/modules/Components/components/mc-map-marker/script.js
rename to api/mapas/src/modules/Components/components/mc-map-marker/script.js
diff --git a/src/modules/Components/components/mc-map-marker/template.php b/api/mapas/src/modules/Components/components/mc-map-marker/template.php
similarity index 100%
rename from src/modules/Components/components/mc-map-marker/template.php
rename to api/mapas/src/modules/Components/components/mc-map-marker/template.php
diff --git a/src/modules/Components/components/mc-map-marker/texts.php b/api/mapas/src/modules/Components/components/mc-map-marker/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-map-marker/texts.php
rename to api/mapas/src/modules/Components/components/mc-map-marker/texts.php
diff --git a/src/modules/Components/components/mc-map/README.md b/api/mapas/src/modules/Components/components/mc-map/README.md
similarity index 100%
rename from src/modules/Components/components/mc-map/README.md
rename to api/mapas/src/modules/Components/components/mc-map/README.md
diff --git a/src/modules/Components/components/mc-map/init.php b/api/mapas/src/modules/Components/components/mc-map/init.php
similarity index 100%
rename from src/modules/Components/components/mc-map/init.php
rename to api/mapas/src/modules/Components/components/mc-map/init.php
diff --git a/src/modules/Components/components/mc-map/script.js b/api/mapas/src/modules/Components/components/mc-map/script.js
similarity index 100%
rename from src/modules/Components/components/mc-map/script.js
rename to api/mapas/src/modules/Components/components/mc-map/script.js
diff --git a/src/modules/Components/components/mc-map/template.php b/api/mapas/src/modules/Components/components/mc-map/template.php
similarity index 100%
rename from src/modules/Components/components/mc-map/template.php
rename to api/mapas/src/modules/Components/components/mc-map/template.php
diff --git a/src/modules/Components/components/mc-map/texts.php b/api/mapas/src/modules/Components/components/mc-map/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-map/texts.php
rename to api/mapas/src/modules/Components/components/mc-map/texts.php
diff --git a/src/modules/Components/components/mc-messages/README.md b/api/mapas/src/modules/Components/components/mc-messages/README.md
similarity index 100%
rename from src/modules/Components/components/mc-messages/README.md
rename to api/mapas/src/modules/Components/components/mc-messages/README.md
diff --git a/src/modules/Components/components/mc-messages/script.js b/api/mapas/src/modules/Components/components/mc-messages/script.js
similarity index 100%
rename from src/modules/Components/components/mc-messages/script.js
rename to api/mapas/src/modules/Components/components/mc-messages/script.js
diff --git a/src/modules/Components/components/mc-messages/template.php b/api/mapas/src/modules/Components/components/mc-messages/template.php
similarity index 100%
rename from src/modules/Components/components/mc-messages/template.php
rename to api/mapas/src/modules/Components/components/mc-messages/template.php
diff --git a/src/modules/Components/components/mc-modal/README.md b/api/mapas/src/modules/Components/components/mc-modal/README.md
similarity index 100%
rename from src/modules/Components/components/mc-modal/README.md
rename to api/mapas/src/modules/Components/components/mc-modal/README.md
diff --git a/src/modules/Components/components/mc-modal/script.js b/api/mapas/src/modules/Components/components/mc-modal/script.js
similarity index 100%
rename from src/modules/Components/components/mc-modal/script.js
rename to api/mapas/src/modules/Components/components/mc-modal/script.js
diff --git a/src/modules/Components/components/mc-modal/style.css b/api/mapas/src/modules/Components/components/mc-modal/style.css
similarity index 100%
rename from src/modules/Components/components/mc-modal/style.css
rename to api/mapas/src/modules/Components/components/mc-modal/style.css
diff --git a/src/modules/Components/components/mc-modal/template.php b/api/mapas/src/modules/Components/components/mc-modal/template.php
similarity index 100%
rename from src/modules/Components/components/mc-modal/template.php
rename to api/mapas/src/modules/Components/components/mc-modal/template.php
diff --git a/src/modules/Components/components/mc-multiselect/README.md b/api/mapas/src/modules/Components/components/mc-multiselect/README.md
similarity index 100%
rename from src/modules/Components/components/mc-multiselect/README.md
rename to api/mapas/src/modules/Components/components/mc-multiselect/README.md
diff --git a/src/modules/Components/components/mc-multiselect/script.js b/api/mapas/src/modules/Components/components/mc-multiselect/script.js
similarity index 100%
rename from src/modules/Components/components/mc-multiselect/script.js
rename to api/mapas/src/modules/Components/components/mc-multiselect/script.js
diff --git a/src/modules/Components/components/mc-multiselect/template.php b/api/mapas/src/modules/Components/components/mc-multiselect/template.php
similarity index 100%
rename from src/modules/Components/components/mc-multiselect/template.php
rename to api/mapas/src/modules/Components/components/mc-multiselect/template.php
diff --git a/src/modules/Components/components/mc-notification/README.md b/api/mapas/src/modules/Components/components/mc-notification/README.md
similarity index 100%
rename from src/modules/Components/components/mc-notification/README.md
rename to api/mapas/src/modules/Components/components/mc-notification/README.md
diff --git a/src/modules/Components/components/mc-notification/script.js b/api/mapas/src/modules/Components/components/mc-notification/script.js
similarity index 100%
rename from src/modules/Components/components/mc-notification/script.js
rename to api/mapas/src/modules/Components/components/mc-notification/script.js
diff --git a/src/modules/Components/components/mc-notification/template.php b/api/mapas/src/modules/Components/components/mc-notification/template.php
similarity index 100%
rename from src/modules/Components/components/mc-notification/template.php
rename to api/mapas/src/modules/Components/components/mc-notification/template.php
diff --git a/src/modules/Components/components/mc-notification/texts.php b/api/mapas/src/modules/Components/components/mc-notification/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-notification/texts.php
rename to api/mapas/src/modules/Components/components/mc-notification/texts.php
diff --git a/src/modules/Components/components/mc-popover/README.md b/api/mapas/src/modules/Components/components/mc-popover/README.md
similarity index 100%
rename from src/modules/Components/components/mc-popover/README.md
rename to api/mapas/src/modules/Components/components/mc-popover/README.md
diff --git a/src/modules/Components/components/mc-popover/script.js b/api/mapas/src/modules/Components/components/mc-popover/script.js
similarity index 100%
rename from src/modules/Components/components/mc-popover/script.js
rename to api/mapas/src/modules/Components/components/mc-popover/script.js
diff --git a/src/modules/Components/components/mc-popover/template.php b/api/mapas/src/modules/Components/components/mc-popover/template.php
similarity index 100%
rename from src/modules/Components/components/mc-popover/template.php
rename to api/mapas/src/modules/Components/components/mc-popover/template.php
diff --git a/src/modules/Components/components/mc-relation-card/README.md b/api/mapas/src/modules/Components/components/mc-relation-card/README.md
similarity index 100%
rename from src/modules/Components/components/mc-relation-card/README.md
rename to api/mapas/src/modules/Components/components/mc-relation-card/README.md
diff --git a/src/modules/Components/components/mc-relation-card/script.js b/api/mapas/src/modules/Components/components/mc-relation-card/script.js
similarity index 100%
rename from src/modules/Components/components/mc-relation-card/script.js
rename to api/mapas/src/modules/Components/components/mc-relation-card/script.js
diff --git a/src/modules/Components/components/mc-relation-card/template.php b/api/mapas/src/modules/Components/components/mc-relation-card/template.php
similarity index 100%
rename from src/modules/Components/components/mc-relation-card/template.php
rename to api/mapas/src/modules/Components/components/mc-relation-card/template.php
diff --git a/src/modules/Components/components/mc-select/README.md b/api/mapas/src/modules/Components/components/mc-select/README.md
similarity index 100%
rename from src/modules/Components/components/mc-select/README.md
rename to api/mapas/src/modules/Components/components/mc-select/README.md
diff --git a/src/modules/Components/components/mc-select/script.js b/api/mapas/src/modules/Components/components/mc-select/script.js
similarity index 100%
rename from src/modules/Components/components/mc-select/script.js
rename to api/mapas/src/modules/Components/components/mc-select/script.js
diff --git a/src/modules/Components/components/mc-select/template.php b/api/mapas/src/modules/Components/components/mc-select/template.php
similarity index 100%
rename from src/modules/Components/components/mc-select/template.php
rename to api/mapas/src/modules/Components/components/mc-select/template.php
diff --git a/src/modules/Components/components/mc-select/texts.php b/api/mapas/src/modules/Components/components/mc-select/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-select/texts.php
rename to api/mapas/src/modules/Components/components/mc-select/texts.php
diff --git a/src/modules/Components/components/mc-share-links/README.md b/api/mapas/src/modules/Components/components/mc-share-links/README.md
similarity index 100%
rename from src/modules/Components/components/mc-share-links/README.md
rename to api/mapas/src/modules/Components/components/mc-share-links/README.md
diff --git a/src/modules/Components/components/mc-share-links/script.js b/api/mapas/src/modules/Components/components/mc-share-links/script.js
similarity index 100%
rename from src/modules/Components/components/mc-share-links/script.js
rename to api/mapas/src/modules/Components/components/mc-share-links/script.js
diff --git a/src/modules/Components/components/mc-share-links/template.php b/api/mapas/src/modules/Components/components/mc-share-links/template.php
similarity index 100%
rename from src/modules/Components/components/mc-share-links/template.php
rename to api/mapas/src/modules/Components/components/mc-share-links/template.php
diff --git a/src/modules/Components/components/mc-status/README.md b/api/mapas/src/modules/Components/components/mc-status/README.md
similarity index 100%
rename from src/modules/Components/components/mc-status/README.md
rename to api/mapas/src/modules/Components/components/mc-status/README.md
diff --git a/src/modules/Components/components/mc-status/script.js b/api/mapas/src/modules/Components/components/mc-status/script.js
similarity index 100%
rename from src/modules/Components/components/mc-status/script.js
rename to api/mapas/src/modules/Components/components/mc-status/script.js
diff --git a/src/modules/Components/components/mc-status/template.php b/api/mapas/src/modules/Components/components/mc-status/template.php
similarity index 100%
rename from src/modules/Components/components/mc-status/template.php
rename to api/mapas/src/modules/Components/components/mc-status/template.php
diff --git a/src/modules/Components/components/mc-status/texts.php b/api/mapas/src/modules/Components/components/mc-status/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-status/texts.php
rename to api/mapas/src/modules/Components/components/mc-status/texts.php
diff --git a/src/modules/Components/components/mc-stepper-vertical/README.md b/api/mapas/src/modules/Components/components/mc-stepper-vertical/README.md
similarity index 100%
rename from src/modules/Components/components/mc-stepper-vertical/README.md
rename to api/mapas/src/modules/Components/components/mc-stepper-vertical/README.md
diff --git a/src/modules/Components/components/mc-stepper-vertical/script.js b/api/mapas/src/modules/Components/components/mc-stepper-vertical/script.js
similarity index 100%
rename from src/modules/Components/components/mc-stepper-vertical/script.js
rename to api/mapas/src/modules/Components/components/mc-stepper-vertical/script.js
diff --git a/src/modules/Components/components/mc-stepper-vertical/template.php b/api/mapas/src/modules/Components/components/mc-stepper-vertical/template.php
similarity index 100%
rename from src/modules/Components/components/mc-stepper-vertical/template.php
rename to api/mapas/src/modules/Components/components/mc-stepper-vertical/template.php
diff --git a/src/modules/Components/components/mc-stepper-vertical/texts.php b/api/mapas/src/modules/Components/components/mc-stepper-vertical/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-stepper-vertical/texts.php
rename to api/mapas/src/modules/Components/components/mc-stepper-vertical/texts.php
diff --git a/src/modules/Components/components/mc-stepper/README.md b/api/mapas/src/modules/Components/components/mc-stepper/README.md
similarity index 100%
rename from src/modules/Components/components/mc-stepper/README.md
rename to api/mapas/src/modules/Components/components/mc-stepper/README.md
diff --git a/src/modules/Components/components/mc-stepper/script.js b/api/mapas/src/modules/Components/components/mc-stepper/script.js
similarity index 100%
rename from src/modules/Components/components/mc-stepper/script.js
rename to api/mapas/src/modules/Components/components/mc-stepper/script.js
diff --git a/src/modules/Components/components/mc-stepper/template.php b/api/mapas/src/modules/Components/components/mc-stepper/template.php
similarity index 100%
rename from src/modules/Components/components/mc-stepper/template.php
rename to api/mapas/src/modules/Components/components/mc-stepper/template.php
diff --git a/src/modules/Components/components/mc-stepper/texts.php b/api/mapas/src/modules/Components/components/mc-stepper/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-stepper/texts.php
rename to api/mapas/src/modules/Components/components/mc-stepper/texts.php
diff --git a/src/modules/Components/components/mc-summary-agent-info/README.md b/api/mapas/src/modules/Components/components/mc-summary-agent-info/README.md
similarity index 100%
rename from src/modules/Components/components/mc-summary-agent-info/README.md
rename to api/mapas/src/modules/Components/components/mc-summary-agent-info/README.md
diff --git a/src/modules/Components/components/mc-summary-agent-info/init.php b/api/mapas/src/modules/Components/components/mc-summary-agent-info/init.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-agent-info/init.php
rename to api/mapas/src/modules/Components/components/mc-summary-agent-info/init.php
diff --git a/src/modules/Components/components/mc-summary-agent-info/script.js b/api/mapas/src/modules/Components/components/mc-summary-agent-info/script.js
similarity index 100%
rename from src/modules/Components/components/mc-summary-agent-info/script.js
rename to api/mapas/src/modules/Components/components/mc-summary-agent-info/script.js
diff --git a/src/modules/Components/components/mc-summary-agent-info/template.php b/api/mapas/src/modules/Components/components/mc-summary-agent-info/template.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-agent-info/template.php
rename to api/mapas/src/modules/Components/components/mc-summary-agent-info/template.php
diff --git a/src/modules/Components/components/mc-summary-agent-info/texts.php b/api/mapas/src/modules/Components/components/mc-summary-agent-info/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-agent-info/texts.php
rename to api/mapas/src/modules/Components/components/mc-summary-agent-info/texts.php
diff --git a/src/modules/Components/components/mc-summary-agent/README.md b/api/mapas/src/modules/Components/components/mc-summary-agent/README.md
similarity index 100%
rename from src/modules/Components/components/mc-summary-agent/README.md
rename to api/mapas/src/modules/Components/components/mc-summary-agent/README.md
diff --git a/src/modules/Components/components/mc-summary-agent/init.php b/api/mapas/src/modules/Components/components/mc-summary-agent/init.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-agent/init.php
rename to api/mapas/src/modules/Components/components/mc-summary-agent/init.php
diff --git a/src/modules/Components/components/mc-summary-agent/script.js b/api/mapas/src/modules/Components/components/mc-summary-agent/script.js
similarity index 100%
rename from src/modules/Components/components/mc-summary-agent/script.js
rename to api/mapas/src/modules/Components/components/mc-summary-agent/script.js
diff --git a/src/modules/Components/components/mc-summary-agent/template.php b/api/mapas/src/modules/Components/components/mc-summary-agent/template.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-agent/template.php
rename to api/mapas/src/modules/Components/components/mc-summary-agent/template.php
diff --git a/src/modules/Components/components/mc-summary-agent/texts.php b/api/mapas/src/modules/Components/components/mc-summary-agent/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-agent/texts.php
rename to api/mapas/src/modules/Components/components/mc-summary-agent/texts.php
diff --git a/src/modules/Components/components/mc-summary-agents/init.php b/api/mapas/src/modules/Components/components/mc-summary-agents/init.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-agents/init.php
rename to api/mapas/src/modules/Components/components/mc-summary-agents/init.php
diff --git a/src/modules/Components/components/mc-summary-agents/script.js b/api/mapas/src/modules/Components/components/mc-summary-agents/script.js
similarity index 100%
rename from src/modules/Components/components/mc-summary-agents/script.js
rename to api/mapas/src/modules/Components/components/mc-summary-agents/script.js
diff --git a/src/modules/Components/components/mc-summary-agents/texts.php b/api/mapas/src/modules/Components/components/mc-summary-agents/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-agents/texts.php
rename to api/mapas/src/modules/Components/components/mc-summary-agents/texts.php
diff --git a/src/modules/Components/components/mc-summary-evaluate/README.md b/api/mapas/src/modules/Components/components/mc-summary-evaluate/README.md
similarity index 100%
rename from src/modules/Components/components/mc-summary-evaluate/README.md
rename to api/mapas/src/modules/Components/components/mc-summary-evaluate/README.md
diff --git a/src/modules/Components/components/mc-summary-evaluate/init.php b/api/mapas/src/modules/Components/components/mc-summary-evaluate/init.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-evaluate/init.php
rename to api/mapas/src/modules/Components/components/mc-summary-evaluate/init.php
diff --git a/src/modules/Components/components/mc-summary-evaluate/script.js b/api/mapas/src/modules/Components/components/mc-summary-evaluate/script.js
similarity index 100%
rename from src/modules/Components/components/mc-summary-evaluate/script.js
rename to api/mapas/src/modules/Components/components/mc-summary-evaluate/script.js
diff --git a/src/modules/Components/components/mc-summary-evaluate/template.php b/api/mapas/src/modules/Components/components/mc-summary-evaluate/template.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-evaluate/template.php
rename to api/mapas/src/modules/Components/components/mc-summary-evaluate/template.php
diff --git a/src/modules/Components/components/mc-summary-evaluate/texts.php b/api/mapas/src/modules/Components/components/mc-summary-evaluate/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-evaluate/texts.php
rename to api/mapas/src/modules/Components/components/mc-summary-evaluate/texts.php
diff --git a/src/modules/Components/components/mc-summary-project/README.md b/api/mapas/src/modules/Components/components/mc-summary-project/README.md
similarity index 100%
rename from src/modules/Components/components/mc-summary-project/README.md
rename to api/mapas/src/modules/Components/components/mc-summary-project/README.md
diff --git a/src/modules/Components/components/mc-summary-project/init.php b/api/mapas/src/modules/Components/components/mc-summary-project/init.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-project/init.php
rename to api/mapas/src/modules/Components/components/mc-summary-project/init.php
diff --git a/src/modules/Components/components/mc-summary-project/script.js b/api/mapas/src/modules/Components/components/mc-summary-project/script.js
similarity index 100%
rename from src/modules/Components/components/mc-summary-project/script.js
rename to api/mapas/src/modules/Components/components/mc-summary-project/script.js
diff --git a/src/modules/Components/components/mc-summary-project/template.php b/api/mapas/src/modules/Components/components/mc-summary-project/template.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-project/template.php
rename to api/mapas/src/modules/Components/components/mc-summary-project/template.php
diff --git a/src/modules/Components/components/mc-summary-project/texts.php b/api/mapas/src/modules/Components/components/mc-summary-project/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-project/texts.php
rename to api/mapas/src/modules/Components/components/mc-summary-project/texts.php
diff --git a/src/modules/Components/components/mc-summary-spaces/README.md b/api/mapas/src/modules/Components/components/mc-summary-spaces/README.md
similarity index 100%
rename from src/modules/Components/components/mc-summary-spaces/README.md
rename to api/mapas/src/modules/Components/components/mc-summary-spaces/README.md
diff --git a/src/modules/Components/components/mc-summary-spaces/init.php b/api/mapas/src/modules/Components/components/mc-summary-spaces/init.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-spaces/init.php
rename to api/mapas/src/modules/Components/components/mc-summary-spaces/init.php
diff --git a/src/modules/Components/components/mc-summary-spaces/script.js b/api/mapas/src/modules/Components/components/mc-summary-spaces/script.js
similarity index 100%
rename from src/modules/Components/components/mc-summary-spaces/script.js
rename to api/mapas/src/modules/Components/components/mc-summary-spaces/script.js
diff --git a/src/modules/Components/components/mc-summary-spaces/template.php b/api/mapas/src/modules/Components/components/mc-summary-spaces/template.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-spaces/template.php
rename to api/mapas/src/modules/Components/components/mc-summary-spaces/template.php
diff --git a/src/modules/Components/components/mc-summary-spaces/texts.php b/api/mapas/src/modules/Components/components/mc-summary-spaces/texts.php
similarity index 100%
rename from src/modules/Components/components/mc-summary-spaces/texts.php
rename to api/mapas/src/modules/Components/components/mc-summary-spaces/texts.php
diff --git a/src/modules/Components/components/mc-tab/README.md b/api/mapas/src/modules/Components/components/mc-tab/README.md
similarity index 100%
rename from src/modules/Components/components/mc-tab/README.md
rename to api/mapas/src/modules/Components/components/mc-tab/README.md
diff --git a/src/modules/Components/components/mc-tab/script.js b/api/mapas/src/modules/Components/components/mc-tab/script.js
similarity index 100%
rename from src/modules/Components/components/mc-tab/script.js
rename to api/mapas/src/modules/Components/components/mc-tab/script.js
diff --git a/src/modules/Components/components/mc-tab/template.php b/api/mapas/src/modules/Components/components/mc-tab/template.php
similarity index 100%
rename from src/modules/Components/components/mc-tab/template.php
rename to api/mapas/src/modules/Components/components/mc-tab/template.php
diff --git a/src/modules/Components/components/mc-tabs/README.md b/api/mapas/src/modules/Components/components/mc-tabs/README.md
similarity index 100%
rename from src/modules/Components/components/mc-tabs/README.md
rename to api/mapas/src/modules/Components/components/mc-tabs/README.md
diff --git a/src/modules/Components/components/mc-tabs/script.js b/api/mapas/src/modules/Components/components/mc-tabs/script.js
similarity index 100%
rename from src/modules/Components/components/mc-tabs/script.js
rename to api/mapas/src/modules/Components/components/mc-tabs/script.js
diff --git a/src/modules/Components/components/mc-tabs/template.php b/api/mapas/src/modules/Components/components/mc-tabs/template.php
similarity index 100%
rename from src/modules/Components/components/mc-tabs/template.php
rename to api/mapas/src/modules/Components/components/mc-tabs/template.php
diff --git a/src/modules/Components/components/mc-tag-list/README.md b/api/mapas/src/modules/Components/components/mc-tag-list/README.md
similarity index 100%
rename from src/modules/Components/components/mc-tag-list/README.md
rename to api/mapas/src/modules/Components/components/mc-tag-list/README.md
diff --git a/src/modules/Components/components/mc-tag-list/script.js b/api/mapas/src/modules/Components/components/mc-tag-list/script.js
similarity index 100%
rename from src/modules/Components/components/mc-tag-list/script.js
rename to api/mapas/src/modules/Components/components/mc-tag-list/script.js
diff --git a/src/modules/Components/components/mc-tag-list/template.php b/api/mapas/src/modules/Components/components/mc-tag-list/template.php
similarity index 100%
rename from src/modules/Components/components/mc-tag-list/template.php
rename to api/mapas/src/modules/Components/components/mc-tag-list/template.php
diff --git a/src/modules/Components/components/mc-title/README.md b/api/mapas/src/modules/Components/components/mc-title/README.md
similarity index 100%
rename from src/modules/Components/components/mc-title/README.md
rename to api/mapas/src/modules/Components/components/mc-title/README.md
diff --git a/src/modules/Components/components/mc-title/script.js b/api/mapas/src/modules/Components/components/mc-title/script.js
similarity index 100%
rename from src/modules/Components/components/mc-title/script.js
rename to api/mapas/src/modules/Components/components/mc-title/script.js
diff --git a/src/modules/Components/components/mc-title/template.php b/api/mapas/src/modules/Components/components/mc-title/template.php
similarity index 100%
rename from src/modules/Components/components/mc-title/template.php
rename to api/mapas/src/modules/Components/components/mc-title/template.php
diff --git a/src/modules/Components/components/occurrence-card/README.md b/api/mapas/src/modules/Components/components/occurrence-card/README.md
similarity index 100%
rename from src/modules/Components/components/occurrence-card/README.md
rename to api/mapas/src/modules/Components/components/occurrence-card/README.md
diff --git a/src/modules/Components/components/occurrence-card/script.js b/api/mapas/src/modules/Components/components/occurrence-card/script.js
similarity index 100%
rename from src/modules/Components/components/occurrence-card/script.js
rename to api/mapas/src/modules/Components/components/occurrence-card/script.js
diff --git a/src/modules/Components/components/occurrence-card/template.php b/api/mapas/src/modules/Components/components/occurrence-card/template.php
similarity index 100%
rename from src/modules/Components/components/occurrence-card/template.php
rename to api/mapas/src/modules/Components/components/occurrence-card/template.php
diff --git a/src/modules/Components/components/occurrence-card/texts.php b/api/mapas/src/modules/Components/components/occurrence-card/texts.php
similarity index 100%
rename from src/modules/Components/components/occurrence-card/texts.php
rename to api/mapas/src/modules/Components/components/occurrence-card/texts.php
diff --git a/src/modules/Components/components/permission-publish/README.md b/api/mapas/src/modules/Components/components/permission-publish/README.md
similarity index 100%
rename from src/modules/Components/components/permission-publish/README.md
rename to api/mapas/src/modules/Components/components/permission-publish/README.md
diff --git a/src/modules/Components/components/permission-publish/script.js b/api/mapas/src/modules/Components/components/permission-publish/script.js
similarity index 100%
rename from src/modules/Components/components/permission-publish/script.js
rename to api/mapas/src/modules/Components/components/permission-publish/script.js
diff --git a/src/modules/Components/components/permission-publish/template.php b/api/mapas/src/modules/Components/components/permission-publish/template.php
similarity index 100%
rename from src/modules/Components/components/permission-publish/template.php
rename to api/mapas/src/modules/Components/components/permission-publish/template.php
diff --git a/src/modules/Components/components/permission-publish/texts.php b/api/mapas/src/modules/Components/components/permission-publish/texts.php
similarity index 100%
rename from src/modules/Components/components/permission-publish/texts.php
rename to api/mapas/src/modules/Components/components/permission-publish/texts.php
diff --git a/src/modules/Components/components/select-entity/script.js b/api/mapas/src/modules/Components/components/select-entity/script.js
similarity index 100%
rename from src/modules/Components/components/select-entity/script.js
rename to api/mapas/src/modules/Components/components/select-entity/script.js
diff --git a/src/modules/Components/components/select-entity/template.php b/api/mapas/src/modules/Components/components/select-entity/template.php
similarity index 100%
rename from src/modules/Components/components/select-entity/template.php
rename to api/mapas/src/modules/Components/components/select-entity/template.php
diff --git a/src/modules/Components/components/select-entity/texts.php b/api/mapas/src/modules/Components/components/select-entity/texts.php
similarity index 100%
rename from src/modules/Components/components/select-entity/texts.php
rename to api/mapas/src/modules/Components/components/select-entity/texts.php
diff --git a/src/modules/Components/components/space-card/script.js b/api/mapas/src/modules/Components/components/space-card/script.js
similarity index 100%
rename from src/modules/Components/components/space-card/script.js
rename to api/mapas/src/modules/Components/components/space-card/script.js
diff --git a/src/modules/Components/components/space-card/template.php b/api/mapas/src/modules/Components/components/space-card/template.php
similarity index 100%
rename from src/modules/Components/components/space-card/template.php
rename to api/mapas/src/modules/Components/components/space-card/template.php
diff --git a/src/modules/Components/components/space-info/script.js b/api/mapas/src/modules/Components/components/space-info/script.js
similarity index 100%
rename from src/modules/Components/components/space-info/script.js
rename to api/mapas/src/modules/Components/components/space-info/script.js
diff --git a/src/modules/Components/components/space-info/template.php b/api/mapas/src/modules/Components/components/space-info/template.php
similarity index 100%
rename from src/modules/Components/components/space-info/template.php
rename to api/mapas/src/modules/Components/components/space-info/template.php
diff --git a/src/modules/Components/components/theme-logo/README.md b/api/mapas/src/modules/Components/components/theme-logo/README.md
similarity index 100%
rename from src/modules/Components/components/theme-logo/README.md
rename to api/mapas/src/modules/Components/components/theme-logo/README.md
diff --git a/src/modules/Components/components/theme-logo/init.php b/api/mapas/src/modules/Components/components/theme-logo/init.php
similarity index 100%
rename from src/modules/Components/components/theme-logo/init.php
rename to api/mapas/src/modules/Components/components/theme-logo/init.php
diff --git a/src/modules/Components/components/theme-logo/script.js b/api/mapas/src/modules/Components/components/theme-logo/script.js
similarity index 100%
rename from src/modules/Components/components/theme-logo/script.js
rename to api/mapas/src/modules/Components/components/theme-logo/script.js
diff --git a/src/modules/Components/components/theme-logo/template.php b/api/mapas/src/modules/Components/components/theme-logo/template.php
similarity index 100%
rename from src/modules/Components/components/theme-logo/template.php
rename to api/mapas/src/modules/Components/components/theme-logo/template.php
diff --git a/src/modules/Components/components/theme-logo/texts.php b/api/mapas/src/modules/Components/components/theme-logo/texts.php
similarity index 100%
rename from src/modules/Components/components/theme-logo/texts.php
rename to api/mapas/src/modules/Components/components/theme-logo/texts.php
diff --git a/src/modules/Components/components/user-profile-avatar/README.md b/api/mapas/src/modules/Components/components/user-profile-avatar/README.md
similarity index 100%
rename from src/modules/Components/components/user-profile-avatar/README.md
rename to api/mapas/src/modules/Components/components/user-profile-avatar/README.md
diff --git a/src/modules/Components/components/user-profile-avatar/script.js b/api/mapas/src/modules/Components/components/user-profile-avatar/script.js
similarity index 100%
rename from src/modules/Components/components/user-profile-avatar/script.js
rename to api/mapas/src/modules/Components/components/user-profile-avatar/script.js
diff --git a/src/modules/Components/components/user-profile-avatar/template.php b/api/mapas/src/modules/Components/components/user-profile-avatar/template.php
similarity index 100%
rename from src/modules/Components/components/user-profile-avatar/template.php
rename to api/mapas/src/modules/Components/components/user-profile-avatar/template.php
diff --git a/src/modules/Components/layouts/parts/main-app--begin.php b/api/mapas/src/modules/Components/layouts/parts/main-app--begin.php
similarity index 100%
rename from src/modules/Components/layouts/parts/main-app--begin.php
rename to api/mapas/src/modules/Components/layouts/parts/main-app--begin.php
diff --git a/src/modules/Components/layouts/parts/main-app--end.php b/api/mapas/src/modules/Components/layouts/parts/main-app--end.php
similarity index 100%
rename from src/modules/Components/layouts/parts/main-app--end.php
rename to api/mapas/src/modules/Components/layouts/parts/main-app--end.php
diff --git a/src/modules/Components/package.json b/api/mapas/src/modules/Components/package.json
similarity index 100%
rename from src/modules/Components/package.json
rename to api/mapas/src/modules/Components/package.json
diff --git a/src/modules/DeleteAccount/Module.php b/api/mapas/src/modules/DeleteAccount/Module.php
similarity index 100%
rename from src/modules/DeleteAccount/Module.php
rename to api/mapas/src/modules/DeleteAccount/Module.php
diff --git a/src/modules/DeleteAccount/assets/js/ng.delete-account.js b/api/mapas/src/modules/DeleteAccount/assets/js/ng.delete-account.js
similarity index 100%
rename from src/modules/DeleteAccount/assets/js/ng.delete-account.js
rename to api/mapas/src/modules/DeleteAccount/assets/js/ng.delete-account.js
diff --git a/src/modules/DeleteAccount/layouts/parts/delete-account--button.php b/api/mapas/src/modules/DeleteAccount/layouts/parts/delete-account--button.php
similarity index 100%
rename from src/modules/DeleteAccount/layouts/parts/delete-account--button.php
rename to api/mapas/src/modules/DeleteAccount/layouts/parts/delete-account--button.php
diff --git a/src/modules/DeleteAccount/views/panel/delete-account.php b/api/mapas/src/modules/DeleteAccount/views/panel/delete-account.php
similarity index 100%
rename from src/modules/DeleteAccount/views/panel/delete-account.php
rename to api/mapas/src/modules/DeleteAccount/views/panel/delete-account.php
diff --git a/src/modules/Entities/Module.php b/api/mapas/src/modules/Entities/Module.php
similarity index 100%
rename from src/modules/Entities/Module.php
rename to api/mapas/src/modules/Entities/Module.php
diff --git a/src/modules/Entities/assets/.gitkeep b/api/mapas/src/modules/Entities/assets/.gitkeep
similarity index 100%
rename from src/modules/Entities/assets/.gitkeep
rename to api/mapas/src/modules/Entities/assets/.gitkeep
diff --git a/src/modules/Entities/components/agent-data-1/init.php b/api/mapas/src/modules/Entities/components/agent-data-1/init.php
similarity index 100%
rename from src/modules/Entities/components/agent-data-1/init.php
rename to api/mapas/src/modules/Entities/components/agent-data-1/init.php
diff --git a/src/modules/Entities/components/agent-data-1/script.js b/api/mapas/src/modules/Entities/components/agent-data-1/script.js
similarity index 100%
rename from src/modules/Entities/components/agent-data-1/script.js
rename to api/mapas/src/modules/Entities/components/agent-data-1/script.js
diff --git a/src/modules/Entities/components/agent-data-1/template.php b/api/mapas/src/modules/Entities/components/agent-data-1/template.php
similarity index 100%
rename from src/modules/Entities/components/agent-data-1/template.php
rename to api/mapas/src/modules/Entities/components/agent-data-1/template.php
diff --git a/src/modules/Entities/components/agent-data-2/init.php b/api/mapas/src/modules/Entities/components/agent-data-2/init.php
similarity index 100%
rename from src/modules/Entities/components/agent-data-2/init.php
rename to api/mapas/src/modules/Entities/components/agent-data-2/init.php
diff --git a/src/modules/Entities/components/agent-data-2/script.js b/api/mapas/src/modules/Entities/components/agent-data-2/script.js
similarity index 100%
rename from src/modules/Entities/components/agent-data-2/script.js
rename to api/mapas/src/modules/Entities/components/agent-data-2/script.js
diff --git a/src/modules/Entities/components/agent-data-2/template.php b/api/mapas/src/modules/Entities/components/agent-data-2/template.php
similarity index 100%
rename from src/modules/Entities/components/agent-data-2/template.php
rename to api/mapas/src/modules/Entities/components/agent-data-2/template.php
diff --git a/src/modules/Entities/components/confirm-before-exit/script.js b/api/mapas/src/modules/Entities/components/confirm-before-exit/script.js
similarity index 100%
rename from src/modules/Entities/components/confirm-before-exit/script.js
rename to api/mapas/src/modules/Entities/components/confirm-before-exit/script.js
diff --git a/src/modules/Entities/components/confirm-before-exit/template.php b/api/mapas/src/modules/Entities/components/confirm-before-exit/template.php
similarity index 100%
rename from src/modules/Entities/components/confirm-before-exit/template.php
rename to api/mapas/src/modules/Entities/components/confirm-before-exit/template.php
diff --git a/src/modules/Entities/components/confirm-before-exit/texts.php b/api/mapas/src/modules/Entities/components/confirm-before-exit/texts.php
similarity index 100%
rename from src/modules/Entities/components/confirm-before-exit/texts.php
rename to api/mapas/src/modules/Entities/components/confirm-before-exit/texts.php
diff --git a/src/modules/Entities/components/create-agent/script.js b/api/mapas/src/modules/Entities/components/create-agent/script.js
similarity index 100%
rename from src/modules/Entities/components/create-agent/script.js
rename to api/mapas/src/modules/Entities/components/create-agent/script.js
diff --git a/src/modules/Entities/components/create-agent/template.php b/api/mapas/src/modules/Entities/components/create-agent/template.php
similarity index 100%
rename from src/modules/Entities/components/create-agent/template.php
rename to api/mapas/src/modules/Entities/components/create-agent/template.php
diff --git a/src/modules/Entities/components/create-agent/texts.php b/api/mapas/src/modules/Entities/components/create-agent/texts.php
similarity index 100%
rename from src/modules/Entities/components/create-agent/texts.php
rename to api/mapas/src/modules/Entities/components/create-agent/texts.php
diff --git a/src/modules/Entities/components/create-event/script.js b/api/mapas/src/modules/Entities/components/create-event/script.js
similarity index 100%
rename from src/modules/Entities/components/create-event/script.js
rename to api/mapas/src/modules/Entities/components/create-event/script.js
diff --git a/src/modules/Entities/components/create-event/template.php b/api/mapas/src/modules/Entities/components/create-event/template.php
similarity index 100%
rename from src/modules/Entities/components/create-event/template.php
rename to api/mapas/src/modules/Entities/components/create-event/template.php
diff --git a/src/modules/Entities/components/create-event/texts.php b/api/mapas/src/modules/Entities/components/create-event/texts.php
similarity index 100%
rename from src/modules/Entities/components/create-event/texts.php
rename to api/mapas/src/modules/Entities/components/create-event/texts.php
diff --git a/src/modules/Entities/components/create-occurrence/script.js b/api/mapas/src/modules/Entities/components/create-occurrence/script.js
similarity index 100%
rename from src/modules/Entities/components/create-occurrence/script.js
rename to api/mapas/src/modules/Entities/components/create-occurrence/script.js
diff --git a/src/modules/Entities/components/create-occurrence/template.php b/api/mapas/src/modules/Entities/components/create-occurrence/template.php
similarity index 100%
rename from src/modules/Entities/components/create-occurrence/template.php
rename to api/mapas/src/modules/Entities/components/create-occurrence/template.php
diff --git a/src/modules/Entities/components/create-occurrence/texts.php b/api/mapas/src/modules/Entities/components/create-occurrence/texts.php
similarity index 100%
rename from src/modules/Entities/components/create-occurrence/texts.php
rename to api/mapas/src/modules/Entities/components/create-occurrence/texts.php
diff --git a/src/modules/Entities/components/create-opportunity/script.js b/api/mapas/src/modules/Entities/components/create-opportunity/script.js
similarity index 100%
rename from src/modules/Entities/components/create-opportunity/script.js
rename to api/mapas/src/modules/Entities/components/create-opportunity/script.js
diff --git a/src/modules/Entities/components/create-opportunity/template.php b/api/mapas/src/modules/Entities/components/create-opportunity/template.php
similarity index 100%
rename from src/modules/Entities/components/create-opportunity/template.php
rename to api/mapas/src/modules/Entities/components/create-opportunity/template.php
diff --git a/src/modules/Entities/components/create-opportunity/texts.php b/api/mapas/src/modules/Entities/components/create-opportunity/texts.php
similarity index 100%
rename from src/modules/Entities/components/create-opportunity/texts.php
rename to api/mapas/src/modules/Entities/components/create-opportunity/texts.php
diff --git a/src/modules/Entities/components/create-project/script.js b/api/mapas/src/modules/Entities/components/create-project/script.js
similarity index 100%
rename from src/modules/Entities/components/create-project/script.js
rename to api/mapas/src/modules/Entities/components/create-project/script.js
diff --git a/src/modules/Entities/components/create-project/template.php b/api/mapas/src/modules/Entities/components/create-project/template.php
similarity index 100%
rename from src/modules/Entities/components/create-project/template.php
rename to api/mapas/src/modules/Entities/components/create-project/template.php
diff --git a/src/modules/Entities/components/create-project/texts.php b/api/mapas/src/modules/Entities/components/create-project/texts.php
similarity index 100%
rename from src/modules/Entities/components/create-project/texts.php
rename to api/mapas/src/modules/Entities/components/create-project/texts.php
diff --git a/src/modules/Entities/components/create-space/script.js b/api/mapas/src/modules/Entities/components/create-space/script.js
similarity index 100%
rename from src/modules/Entities/components/create-space/script.js
rename to api/mapas/src/modules/Entities/components/create-space/script.js
diff --git a/src/modules/Entities/components/create-space/template.php b/api/mapas/src/modules/Entities/components/create-space/template.php
similarity index 100%
rename from src/modules/Entities/components/create-space/template.php
rename to api/mapas/src/modules/Entities/components/create-space/template.php
diff --git a/src/modules/Entities/components/create-space/texts.php b/api/mapas/src/modules/Entities/components/create-space/texts.php
similarity index 100%
rename from src/modules/Entities/components/create-space/texts.php
rename to api/mapas/src/modules/Entities/components/create-space/texts.php
diff --git a/src/modules/Entities/components/entity-actions/README b/api/mapas/src/modules/Entities/components/entity-actions/README
similarity index 100%
rename from src/modules/Entities/components/entity-actions/README
rename to api/mapas/src/modules/Entities/components/entity-actions/README
diff --git a/src/modules/Entities/components/entity-actions/script.js b/api/mapas/src/modules/Entities/components/entity-actions/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-actions/script.js
rename to api/mapas/src/modules/Entities/components/entity-actions/script.js
diff --git a/src/modules/Entities/components/entity-actions/template.php b/api/mapas/src/modules/Entities/components/entity-actions/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-actions/template.php
rename to api/mapas/src/modules/Entities/components/entity-actions/template.php
diff --git a/src/modules/Entities/components/entity-actions/texts.php b/api/mapas/src/modules/Entities/components/entity-actions/texts.php
similarity index 100%
rename from src/modules/Entities/components/entity-actions/texts.php
rename to api/mapas/src/modules/Entities/components/entity-actions/texts.php
diff --git a/src/modules/Entities/components/entity-activity-card/script.js b/api/mapas/src/modules/Entities/components/entity-activity-card/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-activity-card/script.js
rename to api/mapas/src/modules/Entities/components/entity-activity-card/script.js
diff --git a/src/modules/Entities/components/entity-activity-card/template.php b/api/mapas/src/modules/Entities/components/entity-activity-card/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-activity-card/template.php
rename to api/mapas/src/modules/Entities/components/entity-activity-card/template.php
diff --git a/src/modules/Entities/components/entity-admins/README.md b/api/mapas/src/modules/Entities/components/entity-admins/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-admins/README.md
rename to api/mapas/src/modules/Entities/components/entity-admins/README.md
diff --git a/src/modules/Entities/components/entity-admins/script.js b/api/mapas/src/modules/Entities/components/entity-admins/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-admins/script.js
rename to api/mapas/src/modules/Entities/components/entity-admins/script.js
diff --git a/src/modules/Entities/components/entity-admins/template.php b/api/mapas/src/modules/Entities/components/entity-admins/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-admins/template.php
rename to api/mapas/src/modules/Entities/components/entity-admins/template.php
diff --git a/src/modules/Entities/components/entity-cover/README.md b/api/mapas/src/modules/Entities/components/entity-cover/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-cover/README.md
rename to api/mapas/src/modules/Entities/components/entity-cover/README.md
diff --git a/src/modules/Entities/components/entity-cover/script.js b/api/mapas/src/modules/Entities/components/entity-cover/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-cover/script.js
rename to api/mapas/src/modules/Entities/components/entity-cover/script.js
diff --git a/src/modules/Entities/components/entity-cover/template.php b/api/mapas/src/modules/Entities/components/entity-cover/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-cover/template.php
rename to api/mapas/src/modules/Entities/components/entity-cover/template.php
diff --git a/src/modules/Entities/components/entity-data/README.md b/api/mapas/src/modules/Entities/components/entity-data/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-data/README.md
rename to api/mapas/src/modules/Entities/components/entity-data/README.md
diff --git a/src/modules/Entities/components/entity-data/script.js b/api/mapas/src/modules/Entities/components/entity-data/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-data/script.js
rename to api/mapas/src/modules/Entities/components/entity-data/script.js
diff --git a/src/modules/Entities/components/entity-data/template.php b/api/mapas/src/modules/Entities/components/entity-data/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-data/template.php
rename to api/mapas/src/modules/Entities/components/entity-data/template.php
diff --git a/src/modules/Entities/components/entity-data/texts.php b/api/mapas/src/modules/Entities/components/entity-data/texts.php
similarity index 100%
rename from src/modules/Entities/components/entity-data/texts.php
rename to api/mapas/src/modules/Entities/components/entity-data/texts.php
diff --git a/src/modules/Entities/components/entity-field-datepicker/README.md b/api/mapas/src/modules/Entities/components/entity-field-datepicker/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-field-datepicker/README.md
rename to api/mapas/src/modules/Entities/components/entity-field-datepicker/README.md
diff --git a/src/modules/Entities/components/entity-field-datepicker/script.js b/api/mapas/src/modules/Entities/components/entity-field-datepicker/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-field-datepicker/script.js
rename to api/mapas/src/modules/Entities/components/entity-field-datepicker/script.js
diff --git a/src/modules/Entities/components/entity-field-datepicker/template.php b/api/mapas/src/modules/Entities/components/entity-field-datepicker/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-field-datepicker/template.php
rename to api/mapas/src/modules/Entities/components/entity-field-datepicker/template.php
diff --git a/src/modules/Entities/components/entity-field/README.md b/api/mapas/src/modules/Entities/components/entity-field/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-field/README.md
rename to api/mapas/src/modules/Entities/components/entity-field/README.md
diff --git a/src/modules/Entities/components/entity-field/script.js b/api/mapas/src/modules/Entities/components/entity-field/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-field/script.js
rename to api/mapas/src/modules/Entities/components/entity-field/script.js
diff --git a/src/modules/Entities/components/entity-field/template.php b/api/mapas/src/modules/Entities/components/entity-field/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-field/template.php
rename to api/mapas/src/modules/Entities/components/entity-field/template.php
diff --git a/src/modules/Entities/components/entity-file/README.md b/api/mapas/src/modules/Entities/components/entity-file/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-file/README.md
rename to api/mapas/src/modules/Entities/components/entity-file/README.md
diff --git a/src/modules/Entities/components/entity-file/script.js b/api/mapas/src/modules/Entities/components/entity-file/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-file/script.js
rename to api/mapas/src/modules/Entities/components/entity-file/script.js
diff --git a/src/modules/Entities/components/entity-file/template.php b/api/mapas/src/modules/Entities/components/entity-file/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-file/template.php
rename to api/mapas/src/modules/Entities/components/entity-file/template.php
diff --git a/src/modules/Entities/components/entity-files-list/README.md b/api/mapas/src/modules/Entities/components/entity-files-list/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-files-list/README.md
rename to api/mapas/src/modules/Entities/components/entity-files-list/README.md
diff --git a/src/modules/Entities/components/entity-files-list/script.js b/api/mapas/src/modules/Entities/components/entity-files-list/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-files-list/script.js
rename to api/mapas/src/modules/Entities/components/entity-files-list/script.js
diff --git a/src/modules/Entities/components/entity-files-list/template.php b/api/mapas/src/modules/Entities/components/entity-files-list/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-files-list/template.php
rename to api/mapas/src/modules/Entities/components/entity-files-list/template.php
diff --git a/src/modules/Entities/components/entity-files-list/texts.php b/api/mapas/src/modules/Entities/components/entity-files-list/texts.php
similarity index 100%
rename from src/modules/Entities/components/entity-files-list/texts.php
rename to api/mapas/src/modules/Entities/components/entity-files-list/texts.php
diff --git a/src/modules/Entities/components/entity-gallery-video/README.md b/api/mapas/src/modules/Entities/components/entity-gallery-video/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-gallery-video/README.md
rename to api/mapas/src/modules/Entities/components/entity-gallery-video/README.md
diff --git a/src/modules/Entities/components/entity-gallery-video/script.js b/api/mapas/src/modules/Entities/components/entity-gallery-video/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-gallery-video/script.js
rename to api/mapas/src/modules/Entities/components/entity-gallery-video/script.js
diff --git a/src/modules/Entities/components/entity-gallery-video/template.php b/api/mapas/src/modules/Entities/components/entity-gallery-video/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-gallery-video/template.php
rename to api/mapas/src/modules/Entities/components/entity-gallery-video/template.php
diff --git a/src/modules/Entities/components/entity-gallery-video/texts.php b/api/mapas/src/modules/Entities/components/entity-gallery-video/texts.php
similarity index 100%
rename from src/modules/Entities/components/entity-gallery-video/texts.php
rename to api/mapas/src/modules/Entities/components/entity-gallery-video/texts.php
diff --git a/src/modules/Entities/components/entity-gallery/README.md b/api/mapas/src/modules/Entities/components/entity-gallery/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-gallery/README.md
rename to api/mapas/src/modules/Entities/components/entity-gallery/README.md
diff --git a/src/modules/Entities/components/entity-gallery/script.js b/api/mapas/src/modules/Entities/components/entity-gallery/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-gallery/script.js
rename to api/mapas/src/modules/Entities/components/entity-gallery/script.js
diff --git a/src/modules/Entities/components/entity-gallery/template.php b/api/mapas/src/modules/Entities/components/entity-gallery/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-gallery/template.php
rename to api/mapas/src/modules/Entities/components/entity-gallery/template.php
diff --git a/src/modules/Entities/components/entity-header/README.md b/api/mapas/src/modules/Entities/components/entity-header/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-header/README.md
rename to api/mapas/src/modules/Entities/components/entity-header/README.md
diff --git a/src/modules/Entities/components/entity-header/script.js b/api/mapas/src/modules/Entities/components/entity-header/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-header/script.js
rename to api/mapas/src/modules/Entities/components/entity-header/script.js
diff --git a/src/modules/Entities/components/entity-header/template.php b/api/mapas/src/modules/Entities/components/entity-header/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-header/template.php
rename to api/mapas/src/modules/Entities/components/entity-header/template.php
diff --git a/src/modules/Entities/components/entity-header/texts.php b/api/mapas/src/modules/Entities/components/entity-header/texts.php
similarity index 100%
rename from src/modules/Entities/components/entity-header/texts.php
rename to api/mapas/src/modules/Entities/components/entity-header/texts.php
diff --git a/src/modules/Entities/components/entity-link-project/script.js b/api/mapas/src/modules/Entities/components/entity-link-project/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-link-project/script.js
rename to api/mapas/src/modules/Entities/components/entity-link-project/script.js
diff --git a/src/modules/Entities/components/entity-link-project/template.php b/api/mapas/src/modules/Entities/components/entity-link-project/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-link-project/template.php
rename to api/mapas/src/modules/Entities/components/entity-link-project/template.php
diff --git a/src/modules/Entities/components/entity-link-project/texts.php b/api/mapas/src/modules/Entities/components/entity-link-project/texts.php
similarity index 100%
rename from src/modules/Entities/components/entity-link-project/texts.php
rename to api/mapas/src/modules/Entities/components/entity-link-project/texts.php
diff --git a/src/modules/Entities/components/entity-links/README.md b/api/mapas/src/modules/Entities/components/entity-links/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-links/README.md
rename to api/mapas/src/modules/Entities/components/entity-links/README.md
diff --git a/src/modules/Entities/components/entity-links/script.js b/api/mapas/src/modules/Entities/components/entity-links/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-links/script.js
rename to api/mapas/src/modules/Entities/components/entity-links/script.js
diff --git a/src/modules/Entities/components/entity-links/template.php b/api/mapas/src/modules/Entities/components/entity-links/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-links/template.php
rename to api/mapas/src/modules/Entities/components/entity-links/template.php
diff --git a/src/modules/Entities/components/entity-links/texts.php b/api/mapas/src/modules/Entities/components/entity-links/texts.php
similarity index 100%
rename from src/modules/Entities/components/entity-links/texts.php
rename to api/mapas/src/modules/Entities/components/entity-links/texts.php
diff --git a/src/modules/Entities/components/entity-list/README.md b/api/mapas/src/modules/Entities/components/entity-list/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-list/README.md
rename to api/mapas/src/modules/Entities/components/entity-list/README.md
diff --git a/src/modules/Entities/components/entity-list/script.js b/api/mapas/src/modules/Entities/components/entity-list/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-list/script.js
rename to api/mapas/src/modules/Entities/components/entity-list/script.js
diff --git a/src/modules/Entities/components/entity-list/template.php b/api/mapas/src/modules/Entities/components/entity-list/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-list/template.php
rename to api/mapas/src/modules/Entities/components/entity-list/template.php
diff --git a/src/modules/Entities/components/entity-list/texts.php b/api/mapas/src/modules/Entities/components/entity-list/texts.php
similarity index 100%
rename from src/modules/Entities/components/entity-list/texts.php
rename to api/mapas/src/modules/Entities/components/entity-list/texts.php
diff --git a/src/modules/Entities/components/entity-location/README.md b/api/mapas/src/modules/Entities/components/entity-location/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-location/README.md
rename to api/mapas/src/modules/Entities/components/entity-location/README.md
diff --git a/src/modules/Entities/components/entity-location/init.php b/api/mapas/src/modules/Entities/components/entity-location/init.php
similarity index 100%
rename from src/modules/Entities/components/entity-location/init.php
rename to api/mapas/src/modules/Entities/components/entity-location/init.php
diff --git a/src/modules/Entities/components/entity-location/script.js b/api/mapas/src/modules/Entities/components/entity-location/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-location/script.js
rename to api/mapas/src/modules/Entities/components/entity-location/script.js
diff --git a/src/modules/Entities/components/entity-location/template.php b/api/mapas/src/modules/Entities/components/entity-location/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-location/template.php
rename to api/mapas/src/modules/Entities/components/entity-location/template.php
diff --git a/src/modules/Entities/components/entity-log/README.md b/api/mapas/src/modules/Entities/components/entity-log/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-log/README.md
rename to api/mapas/src/modules/Entities/components/entity-log/README.md
diff --git a/src/modules/Entities/components/entity-log/script.js b/api/mapas/src/modules/Entities/components/entity-log/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-log/script.js
rename to api/mapas/src/modules/Entities/components/entity-log/script.js
diff --git a/src/modules/Entities/components/entity-log/template.php b/api/mapas/src/modules/Entities/components/entity-log/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-log/template.php
rename to api/mapas/src/modules/Entities/components/entity-log/template.php
diff --git a/src/modules/Entities/components/entity-log/texts.php b/api/mapas/src/modules/Entities/components/entity-log/texts.php
similarity index 100%
rename from src/modules/Entities/components/entity-log/texts.php
rename to api/mapas/src/modules/Entities/components/entity-log/texts.php
diff --git a/src/modules/Entities/components/entity-map/README.md b/api/mapas/src/modules/Entities/components/entity-map/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-map/README.md
rename to api/mapas/src/modules/Entities/components/entity-map/README.md
diff --git a/src/modules/Entities/components/entity-map/script.js b/api/mapas/src/modules/Entities/components/entity-map/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-map/script.js
rename to api/mapas/src/modules/Entities/components/entity-map/script.js
diff --git a/src/modules/Entities/components/entity-map/template.php b/api/mapas/src/modules/Entities/components/entity-map/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-map/template.php
rename to api/mapas/src/modules/Entities/components/entity-map/template.php
diff --git a/src/modules/Entities/components/entity-map/texts.php b/api/mapas/src/modules/Entities/components/entity-map/texts.php
similarity index 100%
rename from src/modules/Entities/components/entity-map/texts.php
rename to api/mapas/src/modules/Entities/components/entity-map/texts.php
diff --git a/src/modules/Entities/components/entity-occurrence-list/README.md b/api/mapas/src/modules/Entities/components/entity-occurrence-list/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-occurrence-list/README.md
rename to api/mapas/src/modules/Entities/components/entity-occurrence-list/README.md
diff --git a/src/modules/Entities/components/entity-occurrence-list/script.js b/api/mapas/src/modules/Entities/components/entity-occurrence-list/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-occurrence-list/script.js
rename to api/mapas/src/modules/Entities/components/entity-occurrence-list/script.js
diff --git a/src/modules/Entities/components/entity-occurrence-list/template.php b/api/mapas/src/modules/Entities/components/entity-occurrence-list/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-occurrence-list/template.php
rename to api/mapas/src/modules/Entities/components/entity-occurrence-list/template.php
diff --git a/src/modules/Entities/components/entity-occurrence-list/texts.php b/api/mapas/src/modules/Entities/components/entity-occurrence-list/texts.php
similarity index 100%
rename from src/modules/Entities/components/entity-occurrence-list/texts.php
rename to api/mapas/src/modules/Entities/components/entity-occurrence-list/texts.php
diff --git a/src/modules/Entities/components/entity-owner/README.md b/api/mapas/src/modules/Entities/components/entity-owner/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-owner/README.md
rename to api/mapas/src/modules/Entities/components/entity-owner/README.md
diff --git a/src/modules/Entities/components/entity-owner/script.js b/api/mapas/src/modules/Entities/components/entity-owner/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-owner/script.js
rename to api/mapas/src/modules/Entities/components/entity-owner/script.js
diff --git a/src/modules/Entities/components/entity-owner/template.php b/api/mapas/src/modules/Entities/components/entity-owner/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-owner/template.php
rename to api/mapas/src/modules/Entities/components/entity-owner/template.php
diff --git a/src/modules/Entities/components/entity-owner/texts.php b/api/mapas/src/modules/Entities/components/entity-owner/texts.php
similarity index 100%
rename from src/modules/Entities/components/entity-owner/texts.php
rename to api/mapas/src/modules/Entities/components/entity-owner/texts.php
diff --git a/src/modules/Entities/components/entity-parent-edit/README.md b/api/mapas/src/modules/Entities/components/entity-parent-edit/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-parent-edit/README.md
rename to api/mapas/src/modules/Entities/components/entity-parent-edit/README.md
diff --git a/src/modules/Entities/components/entity-parent-edit/script.js b/api/mapas/src/modules/Entities/components/entity-parent-edit/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-parent-edit/script.js
rename to api/mapas/src/modules/Entities/components/entity-parent-edit/script.js
diff --git a/src/modules/Entities/components/entity-parent-edit/template.php b/api/mapas/src/modules/Entities/components/entity-parent-edit/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-parent-edit/template.php
rename to api/mapas/src/modules/Entities/components/entity-parent-edit/template.php
diff --git a/src/modules/Entities/components/entity-parent-edit/texts.php b/api/mapas/src/modules/Entities/components/entity-parent-edit/texts.php
similarity index 100%
rename from src/modules/Entities/components/entity-parent-edit/texts.php
rename to api/mapas/src/modules/Entities/components/entity-parent-edit/texts.php
diff --git a/src/modules/Entities/components/entity-profile/README.md b/api/mapas/src/modules/Entities/components/entity-profile/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-profile/README.md
rename to api/mapas/src/modules/Entities/components/entity-profile/README.md
diff --git a/src/modules/Entities/components/entity-profile/script.js b/api/mapas/src/modules/Entities/components/entity-profile/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-profile/script.js
rename to api/mapas/src/modules/Entities/components/entity-profile/script.js
diff --git a/src/modules/Entities/components/entity-profile/template.php b/api/mapas/src/modules/Entities/components/entity-profile/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-profile/template.php
rename to api/mapas/src/modules/Entities/components/entity-profile/template.php
diff --git a/src/modules/Entities/components/entity-related-agents/README.md b/api/mapas/src/modules/Entities/components/entity-related-agents/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-related-agents/README.md
rename to api/mapas/src/modules/Entities/components/entity-related-agents/README.md
diff --git a/src/modules/Entities/components/entity-related-agents/script.js b/api/mapas/src/modules/Entities/components/entity-related-agents/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-related-agents/script.js
rename to api/mapas/src/modules/Entities/components/entity-related-agents/script.js
diff --git a/src/modules/Entities/components/entity-related-agents/template.php b/api/mapas/src/modules/Entities/components/entity-related-agents/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-related-agents/template.php
rename to api/mapas/src/modules/Entities/components/entity-related-agents/template.php
diff --git a/src/modules/Entities/components/entity-request-ownership/README.md b/api/mapas/src/modules/Entities/components/entity-request-ownership/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-request-ownership/README.md
rename to api/mapas/src/modules/Entities/components/entity-request-ownership/README.md
diff --git a/src/modules/Entities/components/entity-request-ownership/script.js b/api/mapas/src/modules/Entities/components/entity-request-ownership/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-request-ownership/script.js
rename to api/mapas/src/modules/Entities/components/entity-request-ownership/script.js
diff --git a/src/modules/Entities/components/entity-request-ownership/template.php b/api/mapas/src/modules/Entities/components/entity-request-ownership/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-request-ownership/template.php
rename to api/mapas/src/modules/Entities/components/entity-request-ownership/template.php
diff --git a/src/modules/Entities/components/entity-request-ownership/texts.php b/api/mapas/src/modules/Entities/components/entity-request-ownership/texts.php
similarity index 100%
rename from src/modules/Entities/components/entity-request-ownership/texts.php
rename to api/mapas/src/modules/Entities/components/entity-request-ownership/texts.php
diff --git a/src/modules/Entities/components/entity-social-media/README.md b/api/mapas/src/modules/Entities/components/entity-social-media/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-social-media/README.md
rename to api/mapas/src/modules/Entities/components/entity-social-media/README.md
diff --git a/src/modules/Entities/components/entity-social-media/script.js b/api/mapas/src/modules/Entities/components/entity-social-media/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-social-media/script.js
rename to api/mapas/src/modules/Entities/components/entity-social-media/script.js
diff --git a/src/modules/Entities/components/entity-social-media/template.php b/api/mapas/src/modules/Entities/components/entity-social-media/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-social-media/template.php
rename to api/mapas/src/modules/Entities/components/entity-social-media/template.php
diff --git a/src/modules/Entities/components/entity-status/script.js b/api/mapas/src/modules/Entities/components/entity-status/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-status/script.js
rename to api/mapas/src/modules/Entities/components/entity-status/script.js
diff --git a/src/modules/Entities/components/entity-status/template.php b/api/mapas/src/modules/Entities/components/entity-status/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-status/template.php
rename to api/mapas/src/modules/Entities/components/entity-status/template.php
diff --git a/src/modules/Entities/components/entity-table/README.md b/api/mapas/src/modules/Entities/components/entity-table/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-table/README.md
rename to api/mapas/src/modules/Entities/components/entity-table/README.md
diff --git a/src/modules/Entities/components/entity-table/script.js b/api/mapas/src/modules/Entities/components/entity-table/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-table/script.js
rename to api/mapas/src/modules/Entities/components/entity-table/script.js
diff --git a/src/modules/Entities/components/entity-table/template.php b/api/mapas/src/modules/Entities/components/entity-table/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-table/template.php
rename to api/mapas/src/modules/Entities/components/entity-table/template.php
diff --git a/src/modules/Entities/components/entity-table/texts.php b/api/mapas/src/modules/Entities/components/entity-table/texts.php
similarity index 100%
rename from src/modules/Entities/components/entity-table/texts.php
rename to api/mapas/src/modules/Entities/components/entity-table/texts.php
diff --git a/src/modules/Entities/components/entity-terms/README.md b/api/mapas/src/modules/Entities/components/entity-terms/README.md
similarity index 100%
rename from src/modules/Entities/components/entity-terms/README.md
rename to api/mapas/src/modules/Entities/components/entity-terms/README.md
diff --git a/src/modules/Entities/components/entity-terms/script.js b/api/mapas/src/modules/Entities/components/entity-terms/script.js
similarity index 100%
rename from src/modules/Entities/components/entity-terms/script.js
rename to api/mapas/src/modules/Entities/components/entity-terms/script.js
diff --git a/src/modules/Entities/components/entity-terms/template.php b/api/mapas/src/modules/Entities/components/entity-terms/template.php
similarity index 100%
rename from src/modules/Entities/components/entity-terms/template.php
rename to api/mapas/src/modules/Entities/components/entity-terms/template.php
diff --git a/src/modules/Entities/components/event-age-rating/README.md b/api/mapas/src/modules/Entities/components/event-age-rating/README.md
similarity index 100%
rename from src/modules/Entities/components/event-age-rating/README.md
rename to api/mapas/src/modules/Entities/components/event-age-rating/README.md
diff --git a/src/modules/Entities/components/event-age-rating/script.js b/api/mapas/src/modules/Entities/components/event-age-rating/script.js
similarity index 100%
rename from src/modules/Entities/components/event-age-rating/script.js
rename to api/mapas/src/modules/Entities/components/event-age-rating/script.js
diff --git a/src/modules/Entities/components/event-age-rating/template.php b/api/mapas/src/modules/Entities/components/event-age-rating/template.php
similarity index 100%
rename from src/modules/Entities/components/event-age-rating/template.php
rename to api/mapas/src/modules/Entities/components/event-age-rating/template.php
diff --git a/src/modules/Entities/components/event-age-rating/texts.php b/api/mapas/src/modules/Entities/components/event-age-rating/texts.php
similarity index 100%
rename from src/modules/Entities/components/event-age-rating/texts.php
rename to api/mapas/src/modules/Entities/components/event-age-rating/texts.php
diff --git a/src/modules/Entities/components/link-opportunity/script.js b/api/mapas/src/modules/Entities/components/link-opportunity/script.js
similarity index 100%
rename from src/modules/Entities/components/link-opportunity/script.js
rename to api/mapas/src/modules/Entities/components/link-opportunity/script.js
diff --git a/src/modules/Entities/components/link-opportunity/template.php b/api/mapas/src/modules/Entities/components/link-opportunity/template.php
similarity index 100%
rename from src/modules/Entities/components/link-opportunity/template.php
rename to api/mapas/src/modules/Entities/components/link-opportunity/template.php
diff --git a/src/modules/Entities/components/link-opportunity/texts.php b/api/mapas/src/modules/Entities/components/link-opportunity/texts.php
similarity index 100%
rename from src/modules/Entities/components/link-opportunity/texts.php
rename to api/mapas/src/modules/Entities/components/link-opportunity/texts.php
diff --git a/src/modules/Entities/layouts/entity.php b/api/mapas/src/modules/Entities/layouts/entity.php
similarity index 100%
rename from src/modules/Entities/layouts/entity.php
rename to api/mapas/src/modules/Entities/layouts/entity.php
diff --git a/src/modules/Entities/states-and-cities/brasil.php b/api/mapas/src/modules/Entities/states-and-cities/brasil.php
similarity index 100%
rename from src/modules/Entities/states-and-cities/brasil.php
rename to api/mapas/src/modules/Entities/states-and-cities/brasil.php
diff --git a/src/modules/Entities/views/agent/edit-1.php b/api/mapas/src/modules/Entities/views/agent/edit-1.php
similarity index 100%
rename from src/modules/Entities/views/agent/edit-1.php
rename to api/mapas/src/modules/Entities/views/agent/edit-1.php
diff --git a/src/modules/Entities/views/agent/edit-2.php b/api/mapas/src/modules/Entities/views/agent/edit-2.php
similarity index 100%
rename from src/modules/Entities/views/agent/edit-2.php
rename to api/mapas/src/modules/Entities/views/agent/edit-2.php
diff --git a/src/modules/Entities/views/agent/single-1.php b/api/mapas/src/modules/Entities/views/agent/single-1.php
similarity index 100%
rename from src/modules/Entities/views/agent/single-1.php
rename to api/mapas/src/modules/Entities/views/agent/single-1.php
diff --git a/src/modules/Entities/views/agent/single-2.php b/api/mapas/src/modules/Entities/views/agent/single-2.php
similarity index 100%
rename from src/modules/Entities/views/agent/single-2.php
rename to api/mapas/src/modules/Entities/views/agent/single-2.php
diff --git a/src/modules/Entities/views/event/edit.php b/api/mapas/src/modules/Entities/views/event/edit.php
similarity index 100%
rename from src/modules/Entities/views/event/edit.php
rename to api/mapas/src/modules/Entities/views/event/edit.php
diff --git a/src/modules/Entities/views/event/single.php b/api/mapas/src/modules/Entities/views/event/single.php
similarity index 100%
rename from src/modules/Entities/views/event/single.php
rename to api/mapas/src/modules/Entities/views/event/single.php
diff --git a/src/modules/Entities/views/project/edit.php b/api/mapas/src/modules/Entities/views/project/edit.php
similarity index 100%
rename from src/modules/Entities/views/project/edit.php
rename to api/mapas/src/modules/Entities/views/project/edit.php
diff --git a/src/modules/Entities/views/project/single.php b/api/mapas/src/modules/Entities/views/project/single.php
similarity index 100%
rename from src/modules/Entities/views/project/single.php
rename to api/mapas/src/modules/Entities/views/project/single.php
diff --git a/src/modules/Entities/views/space/edit.php b/api/mapas/src/modules/Entities/views/space/edit.php
similarity index 100%
rename from src/modules/Entities/views/space/edit.php
rename to api/mapas/src/modules/Entities/views/space/edit.php
diff --git a/src/modules/Entities/views/space/single.php b/api/mapas/src/modules/Entities/views/space/single.php
similarity index 100%
rename from src/modules/Entities/views/space/single.php
rename to api/mapas/src/modules/Entities/views/space/single.php
diff --git a/src/modules/EvaluationMethodDocumentary/Module.php b/api/mapas/src/modules/EvaluationMethodDocumentary/Module.php
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/Module.php
rename to api/mapas/src/modules/EvaluationMethodDocumentary/Module.php
diff --git a/src/modules/EvaluationMethodDocumentary/assets/css/documentary-evaluation-method.css b/api/mapas/src/modules/EvaluationMethodDocumentary/assets/css/documentary-evaluation-method.css
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/assets/css/documentary-evaluation-method.css
rename to api/mapas/src/modules/EvaluationMethodDocumentary/assets/css/documentary-evaluation-method.css
diff --git a/src/modules/EvaluationMethodDocumentary/assets/js/evaluation-form--documentary.js b/api/mapas/src/modules/EvaluationMethodDocumentary/assets/js/evaluation-form--documentary.js
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/assets/js/evaluation-form--documentary.js
rename to api/mapas/src/modules/EvaluationMethodDocumentary/assets/js/evaluation-form--documentary.js
diff --git a/src/modules/EvaluationMethodDocumentary/assets/js/ng.evaluationMethod.documentary.js b/api/mapas/src/modules/EvaluationMethodDocumentary/assets/js/ng.evaluationMethod.documentary.js
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/assets/js/ng.evaluationMethod.documentary.js
rename to api/mapas/src/modules/EvaluationMethodDocumentary/assets/js/ng.evaluationMethod.documentary.js
diff --git a/src/modules/EvaluationMethodDocumentary/components/evaluation-documentary-datail/script.js b/api/mapas/src/modules/EvaluationMethodDocumentary/components/evaluation-documentary-datail/script.js
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/components/evaluation-documentary-datail/script.js
rename to api/mapas/src/modules/EvaluationMethodDocumentary/components/evaluation-documentary-datail/script.js
diff --git a/src/modules/EvaluationMethodDocumentary/components/evaluation-documentary-datail/template.php b/api/mapas/src/modules/EvaluationMethodDocumentary/components/evaluation-documentary-datail/template.php
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/components/evaluation-documentary-datail/template.php
rename to api/mapas/src/modules/EvaluationMethodDocumentary/components/evaluation-documentary-datail/template.php
diff --git a/src/modules/EvaluationMethodDocumentary/components/evaluation-documentary-datail/texts.php b/api/mapas/src/modules/EvaluationMethodDocumentary/components/evaluation-documentary-datail/texts.php
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/components/evaluation-documentary-datail/texts.php
rename to api/mapas/src/modules/EvaluationMethodDocumentary/components/evaluation-documentary-datail/texts.php
diff --git a/src/modules/EvaluationMethodDocumentary/components/evaluation-method-documentary--apply/init.php b/api/mapas/src/modules/EvaluationMethodDocumentary/components/evaluation-method-documentary--apply/init.php
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/components/evaluation-method-documentary--apply/init.php
rename to api/mapas/src/modules/EvaluationMethodDocumentary/components/evaluation-method-documentary--apply/init.php
diff --git a/src/modules/EvaluationMethodDocumentary/components/evaluation-method-documentary--apply/script.js b/api/mapas/src/modules/EvaluationMethodDocumentary/components/evaluation-method-documentary--apply/script.js
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/components/evaluation-method-documentary--apply/script.js
rename to api/mapas/src/modules/EvaluationMethodDocumentary/components/evaluation-method-documentary--apply/script.js
diff --git a/src/modules/EvaluationMethodDocumentary/components/evaluation-method-documentary--apply/template.php b/api/mapas/src/modules/EvaluationMethodDocumentary/components/evaluation-method-documentary--apply/template.php
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/components/evaluation-method-documentary--apply/template.php
rename to api/mapas/src/modules/EvaluationMethodDocumentary/components/evaluation-method-documentary--apply/template.php
diff --git a/src/modules/EvaluationMethodDocumentary/components/evaluation-method-documentary--apply/texts.php b/api/mapas/src/modules/EvaluationMethodDocumentary/components/evaluation-method-documentary--apply/texts.php
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/components/evaluation-method-documentary--apply/texts.php
rename to api/mapas/src/modules/EvaluationMethodDocumentary/components/evaluation-method-documentary--apply/texts.php
diff --git a/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--apply-results.php b/api/mapas/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--apply-results.php
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--apply-results.php
rename to api/mapas/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--apply-results.php
diff --git a/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--configuration-form.php b/api/mapas/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--configuration-form.php
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--configuration-form.php
rename to api/mapas/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--configuration-form.php
diff --git a/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--evaluation-form.php b/api/mapas/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--evaluation-form.php
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--evaluation-form.php
rename to api/mapas/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--evaluation-form.php
diff --git a/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--evaluation-info.php b/api/mapas/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--evaluation-info.php
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--evaluation-info.php
rename to api/mapas/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--evaluation-info.php
diff --git a/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--evaluation-result-apply.php b/api/mapas/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--evaluation-result-apply.php
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--evaluation-result-apply.php
rename to api/mapas/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--evaluation-result-apply.php
diff --git a/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--evaluation-view.php b/api/mapas/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--evaluation-view.php
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--evaluation-view.php
rename to api/mapas/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary--evaluation-view.php
diff --git a/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary/evaluations-details.php b/api/mapas/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary/evaluations-details.php
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/layouts/parts/documentary/evaluations-details.php
rename to api/mapas/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary/evaluations-details.php
diff --git a/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary/phase-config.php b/api/mapas/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary/phase-config.php
similarity index 100%
rename from src/modules/EvaluationMethodDocumentary/layouts/parts/documentary/phase-config.php
rename to api/mapas/src/modules/EvaluationMethodDocumentary/layouts/parts/documentary/phase-config.php
diff --git a/src/modules/EvaluationMethodQualification/LICENSE b/api/mapas/src/modules/EvaluationMethodQualification/LICENSE
similarity index 100%
rename from src/modules/EvaluationMethodQualification/LICENSE
rename to api/mapas/src/modules/EvaluationMethodQualification/LICENSE
diff --git a/src/modules/EvaluationMethodQualification/Module.php b/api/mapas/src/modules/EvaluationMethodQualification/Module.php
similarity index 100%
rename from src/modules/EvaluationMethodQualification/Module.php
rename to api/mapas/src/modules/EvaluationMethodQualification/Module.php
diff --git a/src/modules/EvaluationMethodQualification/assets/css/qualification-evaluation-method.css b/api/mapas/src/modules/EvaluationMethodQualification/assets/css/qualification-evaluation-method.css
similarity index 100%
rename from src/modules/EvaluationMethodQualification/assets/css/qualification-evaluation-method.css
rename to api/mapas/src/modules/EvaluationMethodQualification/assets/css/qualification-evaluation-method.css
diff --git a/src/modules/EvaluationMethodQualification/assets/js/ng.evaluationMethod.qualification.js b/api/mapas/src/modules/EvaluationMethodQualification/assets/js/ng.evaluationMethod.qualification.js
similarity index 100%
rename from src/modules/EvaluationMethodQualification/assets/js/ng.evaluationMethod.qualification.js
rename to api/mapas/src/modules/EvaluationMethodQualification/assets/js/ng.evaluationMethod.qualification.js
diff --git a/src/modules/EvaluationMethodQualification/layouts/parts/qualification--configuration-form.php b/api/mapas/src/modules/EvaluationMethodQualification/layouts/parts/qualification--configuration-form.php
similarity index 100%
rename from src/modules/EvaluationMethodQualification/layouts/parts/qualification--configuration-form.php
rename to api/mapas/src/modules/EvaluationMethodQualification/layouts/parts/qualification--configuration-form.php
diff --git a/src/modules/EvaluationMethodQualification/layouts/parts/qualification--evaluation-form.php b/api/mapas/src/modules/EvaluationMethodQualification/layouts/parts/qualification--evaluation-form.php
similarity index 100%
rename from src/modules/EvaluationMethodQualification/layouts/parts/qualification--evaluation-form.php
rename to api/mapas/src/modules/EvaluationMethodQualification/layouts/parts/qualification--evaluation-form.php
diff --git a/src/modules/EvaluationMethodQualification/layouts/parts/qualification--evaluation-info.php b/api/mapas/src/modules/EvaluationMethodQualification/layouts/parts/qualification--evaluation-info.php
similarity index 100%
rename from src/modules/EvaluationMethodQualification/layouts/parts/qualification--evaluation-info.php
rename to api/mapas/src/modules/EvaluationMethodQualification/layouts/parts/qualification--evaluation-info.php
diff --git a/src/modules/EvaluationMethodQualification/layouts/parts/qualification--evaluation-view.php b/api/mapas/src/modules/EvaluationMethodQualification/layouts/parts/qualification--evaluation-view.php
similarity index 100%
rename from src/modules/EvaluationMethodQualification/layouts/parts/qualification--evaluation-view.php
rename to api/mapas/src/modules/EvaluationMethodQualification/layouts/parts/qualification--evaluation-view.php
diff --git a/src/modules/EvaluationMethodQualification/layouts/parts/qualification/evaluations-details.php b/api/mapas/src/modules/EvaluationMethodQualification/layouts/parts/qualification/evaluations-details.php
similarity index 100%
rename from src/modules/EvaluationMethodQualification/layouts/parts/qualification/evaluations-details.php
rename to api/mapas/src/modules/EvaluationMethodQualification/layouts/parts/qualification/evaluations-details.php
diff --git a/src/modules/EvaluationMethodQualification/layouts/parts/qualification/phase-config.php b/api/mapas/src/modules/EvaluationMethodQualification/layouts/parts/qualification/phase-config.php
similarity index 100%
rename from src/modules/EvaluationMethodQualification/layouts/parts/qualification/phase-config.php
rename to api/mapas/src/modules/EvaluationMethodQualification/layouts/parts/qualification/phase-config.php
diff --git a/src/modules/EvaluationMethodSimple/Module.php b/api/mapas/src/modules/EvaluationMethodSimple/Module.php
similarity index 100%
rename from src/modules/EvaluationMethodSimple/Module.php
rename to api/mapas/src/modules/EvaluationMethodSimple/Module.php
diff --git a/src/modules/EvaluationMethodSimple/assets/css/simple-evaluation-method.css b/api/mapas/src/modules/EvaluationMethodSimple/assets/css/simple-evaluation-method.css
similarity index 100%
rename from src/modules/EvaluationMethodSimple/assets/css/simple-evaluation-method.css
rename to api/mapas/src/modules/EvaluationMethodSimple/assets/css/simple-evaluation-method.css
diff --git a/src/modules/EvaluationMethodSimple/assets/js/ng.evaluationMethod.simple.js b/api/mapas/src/modules/EvaluationMethodSimple/assets/js/ng.evaluationMethod.simple.js
similarity index 100%
rename from src/modules/EvaluationMethodSimple/assets/js/ng.evaluationMethod.simple.js
rename to api/mapas/src/modules/EvaluationMethodSimple/assets/js/ng.evaluationMethod.simple.js
diff --git a/src/modules/EvaluationMethodSimple/components/evaluation-method-simple--apply/init.php b/api/mapas/src/modules/EvaluationMethodSimple/components/evaluation-method-simple--apply/init.php
similarity index 100%
rename from src/modules/EvaluationMethodSimple/components/evaluation-method-simple--apply/init.php
rename to api/mapas/src/modules/EvaluationMethodSimple/components/evaluation-method-simple--apply/init.php
diff --git a/src/modules/EvaluationMethodSimple/components/evaluation-method-simple--apply/script.js b/api/mapas/src/modules/EvaluationMethodSimple/components/evaluation-method-simple--apply/script.js
similarity index 100%
rename from src/modules/EvaluationMethodSimple/components/evaluation-method-simple--apply/script.js
rename to api/mapas/src/modules/EvaluationMethodSimple/components/evaluation-method-simple--apply/script.js
diff --git a/src/modules/EvaluationMethodSimple/components/evaluation-method-simple--apply/template.php b/api/mapas/src/modules/EvaluationMethodSimple/components/evaluation-method-simple--apply/template.php
similarity index 100%
rename from src/modules/EvaluationMethodSimple/components/evaluation-method-simple--apply/template.php
rename to api/mapas/src/modules/EvaluationMethodSimple/components/evaluation-method-simple--apply/template.php
diff --git a/src/modules/EvaluationMethodSimple/components/evaluation-method-simple--apply/texts.php b/api/mapas/src/modules/EvaluationMethodSimple/components/evaluation-method-simple--apply/texts.php
similarity index 100%
rename from src/modules/EvaluationMethodSimple/components/evaluation-method-simple--apply/texts.php
rename to api/mapas/src/modules/EvaluationMethodSimple/components/evaluation-method-simple--apply/texts.php
diff --git a/src/modules/EvaluationMethodSimple/layouts/parts/simple--apply-results.php b/api/mapas/src/modules/EvaluationMethodSimple/layouts/parts/simple--apply-results.php
similarity index 100%
rename from src/modules/EvaluationMethodSimple/layouts/parts/simple--apply-results.php
rename to api/mapas/src/modules/EvaluationMethodSimple/layouts/parts/simple--apply-results.php
diff --git a/src/modules/EvaluationMethodSimple/layouts/parts/simple--evaluation-form.php b/api/mapas/src/modules/EvaluationMethodSimple/layouts/parts/simple--evaluation-form.php
similarity index 100%
rename from src/modules/EvaluationMethodSimple/layouts/parts/simple--evaluation-form.php
rename to api/mapas/src/modules/EvaluationMethodSimple/layouts/parts/simple--evaluation-form.php
diff --git a/src/modules/EvaluationMethodSimple/layouts/parts/simple--evaluation-info.php b/api/mapas/src/modules/EvaluationMethodSimple/layouts/parts/simple--evaluation-info.php
similarity index 100%
rename from src/modules/EvaluationMethodSimple/layouts/parts/simple--evaluation-info.php
rename to api/mapas/src/modules/EvaluationMethodSimple/layouts/parts/simple--evaluation-info.php
diff --git a/src/modules/EvaluationMethodSimple/layouts/parts/simple--evaluation-result-apply.php b/api/mapas/src/modules/EvaluationMethodSimple/layouts/parts/simple--evaluation-result-apply.php
similarity index 100%
rename from src/modules/EvaluationMethodSimple/layouts/parts/simple--evaluation-result-apply.php
rename to api/mapas/src/modules/EvaluationMethodSimple/layouts/parts/simple--evaluation-result-apply.php
diff --git a/src/modules/EvaluationMethodSimple/layouts/parts/simple--evaluation-view.php b/api/mapas/src/modules/EvaluationMethodSimple/layouts/parts/simple--evaluation-view.php
similarity index 100%
rename from src/modules/EvaluationMethodSimple/layouts/parts/simple--evaluation-view.php
rename to api/mapas/src/modules/EvaluationMethodSimple/layouts/parts/simple--evaluation-view.php
diff --git a/src/modules/EvaluationMethodSimple/layouts/parts/simple/evaluations-details.php b/api/mapas/src/modules/EvaluationMethodSimple/layouts/parts/simple/evaluations-details.php
similarity index 100%
rename from src/modules/EvaluationMethodSimple/layouts/parts/simple/evaluations-details.php
rename to api/mapas/src/modules/EvaluationMethodSimple/layouts/parts/simple/evaluations-details.php
diff --git a/src/modules/EvaluationMethodSimple/layouts/parts/simple/phase-config.php b/api/mapas/src/modules/EvaluationMethodSimple/layouts/parts/simple/phase-config.php
similarity index 100%
rename from src/modules/EvaluationMethodSimple/layouts/parts/simple/phase-config.php
rename to api/mapas/src/modules/EvaluationMethodSimple/layouts/parts/simple/phase-config.php
diff --git a/src/modules/EvaluationMethodTechnical/Module.php b/api/mapas/src/modules/EvaluationMethodTechnical/Module.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/Module.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/Module.php
diff --git a/src/modules/EvaluationMethodTechnical/assets/css/technical-evaluation-method.css b/api/mapas/src/modules/EvaluationMethodTechnical/assets/css/technical-evaluation-method.css
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/assets/css/technical-evaluation-method.css
rename to api/mapas/src/modules/EvaluationMethodTechnical/assets/css/technical-evaluation-method.css
diff --git a/src/modules/EvaluationMethodTechnical/assets/js/ng.evaluationMethod.technical.js b/api/mapas/src/modules/EvaluationMethodTechnical/assets/js/ng.evaluationMethod.technical.js
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/assets/js/ng.evaluationMethod.technical.js
rename to api/mapas/src/modules/EvaluationMethodTechnical/assets/js/ng.evaluationMethod.technical.js
diff --git a/src/modules/EvaluationMethodTechnical/components/affirmative-policies--geo-quota-configuration/init.php b/api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policies--geo-quota-configuration/init.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/affirmative-policies--geo-quota-configuration/init.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policies--geo-quota-configuration/init.php
diff --git a/src/modules/EvaluationMethodTechnical/components/affirmative-policies--geo-quota-configuration/script.js b/api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policies--geo-quota-configuration/script.js
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/affirmative-policies--geo-quota-configuration/script.js
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policies--geo-quota-configuration/script.js
diff --git a/src/modules/EvaluationMethodTechnical/components/affirmative-policies--geo-quota-configuration/template.php b/api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policies--geo-quota-configuration/template.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/affirmative-policies--geo-quota-configuration/template.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policies--geo-quota-configuration/template.php
diff --git a/src/modules/EvaluationMethodTechnical/components/affirmative-policies--geo-quota-configuration/texts.php b/api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policies--geo-quota-configuration/texts.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/affirmative-policies--geo-quota-configuration/texts.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policies--geo-quota-configuration/texts.php
diff --git a/src/modules/EvaluationMethodTechnical/components/affirmative-policies--quota-configuration/init.php b/api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policies--quota-configuration/init.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/affirmative-policies--quota-configuration/init.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policies--quota-configuration/init.php
diff --git a/src/modules/EvaluationMethodTechnical/components/affirmative-policies--quota-configuration/script.js b/api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policies--quota-configuration/script.js
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/affirmative-policies--quota-configuration/script.js
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policies--quota-configuration/script.js
diff --git a/src/modules/EvaluationMethodTechnical/components/affirmative-policies--quota-configuration/template.php b/api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policies--quota-configuration/template.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/affirmative-policies--quota-configuration/template.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policies--quota-configuration/template.php
diff --git a/src/modules/EvaluationMethodTechnical/components/affirmative-policies--quota-configuration/texts.php b/api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policies--quota-configuration/texts.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/affirmative-policies--quota-configuration/texts.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policies--quota-configuration/texts.php
diff --git a/src/modules/EvaluationMethodTechnical/components/affirmative-policy--bonus-config/init.php b/api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policy--bonus-config/init.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/affirmative-policy--bonus-config/init.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policy--bonus-config/init.php
diff --git a/src/modules/EvaluationMethodTechnical/components/affirmative-policy--bonus-config/script.js b/api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policy--bonus-config/script.js
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/affirmative-policy--bonus-config/script.js
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policy--bonus-config/script.js
diff --git a/src/modules/EvaluationMethodTechnical/components/affirmative-policy--bonus-config/template.php b/api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policy--bonus-config/template.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/affirmative-policy--bonus-config/template.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policy--bonus-config/template.php
diff --git a/src/modules/EvaluationMethodTechnical/components/affirmative-policy--bonus-config/texts.php b/api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policy--bonus-config/texts.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/affirmative-policy--bonus-config/texts.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/affirmative-policy--bonus-config/texts.php
diff --git a/src/modules/EvaluationMethodTechnical/components/evaluation-method-technical--apply/init.php b/api/mapas/src/modules/EvaluationMethodTechnical/components/evaluation-method-technical--apply/init.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/evaluation-method-technical--apply/init.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/evaluation-method-technical--apply/init.php
diff --git a/src/modules/EvaluationMethodTechnical/components/evaluation-method-technical--apply/script.js b/api/mapas/src/modules/EvaluationMethodTechnical/components/evaluation-method-technical--apply/script.js
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/evaluation-method-technical--apply/script.js
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/evaluation-method-technical--apply/script.js
diff --git a/src/modules/EvaluationMethodTechnical/components/evaluation-method-technical--apply/template.php b/api/mapas/src/modules/EvaluationMethodTechnical/components/evaluation-method-technical--apply/template.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/evaluation-method-technical--apply/template.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/evaluation-method-technical--apply/template.php
diff --git a/src/modules/EvaluationMethodTechnical/components/technical-assessment-section/script.js b/api/mapas/src/modules/EvaluationMethodTechnical/components/technical-assessment-section/script.js
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/technical-assessment-section/script.js
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/technical-assessment-section/script.js
diff --git a/src/modules/EvaluationMethodTechnical/components/technical-assessment-section/template.php b/api/mapas/src/modules/EvaluationMethodTechnical/components/technical-assessment-section/template.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/technical-assessment-section/template.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/technical-assessment-section/template.php
diff --git a/src/modules/EvaluationMethodTechnical/components/tiebreaker-criteria-configuration/init.php b/api/mapas/src/modules/EvaluationMethodTechnical/components/tiebreaker-criteria-configuration/init.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/tiebreaker-criteria-configuration/init.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/tiebreaker-criteria-configuration/init.php
diff --git a/src/modules/EvaluationMethodTechnical/components/tiebreaker-criteria-configuration/script.js b/api/mapas/src/modules/EvaluationMethodTechnical/components/tiebreaker-criteria-configuration/script.js
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/tiebreaker-criteria-configuration/script.js
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/tiebreaker-criteria-configuration/script.js
diff --git a/src/modules/EvaluationMethodTechnical/components/tiebreaker-criteria-configuration/template.php b/api/mapas/src/modules/EvaluationMethodTechnical/components/tiebreaker-criteria-configuration/template.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/tiebreaker-criteria-configuration/template.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/tiebreaker-criteria-configuration/template.php
diff --git a/src/modules/EvaluationMethodTechnical/components/tiebreaker-criteria-configuration/texts.php b/api/mapas/src/modules/EvaluationMethodTechnical/components/tiebreaker-criteria-configuration/texts.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/components/tiebreaker-criteria-configuration/texts.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/components/tiebreaker-criteria-configuration/texts.php
diff --git a/src/modules/EvaluationMethodTechnical/layouts/parts/technical--affirmative-polices-configuration.php b/api/mapas/src/modules/EvaluationMethodTechnical/layouts/parts/technical--affirmative-polices-configuration.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/layouts/parts/technical--affirmative-polices-configuration.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/layouts/parts/technical--affirmative-polices-configuration.php
diff --git a/src/modules/EvaluationMethodTechnical/layouts/parts/technical--apply-results.php b/api/mapas/src/modules/EvaluationMethodTechnical/layouts/parts/technical--apply-results.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/layouts/parts/technical--apply-results.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/layouts/parts/technical--apply-results.php
diff --git a/src/modules/EvaluationMethodTechnical/layouts/parts/technical--configuration-form.php b/api/mapas/src/modules/EvaluationMethodTechnical/layouts/parts/technical--configuration-form.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/layouts/parts/technical--configuration-form.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/layouts/parts/technical--configuration-form.php
diff --git a/src/modules/EvaluationMethodTechnical/layouts/parts/technical--evaluation-form.php b/api/mapas/src/modules/EvaluationMethodTechnical/layouts/parts/technical--evaluation-form.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/layouts/parts/technical--evaluation-form.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/layouts/parts/technical--evaluation-form.php
diff --git a/src/modules/EvaluationMethodTechnical/layouts/parts/technical--evaluation-info.php b/api/mapas/src/modules/EvaluationMethodTechnical/layouts/parts/technical--evaluation-info.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/layouts/parts/technical--evaluation-info.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/layouts/parts/technical--evaluation-info.php
diff --git a/src/modules/EvaluationMethodTechnical/layouts/parts/technical--evaluation-view.php b/api/mapas/src/modules/EvaluationMethodTechnical/layouts/parts/technical--evaluation-view.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/layouts/parts/technical--evaluation-view.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/layouts/parts/technical--evaluation-view.php
diff --git a/src/modules/EvaluationMethodTechnical/layouts/parts/technical/evaluations-details.php b/api/mapas/src/modules/EvaluationMethodTechnical/layouts/parts/technical/evaluations-details.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/layouts/parts/technical/evaluations-details.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/layouts/parts/technical/evaluations-details.php
diff --git a/src/modules/EvaluationMethodTechnical/layouts/parts/technical/phase-config.php b/api/mapas/src/modules/EvaluationMethodTechnical/layouts/parts/technical/phase-config.php
similarity index 100%
rename from src/modules/EvaluationMethodTechnical/layouts/parts/technical/phase-config.php
rename to api/mapas/src/modules/EvaluationMethodTechnical/layouts/parts/technical/phase-config.php
diff --git a/src/modules/EventImporter/Controller.php b/api/mapas/src/modules/EventImporter/Controller.php
similarity index 100%
rename from src/modules/EventImporter/Controller.php
rename to api/mapas/src/modules/EventImporter/Controller.php
diff --git a/src/modules/EventImporter/Module.php b/api/mapas/src/modules/EventImporter/Module.php
similarity index 100%
rename from src/modules/EventImporter/Module.php
rename to api/mapas/src/modules/EventImporter/Module.php
diff --git a/src/modules/EventImporter/assets/css/eventimporter.css b/api/mapas/src/modules/EventImporter/assets/css/eventimporter.css
similarity index 100%
rename from src/modules/EventImporter/assets/css/eventimporter.css
rename to api/mapas/src/modules/EventImporter/assets/css/eventimporter.css
diff --git a/src/modules/EventImporter/components/event-importer-files/README.md b/api/mapas/src/modules/EventImporter/components/event-importer-files/README.md
similarity index 100%
rename from src/modules/EventImporter/components/event-importer-files/README.md
rename to api/mapas/src/modules/EventImporter/components/event-importer-files/README.md
diff --git a/src/modules/EventImporter/components/event-importer-files/script.js b/api/mapas/src/modules/EventImporter/components/event-importer-files/script.js
similarity index 100%
rename from src/modules/EventImporter/components/event-importer-files/script.js
rename to api/mapas/src/modules/EventImporter/components/event-importer-files/script.js
diff --git a/src/modules/EventImporter/components/event-importer-files/template.php b/api/mapas/src/modules/EventImporter/components/event-importer-files/template.php
similarity index 100%
rename from src/modules/EventImporter/components/event-importer-files/template.php
rename to api/mapas/src/modules/EventImporter/components/event-importer-files/template.php
diff --git a/src/modules/EventImporter/components/event-importer-files/texts.php b/api/mapas/src/modules/EventImporter/components/event-importer-files/texts.php
similarity index 100%
rename from src/modules/EventImporter/components/event-importer-files/texts.php
rename to api/mapas/src/modules/EventImporter/components/event-importer-files/texts.php
diff --git a/src/modules/EventImporter/components/event-importer-upload/README.md b/api/mapas/src/modules/EventImporter/components/event-importer-upload/README.md
similarity index 100%
rename from src/modules/EventImporter/components/event-importer-upload/README.md
rename to api/mapas/src/modules/EventImporter/components/event-importer-upload/README.md
diff --git a/src/modules/EventImporter/components/event-importer-upload/script.js b/api/mapas/src/modules/EventImporter/components/event-importer-upload/script.js
similarity index 100%
rename from src/modules/EventImporter/components/event-importer-upload/script.js
rename to api/mapas/src/modules/EventImporter/components/event-importer-upload/script.js
diff --git a/src/modules/EventImporter/components/event-importer-upload/template.php b/api/mapas/src/modules/EventImporter/components/event-importer-upload/template.php
similarity index 100%
rename from src/modules/EventImporter/components/event-importer-upload/template.php
rename to api/mapas/src/modules/EventImporter/components/event-importer-upload/template.php
diff --git a/src/modules/EventImporter/components/event-importer-upload/texts.php b/api/mapas/src/modules/EventImporter/components/event-importer-upload/texts.php
similarity index 100%
rename from src/modules/EventImporter/components/event-importer-upload/texts.php
rename to api/mapas/src/modules/EventImporter/components/event-importer-upload/texts.php
diff --git a/src/modules/EventImporter/layouts/parts/event-importer/tab.php b/api/mapas/src/modules/EventImporter/layouts/parts/event-importer/tab.php
similarity index 100%
rename from src/modules/EventImporter/layouts/parts/event-importer/tab.php
rename to api/mapas/src/modules/EventImporter/layouts/parts/event-importer/tab.php
diff --git a/src/modules/EventImporter/layouts/parts/upload-csv-event.php b/api/mapas/src/modules/EventImporter/layouts/parts/upload-csv-event.php
similarity index 100%
rename from src/modules/EventImporter/layouts/parts/upload-csv-event.php
rename to api/mapas/src/modules/EventImporter/layouts/parts/upload-csv-event.php
diff --git a/src/modules/EventImporter/views/eventimporter/import-erros.php b/api/mapas/src/modules/EventImporter/views/eventimporter/import-erros.php
similarity index 100%
rename from src/modules/EventImporter/views/eventimporter/import-erros.php
rename to api/mapas/src/modules/EventImporter/views/eventimporter/import-erros.php
diff --git a/src/modules/FAQ/Controller.php b/api/mapas/src/modules/FAQ/Controller.php
similarity index 100%
rename from src/modules/FAQ/Controller.php
rename to api/mapas/src/modules/FAQ/Controller.php
diff --git a/src/modules/FAQ/Module.php b/api/mapas/src/modules/FAQ/Module.php
similarity index 100%
rename from src/modules/FAQ/Module.php
rename to api/mapas/src/modules/FAQ/Module.php
diff --git a/src/modules/FAQ/assets/img/faq/entrar.png b/api/mapas/src/modules/FAQ/assets/img/faq/entrar.png
similarity index 100%
rename from src/modules/FAQ/assets/img/faq/entrar.png
rename to api/mapas/src/modules/FAQ/assets/img/faq/entrar.png
diff --git a/src/modules/FAQ/components/faq-accordion/script.js b/api/mapas/src/modules/FAQ/components/faq-accordion/script.js
similarity index 100%
rename from src/modules/FAQ/components/faq-accordion/script.js
rename to api/mapas/src/modules/FAQ/components/faq-accordion/script.js
diff --git a/src/modules/FAQ/components/faq-accordion/template.php b/api/mapas/src/modules/FAQ/components/faq-accordion/template.php
similarity index 100%
rename from src/modules/FAQ/components/faq-accordion/template.php
rename to api/mapas/src/modules/FAQ/components/faq-accordion/template.php
diff --git a/src/modules/FAQ/components/faq-info/README.md b/api/mapas/src/modules/FAQ/components/faq-info/README.md
similarity index 100%
rename from src/modules/FAQ/components/faq-info/README.md
rename to api/mapas/src/modules/FAQ/components/faq-info/README.md
diff --git a/src/modules/FAQ/components/faq-info/init.php b/api/mapas/src/modules/FAQ/components/faq-info/init.php
similarity index 100%
rename from src/modules/FAQ/components/faq-info/init.php
rename to api/mapas/src/modules/FAQ/components/faq-info/init.php
diff --git a/src/modules/FAQ/components/faq-info/script.js b/api/mapas/src/modules/FAQ/components/faq-info/script.js
similarity index 100%
rename from src/modules/FAQ/components/faq-info/script.js
rename to api/mapas/src/modules/FAQ/components/faq-info/script.js
diff --git a/src/modules/FAQ/components/faq-info/template.php b/api/mapas/src/modules/FAQ/components/faq-info/template.php
similarity index 100%
rename from src/modules/FAQ/components/faq-info/template.php
rename to api/mapas/src/modules/FAQ/components/faq-info/template.php
diff --git a/src/modules/FAQ/components/faq-info/texts.php b/api/mapas/src/modules/FAQ/components/faq-info/texts.php
similarity index 100%
rename from src/modules/FAQ/components/faq-info/texts.php
rename to api/mapas/src/modules/FAQ/components/faq-info/texts.php
diff --git a/src/modules/FAQ/components/faq-search-results/README.md b/api/mapas/src/modules/FAQ/components/faq-search-results/README.md
similarity index 100%
rename from src/modules/FAQ/components/faq-search-results/README.md
rename to api/mapas/src/modules/FAQ/components/faq-search-results/README.md
diff --git a/src/modules/FAQ/components/faq-search-results/script.js b/api/mapas/src/modules/FAQ/components/faq-search-results/script.js
similarity index 100%
rename from src/modules/FAQ/components/faq-search-results/script.js
rename to api/mapas/src/modules/FAQ/components/faq-search-results/script.js
diff --git a/src/modules/FAQ/components/faq-search-results/template.php b/api/mapas/src/modules/FAQ/components/faq-search-results/template.php
similarity index 100%
rename from src/modules/FAQ/components/faq-search-results/template.php
rename to api/mapas/src/modules/FAQ/components/faq-search-results/template.php
diff --git a/src/modules/FAQ/components/faq-search-results/texts.php b/api/mapas/src/modules/FAQ/components/faq-search-results/texts.php
similarity index 100%
rename from src/modules/FAQ/components/faq-search-results/texts.php
rename to api/mapas/src/modules/FAQ/components/faq-search-results/texts.php
diff --git a/src/modules/FAQ/components/faq-search/README.md b/api/mapas/src/modules/FAQ/components/faq-search/README.md
similarity index 100%
rename from src/modules/FAQ/components/faq-search/README.md
rename to api/mapas/src/modules/FAQ/components/faq-search/README.md
diff --git a/src/modules/FAQ/components/faq-search/script.js b/api/mapas/src/modules/FAQ/components/faq-search/script.js
similarity index 100%
rename from src/modules/FAQ/components/faq-search/script.js
rename to api/mapas/src/modules/FAQ/components/faq-search/script.js
diff --git a/src/modules/FAQ/components/faq-search/template.php b/api/mapas/src/modules/FAQ/components/faq-search/template.php
similarity index 100%
rename from src/modules/FAQ/components/faq-search/template.php
rename to api/mapas/src/modules/FAQ/components/faq-search/template.php
diff --git a/src/modules/FAQ/components/faq-search/texts.php b/api/mapas/src/modules/FAQ/components/faq-search/texts.php
similarity index 100%
rename from src/modules/FAQ/components/faq-search/texts.php
rename to api/mapas/src/modules/FAQ/components/faq-search/texts.php
diff --git a/src/modules/FAQ/layouts/faq-layout.php b/api/mapas/src/modules/FAQ/layouts/faq-layout.php
similarity index 100%
rename from src/modules/FAQ/layouts/faq-layout.php
rename to api/mapas/src/modules/FAQ/layouts/faq-layout.php
diff --git a/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/README.md b/api/mapas/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/README.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/README.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/README.md
diff --git a/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/atualizar-perfil.md b/api/mapas/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/atualizar-perfil.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/atualizar-perfil.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/atualizar-perfil.md
diff --git a/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/cadastro-cnpj-mei.md b/api/mapas/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/cadastro-cnpj-mei.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/cadastro-cnpj-mei.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/cadastro-cnpj-mei.md
diff --git a/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/criar-conta.md b/api/mapas/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/criar-conta.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/criar-conta.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/criar-conta.md
diff --git a/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/nao-recebeu-email-senha.md b/api/mapas/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/nao-recebeu-email-senha.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/nao-recebeu-email-senha.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/nao-recebeu-email-senha.md
diff --git a/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/recuperar-acesso.md b/api/mapas/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/recuperar-acesso.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/recuperar-acesso.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/recuperar-acesso.md
diff --git a/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/representante-agente.md b/api/mapas/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/representante-agente.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/representante-agente.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/1.cadastro/1.cadastrando-usuario/representante-agente.md
diff --git a/src/modules/FAQ/questions/pt_BR/1.cadastro/README.md b/api/mapas/src/modules/FAQ/questions/pt_BR/1.cadastro/README.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/1.cadastro/README.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/1.cadastro/README.md
diff --git a/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/1.mapa-cultural/1.mapa-cultural.md b/api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/1.mapa-cultural/1.mapa-cultural.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/1.mapa-cultural/1.mapa-cultural.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/1.mapa-cultural/1.mapa-cultural.md
diff --git a/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/1.mapa-cultural/README.md b/api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/1.mapa-cultural/README.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/1.mapa-cultural/README.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/1.mapa-cultural/README.md
diff --git a/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/2.agentes/1.agente.md b/api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/2.agentes/1.agente.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/2.agentes/1.agente.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/2.agentes/1.agente.md
diff --git a/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/2.agentes/2.coletivo.md b/api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/2.agentes/2.coletivo.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/2.agentes/2.coletivo.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/2.agentes/2.coletivo.md
diff --git a/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/2.agentes/README.md b/api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/2.agentes/README.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/2.agentes/README.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/2.agentes/README.md
diff --git a/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/3.espacos/1.espaco.md b/api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/3.espacos/1.espaco.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/3.espacos/1.espaco.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/3.espacos/1.espaco.md
diff --git a/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/3.espacos/README.md b/api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/3.espacos/README.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/3.espacos/README.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/3.espacos/README.md
diff --git a/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/4.projetos/1.projetos.md b/api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/4.projetos/1.projetos.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/4.projetos/1.projetos.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/4.projetos/1.projetos.md
diff --git a/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/4.projetos/README.md b/api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/4.projetos/README.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/4.projetos/README.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/4.projetos/README.md
diff --git a/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/5.eventos/1.criar-evento.md b/api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/5.eventos/1.criar-evento.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/5.eventos/1.criar-evento.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/5.eventos/1.criar-evento.md
diff --git a/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/5.eventos/README.md b/api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/5.eventos/README.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/5.eventos/README.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/5.eventos/README.md
diff --git a/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/README.md b/api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/README.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/README.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/2.IntroducaoMapa/README.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/1.preenchimento/1.como-se-inscrever.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/1.preenchimento/1.como-se-inscrever.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/1.preenchimento/1.como-se-inscrever.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/1.preenchimento/1.como-se-inscrever.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/1.preenchimento/README.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/1.preenchimento/README.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/1.preenchimento/README.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/1.preenchimento/README.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/1.andamento-da-inscricao.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/1.andamento-da-inscricao.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/1.andamento-da-inscricao.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/1.andamento-da-inscricao.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/2.aprovado-oportunidade.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/2.aprovado-oportunidade.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/2.aprovado-oportunidade.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/2.aprovado-oportunidade.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/3.informacoes-inscricao.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/3.informacoes-inscricao.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/3.informacoes-inscricao.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/3.informacoes-inscricao.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/4.nao-aprovado.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/4.nao-aprovado.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/4.nao-aprovado.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/4.nao-aprovado.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/5.novos-editais.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/5.novos-editais.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/5.novos-editais.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/5.novos-editais.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/6.saber-se-foi-aprovado.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/6.saber-se-foi-aprovado.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/6.saber-se-foi-aprovado.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/6.saber-se-foi-aprovado.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/README.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/README.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/README.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/2.acompanhamento/README.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/3.suporte/1.contato-edital.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/3.suporte/1.contato-edital.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/3.suporte/1.contato-edital.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/3.suporte/1.contato-edital.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/3.suporte/README.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/3.suporte/README.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/3.suporte/README.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/3.suporte/README.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/1.beneficios.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/1.beneficios.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/1.beneficios.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/1.beneficios.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/2.conta-bancaria.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/2.conta-bancaria.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/2.conta-bancaria.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/2.conta-bancaria.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/3.criterios-edital.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/3.criterios-edital.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/3.criterios-edital.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/3.criterios-edital.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/4.editais-simultaneos.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/4.editais-simultaneos.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/4.editais-simultaneos.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/4.editais-simultaneos.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/5.menor-edital.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/5.menor-edital.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/5.menor-edital.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/5.menor-edital.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/README.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/README.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/README.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/4.regulamento/README.md
diff --git a/src/modules/FAQ/questions/pt_BR/3.inscricao/README.md b/api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/README.md
similarity index 100%
rename from src/modules/FAQ/questions/pt_BR/3.inscricao/README.md
rename to api/mapas/src/modules/FAQ/questions/pt_BR/3.inscricao/README.md
diff --git a/src/modules/FAQ/views/faq/index.php b/api/mapas/src/modules/FAQ/views/faq/index.php
similarity index 100%
rename from src/modules/FAQ/views/faq/index.php
rename to api/mapas/src/modules/FAQ/views/faq/index.php
diff --git a/src/modules/FAQ/views/faq/section.php b/api/mapas/src/modules/FAQ/views/faq/section.php
similarity index 100%
rename from src/modules/FAQ/views/faq/section.php
rename to api/mapas/src/modules/FAQ/views/faq/section.php
diff --git a/src/modules/FakeAuthentication/Module.php b/api/mapas/src/modules/FakeAuthentication/Module.php
similarity index 100%
rename from src/modules/FakeAuthentication/Module.php
rename to api/mapas/src/modules/FakeAuthentication/Module.php
diff --git a/src/modules/FakeAuthentication/assets/js/.gitkeep b/api/mapas/src/modules/FakeAuthentication/assets/js/.gitkeep
similarity index 100%
rename from src/modules/FakeAuthentication/assets/js/.gitkeep
rename to api/mapas/src/modules/FakeAuthentication/assets/js/.gitkeep
diff --git a/src/modules/FakeAuthentication/components/fake-user-create/README.md b/api/mapas/src/modules/FakeAuthentication/components/fake-user-create/README.md
similarity index 100%
rename from src/modules/FakeAuthentication/components/fake-user-create/README.md
rename to api/mapas/src/modules/FakeAuthentication/components/fake-user-create/README.md
diff --git a/src/modules/FakeAuthentication/components/fake-user-create/script.js b/api/mapas/src/modules/FakeAuthentication/components/fake-user-create/script.js
similarity index 100%
rename from src/modules/FakeAuthentication/components/fake-user-create/script.js
rename to api/mapas/src/modules/FakeAuthentication/components/fake-user-create/script.js
diff --git a/src/modules/FakeAuthentication/components/fake-user-create/template.php b/api/mapas/src/modules/FakeAuthentication/components/fake-user-create/template.php
similarity index 100%
rename from src/modules/FakeAuthentication/components/fake-user-create/template.php
rename to api/mapas/src/modules/FakeAuthentication/components/fake-user-create/template.php
diff --git a/src/modules/FakeAuthentication/components/fake-user-create/texts.php b/api/mapas/src/modules/FakeAuthentication/components/fake-user-create/texts.php
similarity index 100%
rename from src/modules/FakeAuthentication/components/fake-user-create/texts.php
rename to api/mapas/src/modules/FakeAuthentication/components/fake-user-create/texts.php
diff --git a/src/modules/FakeAuthentication/views/auth/fake-authentication.php b/api/mapas/src/modules/FakeAuthentication/views/auth/fake-authentication.php
similarity index 100%
rename from src/modules/FakeAuthentication/views/auth/fake-authentication.php
rename to api/mapas/src/modules/FakeAuthentication/views/auth/fake-authentication.php
diff --git a/src/modules/GeoDivisions/Controller.php b/api/mapas/src/modules/GeoDivisions/Controller.php
similarity index 100%
rename from src/modules/GeoDivisions/Controller.php
rename to api/mapas/src/modules/GeoDivisions/Controller.php
diff --git a/src/modules/GeoDivisions/Module.php b/api/mapas/src/modules/GeoDivisions/Module.php
similarity index 100%
rename from src/modules/GeoDivisions/Module.php
rename to api/mapas/src/modules/GeoDivisions/Module.php
diff --git a/src/modules/Home/Controller.php b/api/mapas/src/modules/Home/Controller.php
similarity index 100%
rename from src/modules/Home/Controller.php
rename to api/mapas/src/modules/Home/Controller.php
diff --git a/src/modules/Home/Module.php b/api/mapas/src/modules/Home/Module.php
similarity index 100%
rename from src/modules/Home/Module.php
rename to api/mapas/src/modules/Home/Module.php
diff --git a/src/modules/Home/assets/.gitkeep b/api/mapas/src/modules/Home/assets/.gitkeep
similarity index 100%
rename from src/modules/Home/assets/.gitkeep
rename to api/mapas/src/modules/Home/assets/.gitkeep
diff --git a/src/modules/Home/assets/img/home/home-entities/agents.jpg b/api/mapas/src/modules/Home/assets/img/home/home-entities/agents.jpg
similarity index 100%
rename from src/modules/Home/assets/img/home/home-entities/agents.jpg
rename to api/mapas/src/modules/Home/assets/img/home/home-entities/agents.jpg
diff --git a/src/modules/Home/assets/img/home/home-entities/events.jpg b/api/mapas/src/modules/Home/assets/img/home/home-entities/events.jpg
similarity index 100%
rename from src/modules/Home/assets/img/home/home-entities/events.jpg
rename to api/mapas/src/modules/Home/assets/img/home/home-entities/events.jpg
diff --git a/src/modules/Home/assets/img/home/home-entities/opportunities.jpg b/api/mapas/src/modules/Home/assets/img/home/home-entities/opportunities.jpg
similarity index 100%
rename from src/modules/Home/assets/img/home/home-entities/opportunities.jpg
rename to api/mapas/src/modules/Home/assets/img/home/home-entities/opportunities.jpg
diff --git a/src/modules/Home/assets/img/home/home-entities/projects.jpg b/api/mapas/src/modules/Home/assets/img/home/home-entities/projects.jpg
similarity index 100%
rename from src/modules/Home/assets/img/home/home-entities/projects.jpg
rename to api/mapas/src/modules/Home/assets/img/home/home-entities/projects.jpg
diff --git a/src/modules/Home/assets/img/home/home-entities/spaces.jpg b/api/mapas/src/modules/Home/assets/img/home/home-entities/spaces.jpg
similarity index 100%
rename from src/modules/Home/assets/img/home/home-entities/spaces.jpg
rename to api/mapas/src/modules/Home/assets/img/home/home-entities/spaces.jpg
diff --git a/src/modules/Home/assets/img/home/home-header/home-header.png b/api/mapas/src/modules/Home/assets/img/home/home-header/home-header.png
similarity index 100%
rename from src/modules/Home/assets/img/home/home-header/home-header.png
rename to api/mapas/src/modules/Home/assets/img/home/home-header/home-header.png
diff --git a/src/modules/Home/assets/img/home/home-header/home-header2.jpg b/api/mapas/src/modules/Home/assets/img/home/home-header/home-header2.jpg
similarity index 100%
rename from src/modules/Home/assets/img/home/home-header/home-header2.jpg
rename to api/mapas/src/modules/Home/assets/img/home/home-header/home-header2.jpg
diff --git a/src/modules/Home/assets/img/home/home-map/Map.jpg b/api/mapas/src/modules/Home/assets/img/home/home-map/Map.jpg
similarity index 100%
rename from src/modules/Home/assets/img/home/home-map/Map.jpg
rename to api/mapas/src/modules/Home/assets/img/home/home-map/Map.jpg
diff --git a/src/modules/Home/assets/img/home/home-register/background.jpg b/api/mapas/src/modules/Home/assets/img/home/home-register/background.jpg
similarity index 100%
rename from src/modules/Home/assets/img/home/home-register/background.jpg
rename to api/mapas/src/modules/Home/assets/img/home/home-register/background.jpg
diff --git a/src/modules/Home/assets/img/home/mapa.jpg b/api/mapas/src/modules/Home/assets/img/home/mapa.jpg
similarity index 100%
rename from src/modules/Home/assets/img/home/mapa.jpg
rename to api/mapas/src/modules/Home/assets/img/home/mapa.jpg
diff --git a/src/modules/Home/components/home-developers/script.js b/api/mapas/src/modules/Home/components/home-developers/script.js
similarity index 100%
rename from src/modules/Home/components/home-developers/script.js
rename to api/mapas/src/modules/Home/components/home-developers/script.js
diff --git a/src/modules/Home/components/home-developers/template.php b/api/mapas/src/modules/Home/components/home-developers/template.php
similarity index 100%
rename from src/modules/Home/components/home-developers/template.php
rename to api/mapas/src/modules/Home/components/home-developers/template.php
diff --git a/src/modules/Home/components/home-developers/texts.php b/api/mapas/src/modules/Home/components/home-developers/texts.php
similarity index 100%
rename from src/modules/Home/components/home-developers/texts.php
rename to api/mapas/src/modules/Home/components/home-developers/texts.php
diff --git a/src/modules/Home/components/home-entities/script.js b/api/mapas/src/modules/Home/components/home-entities/script.js
similarity index 100%
rename from src/modules/Home/components/home-entities/script.js
rename to api/mapas/src/modules/Home/components/home-entities/script.js
diff --git a/src/modules/Home/components/home-entities/template.php b/api/mapas/src/modules/Home/components/home-entities/template.php
similarity index 100%
rename from src/modules/Home/components/home-entities/template.php
rename to api/mapas/src/modules/Home/components/home-entities/template.php
diff --git a/src/modules/Home/components/home-feature/README.md b/api/mapas/src/modules/Home/components/home-feature/README.md
similarity index 100%
rename from src/modules/Home/components/home-feature/README.md
rename to api/mapas/src/modules/Home/components/home-feature/README.md
diff --git a/src/modules/Home/components/home-feature/init.php b/api/mapas/src/modules/Home/components/home-feature/init.php
similarity index 100%
rename from src/modules/Home/components/home-feature/init.php
rename to api/mapas/src/modules/Home/components/home-feature/init.php
diff --git a/src/modules/Home/components/home-feature/script.js b/api/mapas/src/modules/Home/components/home-feature/script.js
similarity index 100%
rename from src/modules/Home/components/home-feature/script.js
rename to api/mapas/src/modules/Home/components/home-feature/script.js
diff --git a/src/modules/Home/components/home-feature/template.php b/api/mapas/src/modules/Home/components/home-feature/template.php
similarity index 100%
rename from src/modules/Home/components/home-feature/template.php
rename to api/mapas/src/modules/Home/components/home-feature/template.php
diff --git a/src/modules/Home/components/home-feature/texts.php b/api/mapas/src/modules/Home/components/home-feature/texts.php
similarity index 100%
rename from src/modules/Home/components/home-feature/texts.php
rename to api/mapas/src/modules/Home/components/home-feature/texts.php
diff --git a/src/modules/Home/components/home-header/README.md b/api/mapas/src/modules/Home/components/home-header/README.md
similarity index 100%
rename from src/modules/Home/components/home-header/README.md
rename to api/mapas/src/modules/Home/components/home-header/README.md
diff --git a/src/modules/Home/components/home-header/init.php b/api/mapas/src/modules/Home/components/home-header/init.php
similarity index 100%
rename from src/modules/Home/components/home-header/init.php
rename to api/mapas/src/modules/Home/components/home-header/init.php
diff --git a/src/modules/Home/components/home-header/script.js b/api/mapas/src/modules/Home/components/home-header/script.js
similarity index 100%
rename from src/modules/Home/components/home-header/script.js
rename to api/mapas/src/modules/Home/components/home-header/script.js
diff --git a/src/modules/Home/components/home-header/template.php b/api/mapas/src/modules/Home/components/home-header/template.php
similarity index 100%
rename from src/modules/Home/components/home-header/template.php
rename to api/mapas/src/modules/Home/components/home-header/template.php
diff --git a/src/modules/Home/components/home-map/script.js b/api/mapas/src/modules/Home/components/home-map/script.js
similarity index 100%
rename from src/modules/Home/components/home-map/script.js
rename to api/mapas/src/modules/Home/components/home-map/script.js
diff --git a/src/modules/Home/components/home-map/template.php b/api/mapas/src/modules/Home/components/home-map/template.php
similarity index 100%
rename from src/modules/Home/components/home-map/template.php
rename to api/mapas/src/modules/Home/components/home-map/template.php
diff --git a/src/modules/Home/components/home-opportunities/README.md b/api/mapas/src/modules/Home/components/home-opportunities/README.md
similarity index 100%
rename from src/modules/Home/components/home-opportunities/README.md
rename to api/mapas/src/modules/Home/components/home-opportunities/README.md
diff --git a/src/modules/Home/components/home-opportunities/init.php b/api/mapas/src/modules/Home/components/home-opportunities/init.php
similarity index 100%
rename from src/modules/Home/components/home-opportunities/init.php
rename to api/mapas/src/modules/Home/components/home-opportunities/init.php
diff --git a/src/modules/Home/components/home-opportunities/script.js b/api/mapas/src/modules/Home/components/home-opportunities/script.js
similarity index 100%
rename from src/modules/Home/components/home-opportunities/script.js
rename to api/mapas/src/modules/Home/components/home-opportunities/script.js
diff --git a/src/modules/Home/components/home-opportunities/template.php b/api/mapas/src/modules/Home/components/home-opportunities/template.php
similarity index 100%
rename from src/modules/Home/components/home-opportunities/template.php
rename to api/mapas/src/modules/Home/components/home-opportunities/template.php
diff --git a/src/modules/Home/components/home-register/script.js b/api/mapas/src/modules/Home/components/home-register/script.js
similarity index 100%
rename from src/modules/Home/components/home-register/script.js
rename to api/mapas/src/modules/Home/components/home-register/script.js
diff --git a/src/modules/Home/components/home-register/template.php b/api/mapas/src/modules/Home/components/home-register/template.php
similarity index 100%
rename from src/modules/Home/components/home-register/template.php
rename to api/mapas/src/modules/Home/components/home-register/template.php
diff --git a/src/modules/Home/components/home-search/README.md b/api/mapas/src/modules/Home/components/home-search/README.md
similarity index 100%
rename from src/modules/Home/components/home-search/README.md
rename to api/mapas/src/modules/Home/components/home-search/README.md
diff --git a/src/modules/Home/components/home-search/script.js b/api/mapas/src/modules/Home/components/home-search/script.js
similarity index 100%
rename from src/modules/Home/components/home-search/script.js
rename to api/mapas/src/modules/Home/components/home-search/script.js
diff --git a/src/modules/Home/components/home-search/template.php b/api/mapas/src/modules/Home/components/home-search/template.php
similarity index 100%
rename from src/modules/Home/components/home-search/template.php
rename to api/mapas/src/modules/Home/components/home-search/template.php
diff --git a/src/modules/Home/views/site/index.php b/api/mapas/src/modules/Home/views/site/index.php
similarity index 100%
rename from src/modules/Home/views/site/index.php
rename to api/mapas/src/modules/Home/views/site/index.php
diff --git a/src/modules/ImageTransformations/Module.php b/api/mapas/src/modules/ImageTransformations/Module.php
similarity index 100%
rename from src/modules/ImageTransformations/Module.php
rename to api/mapas/src/modules/ImageTransformations/Module.php
diff --git a/src/modules/LGPD/Controller.php b/api/mapas/src/modules/LGPD/Controller.php
similarity index 100%
rename from src/modules/LGPD/Controller.php
rename to api/mapas/src/modules/LGPD/Controller.php
diff --git a/src/modules/LGPD/Module.php b/api/mapas/src/modules/LGPD/Module.php
similarity index 100%
rename from src/modules/LGPD/Module.php
rename to api/mapas/src/modules/LGPD/Module.php
diff --git a/src/modules/LGPD/assets/css/lgpd.css b/api/mapas/src/modules/LGPD/assets/css/lgpd.css
similarity index 100%
rename from src/modules/LGPD/assets/css/lgpd.css
rename to api/mapas/src/modules/LGPD/assets/css/lgpd.css
diff --git a/src/modules/LGPD/components/accept-terms/README.md b/api/mapas/src/modules/LGPD/components/accept-terms/README.md
similarity index 100%
rename from src/modules/LGPD/components/accept-terms/README.md
rename to api/mapas/src/modules/LGPD/components/accept-terms/README.md
diff --git a/src/modules/LGPD/components/accept-terms/script.js b/api/mapas/src/modules/LGPD/components/accept-terms/script.js
similarity index 100%
rename from src/modules/LGPD/components/accept-terms/script.js
rename to api/mapas/src/modules/LGPD/components/accept-terms/script.js
diff --git a/src/modules/LGPD/components/accept-terms/template.php b/api/mapas/src/modules/LGPD/components/accept-terms/template.php
similarity index 100%
rename from src/modules/LGPD/components/accept-terms/template.php
rename to api/mapas/src/modules/LGPD/components/accept-terms/template.php
diff --git a/src/modules/LGPD/components/accept-terms/texts.php b/api/mapas/src/modules/LGPD/components/accept-terms/texts.php
similarity index 100%
rename from src/modules/LGPD/components/accept-terms/texts.php
rename to api/mapas/src/modules/LGPD/components/accept-terms/texts.php
diff --git a/src/modules/LGPD/layouts/lgpd.php b/api/mapas/src/modules/LGPD/layouts/lgpd.php
similarity index 100%
rename from src/modules/LGPD/layouts/lgpd.php
rename to api/mapas/src/modules/LGPD/layouts/lgpd.php
diff --git a/src/modules/LGPD/layouts/lgpdV2.php b/api/mapas/src/modules/LGPD/layouts/lgpdV2.php
similarity index 100%
rename from src/modules/LGPD/layouts/lgpdV2.php
rename to api/mapas/src/modules/LGPD/layouts/lgpdV2.php
diff --git a/src/modules/LGPD/views/lgpd/accept.php b/api/mapas/src/modules/LGPD/views/lgpd/accept.php
similarity index 100%
rename from src/modules/LGPD/views/lgpd/accept.php
rename to api/mapas/src/modules/LGPD/views/lgpd/accept.php
diff --git a/src/modules/LGPD/views/lgpd/terms.php b/api/mapas/src/modules/LGPD/views/lgpd/terms.php
similarity index 100%
rename from src/modules/LGPD/views/lgpd/terms.php
rename to api/mapas/src/modules/LGPD/views/lgpd/terms.php
diff --git a/src/modules/LGPD/views/lgpd/view.php b/api/mapas/src/modules/LGPD/views/lgpd/view.php
similarity index 100%
rename from src/modules/LGPD/views/lgpd/view.php
rename to api/mapas/src/modules/LGPD/views/lgpd/view.php
diff --git a/src/modules/MailNotification/JobTypes/SendMailNotification.php b/api/mapas/src/modules/MailNotification/JobTypes/SendMailNotification.php
similarity index 100%
rename from src/modules/MailNotification/JobTypes/SendMailNotification.php
rename to api/mapas/src/modules/MailNotification/JobTypes/SendMailNotification.php
diff --git a/src/modules/MailNotification/Module.php b/api/mapas/src/modules/MailNotification/Module.php
similarity index 100%
rename from src/modules/MailNotification/Module.php
rename to api/mapas/src/modules/MailNotification/Module.php
diff --git a/src/modules/MailNotification/assets/img/mail-image.png b/api/mapas/src/modules/MailNotification/assets/img/mail-image.png
similarity index 100%
rename from src/modules/MailNotification/assets/img/mail-image.png
rename to api/mapas/src/modules/MailNotification/assets/img/mail-image.png
diff --git a/src/modules/MailNotification/templates/es_ES/_footer.html b/api/mapas/src/modules/MailNotification/templates/es_ES/_footer.html
similarity index 100%
rename from src/modules/MailNotification/templates/es_ES/_footer.html
rename to api/mapas/src/modules/MailNotification/templates/es_ES/_footer.html
diff --git a/src/modules/MailNotification/templates/es_ES/_header.html b/api/mapas/src/modules/MailNotification/templates/es_ES/_header.html
similarity index 100%
rename from src/modules/MailNotification/templates/es_ES/_header.html
rename to api/mapas/src/modules/MailNotification/templates/es_ES/_header.html
diff --git a/src/modules/MailNotification/templates/es_ES/compliant.html b/api/mapas/src/modules/MailNotification/templates/es_ES/compliant.html
similarity index 100%
rename from src/modules/MailNotification/templates/es_ES/compliant.html
rename to api/mapas/src/modules/MailNotification/templates/es_ES/compliant.html
diff --git a/src/modules/MailNotification/templates/es_ES/last_login.html b/api/mapas/src/modules/MailNotification/templates/es_ES/last_login.html
similarity index 100%
rename from src/modules/MailNotification/templates/es_ES/last_login.html
rename to api/mapas/src/modules/MailNotification/templates/es_ES/last_login.html
diff --git a/src/modules/MailNotification/templates/es_ES/new.html b/api/mapas/src/modules/MailNotification/templates/es_ES/new.html
similarity index 100%
rename from src/modules/MailNotification/templates/es_ES/new.html
rename to api/mapas/src/modules/MailNotification/templates/es_ES/new.html
diff --git a/src/modules/MailNotification/templates/es_ES/request_relation.html b/api/mapas/src/modules/MailNotification/templates/es_ES/request_relation.html
similarity index 100%
rename from src/modules/MailNotification/templates/es_ES/request_relation.html
rename to api/mapas/src/modules/MailNotification/templates/es_ES/request_relation.html
diff --git a/src/modules/MailNotification/templates/es_ES/suggestion.html b/api/mapas/src/modules/MailNotification/templates/es_ES/suggestion.html
similarity index 100%
rename from src/modules/MailNotification/templates/es_ES/suggestion.html
rename to api/mapas/src/modules/MailNotification/templates/es_ES/suggestion.html
diff --git a/src/modules/MailNotification/templates/es_ES/update_required.html b/api/mapas/src/modules/MailNotification/templates/es_ES/update_required.html
similarity index 100%
rename from src/modules/MailNotification/templates/es_ES/update_required.html
rename to api/mapas/src/modules/MailNotification/templates/es_ES/update_required.html
diff --git a/src/modules/MailNotification/templates/es_ES/welcome.html b/api/mapas/src/modules/MailNotification/templates/es_ES/welcome.html
similarity index 100%
rename from src/modules/MailNotification/templates/es_ES/welcome.html
rename to api/mapas/src/modules/MailNotification/templates/es_ES/welcome.html
diff --git a/src/modules/MailNotification/templates/pt_BR/_footer.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/_footer.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/_footer.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/_footer.html
diff --git a/src/modules/MailNotification/templates/pt_BR/_header.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/_header.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/_header.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/_header.html
diff --git a/src/modules/MailNotification/templates/pt_BR/chat-thread.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/chat-thread.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/chat-thread.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/chat-thread.html
diff --git a/src/modules/MailNotification/templates/pt_BR/claim_certificate.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/claim_certificate.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/claim_certificate.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/claim_certificate.html
diff --git a/src/modules/MailNotification/templates/pt_BR/claim_form.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/claim_form.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/claim_form.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/claim_form.html
diff --git a/src/modules/MailNotification/templates/pt_BR/compliant.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/compliant.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/compliant.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/compliant.html
diff --git a/src/modules/MailNotification/templates/pt_BR/last_login.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/last_login.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/last_login.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/last_login.html
diff --git a/src/modules/MailNotification/templates/pt_BR/new.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/new.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/new.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/new.html
diff --git a/src/modules/MailNotification/templates/pt_BR/opportunity_claim.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/opportunity_claim.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/opportunity_claim.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/opportunity_claim.html
diff --git a/src/modules/MailNotification/templates/pt_BR/request_relation.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/request_relation.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/request_relation.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/request_relation.html
diff --git a/src/modules/MailNotification/templates/pt_BR/seal_expired.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/seal_expired.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/seal_expired.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/seal_expired.html
diff --git a/src/modules/MailNotification/templates/pt_BR/seal_toexpire.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/seal_toexpire.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/seal_toexpire.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/seal_toexpire.html
diff --git a/src/modules/MailNotification/templates/pt_BR/send_registration.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/send_registration.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/send_registration.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/send_registration.html
diff --git a/src/modules/MailNotification/templates/pt_BR/start_registration.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/start_registration.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/start_registration.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/start_registration.html
diff --git a/src/modules/MailNotification/templates/pt_BR/suggestion.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/suggestion.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/suggestion.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/suggestion.html
diff --git a/src/modules/MailNotification/templates/pt_BR/update_required.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/update_required.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/update_required.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/update_required.html
diff --git a/src/modules/MailNotification/templates/pt_BR/welcome.html b/api/mapas/src/modules/MailNotification/templates/pt_BR/welcome.html
similarity index 100%
rename from src/modules/MailNotification/templates/pt_BR/welcome.html
rename to api/mapas/src/modules/MailNotification/templates/pt_BR/welcome.html
diff --git a/src/modules/Notifications/Module.php b/api/mapas/src/modules/Notifications/Module.php
similarity index 100%
rename from src/modules/Notifications/Module.php
rename to api/mapas/src/modules/Notifications/Module.php
diff --git a/src/modules/Notifications/assets/.gitkeep b/api/mapas/src/modules/Notifications/assets/.gitkeep
similarity index 100%
rename from src/modules/Notifications/assets/.gitkeep
rename to api/mapas/src/modules/Notifications/assets/.gitkeep
diff --git a/src/modules/Notifications/components/notification-list/README.md b/api/mapas/src/modules/Notifications/components/notification-list/README.md
similarity index 100%
rename from src/modules/Notifications/components/notification-list/README.md
rename to api/mapas/src/modules/Notifications/components/notification-list/README.md
diff --git a/src/modules/Notifications/components/notification-list/script.js b/api/mapas/src/modules/Notifications/components/notification-list/script.js
similarity index 100%
rename from src/modules/Notifications/components/notification-list/script.js
rename to api/mapas/src/modules/Notifications/components/notification-list/script.js
diff --git a/src/modules/Notifications/components/notification-list/template.php b/api/mapas/src/modules/Notifications/components/notification-list/template.php
similarity index 100%
rename from src/modules/Notifications/components/notification-list/template.php
rename to api/mapas/src/modules/Notifications/components/notification-list/template.php
diff --git a/src/modules/Notifications/components/notification-list/texts.php b/api/mapas/src/modules/Notifications/components/notification-list/texts.php
similarity index 100%
rename from src/modules/Notifications/components/notification-list/texts.php
rename to api/mapas/src/modules/Notifications/components/notification-list/texts.php
diff --git a/src/modules/Notifications/components/notification-modal/README.md b/api/mapas/src/modules/Notifications/components/notification-modal/README.md
similarity index 100%
rename from src/modules/Notifications/components/notification-modal/README.md
rename to api/mapas/src/modules/Notifications/components/notification-modal/README.md
diff --git a/src/modules/Notifications/components/notification-modal/script.js b/api/mapas/src/modules/Notifications/components/notification-modal/script.js
similarity index 100%
rename from src/modules/Notifications/components/notification-modal/script.js
rename to api/mapas/src/modules/Notifications/components/notification-modal/script.js
diff --git a/src/modules/Notifications/components/notification-modal/template.php b/api/mapas/src/modules/Notifications/components/notification-modal/template.php
similarity index 100%
rename from src/modules/Notifications/components/notification-modal/template.php
rename to api/mapas/src/modules/Notifications/components/notification-modal/template.php
diff --git a/src/modules/Notifications/components/notification-modal/texts.php b/api/mapas/src/modules/Notifications/components/notification-modal/texts.php
similarity index 100%
rename from src/modules/Notifications/components/notification-modal/texts.php
rename to api/mapas/src/modules/Notifications/components/notification-modal/texts.php
diff --git a/src/modules/Notifications/layouts/parts/notifications/header-notification.php b/api/mapas/src/modules/Notifications/layouts/parts/notifications/header-notification.php
similarity index 100%
rename from src/modules/Notifications/layouts/parts/notifications/header-notification.php
rename to api/mapas/src/modules/Notifications/layouts/parts/notifications/header-notification.php
diff --git a/src/modules/Notifications/layouts/parts/notifications/panel-dashboard.php b/api/mapas/src/modules/Notifications/layouts/parts/notifications/panel-dashboard.php
similarity index 100%
rename from src/modules/Notifications/layouts/parts/notifications/panel-dashboard.php
rename to api/mapas/src/modules/Notifications/layouts/parts/notifications/panel-dashboard.php
diff --git a/src/modules/Opportunities/Jobs/FinishDataCollectionPhase.php b/api/mapas/src/modules/Opportunities/Jobs/FinishDataCollectionPhase.php
similarity index 100%
rename from src/modules/Opportunities/Jobs/FinishDataCollectionPhase.php
rename to api/mapas/src/modules/Opportunities/Jobs/FinishDataCollectionPhase.php
diff --git a/src/modules/Opportunities/Jobs/FinishEvaluationPhase.php b/api/mapas/src/modules/Opportunities/Jobs/FinishEvaluationPhase.php
similarity index 100%
rename from src/modules/Opportunities/Jobs/FinishEvaluationPhase.php
rename to api/mapas/src/modules/Opportunities/Jobs/FinishEvaluationPhase.php
diff --git a/src/modules/Opportunities/Jobs/PublishResult.php b/api/mapas/src/modules/Opportunities/Jobs/PublishResult.php
similarity index 100%
rename from src/modules/Opportunities/Jobs/PublishResult.php
rename to api/mapas/src/modules/Opportunities/Jobs/PublishResult.php
diff --git a/src/modules/Opportunities/Jobs/StartDataCollectionPhase.php b/api/mapas/src/modules/Opportunities/Jobs/StartDataCollectionPhase.php
similarity index 100%
rename from src/modules/Opportunities/Jobs/StartDataCollectionPhase.php
rename to api/mapas/src/modules/Opportunities/Jobs/StartDataCollectionPhase.php
diff --git a/src/modules/Opportunities/Jobs/StartEvaluationPhase.php b/api/mapas/src/modules/Opportunities/Jobs/StartEvaluationPhase.php
similarity index 100%
rename from src/modules/Opportunities/Jobs/StartEvaluationPhase.php
rename to api/mapas/src/modules/Opportunities/Jobs/StartEvaluationPhase.php
diff --git a/src/modules/Opportunities/Module.php b/api/mapas/src/modules/Opportunities/Module.php
similarity index 100%
rename from src/modules/Opportunities/Module.php
rename to api/mapas/src/modules/Opportunities/Module.php
diff --git a/src/modules/Opportunities/assets/.gitkeep b/api/mapas/src/modules/Opportunities/assets/.gitkeep
similarity index 100%
rename from src/modules/Opportunities/assets/.gitkeep
rename to api/mapas/src/modules/Opportunities/assets/.gitkeep
diff --git a/src/modules/Opportunities/assets/js/OpportunitiesAPI.js b/api/mapas/src/modules/Opportunities/assets/js/OpportunitiesAPI.js
similarity index 100%
rename from src/modules/Opportunities/assets/js/OpportunitiesAPI.js
rename to api/mapas/src/modules/Opportunities/assets/js/OpportunitiesAPI.js
diff --git a/src/modules/Opportunities/assets/js/registration-print.js b/api/mapas/src/modules/Opportunities/assets/js/registration-print.js
similarity index 100%
rename from src/modules/Opportunities/assets/js/registration-print.js
rename to api/mapas/src/modules/Opportunities/assets/js/registration-print.js
diff --git a/src/modules/Opportunities/components/evaluation-card/README.md b/api/mapas/src/modules/Opportunities/components/evaluation-card/README.md
similarity index 100%
rename from src/modules/Opportunities/components/evaluation-card/README.md
rename to api/mapas/src/modules/Opportunities/components/evaluation-card/README.md
diff --git a/src/modules/Opportunities/components/evaluation-card/script.js b/api/mapas/src/modules/Opportunities/components/evaluation-card/script.js
similarity index 100%
rename from src/modules/Opportunities/components/evaluation-card/script.js
rename to api/mapas/src/modules/Opportunities/components/evaluation-card/script.js
diff --git a/src/modules/Opportunities/components/evaluation-card/template.php b/api/mapas/src/modules/Opportunities/components/evaluation-card/template.php
similarity index 100%
rename from src/modules/Opportunities/components/evaluation-card/template.php
rename to api/mapas/src/modules/Opportunities/components/evaluation-card/template.php
diff --git a/src/modules/Opportunities/components/evaluations-list/README.md b/api/mapas/src/modules/Opportunities/components/evaluations-list/README.md
similarity index 100%
rename from src/modules/Opportunities/components/evaluations-list/README.md
rename to api/mapas/src/modules/Opportunities/components/evaluations-list/README.md
diff --git a/src/modules/Opportunities/components/evaluations-list/init.php b/api/mapas/src/modules/Opportunities/components/evaluations-list/init.php
similarity index 100%
rename from src/modules/Opportunities/components/evaluations-list/init.php
rename to api/mapas/src/modules/Opportunities/components/evaluations-list/init.php
diff --git a/src/modules/Opportunities/components/evaluations-list/script.js b/api/mapas/src/modules/Opportunities/components/evaluations-list/script.js
similarity index 100%
rename from src/modules/Opportunities/components/evaluations-list/script.js
rename to api/mapas/src/modules/Opportunities/components/evaluations-list/script.js
diff --git a/src/modules/Opportunities/components/evaluations-list/template.php b/api/mapas/src/modules/Opportunities/components/evaluations-list/template.php
similarity index 100%
rename from src/modules/Opportunities/components/evaluations-list/template.php
rename to api/mapas/src/modules/Opportunities/components/evaluations-list/template.php
diff --git a/src/modules/Opportunities/components/evaluations-list/texts.php b/api/mapas/src/modules/Opportunities/components/evaluations-list/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/evaluations-list/texts.php
rename to api/mapas/src/modules/Opportunities/components/evaluations-list/texts.php
diff --git a/src/modules/Opportunities/components/finish-send-evaluation/texts.php b/api/mapas/src/modules/Opportunities/components/finish-send-evaluation/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/finish-send-evaluation/texts.php
rename to api/mapas/src/modules/Opportunities/components/finish-send-evaluation/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-basic-info/init.php b/api/mapas/src/modules/Opportunities/components/opportunity-basic-info/init.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-basic-info/init.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-basic-info/init.php
diff --git a/src/modules/Opportunities/components/opportunity-basic-info/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-basic-info/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-basic-info/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-basic-info/script.js
diff --git a/src/modules/Opportunities/components/opportunity-basic-info/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-basic-info/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-basic-info/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-basic-info/template.php
diff --git a/src/modules/Opportunities/components/opportunity-category-list/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-category-list/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-category-list/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-category-list/script.js
diff --git a/src/modules/Opportunities/components/opportunity-category-list/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-category-list/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-category-list/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-category-list/template.php
diff --git a/src/modules/Opportunities/components/opportunity-category-list/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-category-list/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-category-list/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-category-list/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-category/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-category/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-category/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-category/script.js
diff --git a/src/modules/Opportunities/components/opportunity-category/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-category/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-category/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-category/template.php
diff --git a/src/modules/Opportunities/components/opportunity-category/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-category/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-category/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-category/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-create-data-collect-phase/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-create-data-collect-phase/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-create-data-collect-phase/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-create-data-collect-phase/script.js
diff --git a/src/modules/Opportunities/components/opportunity-create-data-collect-phase/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-create-data-collect-phase/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-create-data-collect-phase/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-create-data-collect-phase/template.php
diff --git a/src/modules/Opportunities/components/opportunity-create-evaluation-phase/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-create-evaluation-phase/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-create-evaluation-phase/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-create-evaluation-phase/script.js
diff --git a/src/modules/Opportunities/components/opportunity-create-evaluation-phase/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-create-evaluation-phase/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-create-evaluation-phase/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-create-evaluation-phase/template.php
diff --git a/src/modules/Opportunities/components/opportunity-evaluation-committee/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-evaluation-committee/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-evaluation-committee/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-evaluation-committee/script.js
diff --git a/src/modules/Opportunities/components/opportunity-evaluation-committee/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-evaluation-committee/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-evaluation-committee/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-evaluation-committee/template.php
diff --git a/src/modules/Opportunities/components/opportunity-evaluation-committee/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-evaluation-committee/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-evaluation-committee/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-evaluation-committee/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-evaluations-list/README.md b/api/mapas/src/modules/Opportunities/components/opportunity-evaluations-list/README.md
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-evaluations-list/README.md
rename to api/mapas/src/modules/Opportunities/components/opportunity-evaluations-list/README.md
diff --git a/src/modules/Opportunities/components/opportunity-evaluations-list/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-evaluations-list/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-evaluations-list/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-evaluations-list/script.js
diff --git a/src/modules/Opportunities/components/opportunity-evaluations-list/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-evaluations-list/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-evaluations-list/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-evaluations-list/template.php
diff --git a/src/modules/Opportunities/components/opportunity-evaluations-list/text.php b/api/mapas/src/modules/Opportunities/components/opportunity-evaluations-list/text.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-evaluations-list/text.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-evaluations-list/text.php
diff --git a/src/modules/Opportunities/components/opportunity-evaluations-tab/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-evaluations-tab/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-evaluations-tab/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-evaluations-tab/script.js
diff --git a/src/modules/Opportunities/components/opportunity-evaluations-tab/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-evaluations-tab/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-evaluations-tab/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-evaluations-tab/template.php
diff --git a/src/modules/Opportunities/components/opportunity-evaluations-table/init.php b/api/mapas/src/modules/Opportunities/components/opportunity-evaluations-table/init.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-evaluations-table/init.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-evaluations-table/init.php
diff --git a/src/modules/Opportunities/components/opportunity-evaluations-table/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-evaluations-table/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-evaluations-table/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-evaluations-table/script.js
diff --git a/src/modules/Opportunities/components/opportunity-evaluations-table/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-evaluations-table/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-evaluations-table/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-evaluations-table/template.php
diff --git a/src/modules/Opportunities/components/opportunity-evaluations-table/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-evaluations-table/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-evaluations-table/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-evaluations-table/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-form-builder-category-list/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-form-builder-category-list/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-form-builder-category-list/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-form-builder-category-list/script.js
diff --git a/src/modules/Opportunities/components/opportunity-form-builder-category-list/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-form-builder-category-list/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-form-builder-category-list/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-form-builder-category-list/template.php
diff --git a/src/modules/Opportunities/components/opportunity-form-builder-category-list/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-form-builder-category-list/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-form-builder-category-list/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-form-builder-category-list/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-form-builder/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-form-builder/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-form-builder/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-form-builder/script.js
diff --git a/src/modules/Opportunities/components/opportunity-form-builder/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-form-builder/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-form-builder/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-form-builder/template.php
diff --git a/src/modules/Opportunities/components/opportunity-form-builder/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-form-builder/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-form-builder/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-form-builder/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-form-export/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-form-export/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-form-export/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-form-export/script.js
diff --git a/src/modules/Opportunities/components/opportunity-form-export/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-form-export/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-form-export/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-form-export/template.php
diff --git a/src/modules/Opportunities/components/opportunity-form-import/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-form-import/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-form-import/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-form-import/script.js
diff --git a/src/modules/Opportunities/components/opportunity-form-import/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-form-import/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-form-import/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-form-import/template.php
diff --git a/src/modules/Opportunities/components/opportunity-form-view/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-form-view/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-form-view/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-form-view/script.js
diff --git a/src/modules/Opportunities/components/opportunity-form-view/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-form-view/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-form-view/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-form-view/template.php
diff --git a/src/modules/Opportunities/components/opportunity-header/README.md b/api/mapas/src/modules/Opportunities/components/opportunity-header/README.md
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-header/README.md
rename to api/mapas/src/modules/Opportunities/components/opportunity-header/README.md
diff --git a/src/modules/Opportunities/components/opportunity-header/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-header/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-header/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-header/script.js
diff --git a/src/modules/Opportunities/components/opportunity-header/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-header/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-header/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-header/template.php
diff --git a/src/modules/Opportunities/components/opportunity-header/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-header/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-header/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-header/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-list/init.php b/api/mapas/src/modules/Opportunities/components/opportunity-list/init.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-list/init.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-list/init.php
diff --git a/src/modules/Opportunities/components/opportunity-list/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-list/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-list/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-list/script.js
diff --git a/src/modules/Opportunities/components/opportunity-list/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-list/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-list/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-list/template.php
diff --git a/src/modules/Opportunities/components/opportunity-owner-type/README.md b/api/mapas/src/modules/Opportunities/components/opportunity-owner-type/README.md
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-owner-type/README.md
rename to api/mapas/src/modules/Opportunities/components/opportunity-owner-type/README.md
diff --git a/src/modules/Opportunities/components/opportunity-owner-type/init.php b/api/mapas/src/modules/Opportunities/components/opportunity-owner-type/init.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-owner-type/init.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-owner-type/init.php
diff --git a/src/modules/Opportunities/components/opportunity-owner-type/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-owner-type/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-owner-type/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-owner-type/script.js
diff --git a/src/modules/Opportunities/components/opportunity-owner-type/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-owner-type/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-owner-type/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-owner-type/template.php
diff --git a/src/modules/Opportunities/components/opportunity-owner-type/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-owner-type/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-owner-type/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-owner-type/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-config-data-collection/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-phase-config-data-collection/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-config-data-collection/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-config-data-collection/script.js
diff --git a/src/modules/Opportunities/components/opportunity-phase-config-data-collection/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-config-data-collection/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-config-data-collection/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-config-data-collection/template.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-config-data-collection/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-config-data-collection/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-config-data-collection/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-config-data-collection/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-config-evaluation/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-phase-config-evaluation/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-config-evaluation/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-config-evaluation/script.js
diff --git a/src/modules/Opportunities/components/opportunity-phase-config-evaluation/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-config-evaluation/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-config-evaluation/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-config-evaluation/template.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-config-evaluation/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-config-evaluation/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-config-evaluation/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-config-evaluation/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-config-results/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-phase-config-results/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-config-results/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-config-results/script.js
diff --git a/src/modules/Opportunities/components/opportunity-phase-config-results/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-config-results/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-config-results/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-config-results/template.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-config-results/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-config-results/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-config-results/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-config-results/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-evaluation/README.md b/api/mapas/src/modules/Opportunities/components/opportunity-phase-evaluation/README.md
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-evaluation/README.md
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-evaluation/README.md
diff --git a/src/modules/Opportunities/components/opportunity-phase-evaluation/init.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-evaluation/init.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-evaluation/init.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-evaluation/init.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-evaluation/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-phase-evaluation/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-evaluation/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-evaluation/script.js
diff --git a/src/modules/Opportunities/components/opportunity-phase-evaluation/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-evaluation/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-evaluation/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-evaluation/template.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-evaluation/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-evaluation/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-evaluation/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-evaluation/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-header/README.md b/api/mapas/src/modules/Opportunities/components/opportunity-phase-header/README.md
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-header/README.md
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-header/README.md
diff --git a/src/modules/Opportunities/components/opportunity-phase-header/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-phase-header/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-header/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-header/script.js
diff --git a/src/modules/Opportunities/components/opportunity-phase-header/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-header/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-header/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-header/template.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-header/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-header/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-header/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-header/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-list-evaluation/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-phase-list-evaluation/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-list-evaluation/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-list-evaluation/script.js
diff --git a/src/modules/Opportunities/components/opportunity-phase-list-evaluation/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-list-evaluation/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-list-evaluation/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-list-evaluation/template.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-list-evaluation/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-list-evaluation/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-list-evaluation/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-list-evaluation/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-list-registrations/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-phase-list-registrations/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-list-registrations/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-list-registrations/script.js
diff --git a/src/modules/Opportunities/components/opportunity-phase-list-registrations/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-list-registrations/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-list-registrations/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-list-registrations/template.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-list-registrations/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-list-registrations/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-list-registrations/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-list-registrations/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-publish-config-registration/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-phase-publish-config-registration/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-publish-config-registration/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-publish-config-registration/script.js
diff --git a/src/modules/Opportunities/components/opportunity-phase-publish-config-registration/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-publish-config-registration/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-publish-config-registration/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-publish-config-registration/template.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-publish-config-registration/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-publish-config-registration/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-publish-config-registration/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-publish-config-registration/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-publish-date-config/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-phase-publish-date-config/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-publish-date-config/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-publish-date-config/script.js
diff --git a/src/modules/Opportunities/components/opportunity-phase-publish-date-config/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-publish-date-config/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-publish-date-config/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-publish-date-config/template.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-publish-date-config/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-publish-date-config/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-publish-date-config/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-publish-date-config/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-reports/README.md b/api/mapas/src/modules/Opportunities/components/opportunity-phase-reports/README.md
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-reports/README.md
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-reports/README.md
diff --git a/src/modules/Opportunities/components/opportunity-phase-reports/init.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-reports/init.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-reports/init.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-reports/init.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-reports/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-phase-reports/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-reports/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-reports/script.js
diff --git a/src/modules/Opportunities/components/opportunity-phase-reports/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-reports/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-reports/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-reports/template.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-reports/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-reports/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-reports/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-reports/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-status/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-phase-status/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-status/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-status/script.js
diff --git a/src/modules/Opportunities/components/opportunity-phase-status/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-status/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-status/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-status/template.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-status/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-status/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-status/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-status/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-support/README.md b/api/mapas/src/modules/Opportunities/components/opportunity-phase-support/README.md
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-support/README.md
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-support/README.md
diff --git a/src/modules/Opportunities/components/opportunity-phase-support/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-phase-support/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-support/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-support/script.js
diff --git a/src/modules/Opportunities/components/opportunity-phase-support/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-support/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-support/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-support/template.php
diff --git a/src/modules/Opportunities/components/opportunity-phase-support/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-phase-support/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phase-support/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phase-support/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-phases-config/README.md b/api/mapas/src/modules/Opportunities/components/opportunity-phases-config/README.md
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phases-config/README.md
rename to api/mapas/src/modules/Opportunities/components/opportunity-phases-config/README.md
diff --git a/src/modules/Opportunities/components/opportunity-phases-config/init.php b/api/mapas/src/modules/Opportunities/components/opportunity-phases-config/init.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phases-config/init.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phases-config/init.php
diff --git a/src/modules/Opportunities/components/opportunity-phases-config/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-phases-config/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phases-config/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-phases-config/script.js
diff --git a/src/modules/Opportunities/components/opportunity-phases-config/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-phases-config/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phases-config/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phases-config/template.php
diff --git a/src/modules/Opportunities/components/opportunity-phases-config/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-phases-config/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phases-config/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phases-config/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-phases-timeline/README.md b/api/mapas/src/modules/Opportunities/components/opportunity-phases-timeline/README.md
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phases-timeline/README.md
rename to api/mapas/src/modules/Opportunities/components/opportunity-phases-timeline/README.md
diff --git a/src/modules/Opportunities/components/opportunity-phases-timeline/init.php b/api/mapas/src/modules/Opportunities/components/opportunity-phases-timeline/init.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phases-timeline/init.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phases-timeline/init.php
diff --git a/src/modules/Opportunities/components/opportunity-phases-timeline/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-phases-timeline/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phases-timeline/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-phases-timeline/script.js
diff --git a/src/modules/Opportunities/components/opportunity-phases-timeline/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-phases-timeline/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-phases-timeline/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-phases-timeline/template.php
diff --git a/src/modules/Opportunities/components/opportunity-ranges-config/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-ranges-config/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-ranges-config/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-ranges-config/script.js
diff --git a/src/modules/Opportunities/components/opportunity-ranges-config/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-ranges-config/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-ranges-config/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-ranges-config/template.php
diff --git a/src/modules/Opportunities/components/opportunity-registrations-table/init.php b/api/mapas/src/modules/Opportunities/components/opportunity-registrations-table/init.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-registrations-table/init.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-registrations-table/init.php
diff --git a/src/modules/Opportunities/components/opportunity-registrations-table/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-registrations-table/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-registrations-table/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-registrations-table/script.js
diff --git a/src/modules/Opportunities/components/opportunity-registrations-table/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-registrations-table/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-registrations-table/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-registrations-table/template.php
diff --git a/src/modules/Opportunities/components/opportunity-registrations-table/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-registrations-table/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-registrations-table/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-registrations-table/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-results-table/README.md b/api/mapas/src/modules/Opportunities/components/opportunity-results-table/README.md
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-results-table/README.md
rename to api/mapas/src/modules/Opportunities/components/opportunity-results-table/README.md
diff --git a/src/modules/Opportunities/components/opportunity-results-table/init.php b/api/mapas/src/modules/Opportunities/components/opportunity-results-table/init.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-results-table/init.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-results-table/init.php
diff --git a/src/modules/Opportunities/components/opportunity-results-table/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-results-table/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-results-table/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-results-table/script.js
diff --git a/src/modules/Opportunities/components/opportunity-results-table/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-results-table/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-results-table/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-results-table/template.php
diff --git a/src/modules/Opportunities/components/opportunity-rules/README.md b/api/mapas/src/modules/Opportunities/components/opportunity-rules/README.md
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-rules/README.md
rename to api/mapas/src/modules/Opportunities/components/opportunity-rules/README.md
diff --git a/src/modules/Opportunities/components/opportunity-rules/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-rules/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-rules/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-rules/script.js
diff --git a/src/modules/Opportunities/components/opportunity-rules/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-rules/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-rules/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-rules/template.php
diff --git a/src/modules/Opportunities/components/opportunity-subscribe-results/README.md b/api/mapas/src/modules/Opportunities/components/opportunity-subscribe-results/README.md
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-subscribe-results/README.md
rename to api/mapas/src/modules/Opportunities/components/opportunity-subscribe-results/README.md
diff --git a/src/modules/Opportunities/components/opportunity-subscribe-results/init.php b/api/mapas/src/modules/Opportunities/components/opportunity-subscribe-results/init.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-subscribe-results/init.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-subscribe-results/init.php
diff --git a/src/modules/Opportunities/components/opportunity-subscribe-results/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-subscribe-results/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-subscribe-results/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-subscribe-results/script.js
diff --git a/src/modules/Opportunities/components/opportunity-subscribe-results/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-subscribe-results/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-subscribe-results/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-subscribe-results/template.php
diff --git a/src/modules/Opportunities/components/opportunity-subscribe-results/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-subscribe-results/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-subscribe-results/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-subscribe-results/texts.php
diff --git a/src/modules/Opportunities/components/opportunity-subscription-list/README.md b/api/mapas/src/modules/Opportunities/components/opportunity-subscription-list/README.md
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-subscription-list/README.md
rename to api/mapas/src/modules/Opportunities/components/opportunity-subscription-list/README.md
diff --git a/src/modules/Opportunities/components/opportunity-subscription-list/init.php b/api/mapas/src/modules/Opportunities/components/opportunity-subscription-list/init.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-subscription-list/init.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-subscription-list/init.php
diff --git a/src/modules/Opportunities/components/opportunity-subscription-list/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-subscription-list/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-subscription-list/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-subscription-list/script.js
diff --git a/src/modules/Opportunities/components/opportunity-subscription-list/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-subscription-list/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-subscription-list/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-subscription-list/template.php
diff --git a/src/modules/Opportunities/components/opportunity-subscription-registered/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-subscription-registered/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-subscription-registered/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-subscription-registered/script.js
diff --git a/src/modules/Opportunities/components/opportunity-subscription-registered/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-subscription-registered/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-subscription-registered/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-subscription-registered/template.php
diff --git a/src/modules/Opportunities/components/opportunity-subscription/README.md b/api/mapas/src/modules/Opportunities/components/opportunity-subscription/README.md
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-subscription/README.md
rename to api/mapas/src/modules/Opportunities/components/opportunity-subscription/README.md
diff --git a/src/modules/Opportunities/components/opportunity-subscription/init.php b/api/mapas/src/modules/Opportunities/components/opportunity-subscription/init.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-subscription/init.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-subscription/init.php
diff --git a/src/modules/Opportunities/components/opportunity-subscription/script.js b/api/mapas/src/modules/Opportunities/components/opportunity-subscription/script.js
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-subscription/script.js
rename to api/mapas/src/modules/Opportunities/components/opportunity-subscription/script.js
diff --git a/src/modules/Opportunities/components/opportunity-subscription/template.php b/api/mapas/src/modules/Opportunities/components/opportunity-subscription/template.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-subscription/template.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-subscription/template.php
diff --git a/src/modules/Opportunities/components/opportunity-subscription/texts.php b/api/mapas/src/modules/Opportunities/components/opportunity-subscription/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/opportunity-subscription/texts.php
rename to api/mapas/src/modules/Opportunities/components/opportunity-subscription/texts.php
diff --git a/src/modules/Opportunities/components/panel--evaluations-tabs/README.md b/api/mapas/src/modules/Opportunities/components/panel--evaluations-tabs/README.md
similarity index 100%
rename from src/modules/Opportunities/components/panel--evaluations-tabs/README.md
rename to api/mapas/src/modules/Opportunities/components/panel--evaluations-tabs/README.md
diff --git a/src/modules/Opportunities/components/panel--evaluations-tabs/init.php b/api/mapas/src/modules/Opportunities/components/panel--evaluations-tabs/init.php
similarity index 100%
rename from src/modules/Opportunities/components/panel--evaluations-tabs/init.php
rename to api/mapas/src/modules/Opportunities/components/panel--evaluations-tabs/init.php
diff --git a/src/modules/Opportunities/components/panel--evaluations-tabs/script.js b/api/mapas/src/modules/Opportunities/components/panel--evaluations-tabs/script.js
similarity index 100%
rename from src/modules/Opportunities/components/panel--evaluations-tabs/script.js
rename to api/mapas/src/modules/Opportunities/components/panel--evaluations-tabs/script.js
diff --git a/src/modules/Opportunities/components/panel--evaluations-tabs/template.php b/api/mapas/src/modules/Opportunities/components/panel--evaluations-tabs/template.php
similarity index 100%
rename from src/modules/Opportunities/components/panel--evaluations-tabs/template.php
rename to api/mapas/src/modules/Opportunities/components/panel--evaluations-tabs/template.php
diff --git a/src/modules/Opportunities/components/panel--registration-tabs/README.md b/api/mapas/src/modules/Opportunities/components/panel--registration-tabs/README.md
similarity index 100%
rename from src/modules/Opportunities/components/panel--registration-tabs/README.md
rename to api/mapas/src/modules/Opportunities/components/panel--registration-tabs/README.md
diff --git a/src/modules/Opportunities/components/panel--registration-tabs/init.php b/api/mapas/src/modules/Opportunities/components/panel--registration-tabs/init.php
similarity index 100%
rename from src/modules/Opportunities/components/panel--registration-tabs/init.php
rename to api/mapas/src/modules/Opportunities/components/panel--registration-tabs/init.php
diff --git a/src/modules/Opportunities/components/panel--registration-tabs/script.js b/api/mapas/src/modules/Opportunities/components/panel--registration-tabs/script.js
similarity index 100%
rename from src/modules/Opportunities/components/panel--registration-tabs/script.js
rename to api/mapas/src/modules/Opportunities/components/panel--registration-tabs/script.js
diff --git a/src/modules/Opportunities/components/panel--registration-tabs/template.php b/api/mapas/src/modules/Opportunities/components/panel--registration-tabs/template.php
similarity index 100%
rename from src/modules/Opportunities/components/panel--registration-tabs/template.php
rename to api/mapas/src/modules/Opportunities/components/panel--registration-tabs/template.php
diff --git a/src/modules/Opportunities/components/pending-evaluations-card/README.md b/api/mapas/src/modules/Opportunities/components/pending-evaluations-card/README.md
similarity index 100%
rename from src/modules/Opportunities/components/pending-evaluations-card/README.md
rename to api/mapas/src/modules/Opportunities/components/pending-evaluations-card/README.md
diff --git a/src/modules/Opportunities/components/pending-evaluations-card/init.php b/api/mapas/src/modules/Opportunities/components/pending-evaluations-card/init.php
similarity index 100%
rename from src/modules/Opportunities/components/pending-evaluations-card/init.php
rename to api/mapas/src/modules/Opportunities/components/pending-evaluations-card/init.php
diff --git a/src/modules/Opportunities/components/pending-evaluations-card/script.js b/api/mapas/src/modules/Opportunities/components/pending-evaluations-card/script.js
similarity index 100%
rename from src/modules/Opportunities/components/pending-evaluations-card/script.js
rename to api/mapas/src/modules/Opportunities/components/pending-evaluations-card/script.js
diff --git a/src/modules/Opportunities/components/pending-evaluations-card/template.php b/api/mapas/src/modules/Opportunities/components/pending-evaluations-card/template.php
similarity index 100%
rename from src/modules/Opportunities/components/pending-evaluations-card/template.php
rename to api/mapas/src/modules/Opportunities/components/pending-evaluations-card/template.php
diff --git a/src/modules/Opportunities/components/pending-evaluations-card/texts.php b/api/mapas/src/modules/Opportunities/components/pending-evaluations-card/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/pending-evaluations-card/texts.php
rename to api/mapas/src/modules/Opportunities/components/pending-evaluations-card/texts.php
diff --git a/src/modules/Opportunities/components/registration-actions/README.md b/api/mapas/src/modules/Opportunities/components/registration-actions/README.md
similarity index 100%
rename from src/modules/Opportunities/components/registration-actions/README.md
rename to api/mapas/src/modules/Opportunities/components/registration-actions/README.md
diff --git a/src/modules/Opportunities/components/registration-actions/script.js b/api/mapas/src/modules/Opportunities/components/registration-actions/script.js
similarity index 100%
rename from src/modules/Opportunities/components/registration-actions/script.js
rename to api/mapas/src/modules/Opportunities/components/registration-actions/script.js
diff --git a/src/modules/Opportunities/components/registration-actions/template.php b/api/mapas/src/modules/Opportunities/components/registration-actions/template.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-actions/template.php
rename to api/mapas/src/modules/Opportunities/components/registration-actions/template.php
diff --git a/src/modules/Opportunities/components/registration-actions/text.php b/api/mapas/src/modules/Opportunities/components/registration-actions/text.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-actions/text.php
rename to api/mapas/src/modules/Opportunities/components/registration-actions/text.php
diff --git a/src/modules/Opportunities/components/registration-card/README.md b/api/mapas/src/modules/Opportunities/components/registration-card/README.md
similarity index 100%
rename from src/modules/Opportunities/components/registration-card/README.md
rename to api/mapas/src/modules/Opportunities/components/registration-card/README.md
diff --git a/src/modules/Opportunities/components/registration-card/script.js b/api/mapas/src/modules/Opportunities/components/registration-card/script.js
similarity index 100%
rename from src/modules/Opportunities/components/registration-card/script.js
rename to api/mapas/src/modules/Opportunities/components/registration-card/script.js
diff --git a/src/modules/Opportunities/components/registration-card/template.php b/api/mapas/src/modules/Opportunities/components/registration-card/template.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-card/template.php
rename to api/mapas/src/modules/Opportunities/components/registration-card/template.php
diff --git a/src/modules/Opportunities/components/registration-card/texts.php b/api/mapas/src/modules/Opportunities/components/registration-card/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-card/texts.php
rename to api/mapas/src/modules/Opportunities/components/registration-card/texts.php
diff --git a/src/modules/Opportunities/components/registration-evaluation-actions/README.md b/api/mapas/src/modules/Opportunities/components/registration-evaluation-actions/README.md
similarity index 100%
rename from src/modules/Opportunities/components/registration-evaluation-actions/README.md
rename to api/mapas/src/modules/Opportunities/components/registration-evaluation-actions/README.md
diff --git a/src/modules/Opportunities/components/registration-evaluation-actions/script.js b/api/mapas/src/modules/Opportunities/components/registration-evaluation-actions/script.js
similarity index 100%
rename from src/modules/Opportunities/components/registration-evaluation-actions/script.js
rename to api/mapas/src/modules/Opportunities/components/registration-evaluation-actions/script.js
diff --git a/src/modules/Opportunities/components/registration-evaluation-actions/template.php b/api/mapas/src/modules/Opportunities/components/registration-evaluation-actions/template.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-evaluation-actions/template.php
rename to api/mapas/src/modules/Opportunities/components/registration-evaluation-actions/template.php
diff --git a/src/modules/Opportunities/components/registration-evaluation-actions/text.php b/api/mapas/src/modules/Opportunities/components/registration-evaluation-actions/text.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-evaluation-actions/text.php
rename to api/mapas/src/modules/Opportunities/components/registration-evaluation-actions/text.php
diff --git a/src/modules/Opportunities/components/registration-evaluation-info/README.md b/api/mapas/src/modules/Opportunities/components/registration-evaluation-info/README.md
similarity index 100%
rename from src/modules/Opportunities/components/registration-evaluation-info/README.md
rename to api/mapas/src/modules/Opportunities/components/registration-evaluation-info/README.md
diff --git a/src/modules/Opportunities/components/registration-evaluation-info/init.php b/api/mapas/src/modules/Opportunities/components/registration-evaluation-info/init.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-evaluation-info/init.php
rename to api/mapas/src/modules/Opportunities/components/registration-evaluation-info/init.php
diff --git a/src/modules/Opportunities/components/registration-evaluation-info/script.js b/api/mapas/src/modules/Opportunities/components/registration-evaluation-info/script.js
similarity index 100%
rename from src/modules/Opportunities/components/registration-evaluation-info/script.js
rename to api/mapas/src/modules/Opportunities/components/registration-evaluation-info/script.js
diff --git a/src/modules/Opportunities/components/registration-evaluation-info/template.php b/api/mapas/src/modules/Opportunities/components/registration-evaluation-info/template.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-evaluation-info/template.php
rename to api/mapas/src/modules/Opportunities/components/registration-evaluation-info/template.php
diff --git a/src/modules/Opportunities/components/registration-evaluation-info/texts.php b/api/mapas/src/modules/Opportunities/components/registration-evaluation-info/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-evaluation-info/texts.php
rename to api/mapas/src/modules/Opportunities/components/registration-evaluation-info/texts.php
diff --git a/src/modules/Opportunities/components/registration-info/README.md b/api/mapas/src/modules/Opportunities/components/registration-info/README.md
similarity index 100%
rename from src/modules/Opportunities/components/registration-info/README.md
rename to api/mapas/src/modules/Opportunities/components/registration-info/README.md
diff --git a/src/modules/Opportunities/components/registration-info/script.js b/api/mapas/src/modules/Opportunities/components/registration-info/script.js
similarity index 100%
rename from src/modules/Opportunities/components/registration-info/script.js
rename to api/mapas/src/modules/Opportunities/components/registration-info/script.js
diff --git a/src/modules/Opportunities/components/registration-info/template.php b/api/mapas/src/modules/Opportunities/components/registration-info/template.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-info/template.php
rename to api/mapas/src/modules/Opportunities/components/registration-info/template.php
diff --git a/src/modules/Opportunities/components/registration-print/README.md b/api/mapas/src/modules/Opportunities/components/registration-print/README.md
similarity index 100%
rename from src/modules/Opportunities/components/registration-print/README.md
rename to api/mapas/src/modules/Opportunities/components/registration-print/README.md
diff --git a/src/modules/Opportunities/components/registration-print/script.js b/api/mapas/src/modules/Opportunities/components/registration-print/script.js
similarity index 100%
rename from src/modules/Opportunities/components/registration-print/script.js
rename to api/mapas/src/modules/Opportunities/components/registration-print/script.js
diff --git a/src/modules/Opportunities/components/registration-print/template.php b/api/mapas/src/modules/Opportunities/components/registration-print/template.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-print/template.php
rename to api/mapas/src/modules/Opportunities/components/registration-print/template.php
diff --git a/src/modules/Opportunities/components/registration-related-agents/init.php b/api/mapas/src/modules/Opportunities/components/registration-related-agents/init.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-related-agents/init.php
rename to api/mapas/src/modules/Opportunities/components/registration-related-agents/init.php
diff --git a/src/modules/Opportunities/components/registration-related-agents/script.js b/api/mapas/src/modules/Opportunities/components/registration-related-agents/script.js
similarity index 100%
rename from src/modules/Opportunities/components/registration-related-agents/script.js
rename to api/mapas/src/modules/Opportunities/components/registration-related-agents/script.js
diff --git a/src/modules/Opportunities/components/registration-related-agents/template.php b/api/mapas/src/modules/Opportunities/components/registration-related-agents/template.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-related-agents/template.php
rename to api/mapas/src/modules/Opportunities/components/registration-related-agents/template.php
diff --git a/src/modules/Opportunities/components/registration-related-project/script.js b/api/mapas/src/modules/Opportunities/components/registration-related-project/script.js
similarity index 100%
rename from src/modules/Opportunities/components/registration-related-project/script.js
rename to api/mapas/src/modules/Opportunities/components/registration-related-project/script.js
diff --git a/src/modules/Opportunities/components/registration-related-project/template.php b/api/mapas/src/modules/Opportunities/components/registration-related-project/template.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-related-project/template.php
rename to api/mapas/src/modules/Opportunities/components/registration-related-project/template.php
diff --git a/src/modules/Opportunities/components/registration-related-project/text.php b/api/mapas/src/modules/Opportunities/components/registration-related-project/text.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-related-project/text.php
rename to api/mapas/src/modules/Opportunities/components/registration-related-project/text.php
diff --git a/src/modules/Opportunities/components/registration-related-space/init.php b/api/mapas/src/modules/Opportunities/components/registration-related-space/init.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-related-space/init.php
rename to api/mapas/src/modules/Opportunities/components/registration-related-space/init.php
diff --git a/src/modules/Opportunities/components/registration-related-space/script.js b/api/mapas/src/modules/Opportunities/components/registration-related-space/script.js
similarity index 100%
rename from src/modules/Opportunities/components/registration-related-space/script.js
rename to api/mapas/src/modules/Opportunities/components/registration-related-space/script.js
diff --git a/src/modules/Opportunities/components/registration-related-space/template.php b/api/mapas/src/modules/Opportunities/components/registration-related-space/template.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-related-space/template.php
rename to api/mapas/src/modules/Opportunities/components/registration-related-space/template.php
diff --git a/src/modules/Opportunities/components/registration-related-space/text.php b/api/mapas/src/modules/Opportunities/components/registration-related-space/text.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-related-space/text.php
rename to api/mapas/src/modules/Opportunities/components/registration-related-space/text.php
diff --git a/src/modules/Opportunities/components/registration-results/README.md b/api/mapas/src/modules/Opportunities/components/registration-results/README.md
similarity index 100%
rename from src/modules/Opportunities/components/registration-results/README.md
rename to api/mapas/src/modules/Opportunities/components/registration-results/README.md
diff --git a/src/modules/Opportunities/components/registration-results/script.js b/api/mapas/src/modules/Opportunities/components/registration-results/script.js
similarity index 100%
rename from src/modules/Opportunities/components/registration-results/script.js
rename to api/mapas/src/modules/Opportunities/components/registration-results/script.js
diff --git a/src/modules/Opportunities/components/registration-results/template.php b/api/mapas/src/modules/Opportunities/components/registration-results/template.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-results/template.php
rename to api/mapas/src/modules/Opportunities/components/registration-results/template.php
diff --git a/src/modules/Opportunities/components/registration-results/texts.php b/api/mapas/src/modules/Opportunities/components/registration-results/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-results/texts.php
rename to api/mapas/src/modules/Opportunities/components/registration-results/texts.php
diff --git a/src/modules/Opportunities/components/registration-status/README.md b/api/mapas/src/modules/Opportunities/components/registration-status/README.md
similarity index 100%
rename from src/modules/Opportunities/components/registration-status/README.md
rename to api/mapas/src/modules/Opportunities/components/registration-status/README.md
diff --git a/src/modules/Opportunities/components/registration-status/script.js b/api/mapas/src/modules/Opportunities/components/registration-status/script.js
similarity index 100%
rename from src/modules/Opportunities/components/registration-status/script.js
rename to api/mapas/src/modules/Opportunities/components/registration-status/script.js
diff --git a/src/modules/Opportunities/components/registration-status/template.php b/api/mapas/src/modules/Opportunities/components/registration-status/template.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-status/template.php
rename to api/mapas/src/modules/Opportunities/components/registration-status/template.php
diff --git a/src/modules/Opportunities/components/registration-status/texts.php b/api/mapas/src/modules/Opportunities/components/registration-status/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-status/texts.php
rename to api/mapas/src/modules/Opportunities/components/registration-status/texts.php
diff --git a/src/modules/Opportunities/components/registration-steps/script.js b/api/mapas/src/modules/Opportunities/components/registration-steps/script.js
similarity index 100%
rename from src/modules/Opportunities/components/registration-steps/script.js
rename to api/mapas/src/modules/Opportunities/components/registration-steps/script.js
diff --git a/src/modules/Opportunities/components/registration-steps/template.php b/api/mapas/src/modules/Opportunities/components/registration-steps/template.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-steps/template.php
rename to api/mapas/src/modules/Opportunities/components/registration-steps/template.php
diff --git a/src/modules/Opportunities/components/registration-steps/texts.php b/api/mapas/src/modules/Opportunities/components/registration-steps/texts.php
similarity index 100%
rename from src/modules/Opportunities/components/registration-steps/texts.php
rename to api/mapas/src/modules/Opportunities/components/registration-steps/texts.php
diff --git a/src/modules/Opportunities/layouts/parts/opportunity-tab-registration.php b/api/mapas/src/modules/Opportunities/layouts/parts/opportunity-tab-registration.php
similarity index 100%
rename from src/modules/Opportunities/layouts/parts/opportunity-tab-registration.php
rename to api/mapas/src/modules/Opportunities/layouts/parts/opportunity-tab-registration.php
diff --git a/src/modules/Opportunities/layouts/parts/opportunity-tab-results.php b/api/mapas/src/modules/Opportunities/layouts/parts/opportunity-tab-results.php
similarity index 100%
rename from src/modules/Opportunities/layouts/parts/opportunity-tab-results.php
rename to api/mapas/src/modules/Opportunities/layouts/parts/opportunity-tab-results.php
diff --git a/src/modules/Opportunities/layouts/parts/opportunity-tab-support.php b/api/mapas/src/modules/Opportunities/layouts/parts/opportunity-tab-support.php
similarity index 100%
rename from src/modules/Opportunities/layouts/parts/opportunity-tab-support.php
rename to api/mapas/src/modules/Opportunities/layouts/parts/opportunity-tab-support.php
diff --git a/src/modules/Opportunities/layouts/print-layout.php b/api/mapas/src/modules/Opportunities/layouts/print-layout.php
similarity index 100%
rename from src/modules/Opportunities/layouts/print-layout.php
rename to api/mapas/src/modules/Opportunities/layouts/print-layout.php
diff --git a/src/modules/Opportunities/layouts/registrations.php b/api/mapas/src/modules/Opportunities/layouts/registrations.php
similarity index 100%
rename from src/modules/Opportunities/layouts/registrations.php
rename to api/mapas/src/modules/Opportunities/layouts/registrations.php
diff --git a/src/modules/Opportunities/views/opportunity/edit.php b/api/mapas/src/modules/Opportunities/views/opportunity/edit.php
similarity index 100%
rename from src/modules/Opportunities/views/opportunity/edit.php
rename to api/mapas/src/modules/Opportunities/views/opportunity/edit.php
diff --git a/src/modules/Opportunities/views/opportunity/evaluations-list--all.php b/api/mapas/src/modules/Opportunities/views/opportunity/evaluations-list--all.php
similarity index 100%
rename from src/modules/Opportunities/views/opportunity/evaluations-list--all.php
rename to api/mapas/src/modules/Opportunities/views/opportunity/evaluations-list--all.php
diff --git a/src/modules/Opportunities/views/opportunity/evaluations-list--user.php b/api/mapas/src/modules/Opportunities/views/opportunity/evaluations-list--user.php
similarity index 100%
rename from src/modules/Opportunities/views/opportunity/evaluations-list--user.php
rename to api/mapas/src/modules/Opportunities/views/opportunity/evaluations-list--user.php
diff --git a/src/modules/Opportunities/views/opportunity/form-builder.php b/api/mapas/src/modules/Opportunities/views/opportunity/form-builder.php
similarity index 100%
rename from src/modules/Opportunities/views/opportunity/form-builder.php
rename to api/mapas/src/modules/Opportunities/views/opportunity/form-builder.php
diff --git a/src/modules/Opportunities/views/opportunity/preview-form.php b/api/mapas/src/modules/Opportunities/views/opportunity/preview-form.php
similarity index 100%
rename from src/modules/Opportunities/views/opportunity/preview-form.php
rename to api/mapas/src/modules/Opportunities/views/opportunity/preview-form.php
diff --git a/src/modules/Opportunities/views/opportunity/registrations.php b/api/mapas/src/modules/Opportunities/views/opportunity/registrations.php
similarity index 100%
rename from src/modules/Opportunities/views/opportunity/registrations.php
rename to api/mapas/src/modules/Opportunities/views/opportunity/registrations.php
diff --git a/src/modules/Opportunities/views/opportunity/report-csv.php b/api/mapas/src/modules/Opportunities/views/opportunity/report-csv.php
similarity index 100%
rename from src/modules/Opportunities/views/opportunity/report-csv.php
rename to api/mapas/src/modules/Opportunities/views/opportunity/report-csv.php
diff --git a/src/modules/Opportunities/views/opportunity/report-drafts-csv.php b/api/mapas/src/modules/Opportunities/views/opportunity/report-drafts-csv.php
similarity index 100%
rename from src/modules/Opportunities/views/opportunity/report-drafts-csv.php
rename to api/mapas/src/modules/Opportunities/views/opportunity/report-drafts-csv.php
diff --git a/src/modules/Opportunities/views/opportunity/report-drafts.php b/api/mapas/src/modules/Opportunities/views/opportunity/report-drafts.php
similarity index 100%
rename from src/modules/Opportunities/views/opportunity/report-drafts.php
rename to api/mapas/src/modules/Opportunities/views/opportunity/report-drafts.php
diff --git a/src/modules/Opportunities/views/opportunity/report-evaluations.php b/api/mapas/src/modules/Opportunities/views/opportunity/report-evaluations.php
similarity index 100%
rename from src/modules/Opportunities/views/opportunity/report-evaluations.php
rename to api/mapas/src/modules/Opportunities/views/opportunity/report-evaluations.php
diff --git a/src/modules/Opportunities/views/opportunity/report.php b/api/mapas/src/modules/Opportunities/views/opportunity/report.php
similarity index 100%
rename from src/modules/Opportunities/views/opportunity/report.php
rename to api/mapas/src/modules/Opportunities/views/opportunity/report.php
diff --git a/src/modules/Opportunities/views/opportunity/single.php b/api/mapas/src/modules/Opportunities/views/opportunity/single.php
similarity index 100%
rename from src/modules/Opportunities/views/opportunity/single.php
rename to api/mapas/src/modules/Opportunities/views/opportunity/single.php
diff --git a/src/modules/Opportunities/views/panel/evaluations.php b/api/mapas/src/modules/Opportunities/views/panel/evaluations.php
similarity index 100%
rename from src/modules/Opportunities/views/panel/evaluations.php
rename to api/mapas/src/modules/Opportunities/views/panel/evaluations.php
diff --git a/src/modules/Opportunities/views/panel/opportunities.php b/api/mapas/src/modules/Opportunities/views/panel/opportunities.php
similarity index 100%
rename from src/modules/Opportunities/views/panel/opportunities.php
rename to api/mapas/src/modules/Opportunities/views/panel/opportunities.php
diff --git a/src/modules/Opportunities/views/panel/registrations.php b/api/mapas/src/modules/Opportunities/views/panel/registrations.php
similarity index 100%
rename from src/modules/Opportunities/views/panel/registrations.php
rename to api/mapas/src/modules/Opportunities/views/panel/registrations.php
diff --git a/src/modules/Opportunities/views/registration/edit.php b/api/mapas/src/modules/Opportunities/views/registration/edit.php
similarity index 100%
rename from src/modules/Opportunities/views/registration/edit.php
rename to api/mapas/src/modules/Opportunities/views/registration/edit.php
diff --git a/src/modules/Opportunities/views/registration/evaluation.php b/api/mapas/src/modules/Opportunities/views/registration/evaluation.php
similarity index 100%
rename from src/modules/Opportunities/views/registration/evaluation.php
rename to api/mapas/src/modules/Opportunities/views/registration/evaluation.php
diff --git a/src/modules/Opportunities/views/registration/registration-print.php b/api/mapas/src/modules/Opportunities/views/registration/registration-print.php
similarity index 100%
rename from src/modules/Opportunities/views/registration/registration-print.php
rename to api/mapas/src/modules/Opportunities/views/registration/registration-print.php
diff --git a/src/modules/Opportunities/views/registration/single.php b/api/mapas/src/modules/Opportunities/views/registration/single.php
similarity index 100%
rename from src/modules/Opportunities/views/registration/single.php
rename to api/mapas/src/modules/Opportunities/views/registration/single.php
diff --git a/src/modules/OpportunityAccountability/Controller.php b/api/mapas/src/modules/OpportunityAccountability/Controller.php
similarity index 100%
rename from src/modules/OpportunityAccountability/Controller.php
rename to api/mapas/src/modules/OpportunityAccountability/Controller.php
diff --git a/src/modules/OpportunityAccountability/EvaluationMethod.php b/api/mapas/src/modules/OpportunityAccountability/EvaluationMethod.php
similarity index 100%
rename from src/modules/OpportunityAccountability/EvaluationMethod.php
rename to api/mapas/src/modules/OpportunityAccountability/EvaluationMethod.php
diff --git a/src/modules/OpportunityAccountability/Module.php b/api/mapas/src/modules/OpportunityAccountability/Module.php
similarity index 100%
rename from src/modules/OpportunityAccountability/Module.php
rename to api/mapas/src/modules/OpportunityAccountability/Module.php
diff --git a/src/modules/OpportunityAccountability/assets/css/accountability-evaluation-method.css b/api/mapas/src/modules/OpportunityAccountability/assets/css/accountability-evaluation-method.css
similarity index 100%
rename from src/modules/OpportunityAccountability/assets/css/accountability-evaluation-method.css
rename to api/mapas/src/modules/OpportunityAccountability/assets/css/accountability-evaluation-method.css
diff --git a/src/modules/OpportunityAccountability/assets/js/ng.evaluationMethod.accountability.js b/api/mapas/src/modules/OpportunityAccountability/assets/js/ng.evaluationMethod.accountability.js
similarity index 100%
rename from src/modules/OpportunityAccountability/assets/js/ng.evaluationMethod.accountability.js
rename to api/mapas/src/modules/OpportunityAccountability/assets/js/ng.evaluationMethod.accountability.js
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability--evaluation-form.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability--evaluation-form.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability--evaluation-form.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability--evaluation-form.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability--evaluation-view.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability--evaluation-view.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability--evaluation-view.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability--evaluation-view.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability-evaluation-admin-table-body.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-evaluation-admin-table-body.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability-evaluation-admin-table-body.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-evaluation-admin-table-body.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability-evaluation-admin-table-head.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-evaluation-admin-table-head.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability-evaluation-admin-table-head.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-evaluation-admin-table-head.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability-phase-confirmation.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-phase-confirmation.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability-phase-confirmation.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-phase-confirmation.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability-phase-info.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-phase-info.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability-phase-info.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-phase-info.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability-phase-project-info.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-phase-project-info.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability-phase-project-info.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-phase-project-info.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability-published-result-list.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-published-result-list.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability-published-result-list.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-published-result-list.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability-published-result-tab.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-published-result-tab.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability-published-result-tab.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-published-result-tab.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability-registrations-header.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-registrations-header.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability-registrations-header.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-registrations-header.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability-registrations-list.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-registrations-list.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability-registrations-list.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability-registrations-list.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability/accountability-nav-panel.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/accountability-nav-panel.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability/accountability-nav-panel.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/accountability-nav-panel.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability/apply-results.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/apply-results.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability/apply-results.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/apply-results.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability/import-last-phase-button.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/import-last-phase-button.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability/import-last-phase-button.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/import-last-phase-button.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability/panel-project.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/panel-project.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability/panel-project.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/panel-project.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability/project-accountability-panel.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/project-accountability-panel.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability/project-accountability-panel.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/project-accountability-panel.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability/project-opportunity.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/project-opportunity.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability/project-opportunity.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/project-opportunity.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability/project-tab-content.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/project-tab-content.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability/project-tab-content.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/project-tab-content.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability/project-tab.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/project-tab.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability/project-tab.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/project-tab.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-accountability-panel.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-accountability-panel.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability/registration-accountability-panel.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-accountability-panel.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-field-controls.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-field-controls.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability/registration-field-controls.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-field-controls.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-message.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-message.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability/registration-message.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-message.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-revisions.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-revisions.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability/registration-revisions.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-revisions.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-tab-content.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-tab-content.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability/registration-tab-content.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-tab-content.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-tab.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-tab.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability/registration-tab.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/registration-tab.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/accountability/send-button.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/send-button.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/accountability/send-button.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/accountability/send-button.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/widget-opportunity-accountability.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/widget-opportunity-accountability.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/widget-opportunity-accountability.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/widget-opportunity-accountability.php
diff --git a/src/modules/OpportunityAccountability/layouts/parts/widget-opportunity-phase-only.php b/api/mapas/src/modules/OpportunityAccountability/layouts/parts/widget-opportunity-phase-only.php
similarity index 100%
rename from src/modules/OpportunityAccountability/layouts/parts/widget-opportunity-phase-only.php
rename to api/mapas/src/modules/OpportunityAccountability/layouts/parts/widget-opportunity-phase-only.php
diff --git a/src/modules/OpportunityAccountability/templates/pt_BR/accountability/project-communication.html b/api/mapas/src/modules/OpportunityAccountability/templates/pt_BR/accountability/project-communication.html
similarity index 100%
rename from src/modules/OpportunityAccountability/templates/pt_BR/accountability/project-communication.html
rename to api/mapas/src/modules/OpportunityAccountability/templates/pt_BR/accountability/project-communication.html
diff --git a/src/modules/OpportunityAccountability/views/accountability/registration.php b/api/mapas/src/modules/OpportunityAccountability/views/accountability/registration.php
similarity index 100%
rename from src/modules/OpportunityAccountability/views/accountability/registration.php
rename to api/mapas/src/modules/OpportunityAccountability/views/accountability/registration.php
diff --git a/src/modules/OpportunityAccountability/views/panel/accountabilitys.php b/api/mapas/src/modules/OpportunityAccountability/views/panel/accountabilitys.php
similarity index 100%
rename from src/modules/OpportunityAccountability/views/panel/accountabilitys.php
rename to api/mapas/src/modules/OpportunityAccountability/views/panel/accountabilitys.php
diff --git a/src/modules/OpportunityClaimForm/Module.php b/api/mapas/src/modules/OpportunityClaimForm/Module.php
similarity index 100%
rename from src/modules/OpportunityClaimForm/Module.php
rename to api/mapas/src/modules/OpportunityClaimForm/Module.php
diff --git a/src/modules/OpportunityClaimForm/assets/js/ng.opportunity-claim.js b/api/mapas/src/modules/OpportunityClaimForm/assets/js/ng.opportunity-claim.js
similarity index 100%
rename from src/modules/OpportunityClaimForm/assets/js/ng.opportunity-claim.js
rename to api/mapas/src/modules/OpportunityClaimForm/assets/js/ng.opportunity-claim.js
diff --git a/src/modules/OpportunityClaimForm/components/opportunity-claim-form/README.md b/api/mapas/src/modules/OpportunityClaimForm/components/opportunity-claim-form/README.md
similarity index 100%
rename from src/modules/OpportunityClaimForm/components/opportunity-claim-form/README.md
rename to api/mapas/src/modules/OpportunityClaimForm/components/opportunity-claim-form/README.md
diff --git a/src/modules/OpportunityClaimForm/components/opportunity-claim-form/script.js b/api/mapas/src/modules/OpportunityClaimForm/components/opportunity-claim-form/script.js
similarity index 100%
rename from src/modules/OpportunityClaimForm/components/opportunity-claim-form/script.js
rename to api/mapas/src/modules/OpportunityClaimForm/components/opportunity-claim-form/script.js
diff --git a/src/modules/OpportunityClaimForm/components/opportunity-claim-form/template.php b/api/mapas/src/modules/OpportunityClaimForm/components/opportunity-claim-form/template.php
similarity index 100%
rename from src/modules/OpportunityClaimForm/components/opportunity-claim-form/template.php
rename to api/mapas/src/modules/OpportunityClaimForm/components/opportunity-claim-form/template.php
diff --git a/src/modules/OpportunityClaimForm/components/opportunity-claim-form/text.php b/api/mapas/src/modules/OpportunityClaimForm/components/opportunity-claim-form/text.php
similarity index 100%
rename from src/modules/OpportunityClaimForm/components/opportunity-claim-form/text.php
rename to api/mapas/src/modules/OpportunityClaimForm/components/opportunity-claim-form/text.php
diff --git a/src/modules/OpportunityClaimForm/components/opportunity-enable-claim/script.js b/api/mapas/src/modules/OpportunityClaimForm/components/opportunity-enable-claim/script.js
similarity index 100%
rename from src/modules/OpportunityClaimForm/components/opportunity-enable-claim/script.js
rename to api/mapas/src/modules/OpportunityClaimForm/components/opportunity-enable-claim/script.js
diff --git a/src/modules/OpportunityClaimForm/components/opportunity-enable-claim/template.php b/api/mapas/src/modules/OpportunityClaimForm/components/opportunity-enable-claim/template.php
similarity index 100%
rename from src/modules/OpportunityClaimForm/components/opportunity-enable-claim/template.php
rename to api/mapas/src/modules/OpportunityClaimForm/components/opportunity-enable-claim/template.php
diff --git a/src/modules/OpportunityClaimForm/layouts/parts/claim-configuration.php b/api/mapas/src/modules/OpportunityClaimForm/layouts/parts/claim-configuration.php
similarity index 100%
rename from src/modules/OpportunityClaimForm/layouts/parts/claim-configuration.php
rename to api/mapas/src/modules/OpportunityClaimForm/layouts/parts/claim-configuration.php
diff --git a/src/modules/OpportunityClaimForm/layouts/parts/claim-form.php b/api/mapas/src/modules/OpportunityClaimForm/layouts/parts/claim-form.php
similarity index 100%
rename from src/modules/OpportunityClaimForm/layouts/parts/claim-form.php
rename to api/mapas/src/modules/OpportunityClaimForm/layouts/parts/claim-form.php
diff --git a/src/modules/OpportunityClaimForm/layouts/parts/opportunity-claim-config.php b/api/mapas/src/modules/OpportunityClaimForm/layouts/parts/opportunity-claim-config.php
similarity index 100%
rename from src/modules/OpportunityClaimForm/layouts/parts/opportunity-claim-config.php
rename to api/mapas/src/modules/OpportunityClaimForm/layouts/parts/opportunity-claim-config.php
diff --git a/src/modules/OpportunityClaimForm/layouts/parts/opportunity-claim-form-component.php b/api/mapas/src/modules/OpportunityClaimForm/layouts/parts/opportunity-claim-form-component.php
similarity index 100%
rename from src/modules/OpportunityClaimForm/layouts/parts/opportunity-claim-form-component.php
rename to api/mapas/src/modules/OpportunityClaimForm/layouts/parts/opportunity-claim-form-component.php
diff --git a/src/modules/OpportunityPhases/Jobs/SyncPhaseRegistrations.php b/api/mapas/src/modules/OpportunityPhases/Jobs/SyncPhaseRegistrations.php
similarity index 100%
rename from src/modules/OpportunityPhases/Jobs/SyncPhaseRegistrations.php
rename to api/mapas/src/modules/OpportunityPhases/Jobs/SyncPhaseRegistrations.php
diff --git a/src/modules/OpportunityPhases/Module.php b/api/mapas/src/modules/OpportunityPhases/Module.php
similarity index 100%
rename from src/modules/OpportunityPhases/Module.php
rename to api/mapas/src/modules/OpportunityPhases/Module.php
diff --git a/src/modules/OpportunityPhases/db-updates.php b/api/mapas/src/modules/OpportunityPhases/db-updates.php
similarity index 100%
rename from src/modules/OpportunityPhases/db-updates.php
rename to api/mapas/src/modules/OpportunityPhases/db-updates.php
diff --git a/src/modules/OpportunityPhases/mc-updates.php b/api/mapas/src/modules/OpportunityPhases/mc-updates.php
similarity index 100%
rename from src/modules/OpportunityPhases/mc-updates.php
rename to api/mapas/src/modules/OpportunityPhases/mc-updates.php
diff --git a/src/modules/OpportunityPhases/templates/pt_BR/opportunityphases/selected-communication.html b/api/mapas/src/modules/OpportunityPhases/templates/pt_BR/opportunityphases/selected-communication.html
similarity index 100%
rename from src/modules/OpportunityPhases/templates/pt_BR/opportunityphases/selected-communication.html
rename to api/mapas/src/modules/OpportunityPhases/templates/pt_BR/opportunityphases/selected-communication.html
diff --git a/src/modules/Panel/Controller.php b/api/mapas/src/modules/Panel/Controller.php
similarity index 100%
rename from src/modules/Panel/Controller.php
rename to api/mapas/src/modules/Panel/Controller.php
diff --git a/src/modules/Panel/Module.php b/api/mapas/src/modules/Panel/Module.php
similarity index 100%
rename from src/modules/Panel/Module.php
rename to api/mapas/src/modules/Panel/Module.php
diff --git a/src/modules/Panel/assets/.gitkeep b/api/mapas/src/modules/Panel/assets/.gitkeep
similarity index 100%
rename from src/modules/Panel/assets/.gitkeep
rename to api/mapas/src/modules/Panel/assets/.gitkeep
diff --git a/src/modules/Panel/assets/img/default-image.svg b/api/mapas/src/modules/Panel/assets/img/default-image.svg
similarity index 100%
rename from src/modules/Panel/assets/img/default-image.svg
rename to api/mapas/src/modules/Panel/assets/img/default-image.svg
diff --git a/src/modules/Panel/components/panel--entities-summary/README.md b/api/mapas/src/modules/Panel/components/panel--entities-summary/README.md
similarity index 100%
rename from src/modules/Panel/components/panel--entities-summary/README.md
rename to api/mapas/src/modules/Panel/components/panel--entities-summary/README.md
diff --git a/src/modules/Panel/components/panel--entities-summary/init.php b/api/mapas/src/modules/Panel/components/panel--entities-summary/init.php
similarity index 100%
rename from src/modules/Panel/components/panel--entities-summary/init.php
rename to api/mapas/src/modules/Panel/components/panel--entities-summary/init.php
diff --git a/src/modules/Panel/components/panel--entities-summary/script.js b/api/mapas/src/modules/Panel/components/panel--entities-summary/script.js
similarity index 100%
rename from src/modules/Panel/components/panel--entities-summary/script.js
rename to api/mapas/src/modules/Panel/components/panel--entities-summary/script.js
diff --git a/src/modules/Panel/components/panel--entities-summary/template.php b/api/mapas/src/modules/Panel/components/panel--entities-summary/template.php
similarity index 100%
rename from src/modules/Panel/components/panel--entities-summary/template.php
rename to api/mapas/src/modules/Panel/components/panel--entities-summary/template.php
diff --git a/src/modules/Panel/components/panel--entities-summary/texts.php b/api/mapas/src/modules/Panel/components/panel--entities-summary/texts.php
similarity index 100%
rename from src/modules/Panel/components/panel--entities-summary/texts.php
rename to api/mapas/src/modules/Panel/components/panel--entities-summary/texts.php
diff --git a/src/modules/Panel/components/panel--entity-actions/script.js b/api/mapas/src/modules/Panel/components/panel--entity-actions/script.js
similarity index 100%
rename from src/modules/Panel/components/panel--entity-actions/script.js
rename to api/mapas/src/modules/Panel/components/panel--entity-actions/script.js
diff --git a/src/modules/Panel/components/panel--entity-actions/template.php b/api/mapas/src/modules/Panel/components/panel--entity-actions/template.php
similarity index 100%
rename from src/modules/Panel/components/panel--entity-actions/template.php
rename to api/mapas/src/modules/Panel/components/panel--entity-actions/template.php
diff --git a/src/modules/Panel/components/panel--entity-card/script.js b/api/mapas/src/modules/Panel/components/panel--entity-card/script.js
similarity index 100%
rename from src/modules/Panel/components/panel--entity-card/script.js
rename to api/mapas/src/modules/Panel/components/panel--entity-card/script.js
diff --git a/src/modules/Panel/components/panel--entity-card/template.php b/api/mapas/src/modules/Panel/components/panel--entity-card/template.php
similarity index 100%
rename from src/modules/Panel/components/panel--entity-card/template.php
rename to api/mapas/src/modules/Panel/components/panel--entity-card/template.php
diff --git a/src/modules/Panel/components/panel--entity-support/README.md b/api/mapas/src/modules/Panel/components/panel--entity-support/README.md
similarity index 100%
rename from src/modules/Panel/components/panel--entity-support/README.md
rename to api/mapas/src/modules/Panel/components/panel--entity-support/README.md
diff --git a/src/modules/Panel/components/panel--entity-support/init.php b/api/mapas/src/modules/Panel/components/panel--entity-support/init.php
similarity index 100%
rename from src/modules/Panel/components/panel--entity-support/init.php
rename to api/mapas/src/modules/Panel/components/panel--entity-support/init.php
diff --git a/src/modules/Panel/components/panel--entity-support/script.js b/api/mapas/src/modules/Panel/components/panel--entity-support/script.js
similarity index 100%
rename from src/modules/Panel/components/panel--entity-support/script.js
rename to api/mapas/src/modules/Panel/components/panel--entity-support/script.js
diff --git a/src/modules/Panel/components/panel--entity-support/template.php b/api/mapas/src/modules/Panel/components/panel--entity-support/template.php
similarity index 100%
rename from src/modules/Panel/components/panel--entity-support/template.php
rename to api/mapas/src/modules/Panel/components/panel--entity-support/template.php
diff --git a/src/modules/Panel/components/panel--entity-tabs/script.js b/api/mapas/src/modules/Panel/components/panel--entity-tabs/script.js
similarity index 100%
rename from src/modules/Panel/components/panel--entity-tabs/script.js
rename to api/mapas/src/modules/Panel/components/panel--entity-tabs/script.js
diff --git a/src/modules/Panel/components/panel--entity-tabs/template.php b/api/mapas/src/modules/Panel/components/panel--entity-tabs/template.php
similarity index 100%
rename from src/modules/Panel/components/panel--entity-tabs/template.php
rename to api/mapas/src/modules/Panel/components/panel--entity-tabs/template.php
diff --git a/src/modules/Panel/components/panel--last-edited/README.md b/api/mapas/src/modules/Panel/components/panel--last-edited/README.md
similarity index 100%
rename from src/modules/Panel/components/panel--last-edited/README.md
rename to api/mapas/src/modules/Panel/components/panel--last-edited/README.md
diff --git a/src/modules/Panel/components/panel--last-edited/script.js b/api/mapas/src/modules/Panel/components/panel--last-edited/script.js
similarity index 100%
rename from src/modules/Panel/components/panel--last-edited/script.js
rename to api/mapas/src/modules/Panel/components/panel--last-edited/script.js
diff --git a/src/modules/Panel/components/panel--last-edited/template.php b/api/mapas/src/modules/Panel/components/panel--last-edited/template.php
similarity index 100%
rename from src/modules/Panel/components/panel--last-edited/template.php
rename to api/mapas/src/modules/Panel/components/panel--last-edited/template.php
diff --git a/src/modules/Panel/components/panel--last-edited/texts.php b/api/mapas/src/modules/Panel/components/panel--last-edited/texts.php
similarity index 100%
rename from src/modules/Panel/components/panel--last-edited/texts.php
rename to api/mapas/src/modules/Panel/components/panel--last-edited/texts.php
diff --git a/src/modules/Panel/components/panel--last-registrations/README.md b/api/mapas/src/modules/Panel/components/panel--last-registrations/README.md
similarity index 100%
rename from src/modules/Panel/components/panel--last-registrations/README.md
rename to api/mapas/src/modules/Panel/components/panel--last-registrations/README.md
diff --git a/src/modules/Panel/components/panel--last-registrations/script.js b/api/mapas/src/modules/Panel/components/panel--last-registrations/script.js
similarity index 100%
rename from src/modules/Panel/components/panel--last-registrations/script.js
rename to api/mapas/src/modules/Panel/components/panel--last-registrations/script.js
diff --git a/src/modules/Panel/components/panel--last-registrations/template.php b/api/mapas/src/modules/Panel/components/panel--last-registrations/template.php
similarity index 100%
rename from src/modules/Panel/components/panel--last-registrations/template.php
rename to api/mapas/src/modules/Panel/components/panel--last-registrations/template.php
diff --git a/src/modules/Panel/components/panel--last-registrations/texts.php b/api/mapas/src/modules/Panel/components/panel--last-registrations/texts.php
similarity index 100%
rename from src/modules/Panel/components/panel--last-registrations/texts.php
rename to api/mapas/src/modules/Panel/components/panel--last-registrations/texts.php
diff --git a/src/modules/Panel/components/panel--nav/README.md b/api/mapas/src/modules/Panel/components/panel--nav/README.md
similarity index 100%
rename from src/modules/Panel/components/panel--nav/README.md
rename to api/mapas/src/modules/Panel/components/panel--nav/README.md
diff --git a/src/modules/Panel/components/panel--nav/init.php b/api/mapas/src/modules/Panel/components/panel--nav/init.php
similarity index 100%
rename from src/modules/Panel/components/panel--nav/init.php
rename to api/mapas/src/modules/Panel/components/panel--nav/init.php
diff --git a/src/modules/Panel/components/panel--nav/script.js b/api/mapas/src/modules/Panel/components/panel--nav/script.js
similarity index 100%
rename from src/modules/Panel/components/panel--nav/script.js
rename to api/mapas/src/modules/Panel/components/panel--nav/script.js
diff --git a/src/modules/Panel/components/panel--nav/template.php b/api/mapas/src/modules/Panel/components/panel--nav/template.php
similarity index 100%
rename from src/modules/Panel/components/panel--nav/template.php
rename to api/mapas/src/modules/Panel/components/panel--nav/template.php
diff --git a/src/modules/Panel/components/panel--open-opportunities/README.md b/api/mapas/src/modules/Panel/components/panel--open-opportunities/README.md
similarity index 100%
rename from src/modules/Panel/components/panel--open-opportunities/README.md
rename to api/mapas/src/modules/Panel/components/panel--open-opportunities/README.md
diff --git a/src/modules/Panel/components/panel--open-opportunities/script.js b/api/mapas/src/modules/Panel/components/panel--open-opportunities/script.js
similarity index 100%
rename from src/modules/Panel/components/panel--open-opportunities/script.js
rename to api/mapas/src/modules/Panel/components/panel--open-opportunities/script.js
diff --git a/src/modules/Panel/components/panel--open-opportunities/template.php b/api/mapas/src/modules/Panel/components/panel--open-opportunities/template.php
similarity index 100%
rename from src/modules/Panel/components/panel--open-opportunities/template.php
rename to api/mapas/src/modules/Panel/components/panel--open-opportunities/template.php
diff --git a/src/modules/Panel/components/panel--open-opportunities/texts.php b/api/mapas/src/modules/Panel/components/panel--open-opportunities/texts.php
similarity index 100%
rename from src/modules/Panel/components/panel--open-opportunities/texts.php
rename to api/mapas/src/modules/Panel/components/panel--open-opportunities/texts.php
diff --git a/src/modules/Panel/components/panel--pending-evaluations/README.md b/api/mapas/src/modules/Panel/components/panel--pending-evaluations/README.md
similarity index 100%
rename from src/modules/Panel/components/panel--pending-evaluations/README.md
rename to api/mapas/src/modules/Panel/components/panel--pending-evaluations/README.md
diff --git a/src/modules/Panel/components/panel--pending-evaluations/init.php b/api/mapas/src/modules/Panel/components/panel--pending-evaluations/init.php
similarity index 100%
rename from src/modules/Panel/components/panel--pending-evaluations/init.php
rename to api/mapas/src/modules/Panel/components/panel--pending-evaluations/init.php
diff --git a/src/modules/Panel/components/panel--pending-evaluations/script.js b/api/mapas/src/modules/Panel/components/panel--pending-evaluations/script.js
similarity index 100%
rename from src/modules/Panel/components/panel--pending-evaluations/script.js
rename to api/mapas/src/modules/Panel/components/panel--pending-evaluations/script.js
diff --git a/src/modules/Panel/components/panel--pending-evaluations/template.php b/api/mapas/src/modules/Panel/components/panel--pending-evaluations/template.php
similarity index 100%
rename from src/modules/Panel/components/panel--pending-evaluations/template.php
rename to api/mapas/src/modules/Panel/components/panel--pending-evaluations/template.php
diff --git a/src/modules/Panel/components/panel--pending-evaluations/texts.php b/api/mapas/src/modules/Panel/components/panel--pending-evaluations/texts.php
similarity index 100%
rename from src/modules/Panel/components/panel--pending-evaluations/texts.php
rename to api/mapas/src/modules/Panel/components/panel--pending-evaluations/texts.php
diff --git a/src/modules/Panel/layouts/panel.php b/api/mapas/src/modules/Panel/layouts/panel.php
similarity index 100%
rename from src/modules/Panel/layouts/panel.php
rename to api/mapas/src/modules/Panel/layouts/panel.php
diff --git a/src/modules/Panel/views/panel/agents.php b/api/mapas/src/modules/Panel/views/panel/agents.php
similarity index 100%
rename from src/modules/Panel/views/panel/agents.php
rename to api/mapas/src/modules/Panel/views/panel/agents.php
diff --git a/src/modules/Panel/views/panel/events.php b/api/mapas/src/modules/Panel/views/panel/events.php
similarity index 100%
rename from src/modules/Panel/views/panel/events.php
rename to api/mapas/src/modules/Panel/views/panel/events.php
diff --git a/src/modules/Panel/views/panel/index.php b/api/mapas/src/modules/Panel/views/panel/index.php
similarity index 100%
rename from src/modules/Panel/views/panel/index.php
rename to api/mapas/src/modules/Panel/views/panel/index.php
diff --git a/src/modules/Panel/views/panel/projects.php b/api/mapas/src/modules/Panel/views/panel/projects.php
similarity index 100%
rename from src/modules/Panel/views/panel/projects.php
rename to api/mapas/src/modules/Panel/views/panel/projects.php
diff --git a/src/modules/Panel/views/panel/spaces.php b/api/mapas/src/modules/Panel/views/panel/spaces.php
similarity index 100%
rename from src/modules/Panel/views/panel/spaces.php
rename to api/mapas/src/modules/Panel/views/panel/spaces.php
diff --git a/src/modules/ProfileCompletion/Module.php b/api/mapas/src/modules/ProfileCompletion/Module.php
similarity index 100%
rename from src/modules/ProfileCompletion/Module.php
rename to api/mapas/src/modules/ProfileCompletion/Module.php
diff --git a/src/modules/ProfileCompletion/layouts/parts/profile-complete-message.php b/api/mapas/src/modules/ProfileCompletion/layouts/parts/profile-complete-message.php
similarity index 100%
rename from src/modules/ProfileCompletion/layouts/parts/profile-complete-message.php
rename to api/mapas/src/modules/ProfileCompletion/layouts/parts/profile-complete-message.php
diff --git a/src/modules/RegistrationFieldTypes/Module.php b/api/mapas/src/modules/RegistrationFieldTypes/Module.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/Module.php
rename to api/mapas/src/modules/RegistrationFieldTypes/Module.php
diff --git a/src/modules/RegistrationFieldTypes/assets/css/rfc/registration-field-types.css b/api/mapas/src/modules/RegistrationFieldTypes/assets/css/rfc/registration-field-types.css
similarity index 100%
rename from src/modules/RegistrationFieldTypes/assets/css/rfc/registration-field-types.css
rename to api/mapas/src/modules/RegistrationFieldTypes/assets/css/rfc/registration-field-types.css
diff --git a/src/modules/RegistrationFieldTypes/assets/js/rfc/datepicker.js b/api/mapas/src/modules/RegistrationFieldTypes/assets/js/rfc/datepicker.js
similarity index 100%
rename from src/modules/RegistrationFieldTypes/assets/js/rfc/datepicker.js
rename to api/mapas/src/modules/RegistrationFieldTypes/assets/js/rfc/datepicker.js
diff --git a/src/modules/RegistrationFieldTypes/assets/js/rfc/form.js b/api/mapas/src/modules/RegistrationFieldTypes/assets/js/rfc/form.js
similarity index 100%
rename from src/modules/RegistrationFieldTypes/assets/js/rfc/form.js
rename to api/mapas/src/modules/RegistrationFieldTypes/assets/js/rfc/form.js
diff --git a/src/modules/RegistrationFieldTypes/assets/js/rfc/location.js b/api/mapas/src/modules/RegistrationFieldTypes/assets/js/rfc/location.js
similarity index 100%
rename from src/modules/RegistrationFieldTypes/assets/js/rfc/location.js
rename to api/mapas/src/modules/RegistrationFieldTypes/assets/js/rfc/location.js
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/agent-collective-field-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/agent-collective-field-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/agent-collective-field-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/agent-collective-field-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/agent-collective-field.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/agent-collective-field.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/agent-collective-field.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/agent-collective-field.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/agent-owner-field-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/agent-owner-field-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/agent-owner-field-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/agent-owner-field-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/agent-owner-field.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/agent-owner-field.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/agent-owner-field.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/agent-owner-field.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/bankFields-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/bankFields-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/bankFields-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/bankFields-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/bankFields.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/bankFields.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/bankFields.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/bankFields.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/brPhone-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/brPhone-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/brPhone-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/brPhone-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/brPhone.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/brPhone.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/brPhone.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/brPhone.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/checkbox-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/checkbox-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/checkbox-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/checkbox-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/checkbox.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/checkbox.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/checkbox.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/checkbox.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/checkboxes-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/checkboxes-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/checkboxes-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/checkboxes-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/checkboxes.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/checkboxes.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/checkboxes.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/checkboxes.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/cnpj-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/cnpj-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/cnpj-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/cnpj-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/cnpj.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/cnpj.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/cnpj.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/cnpj.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/cpf-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/cpf-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/cpf-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/cpf-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/cpf.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/cpf.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/cpf.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/cpf.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/currency-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/currency-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/currency-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/currency-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/currency.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/currency.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/currency.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/currency.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/date-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/date-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/date-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/date-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/date.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/date.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/date.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/date.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/email-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/email-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/email-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/email-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/email.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/email.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/email.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/email.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/_location.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/_location.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/_location.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/_location.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/bankFields.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/bankFields.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/bankFields.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/bankFields.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/brPhone.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/brPhone.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/brPhone.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/brPhone.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/checkbox.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/checkbox.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/checkbox.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/checkbox.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/checkboxes.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/checkboxes.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/checkboxes.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/checkboxes.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/cnpj.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/cnpj.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/cnpj.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/cnpj.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/cpf.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/cpf.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/cpf.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/cpf.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/currency.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/currency.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/currency.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/currency.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/date.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/date.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/date.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/date.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/email.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/email.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/email.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/email.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/links.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/links.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/links.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/links.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/multiselect.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/multiselect.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/multiselect.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/multiselect.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/number.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/number.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/number.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/number.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/readonly.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/readonly.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/readonly.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/readonly.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/select.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/select.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/select.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/select.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/text.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/text.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/text.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/text.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/textarea.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/textarea.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/textarea.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/textarea.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/url.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/url.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/url.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/fields/url.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/links-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/links-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/links-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/links-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/links.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/links.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/links.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/links.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/number-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/number-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/number-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/number-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/number.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/number.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/number.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/number.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/persons-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/persons-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/persons-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/persons-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/persons.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/persons.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/persons.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/persons.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/section-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/section-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/section-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/section-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/section.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/section.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/section.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/section.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/select-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/select-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/select-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/select-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/select.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/select.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/select.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/select.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/space-field-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/space-field-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/space-field-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/space-field-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/space-field.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/space-field.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/space-field.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/space-field.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/text-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/text-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/text-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/text-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/text.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/text.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/text.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/text.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/textarea-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/textarea-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/textarea-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/textarea-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/textarea.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/textarea.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/textarea.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/textarea.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/url-config.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/url-config.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/url-config.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/url-config.php
diff --git a/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/url.php b/api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/url.php
similarity index 100%
rename from src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/url.php
rename to api/mapas/src/modules/RegistrationFieldTypes/layouts/parts/registration-field-types/url.php
diff --git a/src/modules/Reports/Controller.php b/api/mapas/src/modules/Reports/Controller.php
similarity index 100%
rename from src/modules/Reports/Controller.php
rename to api/mapas/src/modules/Reports/Controller.php
diff --git a/src/modules/Reports/Module.php b/api/mapas/src/modules/Reports/Module.php
similarity index 100%
rename from src/modules/Reports/Module.php
rename to api/mapas/src/modules/Reports/Module.php
diff --git a/src/modules/Reports/assets/css/print-reports.css b/api/mapas/src/modules/Reports/assets/css/print-reports.css
similarity index 100%
rename from src/modules/Reports/assets/css/print-reports.css
rename to api/mapas/src/modules/Reports/assets/css/print-reports.css
diff --git a/src/modules/Reports/assets/css/reports.css b/api/mapas/src/modules/Reports/assets/css/reports.css
similarity index 100%
rename from src/modules/Reports/assets/css/reports.css
rename to api/mapas/src/modules/Reports/assets/css/reports.css
diff --git a/src/modules/Reports/assets/js/ng.reports.js b/api/mapas/src/modules/Reports/assets/js/ng.reports.js
similarity index 100%
rename from src/modules/Reports/assets/js/ng.reports.js
rename to api/mapas/src/modules/Reports/assets/js/ng.reports.js
diff --git a/src/modules/Reports/assets/js/print-reports.js b/api/mapas/src/modules/Reports/assets/js/print-reports.js
similarity index 100%
rename from src/modules/Reports/assets/js/print-reports.js
rename to api/mapas/src/modules/Reports/assets/js/print-reports.js
diff --git a/src/modules/Reports/layouts/parts/chart-legends.php b/api/mapas/src/modules/Reports/layouts/parts/chart-legends.php
similarity index 100%
rename from src/modules/Reports/layouts/parts/chart-legends.php
rename to api/mapas/src/modules/Reports/layouts/parts/chart-legends.php
diff --git a/src/modules/Reports/layouts/parts/charts-reports-dropdown-data.php b/api/mapas/src/modules/Reports/layouts/parts/charts-reports-dropdown-data.php
similarity index 100%
rename from src/modules/Reports/layouts/parts/charts-reports-dropdown-data.php
rename to api/mapas/src/modules/Reports/layouts/parts/charts-reports-dropdown-data.php
diff --git a/src/modules/Reports/layouts/parts/create-reports-modal.php b/api/mapas/src/modules/Reports/layouts/parts/create-reports-modal.php
similarity index 100%
rename from src/modules/Reports/layouts/parts/create-reports-modal.php
rename to api/mapas/src/modules/Reports/layouts/parts/create-reports-modal.php
diff --git a/src/modules/Reports/layouts/parts/dynamic-reports.php b/api/mapas/src/modules/Reports/layouts/parts/dynamic-reports.php
similarity index 100%
rename from src/modules/Reports/layouts/parts/dynamic-reports.php
rename to api/mapas/src/modules/Reports/layouts/parts/dynamic-reports.php
diff --git a/src/modules/Reports/layouts/parts/info-dynamic-graphics-break.php b/api/mapas/src/modules/Reports/layouts/parts/info-dynamic-graphics-break.php
similarity index 100%
rename from src/modules/Reports/layouts/parts/info-dynamic-graphics-break.php
rename to api/mapas/src/modules/Reports/layouts/parts/info-dynamic-graphics-break.php
diff --git a/src/modules/Reports/layouts/parts/opportunity-reports--tab.php b/api/mapas/src/modules/Reports/layouts/parts/opportunity-reports--tab.php
similarity index 100%
rename from src/modules/Reports/layouts/parts/opportunity-reports--tab.php
rename to api/mapas/src/modules/Reports/layouts/parts/opportunity-reports--tab.php
diff --git a/src/modules/Reports/layouts/parts/opportunity-reports.php b/api/mapas/src/modules/Reports/layouts/parts/opportunity-reports.php
similarity index 100%
rename from src/modules/Reports/layouts/parts/opportunity-reports.php
rename to api/mapas/src/modules/Reports/layouts/parts/opportunity-reports.php
diff --git a/src/modules/Reports/layouts/parts/print/print-dynamic-graphics.php b/api/mapas/src/modules/Reports/layouts/parts/print/print-dynamic-graphics.php
similarity index 100%
rename from src/modules/Reports/layouts/parts/print/print-dynamic-graphics.php
rename to api/mapas/src/modules/Reports/layouts/parts/print/print-dynamic-graphics.php
diff --git a/src/modules/Reports/layouts/parts/print/print-header.php b/api/mapas/src/modules/Reports/layouts/parts/print/print-header.php
similarity index 100%
rename from src/modules/Reports/layouts/parts/print/print-header.php
rename to api/mapas/src/modules/Reports/layouts/parts/print/print-header.php
diff --git a/src/modules/Reports/layouts/parts/print/print-static-graphics.php b/api/mapas/src/modules/Reports/layouts/parts/print/print-static-graphics.php
similarity index 100%
rename from src/modules/Reports/layouts/parts/print/print-static-graphics.php
rename to api/mapas/src/modules/Reports/layouts/parts/print/print-static-graphics.php
diff --git a/src/modules/Reports/layouts/parts/registrationsByCategory.php b/api/mapas/src/modules/Reports/layouts/parts/registrationsByCategory.php
similarity index 100%
rename from src/modules/Reports/layouts/parts/registrationsByCategory.php
rename to api/mapas/src/modules/Reports/layouts/parts/registrationsByCategory.php
diff --git a/src/modules/Reports/layouts/parts/registrationsByEvaluationStatus.php b/api/mapas/src/modules/Reports/layouts/parts/registrationsByEvaluationStatus.php
similarity index 100%
rename from src/modules/Reports/layouts/parts/registrationsByEvaluationStatus.php
rename to api/mapas/src/modules/Reports/layouts/parts/registrationsByEvaluationStatus.php
diff --git a/src/modules/Reports/layouts/parts/registrationsByTime.php b/api/mapas/src/modules/Reports/layouts/parts/registrationsByTime.php
similarity index 100%
rename from src/modules/Reports/layouts/parts/registrationsByTime.php
rename to api/mapas/src/modules/Reports/layouts/parts/registrationsByTime.php
diff --git a/src/modules/Reports/layouts/parts/registrationsDraftVsSent.php b/api/mapas/src/modules/Reports/layouts/parts/registrationsDraftVsSent.php
similarity index 100%
rename from src/modules/Reports/layouts/parts/registrationsDraftVsSent.php
rename to api/mapas/src/modules/Reports/layouts/parts/registrationsDraftVsSent.php
diff --git a/src/modules/Reports/layouts/parts/registrationsEvaluation.php b/api/mapas/src/modules/Reports/layouts/parts/registrationsEvaluation.php
similarity index 100%
rename from src/modules/Reports/layouts/parts/registrationsEvaluation.php
rename to api/mapas/src/modules/Reports/layouts/parts/registrationsEvaluation.php
diff --git a/src/modules/Reports/layouts/parts/registrationsStatus.php b/api/mapas/src/modules/Reports/layouts/parts/registrationsStatus.php
similarity index 100%
rename from src/modules/Reports/layouts/parts/registrationsStatus.php
rename to api/mapas/src/modules/Reports/layouts/parts/registrationsStatus.php
diff --git a/src/modules/Reports/views/reports/agents.php b/api/mapas/src/modules/Reports/views/reports/agents.php
similarity index 100%
rename from src/modules/Reports/views/reports/agents.php
rename to api/mapas/src/modules/Reports/views/reports/agents.php
diff --git a/src/modules/Reports/views/reports/entity.php b/api/mapas/src/modules/Reports/views/reports/entity.php
similarity index 100%
rename from src/modules/Reports/views/reports/entity.php
rename to api/mapas/src/modules/Reports/views/reports/entity.php
diff --git a/src/modules/Reports/views/reports/print-reports.php b/api/mapas/src/modules/Reports/views/reports/print-reports.php
similarity index 100%
rename from src/modules/Reports/views/reports/print-reports.php
rename to api/mapas/src/modules/Reports/views/reports/print-reports.php
diff --git a/src/modules/Reports/views/reports/spaces.php b/api/mapas/src/modules/Reports/views/reports/spaces.php
similarity index 100%
rename from src/modules/Reports/views/reports/spaces.php
rename to api/mapas/src/modules/Reports/views/reports/spaces.php
diff --git a/src/modules/Seals/Controller.php b/api/mapas/src/modules/Seals/Controller.php
similarity index 100%
rename from src/modules/Seals/Controller.php
rename to api/mapas/src/modules/Seals/Controller.php
diff --git a/src/modules/Seals/Module.php b/api/mapas/src/modules/Seals/Module.php
similarity index 100%
rename from src/modules/Seals/Module.php
rename to api/mapas/src/modules/Seals/Module.php
diff --git a/src/modules/Seals/assets/.gitkeep b/api/mapas/src/modules/Seals/assets/.gitkeep
similarity index 100%
rename from src/modules/Seals/assets/.gitkeep
rename to api/mapas/src/modules/Seals/assets/.gitkeep
diff --git a/src/modules/Seals/components/create-seal/script.js b/api/mapas/src/modules/Seals/components/create-seal/script.js
similarity index 100%
rename from src/modules/Seals/components/create-seal/script.js
rename to api/mapas/src/modules/Seals/components/create-seal/script.js
diff --git a/src/modules/Seals/components/create-seal/template.php b/api/mapas/src/modules/Seals/components/create-seal/template.php
similarity index 100%
rename from src/modules/Seals/components/create-seal/template.php
rename to api/mapas/src/modules/Seals/components/create-seal/template.php
diff --git a/src/modules/Seals/components/create-seal/texts.php b/api/mapas/src/modules/Seals/components/create-seal/texts.php
similarity index 100%
rename from src/modules/Seals/components/create-seal/texts.php
rename to api/mapas/src/modules/Seals/components/create-seal/texts.php
diff --git a/src/modules/Seals/components/entity-seals/README.md b/api/mapas/src/modules/Seals/components/entity-seals/README.md
similarity index 100%
rename from src/modules/Seals/components/entity-seals/README.md
rename to api/mapas/src/modules/Seals/components/entity-seals/README.md
diff --git a/src/modules/Seals/components/entity-seals/script.js b/api/mapas/src/modules/Seals/components/entity-seals/script.js
similarity index 100%
rename from src/modules/Seals/components/entity-seals/script.js
rename to api/mapas/src/modules/Seals/components/entity-seals/script.js
diff --git a/src/modules/Seals/components/entity-seals/template.php b/api/mapas/src/modules/Seals/components/entity-seals/template.php
similarity index 100%
rename from src/modules/Seals/components/entity-seals/template.php
rename to api/mapas/src/modules/Seals/components/entity-seals/template.php
diff --git a/src/modules/Seals/components/entity-seals/texts.php b/api/mapas/src/modules/Seals/components/entity-seals/texts.php
similarity index 100%
rename from src/modules/Seals/components/entity-seals/texts.php
rename to api/mapas/src/modules/Seals/components/entity-seals/texts.php
diff --git a/src/modules/Seals/components/seal-activity-card/script.js b/api/mapas/src/modules/Seals/components/seal-activity-card/script.js
similarity index 100%
rename from src/modules/Seals/components/seal-activity-card/script.js
rename to api/mapas/src/modules/Seals/components/seal-activity-card/script.js
diff --git a/src/modules/Seals/components/seal-activity-card/template.php b/api/mapas/src/modules/Seals/components/seal-activity-card/template.php
similarity index 100%
rename from src/modules/Seals/components/seal-activity-card/template.php
rename to api/mapas/src/modules/Seals/components/seal-activity-card/template.php
diff --git a/src/modules/Seals/components/seal-content-share/README.md b/api/mapas/src/modules/Seals/components/seal-content-share/README.md
similarity index 100%
rename from src/modules/Seals/components/seal-content-share/README.md
rename to api/mapas/src/modules/Seals/components/seal-content-share/README.md
diff --git a/src/modules/Seals/components/seal-content-share/script.js b/api/mapas/src/modules/Seals/components/seal-content-share/script.js
similarity index 100%
rename from src/modules/Seals/components/seal-content-share/script.js
rename to api/mapas/src/modules/Seals/components/seal-content-share/script.js
diff --git a/src/modules/Seals/components/seal-content-share/template.php b/api/mapas/src/modules/Seals/components/seal-content-share/template.php
similarity index 100%
rename from src/modules/Seals/components/seal-content-share/template.php
rename to api/mapas/src/modules/Seals/components/seal-content-share/template.php
diff --git a/src/modules/Seals/components/seal-content-share/texts.php b/api/mapas/src/modules/Seals/components/seal-content-share/texts.php
similarity index 100%
rename from src/modules/Seals/components/seal-content-share/texts.php
rename to api/mapas/src/modules/Seals/components/seal-content-share/texts.php
diff --git a/src/modules/Seals/components/seal-form-information-seal/README.md b/api/mapas/src/modules/Seals/components/seal-form-information-seal/README.md
similarity index 100%
rename from src/modules/Seals/components/seal-form-information-seal/README.md
rename to api/mapas/src/modules/Seals/components/seal-form-information-seal/README.md
diff --git a/src/modules/Seals/components/seal-form-information-seal/script.js b/api/mapas/src/modules/Seals/components/seal-form-information-seal/script.js
similarity index 100%
rename from src/modules/Seals/components/seal-form-information-seal/script.js
rename to api/mapas/src/modules/Seals/components/seal-form-information-seal/script.js
diff --git a/src/modules/Seals/components/seal-form-information-seal/template.php b/api/mapas/src/modules/Seals/components/seal-form-information-seal/template.php
similarity index 100%
rename from src/modules/Seals/components/seal-form-information-seal/template.php
rename to api/mapas/src/modules/Seals/components/seal-form-information-seal/template.php
diff --git a/src/modules/Seals/components/seal-form-information-seal/texts.php b/api/mapas/src/modules/Seals/components/seal-form-information-seal/texts.php
similarity index 100%
rename from src/modules/Seals/components/seal-form-information-seal/texts.php
rename to api/mapas/src/modules/Seals/components/seal-form-information-seal/texts.php
diff --git a/src/modules/Seals/components/seal-form-valid-period/README.md b/api/mapas/src/modules/Seals/components/seal-form-valid-period/README.md
similarity index 100%
rename from src/modules/Seals/components/seal-form-valid-period/README.md
rename to api/mapas/src/modules/Seals/components/seal-form-valid-period/README.md
diff --git a/src/modules/Seals/components/seal-form-valid-period/script.js b/api/mapas/src/modules/Seals/components/seal-form-valid-period/script.js
similarity index 100%
rename from src/modules/Seals/components/seal-form-valid-period/script.js
rename to api/mapas/src/modules/Seals/components/seal-form-valid-period/script.js
diff --git a/src/modules/Seals/components/seal-form-valid-period/template.php b/api/mapas/src/modules/Seals/components/seal-form-valid-period/template.php
similarity index 100%
rename from src/modules/Seals/components/seal-form-valid-period/template.php
rename to api/mapas/src/modules/Seals/components/seal-form-valid-period/template.php
diff --git a/src/modules/Seals/components/seal-form-valid-period/texts.php b/api/mapas/src/modules/Seals/components/seal-form-valid-period/texts.php
similarity index 100%
rename from src/modules/Seals/components/seal-form-valid-period/texts.php
rename to api/mapas/src/modules/Seals/components/seal-form-valid-period/texts.php
diff --git a/src/modules/Seals/components/seal-locked-field/README.md b/api/mapas/src/modules/Seals/components/seal-locked-field/README.md
similarity index 100%
rename from src/modules/Seals/components/seal-locked-field/README.md
rename to api/mapas/src/modules/Seals/components/seal-locked-field/README.md
diff --git a/src/modules/Seals/components/seal-locked-field/init.php b/api/mapas/src/modules/Seals/components/seal-locked-field/init.php
similarity index 100%
rename from src/modules/Seals/components/seal-locked-field/init.php
rename to api/mapas/src/modules/Seals/components/seal-locked-field/init.php
diff --git a/src/modules/Seals/components/seal-locked-field/script.js b/api/mapas/src/modules/Seals/components/seal-locked-field/script.js
similarity index 100%
rename from src/modules/Seals/components/seal-locked-field/script.js
rename to api/mapas/src/modules/Seals/components/seal-locked-field/script.js
diff --git a/src/modules/Seals/components/seal-locked-field/template.php b/api/mapas/src/modules/Seals/components/seal-locked-field/template.php
similarity index 100%
rename from src/modules/Seals/components/seal-locked-field/template.php
rename to api/mapas/src/modules/Seals/components/seal-locked-field/template.php
diff --git a/src/modules/Seals/components/seal-locked-field/texts.php b/api/mapas/src/modules/Seals/components/seal-locked-field/texts.php
similarity index 100%
rename from src/modules/Seals/components/seal-locked-field/texts.php
rename to api/mapas/src/modules/Seals/components/seal-locked-field/texts.php
diff --git a/src/modules/Seals/components/seal-relation-view/README.md b/api/mapas/src/modules/Seals/components/seal-relation-view/README.md
similarity index 100%
rename from src/modules/Seals/components/seal-relation-view/README.md
rename to api/mapas/src/modules/Seals/components/seal-relation-view/README.md
diff --git a/src/modules/Seals/components/seal-relation-view/script.js b/api/mapas/src/modules/Seals/components/seal-relation-view/script.js
similarity index 100%
rename from src/modules/Seals/components/seal-relation-view/script.js
rename to api/mapas/src/modules/Seals/components/seal-relation-view/script.js
diff --git a/src/modules/Seals/components/seal-relation-view/template.php b/api/mapas/src/modules/Seals/components/seal-relation-view/template.php
similarity index 100%
rename from src/modules/Seals/components/seal-relation-view/template.php
rename to api/mapas/src/modules/Seals/components/seal-relation-view/template.php
diff --git a/src/modules/Seals/components/seal-relation-view/texts.php b/api/mapas/src/modules/Seals/components/seal-relation-view/texts.php
similarity index 100%
rename from src/modules/Seals/components/seal-relation-view/texts.php
rename to api/mapas/src/modules/Seals/components/seal-relation-view/texts.php
diff --git a/src/modules/Seals/layouts/seal-relation.php b/api/mapas/src/modules/Seals/layouts/seal-relation.php
similarity index 100%
rename from src/modules/Seals/layouts/seal-relation.php
rename to api/mapas/src/modules/Seals/layouts/seal-relation.php
diff --git a/src/modules/Seals/views/panel/seals.php b/api/mapas/src/modules/Seals/views/panel/seals.php
similarity index 100%
rename from src/modules/Seals/views/panel/seals.php
rename to api/mapas/src/modules/Seals/views/panel/seals.php
diff --git a/src/modules/Seals/views/seal/edit.php b/api/mapas/src/modules/Seals/views/seal/edit.php
similarity index 100%
rename from src/modules/Seals/views/seal/edit.php
rename to api/mapas/src/modules/Seals/views/seal/edit.php
diff --git a/src/modules/Seals/views/seal/sealrelation.php b/api/mapas/src/modules/Seals/views/seal/sealrelation.php
similarity index 100%
rename from src/modules/Seals/views/seal/sealrelation.php
rename to api/mapas/src/modules/Seals/views/seal/sealrelation.php
diff --git a/src/modules/Seals/views/seal/single.php b/api/mapas/src/modules/Seals/views/seal/single.php
similarity index 100%
rename from src/modules/Seals/views/seal/single.php
rename to api/mapas/src/modules/Seals/views/seal/single.php
diff --git a/src/modules/Search/Controller.php b/api/mapas/src/modules/Search/Controller.php
similarity index 100%
rename from src/modules/Search/Controller.php
rename to api/mapas/src/modules/Search/Controller.php
diff --git a/src/modules/Search/Module.php b/api/mapas/src/modules/Search/Module.php
similarity index 100%
rename from src/modules/Search/Module.php
rename to api/mapas/src/modules/Search/Module.php
diff --git a/src/modules/Search/assets/.gitkeep b/api/mapas/src/modules/Search/assets/.gitkeep
similarity index 100%
rename from src/modules/Search/assets/.gitkeep
rename to api/mapas/src/modules/Search/assets/.gitkeep
diff --git a/src/modules/Search/components/search-filter-agent/README.md b/api/mapas/src/modules/Search/components/search-filter-agent/README.md
similarity index 100%
rename from src/modules/Search/components/search-filter-agent/README.md
rename to api/mapas/src/modules/Search/components/search-filter-agent/README.md
diff --git a/src/modules/Search/components/search-filter-agent/script.js b/api/mapas/src/modules/Search/components/search-filter-agent/script.js
similarity index 100%
rename from src/modules/Search/components/search-filter-agent/script.js
rename to api/mapas/src/modules/Search/components/search-filter-agent/script.js
diff --git a/src/modules/Search/components/search-filter-agent/template.php b/api/mapas/src/modules/Search/components/search-filter-agent/template.php
similarity index 100%
rename from src/modules/Search/components/search-filter-agent/template.php
rename to api/mapas/src/modules/Search/components/search-filter-agent/template.php
diff --git a/src/modules/Search/components/search-filter-agent/texts.php b/api/mapas/src/modules/Search/components/search-filter-agent/texts.php
similarity index 100%
rename from src/modules/Search/components/search-filter-agent/texts.php
rename to api/mapas/src/modules/Search/components/search-filter-agent/texts.php
diff --git a/src/modules/Search/components/search-filter-event/README.md b/api/mapas/src/modules/Search/components/search-filter-event/README.md
similarity index 100%
rename from src/modules/Search/components/search-filter-event/README.md
rename to api/mapas/src/modules/Search/components/search-filter-event/README.md
diff --git a/src/modules/Search/components/search-filter-event/script.js b/api/mapas/src/modules/Search/components/search-filter-event/script.js
similarity index 100%
rename from src/modules/Search/components/search-filter-event/script.js
rename to api/mapas/src/modules/Search/components/search-filter-event/script.js
diff --git a/src/modules/Search/components/search-filter-event/template.php b/api/mapas/src/modules/Search/components/search-filter-event/template.php
similarity index 100%
rename from src/modules/Search/components/search-filter-event/template.php
rename to api/mapas/src/modules/Search/components/search-filter-event/template.php
diff --git a/src/modules/Search/components/search-filter-event/texts.php b/api/mapas/src/modules/Search/components/search-filter-event/texts.php
similarity index 100%
rename from src/modules/Search/components/search-filter-event/texts.php
rename to api/mapas/src/modules/Search/components/search-filter-event/texts.php
diff --git a/src/modules/Search/components/search-filter-opportunity/README.md b/api/mapas/src/modules/Search/components/search-filter-opportunity/README.md
similarity index 100%
rename from src/modules/Search/components/search-filter-opportunity/README.md
rename to api/mapas/src/modules/Search/components/search-filter-opportunity/README.md
diff --git a/src/modules/Search/components/search-filter-opportunity/script.js b/api/mapas/src/modules/Search/components/search-filter-opportunity/script.js
similarity index 100%
rename from src/modules/Search/components/search-filter-opportunity/script.js
rename to api/mapas/src/modules/Search/components/search-filter-opportunity/script.js
diff --git a/src/modules/Search/components/search-filter-opportunity/template.php b/api/mapas/src/modules/Search/components/search-filter-opportunity/template.php
similarity index 100%
rename from src/modules/Search/components/search-filter-opportunity/template.php
rename to api/mapas/src/modules/Search/components/search-filter-opportunity/template.php
diff --git a/src/modules/Search/components/search-filter-opportunity/texts.php b/api/mapas/src/modules/Search/components/search-filter-opportunity/texts.php
similarity index 100%
rename from src/modules/Search/components/search-filter-opportunity/texts.php
rename to api/mapas/src/modules/Search/components/search-filter-opportunity/texts.php
diff --git a/src/modules/Search/components/search-filter-project/README.md b/api/mapas/src/modules/Search/components/search-filter-project/README.md
similarity index 100%
rename from src/modules/Search/components/search-filter-project/README.md
rename to api/mapas/src/modules/Search/components/search-filter-project/README.md
diff --git a/src/modules/Search/components/search-filter-project/script.js b/api/mapas/src/modules/Search/components/search-filter-project/script.js
similarity index 100%
rename from src/modules/Search/components/search-filter-project/script.js
rename to api/mapas/src/modules/Search/components/search-filter-project/script.js
diff --git a/src/modules/Search/components/search-filter-project/template.php b/api/mapas/src/modules/Search/components/search-filter-project/template.php
similarity index 100%
rename from src/modules/Search/components/search-filter-project/template.php
rename to api/mapas/src/modules/Search/components/search-filter-project/template.php
diff --git a/src/modules/Search/components/search-filter-project/texts.php b/api/mapas/src/modules/Search/components/search-filter-project/texts.php
similarity index 100%
rename from src/modules/Search/components/search-filter-project/texts.php
rename to api/mapas/src/modules/Search/components/search-filter-project/texts.php
diff --git a/src/modules/Search/components/search-filter-space/README.md b/api/mapas/src/modules/Search/components/search-filter-space/README.md
similarity index 100%
rename from src/modules/Search/components/search-filter-space/README.md
rename to api/mapas/src/modules/Search/components/search-filter-space/README.md
diff --git a/src/modules/Search/components/search-filter-space/script.js b/api/mapas/src/modules/Search/components/search-filter-space/script.js
similarity index 100%
rename from src/modules/Search/components/search-filter-space/script.js
rename to api/mapas/src/modules/Search/components/search-filter-space/script.js
diff --git a/src/modules/Search/components/search-filter-space/template.php b/api/mapas/src/modules/Search/components/search-filter-space/template.php
similarity index 100%
rename from src/modules/Search/components/search-filter-space/template.php
rename to api/mapas/src/modules/Search/components/search-filter-space/template.php
diff --git a/src/modules/Search/components/search-filter-space/texts.php b/api/mapas/src/modules/Search/components/search-filter-space/texts.php
similarity index 100%
rename from src/modules/Search/components/search-filter-space/texts.php
rename to api/mapas/src/modules/Search/components/search-filter-space/texts.php
diff --git a/src/modules/Search/components/search-filter/README.md b/api/mapas/src/modules/Search/components/search-filter/README.md
similarity index 100%
rename from src/modules/Search/components/search-filter/README.md
rename to api/mapas/src/modules/Search/components/search-filter/README.md
diff --git a/src/modules/Search/components/search-filter/script.js b/api/mapas/src/modules/Search/components/search-filter/script.js
similarity index 100%
rename from src/modules/Search/components/search-filter/script.js
rename to api/mapas/src/modules/Search/components/search-filter/script.js
diff --git a/src/modules/Search/components/search-filter/template.php b/api/mapas/src/modules/Search/components/search-filter/template.php
similarity index 100%
rename from src/modules/Search/components/search-filter/template.php
rename to api/mapas/src/modules/Search/components/search-filter/template.php
diff --git a/src/modules/Search/components/search-filter/texts.php b/api/mapas/src/modules/Search/components/search-filter/texts.php
similarity index 100%
rename from src/modules/Search/components/search-filter/texts.php
rename to api/mapas/src/modules/Search/components/search-filter/texts.php
diff --git a/src/modules/Search/components/search-list-event/script.js b/api/mapas/src/modules/Search/components/search-list-event/script.js
similarity index 100%
rename from src/modules/Search/components/search-list-event/script.js
rename to api/mapas/src/modules/Search/components/search-list-event/script.js
diff --git a/src/modules/Search/components/search-list-event/template.php b/api/mapas/src/modules/Search/components/search-list-event/template.php
similarity index 100%
rename from src/modules/Search/components/search-list-event/template.php
rename to api/mapas/src/modules/Search/components/search-list-event/template.php
diff --git a/src/modules/Search/components/search-list-event/texts.php b/api/mapas/src/modules/Search/components/search-list-event/texts.php
similarity index 100%
rename from src/modules/Search/components/search-list-event/texts.php
rename to api/mapas/src/modules/Search/components/search-list-event/texts.php
diff --git a/src/modules/Search/components/search-list/script.js b/api/mapas/src/modules/Search/components/search-list/script.js
similarity index 100%
rename from src/modules/Search/components/search-list/script.js
rename to api/mapas/src/modules/Search/components/search-list/script.js
diff --git a/src/modules/Search/components/search-list/template.php b/api/mapas/src/modules/Search/components/search-list/template.php
similarity index 100%
rename from src/modules/Search/components/search-list/template.php
rename to api/mapas/src/modules/Search/components/search-list/template.php
diff --git a/src/modules/Search/components/search-list/texts.php b/api/mapas/src/modules/Search/components/search-list/texts.php
similarity index 100%
rename from src/modules/Search/components/search-list/texts.php
rename to api/mapas/src/modules/Search/components/search-list/texts.php
diff --git a/src/modules/Search/components/search-map-event/README.md b/api/mapas/src/modules/Search/components/search-map-event/README.md
similarity index 100%
rename from src/modules/Search/components/search-map-event/README.md
rename to api/mapas/src/modules/Search/components/search-map-event/README.md
diff --git a/src/modules/Search/components/search-map-event/script.js b/api/mapas/src/modules/Search/components/search-map-event/script.js
similarity index 100%
rename from src/modules/Search/components/search-map-event/script.js
rename to api/mapas/src/modules/Search/components/search-map-event/script.js
diff --git a/src/modules/Search/components/search-map-event/template.php b/api/mapas/src/modules/Search/components/search-map-event/template.php
similarity index 100%
rename from src/modules/Search/components/search-map-event/template.php
rename to api/mapas/src/modules/Search/components/search-map-event/template.php
diff --git a/src/modules/Search/components/search-map-event/texts.php b/api/mapas/src/modules/Search/components/search-map-event/texts.php
similarity index 100%
rename from src/modules/Search/components/search-map-event/texts.php
rename to api/mapas/src/modules/Search/components/search-map-event/texts.php
diff --git a/src/modules/Search/components/search-map/script.js b/api/mapas/src/modules/Search/components/search-map/script.js
similarity index 100%
rename from src/modules/Search/components/search-map/script.js
rename to api/mapas/src/modules/Search/components/search-map/script.js
diff --git a/src/modules/Search/components/search-map/template.php b/api/mapas/src/modules/Search/components/search-map/template.php
similarity index 100%
rename from src/modules/Search/components/search-map/template.php
rename to api/mapas/src/modules/Search/components/search-map/template.php
diff --git a/src/modules/Search/components/search-map/texts.php b/api/mapas/src/modules/Search/components/search-map/texts.php
similarity index 100%
rename from src/modules/Search/components/search-map/texts.php
rename to api/mapas/src/modules/Search/components/search-map/texts.php
diff --git a/src/modules/Search/components/search/README.md b/api/mapas/src/modules/Search/components/search/README.md
similarity index 100%
rename from src/modules/Search/components/search/README.md
rename to api/mapas/src/modules/Search/components/search/README.md
diff --git a/src/modules/Search/components/search/init.php b/api/mapas/src/modules/Search/components/search/init.php
similarity index 100%
rename from src/modules/Search/components/search/init.php
rename to api/mapas/src/modules/Search/components/search/init.php
diff --git a/src/modules/Search/components/search/script.js b/api/mapas/src/modules/Search/components/search/script.js
similarity index 100%
rename from src/modules/Search/components/search/script.js
rename to api/mapas/src/modules/Search/components/search/script.js
diff --git a/src/modules/Search/components/search/template.php b/api/mapas/src/modules/Search/components/search/template.php
similarity index 100%
rename from src/modules/Search/components/search/template.php
rename to api/mapas/src/modules/Search/components/search/template.php
diff --git a/src/modules/Search/components/search/texts.php b/api/mapas/src/modules/Search/components/search/texts.php
similarity index 100%
rename from src/modules/Search/components/search/texts.php
rename to api/mapas/src/modules/Search/components/search/texts.php
diff --git a/src/modules/Search/views/search/agent.php b/api/mapas/src/modules/Search/views/search/agent.php
similarity index 100%
rename from src/modules/Search/views/search/agent.php
rename to api/mapas/src/modules/Search/views/search/agent.php
diff --git a/src/modules/Search/views/search/event.php b/api/mapas/src/modules/Search/views/search/event.php
similarity index 100%
rename from src/modules/Search/views/search/event.php
rename to api/mapas/src/modules/Search/views/search/event.php
diff --git a/src/modules/Search/views/search/opportunity.php b/api/mapas/src/modules/Search/views/search/opportunity.php
similarity index 100%
rename from src/modules/Search/views/search/opportunity.php
rename to api/mapas/src/modules/Search/views/search/opportunity.php
diff --git a/src/modules/Search/views/search/project.php b/api/mapas/src/modules/Search/views/search/project.php
similarity index 100%
rename from src/modules/Search/views/search/project.php
rename to api/mapas/src/modules/Search/views/search/project.php
diff --git a/src/modules/Search/views/search/space.php b/api/mapas/src/modules/Search/views/search/space.php
similarity index 100%
rename from src/modules/Search/views/search/space.php
rename to api/mapas/src/modules/Search/views/search/space.php
diff --git a/src/modules/Support/Controller.php b/api/mapas/src/modules/Support/Controller.php
similarity index 100%
rename from src/modules/Support/Controller.php
rename to api/mapas/src/modules/Support/Controller.php
diff --git a/src/modules/Support/Module.php b/api/mapas/src/modules/Support/Module.php
similarity index 100%
rename from src/modules/Support/Module.php
rename to api/mapas/src/modules/Support/Module.php
diff --git a/src/modules/Support/assets/css/support.css b/api/mapas/src/modules/Support/assets/css/support.css
similarity index 100%
rename from src/modules/Support/assets/css/support.css
rename to api/mapas/src/modules/Support/assets/css/support.css
diff --git a/src/modules/Support/assets/js/ng.support.js b/api/mapas/src/modules/Support/assets/js/ng.support.js
similarity index 100%
rename from src/modules/Support/assets/js/ng.support.js
rename to api/mapas/src/modules/Support/assets/js/ng.support.js
diff --git a/src/modules/Support/components/support-actions/README.md b/api/mapas/src/modules/Support/components/support-actions/README.md
similarity index 100%
rename from src/modules/Support/components/support-actions/README.md
rename to api/mapas/src/modules/Support/components/support-actions/README.md
diff --git a/src/modules/Support/components/support-actions/script.js b/api/mapas/src/modules/Support/components/support-actions/script.js
similarity index 100%
rename from src/modules/Support/components/support-actions/script.js
rename to api/mapas/src/modules/Support/components/support-actions/script.js
diff --git a/src/modules/Support/components/support-actions/template.php b/api/mapas/src/modules/Support/components/support-actions/template.php
similarity index 100%
rename from src/modules/Support/components/support-actions/template.php
rename to api/mapas/src/modules/Support/components/support-actions/template.php
diff --git a/src/modules/Support/layouts/parts/support/opportunity-support--tab.php b/api/mapas/src/modules/Support/layouts/parts/support/opportunity-support--tab.php
similarity index 100%
rename from src/modules/Support/layouts/parts/support/opportunity-support--tab.php
rename to api/mapas/src/modules/Support/layouts/parts/support/opportunity-support--tab.php
diff --git a/src/modules/Support/layouts/parts/support/opportunity-support-fields-association.php b/api/mapas/src/modules/Support/layouts/parts/support/opportunity-support-fields-association.php
similarity index 100%
rename from src/modules/Support/layouts/parts/support/opportunity-support-fields-association.php
rename to api/mapas/src/modules/Support/layouts/parts/support/opportunity-support-fields-association.php
diff --git a/src/modules/Support/layouts/parts/support/opportunity-support-settings.php b/api/mapas/src/modules/Support/layouts/parts/support/opportunity-support-settings.php
similarity index 100%
rename from src/modules/Support/layouts/parts/support/opportunity-support-settings.php
rename to api/mapas/src/modules/Support/layouts/parts/support/opportunity-support-settings.php
diff --git a/src/modules/Support/layouts/parts/support/opportunity-support.php b/api/mapas/src/modules/Support/layouts/parts/support/opportunity-support.php
similarity index 100%
rename from src/modules/Support/layouts/parts/support/opportunity-support.php
rename to api/mapas/src/modules/Support/layouts/parts/support/opportunity-support.php
diff --git a/src/modules/Support/layouts/parts/support/support-link.php b/api/mapas/src/modules/Support/layouts/parts/support/support-link.php
similarity index 100%
rename from src/modules/Support/layouts/parts/support/support-link.php
rename to api/mapas/src/modules/Support/layouts/parts/support/support-link.php
diff --git a/src/modules/Support/views/support/registration.php b/api/mapas/src/modules/Support/views/support/registration.php
similarity index 100%
rename from src/modules/Support/views/support/registration.php
rename to api/mapas/src/modules/Support/views/support/registration.php
diff --git a/src/modules/Support/views/support/support-edit.php b/api/mapas/src/modules/Support/views/support/support-edit.php
similarity index 100%
rename from src/modules/Support/views/support/support-edit.php
rename to api/mapas/src/modules/Support/views/support/support-edit.php
diff --git a/src/modules/Support/views/support/support.php b/api/mapas/src/modules/Support/views/support/support.php
similarity index 100%
rename from src/modules/Support/views/support/support.php
rename to api/mapas/src/modules/Support/views/support/support.php
diff --git a/src/modules/UserManagement/Controllers/Role.php b/api/mapas/src/modules/UserManagement/Controllers/Role.php
similarity index 100%
rename from src/modules/UserManagement/Controllers/Role.php
rename to api/mapas/src/modules/UserManagement/Controllers/Role.php
diff --git a/src/modules/UserManagement/Controllers/SystemRole.php b/api/mapas/src/modules/UserManagement/Controllers/SystemRole.php
similarity index 100%
rename from src/modules/UserManagement/Controllers/SystemRole.php
rename to api/mapas/src/modules/UserManagement/Controllers/SystemRole.php
diff --git a/src/modules/UserManagement/Entities/SystemRole.php b/api/mapas/src/modules/UserManagement/Entities/SystemRole.php
similarity index 100%
rename from src/modules/UserManagement/Entities/SystemRole.php
rename to api/mapas/src/modules/UserManagement/Entities/SystemRole.php
diff --git a/src/modules/UserManagement/Module.php b/api/mapas/src/modules/UserManagement/Module.php
similarity index 100%
rename from src/modules/UserManagement/Module.php
rename to api/mapas/src/modules/UserManagement/Module.php
diff --git a/src/modules/UserManagement/assets/.gitkeep b/api/mapas/src/modules/UserManagement/assets/.gitkeep
similarity index 100%
rename from src/modules/UserManagement/assets/.gitkeep
rename to api/mapas/src/modules/UserManagement/assets/.gitkeep
diff --git a/src/modules/UserManagement/components/panel--card-user/script.js b/api/mapas/src/modules/UserManagement/components/panel--card-user/script.js
similarity index 100%
rename from src/modules/UserManagement/components/panel--card-user/script.js
rename to api/mapas/src/modules/UserManagement/components/panel--card-user/script.js
diff --git a/src/modules/UserManagement/components/panel--card-user/template.php b/api/mapas/src/modules/UserManagement/components/panel--card-user/template.php
similarity index 100%
rename from src/modules/UserManagement/components/panel--card-user/template.php
rename to api/mapas/src/modules/UserManagement/components/panel--card-user/template.php
diff --git a/src/modules/UserManagement/components/system-roles--card/script.js b/api/mapas/src/modules/UserManagement/components/system-roles--card/script.js
similarity index 100%
rename from src/modules/UserManagement/components/system-roles--card/script.js
rename to api/mapas/src/modules/UserManagement/components/system-roles--card/script.js
diff --git a/src/modules/UserManagement/components/system-roles--card/template.php b/api/mapas/src/modules/UserManagement/components/system-roles--card/template.php
similarity index 100%
rename from src/modules/UserManagement/components/system-roles--card/template.php
rename to api/mapas/src/modules/UserManagement/components/system-roles--card/template.php
diff --git a/src/modules/UserManagement/components/system-roles--card/texts.php b/api/mapas/src/modules/UserManagement/components/system-roles--card/texts.php
similarity index 100%
rename from src/modules/UserManagement/components/system-roles--card/texts.php
rename to api/mapas/src/modules/UserManagement/components/system-roles--card/texts.php
diff --git a/src/modules/UserManagement/components/system-roles--list/script.js b/api/mapas/src/modules/UserManagement/components/system-roles--list/script.js
similarity index 100%
rename from src/modules/UserManagement/components/system-roles--list/script.js
rename to api/mapas/src/modules/UserManagement/components/system-roles--list/script.js
diff --git a/src/modules/UserManagement/components/system-roles--list/template.php b/api/mapas/src/modules/UserManagement/components/system-roles--list/template.php
similarity index 100%
rename from src/modules/UserManagement/components/system-roles--list/template.php
rename to api/mapas/src/modules/UserManagement/components/system-roles--list/template.php
diff --git a/src/modules/UserManagement/components/system-roles--modal/script.js b/api/mapas/src/modules/UserManagement/components/system-roles--modal/script.js
similarity index 100%
rename from src/modules/UserManagement/components/system-roles--modal/script.js
rename to api/mapas/src/modules/UserManagement/components/system-roles--modal/script.js
diff --git a/src/modules/UserManagement/components/system-roles--modal/template.php b/api/mapas/src/modules/UserManagement/components/system-roles--modal/template.php
similarity index 100%
rename from src/modules/UserManagement/components/system-roles--modal/template.php
rename to api/mapas/src/modules/UserManagement/components/system-roles--modal/template.php
diff --git a/src/modules/UserManagement/components/system-roles--modal/texts.php b/api/mapas/src/modules/UserManagement/components/system-roles--modal/texts.php
similarity index 100%
rename from src/modules/UserManagement/components/system-roles--modal/texts.php
rename to api/mapas/src/modules/UserManagement/components/system-roles--modal/texts.php
diff --git a/src/modules/UserManagement/components/user-accepted-terms/README.md b/api/mapas/src/modules/UserManagement/components/user-accepted-terms/README.md
similarity index 100%
rename from src/modules/UserManagement/components/user-accepted-terms/README.md
rename to api/mapas/src/modules/UserManagement/components/user-accepted-terms/README.md
diff --git a/src/modules/UserManagement/components/user-accepted-terms/script.js b/api/mapas/src/modules/UserManagement/components/user-accepted-terms/script.js
similarity index 100%
rename from src/modules/UserManagement/components/user-accepted-terms/script.js
rename to api/mapas/src/modules/UserManagement/components/user-accepted-terms/script.js
diff --git a/src/modules/UserManagement/components/user-accepted-terms/template.php b/api/mapas/src/modules/UserManagement/components/user-accepted-terms/template.php
similarity index 100%
rename from src/modules/UserManagement/components/user-accepted-terms/template.php
rename to api/mapas/src/modules/UserManagement/components/user-accepted-terms/template.php
diff --git a/src/modules/UserManagement/components/user-accepted-terms/texts.php b/api/mapas/src/modules/UserManagement/components/user-accepted-terms/texts.php
similarity index 100%
rename from src/modules/UserManagement/components/user-accepted-terms/texts.php
rename to api/mapas/src/modules/UserManagement/components/user-accepted-terms/texts.php
diff --git a/src/modules/UserManagement/components/user-mail/script.js b/api/mapas/src/modules/UserManagement/components/user-mail/script.js
similarity index 100%
rename from src/modules/UserManagement/components/user-mail/script.js
rename to api/mapas/src/modules/UserManagement/components/user-mail/script.js
diff --git a/src/modules/UserManagement/components/user-mail/template.php b/api/mapas/src/modules/UserManagement/components/user-mail/template.php
similarity index 100%
rename from src/modules/UserManagement/components/user-mail/template.php
rename to api/mapas/src/modules/UserManagement/components/user-mail/template.php
diff --git a/src/modules/UserManagement/components/user-management--add-role-modal/script.js b/api/mapas/src/modules/UserManagement/components/user-management--add-role-modal/script.js
similarity index 100%
rename from src/modules/UserManagement/components/user-management--add-role-modal/script.js
rename to api/mapas/src/modules/UserManagement/components/user-management--add-role-modal/script.js
diff --git a/src/modules/UserManagement/components/user-management--add-role-modal/template.php b/api/mapas/src/modules/UserManagement/components/user-management--add-role-modal/template.php
similarity index 100%
rename from src/modules/UserManagement/components/user-management--add-role-modal/template.php
rename to api/mapas/src/modules/UserManagement/components/user-management--add-role-modal/template.php
diff --git a/src/modules/UserManagement/components/user-management--delete/script.js b/api/mapas/src/modules/UserManagement/components/user-management--delete/script.js
similarity index 100%
rename from src/modules/UserManagement/components/user-management--delete/script.js
rename to api/mapas/src/modules/UserManagement/components/user-management--delete/script.js
diff --git a/src/modules/UserManagement/components/user-management--delete/template.php b/api/mapas/src/modules/UserManagement/components/user-management--delete/template.php
similarity index 100%
rename from src/modules/UserManagement/components/user-management--delete/template.php
rename to api/mapas/src/modules/UserManagement/components/user-management--delete/template.php
diff --git a/src/modules/UserManagement/components/user-management--ownership-tabs/README.md b/api/mapas/src/modules/UserManagement/components/user-management--ownership-tabs/README.md
similarity index 100%
rename from src/modules/UserManagement/components/user-management--ownership-tabs/README.md
rename to api/mapas/src/modules/UserManagement/components/user-management--ownership-tabs/README.md
diff --git a/src/modules/UserManagement/components/user-management--ownership-tabs/script.js b/api/mapas/src/modules/UserManagement/components/user-management--ownership-tabs/script.js
similarity index 100%
rename from src/modules/UserManagement/components/user-management--ownership-tabs/script.js
rename to api/mapas/src/modules/UserManagement/components/user-management--ownership-tabs/script.js
diff --git a/src/modules/UserManagement/components/user-management--ownership-tabs/template.php b/api/mapas/src/modules/UserManagement/components/user-management--ownership-tabs/template.php
similarity index 100%
rename from src/modules/UserManagement/components/user-management--ownership-tabs/template.php
rename to api/mapas/src/modules/UserManagement/components/user-management--ownership-tabs/template.php
diff --git a/src/modules/UserManagement/components/user-management--ownership-tabs/texts.php b/api/mapas/src/modules/UserManagement/components/user-management--ownership-tabs/texts.php
similarity index 100%
rename from src/modules/UserManagement/components/user-management--ownership-tabs/texts.php
rename to api/mapas/src/modules/UserManagement/components/user-management--ownership-tabs/texts.php
diff --git a/src/modules/UserManagement/db-updates.php b/api/mapas/src/modules/UserManagement/db-updates.php
similarity index 100%
rename from src/modules/UserManagement/db-updates.php
rename to api/mapas/src/modules/UserManagement/db-updates.php
diff --git a/src/modules/UserManagement/views/panel/delete-account.php b/api/mapas/src/modules/UserManagement/views/panel/delete-account.php
similarity index 100%
rename from src/modules/UserManagement/views/panel/delete-account.php
rename to api/mapas/src/modules/UserManagement/views/panel/delete-account.php
diff --git a/src/modules/UserManagement/views/panel/my-account.php b/api/mapas/src/modules/UserManagement/views/panel/my-account.php
similarity index 100%
rename from src/modules/UserManagement/views/panel/my-account.php
rename to api/mapas/src/modules/UserManagement/views/panel/my-account.php
diff --git a/src/modules/UserManagement/views/panel/system-roles.php b/api/mapas/src/modules/UserManagement/views/panel/system-roles.php
similarity index 100%
rename from src/modules/UserManagement/views/panel/system-roles.php
rename to api/mapas/src/modules/UserManagement/views/panel/system-roles.php
diff --git a/src/modules/UserManagement/views/panel/user-detail.php b/api/mapas/src/modules/UserManagement/views/panel/user-detail.php
similarity index 100%
rename from src/modules/UserManagement/views/panel/user-detail.php
rename to api/mapas/src/modules/UserManagement/views/panel/user-detail.php
diff --git a/src/modules/UserManagement/views/panel/user-management.php b/api/mapas/src/modules/UserManagement/views/panel/user-management.php
similarity index 100%
rename from src/modules/UserManagement/views/panel/user-management.php
rename to api/mapas/src/modules/UserManagement/views/panel/user-management.php
diff --git a/src/node_scripts/package.json b/api/mapas/src/node_scripts/package.json
similarity index 100%
rename from src/node_scripts/package.json
rename to api/mapas/src/node_scripts/package.json
diff --git a/src/node_scripts/webpack.mix.js b/api/mapas/src/node_scripts/webpack.mix.js
similarity index 100%
rename from src/node_scripts/webpack.mix.js
rename to api/mapas/src/node_scripts/webpack.mix.js
diff --git a/src/package.json b/api/mapas/src/package.json
similarity index 85%
rename from src/package.json
rename to api/mapas/src/package.json
index 665a5ce773..67e3fbf650 100644
--- a/src/package.json
+++ b/api/mapas/src/package.json
@@ -5,6 +5,7 @@
"dev": "pnpm run --parallel --recursive dev",
"build": "pnpm run --parallel --recursive build",
"watch": "pnpm run --parallel --recursive watch",
+ "postinstall": "sass themes/BaseV1/assets/css/sass/main.scss:themes/BaseV1/assets/css/main.css",
"cypress:open": "npx cypress open",
"cypress:run": "npx cypress run"
},
diff --git a/src/plugins/.gitkeep b/api/mapas/src/plugins/.gitkeep
similarity index 100%
rename from src/plugins/.gitkeep
rename to api/mapas/src/plugins/.gitkeep
diff --git a/src/plugins/Metabase/Controllers/Metabase.php b/api/mapas/src/plugins/Metabase/Controllers/Metabase.php
similarity index 100%
rename from src/plugins/Metabase/Controllers/Metabase.php
rename to api/mapas/src/plugins/Metabase/Controllers/Metabase.php
diff --git a/src/plugins/Metabase/LICENSE b/api/mapas/src/plugins/Metabase/LICENSE
similarity index 100%
rename from src/plugins/Metabase/LICENSE
rename to api/mapas/src/plugins/Metabase/LICENSE
diff --git a/src/plugins/Metabase/Plugin.php b/api/mapas/src/plugins/Metabase/Plugin.php
similarity index 100%
rename from src/plugins/Metabase/Plugin.php
rename to api/mapas/src/plugins/Metabase/Plugin.php
diff --git a/src/plugins/Metabase/README.md b/api/mapas/src/plugins/Metabase/README.md
similarity index 100%
rename from src/plugins/Metabase/README.md
rename to api/mapas/src/plugins/Metabase/README.md
diff --git a/src/plugins/Metabase/assets-src/package-lock.json b/api/mapas/src/plugins/Metabase/assets-src/package-lock.json
similarity index 100%
rename from src/plugins/Metabase/assets-src/package-lock.json
rename to api/mapas/src/plugins/Metabase/assets-src/package-lock.json
diff --git a/src/plugins/Metabase/assets-src/sass/1-settings/_s-globals.scss b/api/mapas/src/plugins/Metabase/assets-src/sass/1-settings/_s-globals.scss
similarity index 100%
rename from src/plugins/Metabase/assets-src/sass/1-settings/_s-globals.scss
rename to api/mapas/src/plugins/Metabase/assets-src/sass/1-settings/_s-globals.scss
diff --git a/src/plugins/Metabase/assets-src/sass/1-settings/_s-typography.scss b/api/mapas/src/plugins/Metabase/assets-src/sass/1-settings/_s-typography.scss
similarity index 100%
rename from src/plugins/Metabase/assets-src/sass/1-settings/_s-typography.scss
rename to api/mapas/src/plugins/Metabase/assets-src/sass/1-settings/_s-typography.scss
diff --git a/src/plugins/Metabase/assets-src/sass/1-settings/_s-variables.scss b/api/mapas/src/plugins/Metabase/assets-src/sass/1-settings/_s-variables.scss
similarity index 100%
rename from src/plugins/Metabase/assets-src/sass/1-settings/_s-variables.scss
rename to api/mapas/src/plugins/Metabase/assets-src/sass/1-settings/_s-variables.scss
diff --git a/src/plugins/Metabase/assets-src/sass/2-atoms/_a-mixins.scss b/api/mapas/src/plugins/Metabase/assets-src/sass/2-atoms/_a-mixins.scss
similarity index 100%
rename from src/plugins/Metabase/assets-src/sass/2-atoms/_a-mixins.scss
rename to api/mapas/src/plugins/Metabase/assets-src/sass/2-atoms/_a-mixins.scss
diff --git a/src/plugins/Metabase/assets-src/sass/4-components/_home-metabase.scss b/api/mapas/src/plugins/Metabase/assets-src/sass/4-components/_home-metabase.scss
similarity index 100%
rename from src/plugins/Metabase/assets-src/sass/4-components/_home-metabase.scss
rename to api/mapas/src/plugins/Metabase/assets-src/sass/4-components/_home-metabase.scss
diff --git a/src/plugins/Metabase/assets-src/sass/4-components/_list-dashboard.scss b/api/mapas/src/plugins/Metabase/assets-src/sass/4-components/_list-dashboard.scss
similarity index 100%
rename from src/plugins/Metabase/assets-src/sass/4-components/_list-dashboard.scss
rename to api/mapas/src/plugins/Metabase/assets-src/sass/4-components/_list-dashboard.scss
diff --git a/src/plugins/Metabase/assets-src/sass/4-components/_metabase-card.scss b/api/mapas/src/plugins/Metabase/assets-src/sass/4-components/_metabase-card.scss
similarity index 100%
rename from src/plugins/Metabase/assets-src/sass/4-components/_metabase-card.scss
rename to api/mapas/src/plugins/Metabase/assets-src/sass/4-components/_metabase-card.scss
diff --git a/src/plugins/Metabase/assets-src/sass/4-components/_metabase-dashboard.scss b/api/mapas/src/plugins/Metabase/assets-src/sass/4-components/_metabase-dashboard.scss
similarity index 100%
rename from src/plugins/Metabase/assets-src/sass/4-components/_metabase-dashboard.scss
rename to api/mapas/src/plugins/Metabase/assets-src/sass/4-components/_metabase-dashboard.scss
diff --git a/src/plugins/Metabase/assets-src/sass/4-components/_single-dashboard.scss b/api/mapas/src/plugins/Metabase/assets-src/sass/4-components/_single-dashboard.scss
similarity index 100%
rename from src/plugins/Metabase/assets-src/sass/4-components/_single-dashboard.scss
rename to api/mapas/src/plugins/Metabase/assets-src/sass/4-components/_single-dashboard.scss
diff --git a/src/plugins/Metabase/assets-src/sass/plugin-metabase.scss b/api/mapas/src/plugins/Metabase/assets-src/sass/plugin-metabase.scss
similarity index 100%
rename from src/plugins/Metabase/assets-src/sass/plugin-metabase.scss
rename to api/mapas/src/plugins/Metabase/assets-src/sass/plugin-metabase.scss
diff --git a/api/mapas/src/plugins/Metabase/assets/css/plugin-metabase.css b/api/mapas/src/plugins/Metabase/assets/css/plugin-metabase.css
new file mode 100644
index 0000000000..7a0ad21fee
--- /dev/null
+++ b/api/mapas/src/plugins/Metabase/assets/css/plugin-metabase.css
@@ -0,0 +1,238 @@
+/* ----- 1: SETTINGS ------- */
+/* ----- 2: ATOMS ------- */
+/* ----- 3: LAYOUT ------- */
+/* ----- 4: COMPONENTS ------- */
+.list-dashboard {
+ background-color: var(--mc-white);
+ color: var(--mc-black);
+ display: grid;
+ grid-template-columns: 19.0625rem calc(100% - 19.0625rem);
+ max-width: 90rem;
+ margin: 0 auto;
+}
+.list-dashboard .selected {
+ background-color: var(--mc-primary-500);
+}
+.list-dashboard__title {
+ color: var(--mc-gray-700);
+ font-size: 0.75rem;
+ margin: 0 auto;
+ padding: 1rem 1rem 1rem 0;
+ text-transform: uppercase;
+}
+.list-dashboard__text {
+ font-size: 0.875rem;
+ color: var();
+}
+.list-dashboard .textselected {
+ color: var(--mc-white);
+}
+.list-dashboard__link {
+ color: var(--mc-black);
+ text-decoration: none;
+}
+.list-dashboard__link a {
+ text-decoration: none;
+}
+.list-dashboard__nav {
+ list-style-type: none;
+ background-color: var(--mc-white);
+ padding: 1rem 2rem 1rem 1.5rem;
+ margin: 0;
+ border-right: 1px solid var(--mc-gray-100);
+ display: flex;
+ gap: 0.5rem;
+ flex-direction: column;
+}
+.list-dashboard__iframe {
+ height: 100%;
+ width: 100%;
+ border-style: none;
+}
+.list-dashboard__item {
+ padding: 0.5rem 1rem 0.5rem 1rem;
+ margin: 0;
+ border-radius: 0.25rem;
+ width: 15.625rem;
+ background-color: var(--mc-white);
+ color: var(--mc-black);
+}
+
+.home-metabase {
+ margin: 0 auto;
+ background-color: var(--mc-home-opportunities);
+ padding: 3.75rem 1rem;
+ position: relative;
+ display: flex;
+ align-items: center;
+ overflow: hidden;
+ flex-direction: column;
+}
+.home-metabase__header {
+ margin: 0 auto;
+ max-width: 73.125rem;
+ width: 100%;
+ display: grid;
+ align-items: center;
+ grid-template-columns: 1fr 28.4375rem;
+}
+@media (max-width: 37.5rem) {
+ .home-metabase__header {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ }
+}
+.home-metabase__left {
+ color: var(--mc-white);
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ align-items: flex-start;
+}
+@media (max-width: 37.5rem) {
+ .home-metabase__left {
+ align-items: center;
+ }
+}
+@media (max-width: 37.5rem) {
+ .home-metabase__text {
+ text-align: center;
+ }
+}
+.home-metabase__img {
+ width: 17.8125rem;
+ max-width: 100%;
+}
+.home-metabase__panel {
+ display: flex;
+ flex-direction: column;
+ gap: 0.75rem;
+}
+.home-metabase__subtitle {
+ color: var(--mc-white);
+}
+.home-metabase__content {
+ align-items: stretch;
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+ margin: 0 auto;
+ max-width: 73.125rem;
+ z-index: 2;
+ gap: 1.125rem 0.8125rem;
+}
+@media (max-width: 31.25rem) {
+ .home-metabase__content {
+ gap: 1.125rem 0;
+ }
+}
+
+.metabase-dashboard {
+ padding-inline: 7.4375rem;
+ background-color: var(--mc-gray-100);
+ max-width: 90rem;
+ margin: 0 auto;
+}
+@media (max-width: 31.25rem) {
+ .metabase-dashboard {
+ padding-inline: 1rem;
+ }
+}
+.metabase-dashboard__page {
+ background-color: var(--mc-gray-100);
+}
+.metabase-dashboard__header {
+ display: flex;
+ flex-direction: column;
+ padding: 2.5rem 0 1rem 0;
+}
+.metabase-dashboard__content {
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+ gap: 1.5rem;
+ padding-bottom: 13.5rem;
+}
+.metabase-dashboard__card {
+ display: inline-flex;
+ padding: 16px 35px 16px 16px;
+ flex-direction: column;
+ align-items: flex-start;
+ gap: 6px;
+ max-width: 23.0625rem;
+ border-radius: 8px;
+ border: 1px solid var(--mc-gray-100);
+ background: var(--mc-white);
+}
+
+.metabase-card {
+ width: 23.1875rem;
+ max-width: 100%;
+ background-color: var(--mc-white);
+ border: 0.0625rem solid var(--mc-gray-100);
+ padding: 1rem;
+ border-radius: 0.5rem;
+ display: grid;
+ align-content: space-between;
+}
+.metabase-card__header {
+ display: grid;
+ grid-template-columns: 2rem 1fr;
+ gap: 1rem;
+}
+.metabase-card__icon {
+ background-color: var(--mc-white);
+ font-size: 1.5rem;
+ justify-self: center;
+}
+.metabase-card__content {
+ display: grid;
+ grid-template-columns: 1fr;
+ align-items: end;
+ text-align: center;
+ gap: 1.625rem;
+}
+.metabase-card__number {
+ font-size: var(--mc-font-size-lg);
+}
+.metabase-card__label {
+ font-weight: 600;
+}
+.metabase-card__info {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ text-align: center;
+ margin: 1.125rem 0;
+}
+.metabase-card__number {
+ font-size: var(--mc-font-size-xl);
+}
+.metabase-card__number--long {
+ font-size: var(--mc-font-size-sm);
+}
+.metabase-card--double .metabase-card__content {
+ grid-template-columns: 1fr 1fr;
+}
+.metabase-card--double .metabase-card__info:first-of-type .metabase-card__number {
+ font-size: var(--mc-font-size-lg);
+}
+.metabase-card--double .metabase-card__info:first-of-type .metabase-card__number--long {
+ font-size: var(--mc-font-size-sm);
+}
+.metabase-card--double .metabase-card__number {
+ font-size: var(--mc-font-size-md);
+}
+@media (max-width: 31.25rem) {
+ .metabase-card {
+ min-width: 18.5625rem;
+ width: 100%;
+ }
+}
+
+.controller-metabase {
+ background-color: var(--mc-gray-100);
+}
+
+/* ----- 5: AREAS ------- */
diff --git a/src/plugins/Metabase/assets/img/business.png b/api/mapas/src/plugins/Metabase/assets/img/business.png
similarity index 100%
rename from src/plugins/Metabase/assets/img/business.png
rename to api/mapas/src/plugins/Metabase/assets/img/business.png
diff --git a/src/plugins/Metabase/components/__template__/README.md b/api/mapas/src/plugins/Metabase/components/__template__/README.md
similarity index 100%
rename from src/plugins/Metabase/components/__template__/README.md
rename to api/mapas/src/plugins/Metabase/components/__template__/README.md
diff --git a/src/plugins/Metabase/components/__template__/script.js b/api/mapas/src/plugins/Metabase/components/__template__/script.js
similarity index 100%
rename from src/plugins/Metabase/components/__template__/script.js
rename to api/mapas/src/plugins/Metabase/components/__template__/script.js
diff --git a/src/plugins/Metabase/components/__template__/template.php b/api/mapas/src/plugins/Metabase/components/__template__/template.php
similarity index 100%
rename from src/plugins/Metabase/components/__template__/template.php
rename to api/mapas/src/plugins/Metabase/components/__template__/template.php
diff --git a/src/plugins/Metabase/components/__template__/texts.php b/api/mapas/src/plugins/Metabase/components/__template__/texts.php
similarity index 100%
rename from src/plugins/Metabase/components/__template__/texts.php
rename to api/mapas/src/plugins/Metabase/components/__template__/texts.php
diff --git a/src/plugins/Metabase/components/home-metabase/README.md b/api/mapas/src/plugins/Metabase/components/home-metabase/README.md
similarity index 100%
rename from src/plugins/Metabase/components/home-metabase/README.md
rename to api/mapas/src/plugins/Metabase/components/home-metabase/README.md
diff --git a/src/plugins/Metabase/components/home-metabase/init.php b/api/mapas/src/plugins/Metabase/components/home-metabase/init.php
similarity index 100%
rename from src/plugins/Metabase/components/home-metabase/init.php
rename to api/mapas/src/plugins/Metabase/components/home-metabase/init.php
diff --git a/src/plugins/Metabase/components/home-metabase/script.js b/api/mapas/src/plugins/Metabase/components/home-metabase/script.js
similarity index 100%
rename from src/plugins/Metabase/components/home-metabase/script.js
rename to api/mapas/src/plugins/Metabase/components/home-metabase/script.js
diff --git a/src/plugins/Metabase/components/home-metabase/template.php b/api/mapas/src/plugins/Metabase/components/home-metabase/template.php
similarity index 100%
rename from src/plugins/Metabase/components/home-metabase/template.php
rename to api/mapas/src/plugins/Metabase/components/home-metabase/template.php
diff --git a/src/plugins/Metabase/components/home-metabase/texts.php b/api/mapas/src/plugins/Metabase/components/home-metabase/texts.php
similarity index 100%
rename from src/plugins/Metabase/components/home-metabase/texts.php
rename to api/mapas/src/plugins/Metabase/components/home-metabase/texts.php
diff --git a/src/plugins/Metabase/components/list-dashboard/README.md b/api/mapas/src/plugins/Metabase/components/list-dashboard/README.md
similarity index 100%
rename from src/plugins/Metabase/components/list-dashboard/README.md
rename to api/mapas/src/plugins/Metabase/components/list-dashboard/README.md
diff --git a/src/plugins/Metabase/components/list-dashboard/init.php b/api/mapas/src/plugins/Metabase/components/list-dashboard/init.php
similarity index 100%
rename from src/plugins/Metabase/components/list-dashboard/init.php
rename to api/mapas/src/plugins/Metabase/components/list-dashboard/init.php
diff --git a/src/plugins/Metabase/components/list-dashboard/script.js b/api/mapas/src/plugins/Metabase/components/list-dashboard/script.js
similarity index 100%
rename from src/plugins/Metabase/components/list-dashboard/script.js
rename to api/mapas/src/plugins/Metabase/components/list-dashboard/script.js
diff --git a/src/plugins/Metabase/components/list-dashboard/template.php b/api/mapas/src/plugins/Metabase/components/list-dashboard/template.php
similarity index 100%
rename from src/plugins/Metabase/components/list-dashboard/template.php
rename to api/mapas/src/plugins/Metabase/components/list-dashboard/template.php
diff --git a/src/plugins/Metabase/components/list-dashboard/texts.php b/api/mapas/src/plugins/Metabase/components/list-dashboard/texts.php
similarity index 100%
rename from src/plugins/Metabase/components/list-dashboard/texts.php
rename to api/mapas/src/plugins/Metabase/components/list-dashboard/texts.php
diff --git a/src/plugins/Metabase/components/metabase-dashboard/README.md b/api/mapas/src/plugins/Metabase/components/metabase-dashboard/README.md
similarity index 100%
rename from src/plugins/Metabase/components/metabase-dashboard/README.md
rename to api/mapas/src/plugins/Metabase/components/metabase-dashboard/README.md
diff --git a/src/plugins/Metabase/components/metabase-dashboard/init.php b/api/mapas/src/plugins/Metabase/components/metabase-dashboard/init.php
similarity index 100%
rename from src/plugins/Metabase/components/metabase-dashboard/init.php
rename to api/mapas/src/plugins/Metabase/components/metabase-dashboard/init.php
diff --git a/src/plugins/Metabase/components/metabase-dashboard/script.js b/api/mapas/src/plugins/Metabase/components/metabase-dashboard/script.js
similarity index 100%
rename from src/plugins/Metabase/components/metabase-dashboard/script.js
rename to api/mapas/src/plugins/Metabase/components/metabase-dashboard/script.js
diff --git a/src/plugins/Metabase/components/metabase-dashboard/template.php b/api/mapas/src/plugins/Metabase/components/metabase-dashboard/template.php
similarity index 100%
rename from src/plugins/Metabase/components/metabase-dashboard/template.php
rename to api/mapas/src/plugins/Metabase/components/metabase-dashboard/template.php
diff --git a/src/plugins/Metabase/components/metabase-dashboard/texts.php b/api/mapas/src/plugins/Metabase/components/metabase-dashboard/texts.php
similarity index 100%
rename from src/plugins/Metabase/components/metabase-dashboard/texts.php
rename to api/mapas/src/plugins/Metabase/components/metabase-dashboard/texts.php
diff --git a/src/plugins/Metabase/layouts/parts/home-metabase.php b/api/mapas/src/plugins/Metabase/layouts/parts/home-metabase.php
similarity index 100%
rename from src/plugins/Metabase/layouts/parts/home-metabase.php
rename to api/mapas/src/plugins/Metabase/layouts/parts/home-metabase.php
diff --git a/src/plugins/Metabase/package.json b/api/mapas/src/plugins/Metabase/package.json
similarity index 100%
rename from src/plugins/Metabase/package.json
rename to api/mapas/src/plugins/Metabase/package.json
diff --git a/src/plugins/Metabase/views/metabase/panel.php b/api/mapas/src/plugins/Metabase/views/metabase/panel.php
similarity index 100%
rename from src/plugins/Metabase/views/metabase/panel.php
rename to api/mapas/src/plugins/Metabase/views/metabase/panel.php
diff --git a/src/plugins/Metabase/views/metabase/single.php b/api/mapas/src/plugins/Metabase/views/metabase/single.php
similarity index 100%
rename from src/plugins/Metabase/views/metabase/single.php
rename to api/mapas/src/plugins/Metabase/views/metabase/single.php
diff --git a/api/mapas/src/plugins/plugin-MultipleLocalAuth b/api/mapas/src/plugins/plugin-MultipleLocalAuth
new file mode 160000
index 0000000000..5750f62088
--- /dev/null
+++ b/api/mapas/src/plugins/plugin-MultipleLocalAuth
@@ -0,0 +1 @@
+Subproject commit 5750f6208858a8f960db9032283a653ad92c1818
diff --git a/src/pnpm-lock.yaml b/api/mapas/src/pnpm-lock.yaml
similarity index 99%
rename from src/pnpm-lock.yaml
rename to api/mapas/src/pnpm-lock.yaml
index 40b3d97f52..264dfabe1c 100644
--- a/src/pnpm-lock.yaml
+++ b/api/mapas/src/pnpm-lock.yaml
@@ -114,6 +114,21 @@ importers:
specifier: ^8.0.2
version: 8.0.2(sass@1.77.2)(webpack@4.47.0(webpack-cli@3.3.12))
+ plugins/plugin-MultipleLocalAuth:
+ devDependencies:
+ '@mapas/scripts':
+ specifier: workspace:0.0.0
+ version: link:../../node_scripts
+ laravel-mix:
+ specifier: ^6.0.49
+ version: 6.0.49(@babel/core@7.24.5)(@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.5))(@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.5))(@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.5))(@babel/preset-env@7.24.5(@babel/core@7.24.5))(postcss@8.4.38)(webpack-cli@4.10.0(webpack@5.91.0))(webpack@5.91.0(webpack-cli@4.10.0))
+ sass:
+ specifier: ^1.77.2
+ version: 1.77.2
+ sass-loader:
+ specifier: ^12.6.0
+ version: 12.6.0(sass@1.77.2)(webpack@5.91.0(webpack-cli@4.10.0))
+
themes/BaseV2:
devDependencies:
'@mapas/scripts':
diff --git a/src/pnpm-workspace.yaml b/api/mapas/src/pnpm-workspace.yaml
similarity index 100%
rename from src/pnpm-workspace.yaml
rename to api/mapas/src/pnpm-workspace.yaml
diff --git a/src/themes/BaseV1/Theme.php b/api/mapas/src/themes/BaseV1/Theme.php
similarity index 100%
rename from src/themes/BaseV1/Theme.php
rename to api/mapas/src/themes/BaseV1/Theme.php
diff --git a/src/themes/BaseV1/assets/css/.csscomb.json b/api/mapas/src/themes/BaseV1/assets/css/.csscomb.json
similarity index 100%
rename from src/themes/BaseV1/assets/css/.csscomb.json
rename to api/mapas/src/themes/BaseV1/assets/css/.csscomb.json
diff --git a/src/themes/BaseV1/assets/css/opportunity-phases.css b/api/mapas/src/themes/BaseV1/assets/css/opportunity-phases.css
similarity index 100%
rename from src/themes/BaseV1/assets/css/opportunity-phases.css
rename to api/mapas/src/themes/BaseV1/assets/css/opportunity-phases.css
diff --git a/src/themes/BaseV1/assets/css/sass/application/_advanced-search.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_advanced-search.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_advanced-search.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_advanced-search.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_all-application.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_all-application.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_all-application.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_all-application.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_breadcrumb.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_breadcrumb.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_breadcrumb.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_breadcrumb.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_compliant_suggestion.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_compliant_suggestion.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_compliant_suggestion.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_compliant_suggestion.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_editable-entity-bar.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_editable-entity-bar.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_editable-entity-bar.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_editable-entity-bar.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_entities-list-header.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_entities-list-header.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_entities-list-header.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_entities-list-header.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_entities-list.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_entities-list.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_entities-list.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_entities-list.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_entity-details.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_entity-details.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_entity-details.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_entity-details.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_entity-header.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_entity-header.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_entity-header.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_entity-header.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_entity-owner.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_entity-owner.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_entity-owner.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_entity-owner.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_event-details.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_event-details.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_event-details.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_event-details.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_footer.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_footer.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_footer.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_footer.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_header.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_header.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_header.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_header.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_home.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_home.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_home.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_home.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_main-content.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_main-content.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_main-content.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_main-content.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_main-section.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_main-section.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_main-section.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_main-section.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_map.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_map.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_map.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_map.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_pages-nav.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_pages-nav.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_pages-nav.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_pages-nav.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_pages.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_pages.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_pages.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_pages.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_panel-user-management.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_panel-user-management.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_panel-user-management.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_panel-user-management.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_panel.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_panel.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_panel.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_panel.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_registration.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_registration.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_registration.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_registration.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_seal-relation.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_seal-relation.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_seal-relation.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_seal-relation.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_search-result-header.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_search-result-header.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_search-result-header.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_search-result-header.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_sidebar.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_sidebar.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_sidebar.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_sidebar.scss
diff --git a/src/themes/BaseV1/assets/css/sass/application/_subsite.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/application/_subsite.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/application/_subsite.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/application/_subsite.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_activities-list.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_activities-list.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_activities-list.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_activities-list.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_agents-group.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_agents-group.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_agents-group.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_agents-group.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_ajax-uploader.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_ajax-uploader.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_ajax-uploader.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_ajax-uploader.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_alerts.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_alerts.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_alerts.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_alerts.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_all-components.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_all-components.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_all-components.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_all-components.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_auto-complete-search.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_auto-complete-search.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_auto-complete-search.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_auto-complete-search.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_buttons.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_buttons.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_buttons.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_buttons.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_chats.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_chats.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_chats.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_chats.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_contracts-table.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_contracts-table.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_contracts-table.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_contracts-table.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_dropdown.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_dropdown.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_dropdown.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_dropdown.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_edit-box.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_edit-box.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_edit-box.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_edit-box.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_editable-select.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_editable-select.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_editable-select.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_editable-select.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_entity-search.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_entity-search.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_entity-search.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_entity-search.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_forms.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_forms.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_forms.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_forms.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_highlighted-message.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_highlighted-message.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_highlighted-message.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_highlighted-message.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_icons.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_icons.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_icons.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_icons.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_image-gallery.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_image-gallery.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_image-gallery.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_image-gallery.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_images.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_images.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_images.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_images.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_modal.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_modal.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_modal.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_modal.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_opportunities-accountability.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_opportunities-accountability.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_opportunities-accountability.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_opportunities-accountability.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_opportunities-projets.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_opportunities-projets.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_opportunities-projets.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_opportunities-projets.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_private-info.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_private-info.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_private-info.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_private-info.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_registration-form.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_registration-form.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_registration-form.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_registration-form.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_registrations-tables.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_registrations-tables.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_registrations-tables.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_registrations-tables.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_seals-group.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_seals-group.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_seals-group.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_seals-group.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_share-number.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_share-number.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_share-number.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_share-number.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_social-share-buttons.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_social-share-buttons.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_social-share-buttons.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_social-share-buttons.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_subsite-group.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_subsite-group.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_subsite-group.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_subsite-group.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_tabs.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_tabs.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_tabs.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_tabs.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_tags.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_tags.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_tags.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_tags.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_tooltips.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_tooltips.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_tooltips.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_tooltips.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_user-stats.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_user-stats.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_user-stats.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_user-stats.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_venue-status.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_venue-status.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_venue-status.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_venue-status.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_verified-seal.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_verified-seal.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_verified-seal.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_verified-seal.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_video-gallery.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_video-gallery.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_video-gallery.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_video-gallery.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_video.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_video.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_video.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_video.scss
diff --git a/src/themes/BaseV1/assets/css/sass/components/_widget.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/components/_widget.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/components/_widget.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/components/_widget.scss
diff --git a/src/themes/BaseV1/assets/css/sass/globals/_all-globals.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/globals/_all-globals.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/globals/_all-globals.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/globals/_all-globals.scss
diff --git a/src/themes/BaseV1/assets/css/sass/globals/_mixins.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/globals/_mixins.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/globals/_mixins.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/globals/_mixins.scss
diff --git a/src/themes/BaseV1/assets/css/sass/globals/_variables.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/globals/_variables.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/globals/_variables.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/globals/_variables.scss
diff --git a/src/themes/BaseV1/assets/css/sass/main.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/main.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/main.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/main.scss
diff --git a/src/themes/BaseV1/assets/css/sass/modules/_all-modules.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/modules/_all-modules.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/modules/_all-modules.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/modules/_all-modules.scss
diff --git a/src/themes/BaseV1/assets/css/sass/modules/_base.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/modules/_base.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/modules/_base.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/modules/_base.scss
diff --git a/src/themes/BaseV1/assets/css/sass/modules/_reset.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/modules/_reset.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/modules/_reset.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/modules/_reset.scss
diff --git a/src/themes/BaseV1/assets/css/sass/modules/_typography.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/modules/_typography.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/modules/_typography.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/modules/_typography.scss
diff --git a/src/themes/BaseV1/assets/css/sass/modules/_utilities.scss b/api/mapas/src/themes/BaseV1/assets/css/sass/modules/_utilities.scss
similarity index 100%
rename from src/themes/BaseV1/assets/css/sass/modules/_utilities.scss
rename to api/mapas/src/themes/BaseV1/assets/css/sass/modules/_utilities.scss
diff --git a/src/themes/BaseV1/assets/css/seal-locked-conf.css b/api/mapas/src/themes/BaseV1/assets/css/seal-locked-conf.css
similarity index 100%
rename from src/themes/BaseV1/assets/css/seal-locked-conf.css
rename to api/mapas/src/themes/BaseV1/assets/css/seal-locked-conf.css
diff --git a/src/themes/BaseV1/assets/css/staging.css b/api/mapas/src/themes/BaseV1/assets/css/staging.css
similarity index 100%
rename from src/themes/BaseV1/assets/css/staging.css
rename to api/mapas/src/themes/BaseV1/assets/css/staging.css
diff --git a/src/themes/BaseV1/assets/fonts/ElegantIcons.eot b/api/mapas/src/themes/BaseV1/assets/fonts/ElegantIcons.eot
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/ElegantIcons.eot
rename to api/mapas/src/themes/BaseV1/assets/fonts/ElegantIcons.eot
diff --git a/src/themes/BaseV1/assets/fonts/ElegantIcons.ttf b/api/mapas/src/themes/BaseV1/assets/fonts/ElegantIcons.ttf
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/ElegantIcons.ttf
rename to api/mapas/src/themes/BaseV1/assets/fonts/ElegantIcons.ttf
diff --git a/src/themes/BaseV1/assets/fonts/ElegantIcons.woff b/api/mapas/src/themes/BaseV1/assets/fonts/ElegantIcons.woff
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/ElegantIcons.woff
rename to api/mapas/src/themes/BaseV1/assets/fonts/ElegantIcons.woff
diff --git a/src/themes/BaseV1/assets/fonts/OpenSans-Bold-webfont.eot b/api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Bold-webfont.eot
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/OpenSans-Bold-webfont.eot
rename to api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Bold-webfont.eot
diff --git a/src/themes/BaseV1/assets/fonts/OpenSans-Bold-webfont.ttf b/api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Bold-webfont.ttf
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/OpenSans-Bold-webfont.ttf
rename to api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Bold-webfont.ttf
diff --git a/src/themes/BaseV1/assets/fonts/OpenSans-Bold-webfont.woff b/api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Bold-webfont.woff
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/OpenSans-Bold-webfont.woff
rename to api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Bold-webfont.woff
diff --git a/src/themes/BaseV1/assets/fonts/OpenSans-BoldItalic-webfont.eot b/api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-BoldItalic-webfont.eot
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/OpenSans-BoldItalic-webfont.eot
rename to api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-BoldItalic-webfont.eot
diff --git a/src/themes/BaseV1/assets/fonts/OpenSans-BoldItalic-webfont.ttf b/api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-BoldItalic-webfont.ttf
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/OpenSans-BoldItalic-webfont.ttf
rename to api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-BoldItalic-webfont.ttf
diff --git a/src/themes/BaseV1/assets/fonts/OpenSans-BoldItalic-webfont.woff b/api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-BoldItalic-webfont.woff
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/OpenSans-BoldItalic-webfont.woff
rename to api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-BoldItalic-webfont.woff
diff --git a/src/themes/BaseV1/assets/fonts/OpenSans-Italic-webfont.eot b/api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Italic-webfont.eot
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/OpenSans-Italic-webfont.eot
rename to api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Italic-webfont.eot
diff --git a/src/themes/BaseV1/assets/fonts/OpenSans-Italic-webfont.ttf b/api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Italic-webfont.ttf
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/OpenSans-Italic-webfont.ttf
rename to api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Italic-webfont.ttf
diff --git a/src/themes/BaseV1/assets/fonts/OpenSans-Italic-webfont.woff b/api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Italic-webfont.woff
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/OpenSans-Italic-webfont.woff
rename to api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Italic-webfont.woff
diff --git a/src/themes/BaseV1/assets/fonts/OpenSans-Regular-webfont.eot b/api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Regular-webfont.eot
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/OpenSans-Regular-webfont.eot
rename to api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Regular-webfont.eot
diff --git a/src/themes/BaseV1/assets/fonts/OpenSans-Regular-webfont.ttf b/api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Regular-webfont.ttf
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/OpenSans-Regular-webfont.ttf
rename to api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Regular-webfont.ttf
diff --git a/src/themes/BaseV1/assets/fonts/OpenSans-Regular-webfont.woff b/api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Regular-webfont.woff
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/OpenSans-Regular-webfont.woff
rename to api/mapas/src/themes/BaseV1/assets/fonts/OpenSans-Regular-webfont.woff
diff --git a/src/themes/BaseV1/assets/fonts/aleo-bold-webfont.eot b/api/mapas/src/themes/BaseV1/assets/fonts/aleo-bold-webfont.eot
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/aleo-bold-webfont.eot
rename to api/mapas/src/themes/BaseV1/assets/fonts/aleo-bold-webfont.eot
diff --git a/src/themes/BaseV1/assets/fonts/aleo-bold-webfont.ttf b/api/mapas/src/themes/BaseV1/assets/fonts/aleo-bold-webfont.ttf
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/aleo-bold-webfont.ttf
rename to api/mapas/src/themes/BaseV1/assets/fonts/aleo-bold-webfont.ttf
diff --git a/src/themes/BaseV1/assets/fonts/aleo-bold-webfont.woff b/api/mapas/src/themes/BaseV1/assets/fonts/aleo-bold-webfont.woff
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/aleo-bold-webfont.woff
rename to api/mapas/src/themes/BaseV1/assets/fonts/aleo-bold-webfont.woff
diff --git a/src/themes/BaseV1/assets/fonts/aleo-bolditalic-webfont.eot b/api/mapas/src/themes/BaseV1/assets/fonts/aleo-bolditalic-webfont.eot
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/aleo-bolditalic-webfont.eot
rename to api/mapas/src/themes/BaseV1/assets/fonts/aleo-bolditalic-webfont.eot
diff --git a/src/themes/BaseV1/assets/fonts/aleo-bolditalic-webfont.ttf b/api/mapas/src/themes/BaseV1/assets/fonts/aleo-bolditalic-webfont.ttf
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/aleo-bolditalic-webfont.ttf
rename to api/mapas/src/themes/BaseV1/assets/fonts/aleo-bolditalic-webfont.ttf
diff --git a/src/themes/BaseV1/assets/fonts/aleo-bolditalic-webfont.woff b/api/mapas/src/themes/BaseV1/assets/fonts/aleo-bolditalic-webfont.woff
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/aleo-bolditalic-webfont.woff
rename to api/mapas/src/themes/BaseV1/assets/fonts/aleo-bolditalic-webfont.woff
diff --git a/src/themes/BaseV1/assets/fonts/aleo-light-webfont.eot b/api/mapas/src/themes/BaseV1/assets/fonts/aleo-light-webfont.eot
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/aleo-light-webfont.eot
rename to api/mapas/src/themes/BaseV1/assets/fonts/aleo-light-webfont.eot
diff --git a/src/themes/BaseV1/assets/fonts/aleo-light-webfont.svg b/api/mapas/src/themes/BaseV1/assets/fonts/aleo-light-webfont.svg
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/aleo-light-webfont.svg
rename to api/mapas/src/themes/BaseV1/assets/fonts/aleo-light-webfont.svg
diff --git a/src/themes/BaseV1/assets/fonts/aleo-light-webfont.ttf b/api/mapas/src/themes/BaseV1/assets/fonts/aleo-light-webfont.ttf
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/aleo-light-webfont.ttf
rename to api/mapas/src/themes/BaseV1/assets/fonts/aleo-light-webfont.ttf
diff --git a/src/themes/BaseV1/assets/fonts/aleo-light-webfont.woff b/api/mapas/src/themes/BaseV1/assets/fonts/aleo-light-webfont.woff
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/aleo-light-webfont.woff
rename to api/mapas/src/themes/BaseV1/assets/fonts/aleo-light-webfont.woff
diff --git a/src/themes/BaseV1/assets/fonts/aleo-regular-webfont.eot b/api/mapas/src/themes/BaseV1/assets/fonts/aleo-regular-webfont.eot
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/aleo-regular-webfont.eot
rename to api/mapas/src/themes/BaseV1/assets/fonts/aleo-regular-webfont.eot
diff --git a/src/themes/BaseV1/assets/fonts/aleo-regular-webfont.svg b/api/mapas/src/themes/BaseV1/assets/fonts/aleo-regular-webfont.svg
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/aleo-regular-webfont.svg
rename to api/mapas/src/themes/BaseV1/assets/fonts/aleo-regular-webfont.svg
diff --git a/src/themes/BaseV1/assets/fonts/aleo-regular-webfont.ttf b/api/mapas/src/themes/BaseV1/assets/fonts/aleo-regular-webfont.ttf
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/aleo-regular-webfont.ttf
rename to api/mapas/src/themes/BaseV1/assets/fonts/aleo-regular-webfont.ttf
diff --git a/src/themes/BaseV1/assets/fonts/aleo-regular-webfont.woff b/api/mapas/src/themes/BaseV1/assets/fonts/aleo-regular-webfont.woff
similarity index 100%
rename from src/themes/BaseV1/assets/fonts/aleo-regular-webfont.woff
rename to api/mapas/src/themes/BaseV1/assets/fonts/aleo-regular-webfont.woff
diff --git a/src/themes/BaseV1/assets/img/agrupador-agent.png b/api/mapas/src/themes/BaseV1/assets/img/agrupador-agent.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-agent.png
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-agent.png
diff --git a/src/themes/BaseV1/assets/img/agrupador-agente.png b/api/mapas/src/themes/BaseV1/assets/img/agrupador-agente.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-agente.png
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-agente.png
diff --git a/src/themes/BaseV1/assets/img/agrupador-combinado-agent-event.png b/api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-agent-event.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-combinado-agent-event.png
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-agent-event.png
diff --git a/src/themes/BaseV1/assets/img/agrupador-combinado-agent-event.svg b/api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-agent-event.svg
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-combinado-agent-event.svg
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-agent-event.svg
diff --git a/src/themes/BaseV1/assets/img/agrupador-combinado-agent-space-event.svg b/api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-agent-space-event.svg
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-combinado-agent-space-event.svg
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-agent-space-event.svg
diff --git a/src/themes/BaseV1/assets/img/agrupador-combinado-agente-espaco-evento.svg b/api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-agente-espaco-evento.svg
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-combinado-agente-espaco-evento.svg
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-agente-espaco-evento.svg
diff --git a/src/themes/BaseV1/assets/img/agrupador-combinado-agente-evento.png b/api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-agente-evento.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-combinado-agente-evento.png
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-agente-evento.png
diff --git a/src/themes/BaseV1/assets/img/agrupador-combinado-agente-evento.svg b/api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-agente-evento.svg
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-combinado-agente-evento.svg
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-agente-evento.svg
diff --git a/src/themes/BaseV1/assets/img/agrupador-combinado-espaco-agente.png b/api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-espaco-agente.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-combinado-espaco-agente.png
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-espaco-agente.png
diff --git a/src/themes/BaseV1/assets/img/agrupador-combinado-espaco-agente.svg b/api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-espaco-agente.svg
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-combinado-espaco-agente.svg
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-espaco-agente.svg
diff --git a/src/themes/BaseV1/assets/img/agrupador-combinado-espaco-evento.png b/api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-espaco-evento.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-combinado-espaco-evento.png
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-espaco-evento.png
diff --git a/src/themes/BaseV1/assets/img/agrupador-combinado-espaco-evento.svg b/api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-espaco-evento.svg
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-combinado-espaco-evento.svg
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-espaco-evento.svg
diff --git a/src/themes/BaseV1/assets/img/agrupador-combinado-space-agent.png b/api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-space-agent.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-combinado-space-agent.png
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-space-agent.png
diff --git a/src/themes/BaseV1/assets/img/agrupador-combinado-space-agent.svg b/api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-space-agent.svg
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-combinado-space-agent.svg
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-space-agent.svg
diff --git a/src/themes/BaseV1/assets/img/agrupador-combinado-space-event.png b/api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-space-event.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-combinado-space-event.png
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-space-event.png
diff --git a/src/themes/BaseV1/assets/img/agrupador-combinado-space-event.svg b/api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-space-event.svg
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-combinado-space-event.svg
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado-space-event.svg
diff --git a/src/themes/BaseV1/assets/img/agrupador-combinado.png b/api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-combinado.png
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-combinado.png
diff --git a/src/themes/BaseV1/assets/img/agrupador-espaco.png b/api/mapas/src/themes/BaseV1/assets/img/agrupador-espaco.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-espaco.png
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-espaco.png
diff --git a/src/themes/BaseV1/assets/img/agrupador-event.png b/api/mapas/src/themes/BaseV1/assets/img/agrupador-event.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-event.png
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-event.png
diff --git a/src/themes/BaseV1/assets/img/agrupador-evento.png b/api/mapas/src/themes/BaseV1/assets/img/agrupador-evento.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-evento.png
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-evento.png
diff --git a/src/themes/BaseV1/assets/img/agrupador-space.png b/api/mapas/src/themes/BaseV1/assets/img/agrupador-space.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/agrupador-space.png
rename to api/mapas/src/themes/BaseV1/assets/img/agrupador-space.png
diff --git a/src/themes/BaseV1/assets/img/avatar--agent.png b/api/mapas/src/themes/BaseV1/assets/img/avatar--agent.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/avatar--agent.png
rename to api/mapas/src/themes/BaseV1/assets/img/avatar--agent.png
diff --git a/src/themes/BaseV1/assets/img/avatar--event.png b/api/mapas/src/themes/BaseV1/assets/img/avatar--event.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/avatar--event.png
rename to api/mapas/src/themes/BaseV1/assets/img/avatar--event.png
diff --git a/src/themes/BaseV1/assets/img/avatar--opportunity.png b/api/mapas/src/themes/BaseV1/assets/img/avatar--opportunity.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/avatar--opportunity.png
rename to api/mapas/src/themes/BaseV1/assets/img/avatar--opportunity.png
diff --git a/src/themes/BaseV1/assets/img/avatar--project.png b/api/mapas/src/themes/BaseV1/assets/img/avatar--project.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/avatar--project.png
rename to api/mapas/src/themes/BaseV1/assets/img/avatar--project.png
diff --git a/src/themes/BaseV1/assets/img/avatar--seal.png b/api/mapas/src/themes/BaseV1/assets/img/avatar--seal.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/avatar--seal.png
rename to api/mapas/src/themes/BaseV1/assets/img/avatar--seal.png
diff --git a/src/themes/BaseV1/assets/img/avatar--space.png b/api/mapas/src/themes/BaseV1/assets/img/avatar--space.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/avatar--space.png
rename to api/mapas/src/themes/BaseV1/assets/img/avatar--space.png
diff --git a/src/themes/BaseV1/assets/img/favicon-32.ico b/api/mapas/src/themes/BaseV1/assets/img/favicon-32.ico
similarity index 100%
rename from src/themes/BaseV1/assets/img/favicon-32.ico
rename to api/mapas/src/themes/BaseV1/assets/img/favicon-32.ico
diff --git a/src/themes/BaseV1/assets/img/favicon.ico b/api/mapas/src/themes/BaseV1/assets/img/favicon.ico
similarity index 100%
rename from src/themes/BaseV1/assets/img/favicon.ico
rename to api/mapas/src/themes/BaseV1/assets/img/favicon.ico
diff --git a/src/themes/BaseV1/assets/img/fundo.png b/api/mapas/src/themes/BaseV1/assets/img/fundo.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/fundo.png
rename to api/mapas/src/themes/BaseV1/assets/img/fundo.png
diff --git a/src/themes/BaseV1/assets/img/icon-agent.png b/api/mapas/src/themes/BaseV1/assets/img/icon-agent.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/icon-agent.png
rename to api/mapas/src/themes/BaseV1/assets/img/icon-agent.png
diff --git a/src/themes/BaseV1/assets/img/icon-agente.png b/api/mapas/src/themes/BaseV1/assets/img/icon-agente.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/icon-agente.png
rename to api/mapas/src/themes/BaseV1/assets/img/icon-agente.png
diff --git a/src/themes/BaseV1/assets/img/icon-circulo.png b/api/mapas/src/themes/BaseV1/assets/img/icon-circulo.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/icon-circulo.png
rename to api/mapas/src/themes/BaseV1/assets/img/icon-circulo.png
diff --git a/src/themes/BaseV1/assets/img/icon-espaco.png b/api/mapas/src/themes/BaseV1/assets/img/icon-espaco.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/icon-espaco.png
rename to api/mapas/src/themes/BaseV1/assets/img/icon-espaco.png
diff --git a/src/themes/BaseV1/assets/img/icon-event.png b/api/mapas/src/themes/BaseV1/assets/img/icon-event.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/icon-event.png
rename to api/mapas/src/themes/BaseV1/assets/img/icon-event.png
diff --git a/src/themes/BaseV1/assets/img/icon-evento.png b/api/mapas/src/themes/BaseV1/assets/img/icon-evento.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/icon-evento.png
rename to api/mapas/src/themes/BaseV1/assets/img/icon-evento.png
diff --git a/src/themes/BaseV1/assets/img/icon-fullscreen.png b/api/mapas/src/themes/BaseV1/assets/img/icon-fullscreen.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/icon-fullscreen.png
rename to api/mapas/src/themes/BaseV1/assets/img/icon-fullscreen.png
diff --git a/src/themes/BaseV1/assets/img/icon-localizacao.png b/api/mapas/src/themes/BaseV1/assets/img/icon-localizacao.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/icon-localizacao.png
rename to api/mapas/src/themes/BaseV1/assets/img/icon-localizacao.png
diff --git a/src/themes/BaseV1/assets/img/icon-project.png b/api/mapas/src/themes/BaseV1/assets/img/icon-project.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/icon-project.png
rename to api/mapas/src/themes/BaseV1/assets/img/icon-project.png
diff --git a/src/themes/BaseV1/assets/img/icon-projeto.png b/api/mapas/src/themes/BaseV1/assets/img/icon-projeto.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/icon-projeto.png
rename to api/mapas/src/themes/BaseV1/assets/img/icon-projeto.png
diff --git a/src/themes/BaseV1/assets/img/icon-seal.png b/api/mapas/src/themes/BaseV1/assets/img/icon-seal.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/icon-seal.png
rename to api/mapas/src/themes/BaseV1/assets/img/icon-seal.png
diff --git a/src/themes/BaseV1/assets/img/icon-selo.png b/api/mapas/src/themes/BaseV1/assets/img/icon-selo.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/icon-selo.png
rename to api/mapas/src/themes/BaseV1/assets/img/icon-selo.png
diff --git a/src/themes/BaseV1/assets/img/icon-space.png b/api/mapas/src/themes/BaseV1/assets/img/icon-space.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/icon-space.png
rename to api/mapas/src/themes/BaseV1/assets/img/icon-space.png
diff --git a/src/themes/BaseV1/assets/img/icon-zoom-in.png b/api/mapas/src/themes/BaseV1/assets/img/icon-zoom-in.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/icon-zoom-in.png
rename to api/mapas/src/themes/BaseV1/assets/img/icon-zoom-in.png
diff --git a/src/themes/BaseV1/assets/img/icon-zoom-out.png b/api/mapas/src/themes/BaseV1/assets/img/icon-zoom-out.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/icon-zoom-out.png
rename to api/mapas/src/themes/BaseV1/assets/img/icon-zoom-out.png
diff --git a/src/themes/BaseV1/assets/img/instituto-tim-white.png b/api/mapas/src/themes/BaseV1/assets/img/instituto-tim-white.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/instituto-tim-white.png
rename to api/mapas/src/themes/BaseV1/assets/img/instituto-tim-white.png
diff --git a/src/themes/BaseV1/assets/img/layers.png b/api/mapas/src/themes/BaseV1/assets/img/layers.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/layers.png
rename to api/mapas/src/themes/BaseV1/assets/img/layers.png
diff --git a/src/themes/BaseV1/assets/img/marca-da-org.png b/api/mapas/src/themes/BaseV1/assets/img/marca-da-org.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/marca-da-org.png
rename to api/mapas/src/themes/BaseV1/assets/img/marca-da-org.png
diff --git a/src/themes/BaseV1/assets/img/marker-icon.png b/api/mapas/src/themes/BaseV1/assets/img/marker-icon.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/marker-icon.png
rename to api/mapas/src/themes/BaseV1/assets/img/marker-icon.png
diff --git a/src/themes/BaseV1/assets/img/pin-agent.png b/api/mapas/src/themes/BaseV1/assets/img/pin-agent.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/pin-agent.png
rename to api/mapas/src/themes/BaseV1/assets/img/pin-agent.png
diff --git a/src/themes/BaseV1/assets/img/pin-agent.svg b/api/mapas/src/themes/BaseV1/assets/img/pin-agent.svg
similarity index 100%
rename from src/themes/BaseV1/assets/img/pin-agent.svg
rename to api/mapas/src/themes/BaseV1/assets/img/pin-agent.svg
diff --git a/src/themes/BaseV1/assets/img/pin-agente.png b/api/mapas/src/themes/BaseV1/assets/img/pin-agente.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/pin-agente.png
rename to api/mapas/src/themes/BaseV1/assets/img/pin-agente.png
diff --git a/src/themes/BaseV1/assets/img/pin-agente.svg b/api/mapas/src/themes/BaseV1/assets/img/pin-agente.svg
similarity index 100%
rename from src/themes/BaseV1/assets/img/pin-agente.svg
rename to api/mapas/src/themes/BaseV1/assets/img/pin-agente.svg
diff --git a/src/themes/BaseV1/assets/img/pin-espaco.png b/api/mapas/src/themes/BaseV1/assets/img/pin-espaco.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/pin-espaco.png
rename to api/mapas/src/themes/BaseV1/assets/img/pin-espaco.png
diff --git a/src/themes/BaseV1/assets/img/pin-espaco.svg b/api/mapas/src/themes/BaseV1/assets/img/pin-espaco.svg
similarity index 100%
rename from src/themes/BaseV1/assets/img/pin-espaco.svg
rename to api/mapas/src/themes/BaseV1/assets/img/pin-espaco.svg
diff --git a/src/themes/BaseV1/assets/img/pin-event.png b/api/mapas/src/themes/BaseV1/assets/img/pin-event.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/pin-event.png
rename to api/mapas/src/themes/BaseV1/assets/img/pin-event.png
diff --git a/src/themes/BaseV1/assets/img/pin-event.svg b/api/mapas/src/themes/BaseV1/assets/img/pin-event.svg
similarity index 100%
rename from src/themes/BaseV1/assets/img/pin-event.svg
rename to api/mapas/src/themes/BaseV1/assets/img/pin-event.svg
diff --git a/src/themes/BaseV1/assets/img/pin-evento.png b/api/mapas/src/themes/BaseV1/assets/img/pin-evento.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/pin-evento.png
rename to api/mapas/src/themes/BaseV1/assets/img/pin-evento.png
diff --git a/src/themes/BaseV1/assets/img/pin-evento.svg b/api/mapas/src/themes/BaseV1/assets/img/pin-evento.svg
similarity index 100%
rename from src/themes/BaseV1/assets/img/pin-evento.svg
rename to api/mapas/src/themes/BaseV1/assets/img/pin-evento.svg
diff --git a/src/themes/BaseV1/assets/img/pin-seal.png b/api/mapas/src/themes/BaseV1/assets/img/pin-seal.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/pin-seal.png
rename to api/mapas/src/themes/BaseV1/assets/img/pin-seal.png
diff --git a/src/themes/BaseV1/assets/img/pin-selo.png b/api/mapas/src/themes/BaseV1/assets/img/pin-selo.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/pin-selo.png
rename to api/mapas/src/themes/BaseV1/assets/img/pin-selo.png
diff --git a/src/themes/BaseV1/assets/img/pin-single-example.svg b/api/mapas/src/themes/BaseV1/assets/img/pin-single-example.svg
similarity index 100%
rename from src/themes/BaseV1/assets/img/pin-single-example.svg
rename to api/mapas/src/themes/BaseV1/assets/img/pin-single-example.svg
diff --git a/src/themes/BaseV1/assets/img/pin-sombra.png b/api/mapas/src/themes/BaseV1/assets/img/pin-sombra.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/pin-sombra.png
rename to api/mapas/src/themes/BaseV1/assets/img/pin-sombra.png
diff --git a/src/themes/BaseV1/assets/img/pin-space.png b/api/mapas/src/themes/BaseV1/assets/img/pin-space.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/pin-space.png
rename to api/mapas/src/themes/BaseV1/assets/img/pin-space.png
diff --git a/src/themes/BaseV1/assets/img/pin-space.svg b/api/mapas/src/themes/BaseV1/assets/img/pin-space.svg
similarity index 100%
rename from src/themes/BaseV1/assets/img/pin-space.svg
rename to api/mapas/src/themes/BaseV1/assets/img/pin-space.svg
diff --git a/src/themes/BaseV1/assets/img/setinhas-editable.png b/api/mapas/src/themes/BaseV1/assets/img/setinhas-editable.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/setinhas-editable.png
rename to api/mapas/src/themes/BaseV1/assets/img/setinhas-editable.png
diff --git a/src/themes/BaseV1/assets/img/share.png b/api/mapas/src/themes/BaseV1/assets/img/share.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/share.png
rename to api/mapas/src/themes/BaseV1/assets/img/share.png
diff --git a/src/themes/BaseV1/assets/img/spinner-black.gif b/api/mapas/src/themes/BaseV1/assets/img/spinner-black.gif
similarity index 100%
rename from src/themes/BaseV1/assets/img/spinner-black.gif
rename to api/mapas/src/themes/BaseV1/assets/img/spinner-black.gif
diff --git a/src/themes/BaseV1/assets/img/spinner.gif b/api/mapas/src/themes/BaseV1/assets/img/spinner.gif
similarity index 100%
rename from src/themes/BaseV1/assets/img/spinner.gif
rename to api/mapas/src/themes/BaseV1/assets/img/spinner.gif
diff --git a/src/themes/BaseV1/assets/img/spinner_192.gif b/api/mapas/src/themes/BaseV1/assets/img/spinner_192.gif
similarity index 100%
rename from src/themes/BaseV1/assets/img/spinner_192.gif
rename to api/mapas/src/themes/BaseV1/assets/img/spinner_192.gif
diff --git a/src/themes/BaseV1/assets/img/tim.png b/api/mapas/src/themes/BaseV1/assets/img/tim.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/tim.png
rename to api/mapas/src/themes/BaseV1/assets/img/tim.png
diff --git a/src/themes/BaseV1/assets/img/tour/tour01.png b/api/mapas/src/themes/BaseV1/assets/img/tour/tour01.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/tour/tour01.png
rename to api/mapas/src/themes/BaseV1/assets/img/tour/tour01.png
diff --git a/src/themes/BaseV1/assets/img/tour/tour02.png b/api/mapas/src/themes/BaseV1/assets/img/tour/tour02.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/tour/tour02.png
rename to api/mapas/src/themes/BaseV1/assets/img/tour/tour02.png
diff --git a/src/themes/BaseV1/assets/img/tour/tour03.png b/api/mapas/src/themes/BaseV1/assets/img/tour/tour03.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/tour/tour03.png
rename to api/mapas/src/themes/BaseV1/assets/img/tour/tour03.png
diff --git a/src/themes/BaseV1/assets/img/tour/tour04.png b/api/mapas/src/themes/BaseV1/assets/img/tour/tour04.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/tour/tour04.png
rename to api/mapas/src/themes/BaseV1/assets/img/tour/tour04.png
diff --git a/src/themes/BaseV1/assets/img/tour/tour05.png b/api/mapas/src/themes/BaseV1/assets/img/tour/tour05.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/tour/tour05.png
rename to api/mapas/src/themes/BaseV1/assets/img/tour/tour05.png
diff --git a/src/themes/BaseV1/assets/img/unverified-seal.png b/api/mapas/src/themes/BaseV1/assets/img/unverified-seal.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/unverified-seal.png
rename to api/mapas/src/themes/BaseV1/assets/img/unverified-seal.png
diff --git a/src/themes/BaseV1/assets/img/verified-icon.png b/api/mapas/src/themes/BaseV1/assets/img/verified-icon.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/verified-icon.png
rename to api/mapas/src/themes/BaseV1/assets/img/verified-icon.png
diff --git a/src/themes/BaseV1/assets/img/verified-seal-small.png b/api/mapas/src/themes/BaseV1/assets/img/verified-seal-small.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/verified-seal-small.png
rename to api/mapas/src/themes/BaseV1/assets/img/verified-seal-small.png
diff --git a/src/themes/BaseV1/assets/img/verified-seal.png b/api/mapas/src/themes/BaseV1/assets/img/verified-seal.png
similarity index 100%
rename from src/themes/BaseV1/assets/img/verified-seal.png
rename to api/mapas/src/themes/BaseV1/assets/img/verified-seal.png
diff --git a/src/themes/BaseV1/assets/js/__TemplateAngularModule__.js b/api/mapas/src/themes/BaseV1/assets/js/__TemplateAngularModule__.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/__TemplateAngularModule__.js
rename to api/mapas/src/themes/BaseV1/assets/js/__TemplateAngularModule__.js
diff --git a/src/themes/BaseV1/assets/js/customizable.js b/api/mapas/src/themes/BaseV1/assets/js/customizable.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/customizable.js
rename to api/mapas/src/themes/BaseV1/assets/js/customizable.js
diff --git a/src/themes/BaseV1/assets/js/directives/edit-box.html b/api/mapas/src/themes/BaseV1/assets/js/directives/edit-box.html
similarity index 100%
rename from src/themes/BaseV1/assets/js/directives/edit-box.html
rename to api/mapas/src/themes/BaseV1/assets/js/directives/edit-box.html
diff --git a/src/themes/BaseV1/assets/js/directives/editableMultiselect.html b/api/mapas/src/themes/BaseV1/assets/js/directives/editableMultiselect.html
similarity index 100%
rename from src/themes/BaseV1/assets/js/directives/editableMultiselect.html
rename to api/mapas/src/themes/BaseV1/assets/js/directives/editableMultiselect.html
diff --git a/src/themes/BaseV1/assets/js/directives/editableSingleselect.html b/api/mapas/src/themes/BaseV1/assets/js/directives/editableSingleselect.html
similarity index 100%
rename from src/themes/BaseV1/assets/js/directives/editableSingleselect.html
rename to api/mapas/src/themes/BaseV1/assets/js/directives/editableSingleselect.html
diff --git a/src/themes/BaseV1/assets/js/directives/find-entity.html b/api/mapas/src/themes/BaseV1/assets/js/directives/find-entity.html
similarity index 100%
rename from src/themes/BaseV1/assets/js/directives/find-entity.html
rename to api/mapas/src/themes/BaseV1/assets/js/directives/find-entity.html
diff --git a/src/themes/BaseV1/assets/js/directives/mc-select.html b/api/mapas/src/themes/BaseV1/assets/js/directives/mc-select.html
similarity index 100%
rename from src/themes/BaseV1/assets/js/directives/mc-select.html
rename to api/mapas/src/themes/BaseV1/assets/js/directives/mc-select.html
diff --git a/src/themes/BaseV1/assets/js/directives/multiselect.html b/api/mapas/src/themes/BaseV1/assets/js/directives/multiselect.html
similarity index 100%
rename from src/themes/BaseV1/assets/js/directives/multiselect.html
rename to api/mapas/src/themes/BaseV1/assets/js/directives/multiselect.html
diff --git a/src/themes/BaseV1/assets/js/directives/singleselect.html b/api/mapas/src/themes/BaseV1/assets/js/directives/singleselect.html
similarity index 100%
rename from src/themes/BaseV1/assets/js/directives/singleselect.html
rename to api/mapas/src/themes/BaseV1/assets/js/directives/singleselect.html
diff --git a/src/themes/BaseV1/assets/js/editable.js b/api/mapas/src/themes/BaseV1/assets/js/editable.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/editable.js
rename to api/mapas/src/themes/BaseV1/assets/js/editable.js
diff --git a/src/themes/BaseV1/assets/js/evaluations.js b/api/mapas/src/themes/BaseV1/assets/js/evaluations.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/evaluations.js
rename to api/mapas/src/themes/BaseV1/assets/js/evaluations.js
diff --git a/src/themes/BaseV1/assets/js/events.js b/api/mapas/src/themes/BaseV1/assets/js/events.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/events.js
rename to api/mapas/src/themes/BaseV1/assets/js/events.js
diff --git a/src/themes/BaseV1/assets/js/form.js b/api/mapas/src/themes/BaseV1/assets/js/form.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/form.js
rename to api/mapas/src/themes/BaseV1/assets/js/form.js
diff --git a/src/themes/BaseV1/assets/js/google-geocoder.js b/api/mapas/src/themes/BaseV1/assets/js/google-geocoder.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/google-geocoder.js
rename to api/mapas/src/themes/BaseV1/assets/js/google-geocoder.js
diff --git a/src/themes/BaseV1/assets/js/html5.js b/api/mapas/src/themes/BaseV1/assets/js/html5.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/html5.js
rename to api/mapas/src/themes/BaseV1/assets/js/html5.js
diff --git a/src/themes/BaseV1/assets/js/ibge.js b/api/mapas/src/themes/BaseV1/assets/js/ibge.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ibge.js
rename to api/mapas/src/themes/BaseV1/assets/js/ibge.js
diff --git a/src/themes/BaseV1/assets/js/locale-specific/default.js b/api/mapas/src/themes/BaseV1/assets/js/locale-specific/default.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/locale-specific/default.js
rename to api/mapas/src/themes/BaseV1/assets/js/locale-specific/default.js
diff --git a/src/themes/BaseV1/assets/js/locale-specific/es_ES.js b/api/mapas/src/themes/BaseV1/assets/js/locale-specific/es_ES.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/locale-specific/es_ES.js
rename to api/mapas/src/themes/BaseV1/assets/js/locale-specific/es_ES.js
diff --git a/src/themes/BaseV1/assets/js/map.js b/api/mapas/src/themes/BaseV1/assets/js/map.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/map.js
rename to api/mapas/src/themes/BaseV1/assets/js/map.js
diff --git a/src/themes/BaseV1/assets/js/mapasculturais.js b/api/mapas/src/themes/BaseV1/assets/js/mapasculturais.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/mapasculturais.js
rename to api/mapas/src/themes/BaseV1/assets/js/mapasculturais.js
diff --git a/src/themes/BaseV1/assets/js/modal.js b/api/mapas/src/themes/BaseV1/assets/js/modal.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/modal.js
rename to api/mapas/src/themes/BaseV1/assets/js/modal.js
diff --git a/src/themes/BaseV1/assets/js/ng-mapasculturais.js b/api/mapas/src/themes/BaseV1/assets/js/ng-mapasculturais.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng-mapasculturais.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng-mapasculturais.js
diff --git a/src/themes/BaseV1/assets/js/ng.entity.app.js b/api/mapas/src/themes/BaseV1/assets/js/ng.entity.app.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.entity.app.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.entity.app.js
diff --git a/src/themes/BaseV1/assets/js/ng.entity.directive.editableMultiselect.js b/api/mapas/src/themes/BaseV1/assets/js/ng.entity.directive.editableMultiselect.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.entity.directive.editableMultiselect.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.entity.directive.editableMultiselect.js
diff --git a/src/themes/BaseV1/assets/js/ng.entity.directive.editableSingleselect.js b/api/mapas/src/themes/BaseV1/assets/js/ng.entity.directive.editableSingleselect.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.entity.directive.editableSingleselect.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.entity.directive.editableSingleselect.js
diff --git a/src/themes/BaseV1/assets/js/ng.entity.module.changeOwner.js b/api/mapas/src/themes/BaseV1/assets/js/ng.entity.module.changeOwner.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.entity.module.changeOwner.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.entity.module.changeOwner.js
diff --git a/src/themes/BaseV1/assets/js/ng.entity.module.opportunity.js b/api/mapas/src/themes/BaseV1/assets/js/ng.entity.module.opportunity.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.entity.module.opportunity.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.entity.module.opportunity.js
diff --git a/src/themes/BaseV1/assets/js/ng.entity.module.project.js b/api/mapas/src/themes/BaseV1/assets/js/ng.entity.module.project.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.entity.module.project.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.entity.module.project.js
diff --git a/src/themes/BaseV1/assets/js/ng.entity.module.relatedAgents.js b/api/mapas/src/themes/BaseV1/assets/js/ng.entity.module.relatedAgents.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.entity.module.relatedAgents.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.entity.module.relatedAgents.js
diff --git a/src/themes/BaseV1/assets/js/ng.entity.module.relatedSeals.js b/api/mapas/src/themes/BaseV1/assets/js/ng.entity.module.relatedSeals.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.entity.module.relatedSeals.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.entity.module.relatedSeals.js
diff --git a/src/themes/BaseV1/assets/js/ng.entity.module.subsite.js b/api/mapas/src/themes/BaseV1/assets/js/ng.entity.module.subsite.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.entity.module.subsite.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.entity.module.subsite.js
diff --git a/src/themes/BaseV1/assets/js/ng.entity.module.subsiteAdmins.js b/api/mapas/src/themes/BaseV1/assets/js/ng.entity.module.subsiteAdmins.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.entity.module.subsiteAdmins.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.entity.module.subsiteAdmins.js
diff --git a/src/themes/BaseV1/assets/js/ng.mc.directive.editBox.js b/api/mapas/src/themes/BaseV1/assets/js/ng.mc.directive.editBox.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.mc.directive.editBox.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.mc.directive.editBox.js
diff --git a/src/themes/BaseV1/assets/js/ng.mc.directive.mcSelect.js b/api/mapas/src/themes/BaseV1/assets/js/ng.mc.directive.mcSelect.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.mc.directive.mcSelect.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.mc.directive.mcSelect.js
diff --git a/src/themes/BaseV1/assets/js/ng.mc.directive.multiselect.js b/api/mapas/src/themes/BaseV1/assets/js/ng.mc.directive.multiselect.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.mc.directive.multiselect.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.mc.directive.multiselect.js
diff --git a/src/themes/BaseV1/assets/js/ng.mc.directive.singleselect.js b/api/mapas/src/themes/BaseV1/assets/js/ng.mc.directive.singleselect.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.mc.directive.singleselect.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.mc.directive.singleselect.js
diff --git a/src/themes/BaseV1/assets/js/ng.mc.module.findEntity.js b/api/mapas/src/themes/BaseV1/assets/js/ng.mc.module.findEntity.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.mc.module.findEntity.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.mc.module.findEntity.js
diff --git a/src/themes/BaseV1/assets/js/ng.mc.module.notifications.js b/api/mapas/src/themes/BaseV1/assets/js/ng.mc.module.notifications.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.mc.module.notifications.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.mc.module.notifications.js
diff --git a/src/themes/BaseV1/assets/js/ng.module.chat.js b/api/mapas/src/themes/BaseV1/assets/js/ng.module.chat.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.module.chat.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.module.chat.js
diff --git a/src/themes/BaseV1/assets/js/ng.opportunityPhases.js b/api/mapas/src/themes/BaseV1/assets/js/ng.opportunityPhases.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.opportunityPhases.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.opportunityPhases.js
diff --git a/src/themes/BaseV1/assets/js/ng.search.app.js b/api/mapas/src/themes/BaseV1/assets/js/ng.search.app.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.search.app.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.search.app.js
diff --git a/src/themes/BaseV1/assets/js/ng.search.controller.map.js b/api/mapas/src/themes/BaseV1/assets/js/ng.search.controller.map.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.search.controller.map.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.search.controller.map.js
diff --git a/src/themes/BaseV1/assets/js/ng.search.controller.spatial.js b/api/mapas/src/themes/BaseV1/assets/js/ng.search.controller.spatial.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.search.controller.spatial.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.search.controller.spatial.js
diff --git a/src/themes/BaseV1/assets/js/ng.search.service.find.js b/api/mapas/src/themes/BaseV1/assets/js/ng.search.service.find.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.search.service.find.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.search.service.find.js
diff --git a/src/themes/BaseV1/assets/js/ng.search.service.findOne.js b/api/mapas/src/themes/BaseV1/assets/js/ng.search.service.findOne.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.search.service.findOne.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.search.service.findOne.js
diff --git a/src/themes/BaseV1/assets/js/ng.user-management.js b/api/mapas/src/themes/BaseV1/assets/js/ng.user-management.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/ng.user-management.js
rename to api/mapas/src/themes/BaseV1/assets/js/ng.user-management.js
diff --git a/src/themes/BaseV1/assets/js/page.js b/api/mapas/src/themes/BaseV1/assets/js/page.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/page.js
rename to api/mapas/src/themes/BaseV1/assets/js/page.js
diff --git a/src/themes/BaseV1/assets/js/seal-locked-conf.js b/api/mapas/src/themes/BaseV1/assets/js/seal-locked-conf.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/seal-locked-conf.js
rename to api/mapas/src/themes/BaseV1/assets/js/seal-locked-conf.js
diff --git a/src/themes/BaseV1/assets/js/single-subsite.js b/api/mapas/src/themes/BaseV1/assets/js/single-subsite.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/single-subsite.js
rename to api/mapas/src/themes/BaseV1/assets/js/single-subsite.js
diff --git a/src/themes/BaseV1/assets/js/tim.js b/api/mapas/src/themes/BaseV1/assets/js/tim.js
similarity index 100%
rename from src/themes/BaseV1/assets/js/tim.js
rename to api/mapas/src/themes/BaseV1/assets/js/tim.js
diff --git a/src/themes/BaseV1/assets/mapasculturais_manual.odp b/api/mapas/src/themes/BaseV1/assets/mapasculturais_manual.odp
similarity index 100%
rename from src/themes/BaseV1/assets/mapasculturais_manual.odp
rename to api/mapas/src/themes/BaseV1/assets/mapasculturais_manual.odp
diff --git a/src/themes/BaseV1/db-updates.php b/api/mapas/src/themes/BaseV1/db-updates.php
similarity index 100%
rename from src/themes/BaseV1/db-updates.php
rename to api/mapas/src/themes/BaseV1/db-updates.php
diff --git a/src/themes/BaseV1/layouts/default.php b/api/mapas/src/themes/BaseV1/layouts/default.php
similarity index 100%
rename from src/themes/BaseV1/layouts/default.php
rename to api/mapas/src/themes/BaseV1/layouts/default.php
diff --git a/src/themes/BaseV1/layouts/nolayout.php b/api/mapas/src/themes/BaseV1/layouts/nolayout.php
similarity index 100%
rename from src/themes/BaseV1/layouts/nolayout.php
rename to api/mapas/src/themes/BaseV1/layouts/nolayout.php
diff --git a/src/themes/BaseV1/layouts/panel.php b/api/mapas/src/themes/BaseV1/layouts/panel.php
similarity index 100%
rename from src/themes/BaseV1/layouts/panel.php
rename to api/mapas/src/themes/BaseV1/layouts/panel.php
diff --git a/src/themes/BaseV1/layouts/parts/_empty.php b/api/mapas/src/themes/BaseV1/layouts/parts/_empty.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/_empty.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/_empty.php
diff --git a/src/themes/BaseV1/layouts/parts/ajax-uploader.php b/api/mapas/src/themes/BaseV1/layouts/parts/ajax-uploader.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/ajax-uploader.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/ajax-uploader.php
diff --git a/src/themes/BaseV1/layouts/parts/busca-avancada.php b/api/mapas/src/themes/BaseV1/layouts/parts/busca-avancada.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/busca-avancada.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/busca-avancada.php
diff --git a/src/themes/BaseV1/layouts/parts/chat.php b/api/mapas/src/themes/BaseV1/layouts/parts/chat.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/chat.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/chat.php
diff --git a/src/themes/BaseV1/layouts/parts/downloads.php b/api/mapas/src/themes/BaseV1/layouts/parts/downloads.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/downloads.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/downloads.php
diff --git a/src/themes/BaseV1/layouts/parts/editable-entity-logo.php b/api/mapas/src/themes/BaseV1/layouts/parts/editable-entity-logo.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/editable-entity-logo.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/editable-entity-logo.php
diff --git a/src/themes/BaseV1/layouts/parts/editable-entity.php b/api/mapas/src/themes/BaseV1/layouts/parts/editable-entity.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/editable-entity.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/editable-entity.php
diff --git a/src/themes/BaseV1/layouts/parts/entity-parent.php b/api/mapas/src/themes/BaseV1/layouts/parts/entity-parent.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/entity-parent.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/entity-parent.php
diff --git a/src/themes/BaseV1/layouts/parts/event-attendance.php b/api/mapas/src/themes/BaseV1/layouts/parts/event-attendance.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/event-attendance.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/event-attendance.php
diff --git a/src/themes/BaseV1/layouts/parts/footer.php b/api/mapas/src/themes/BaseV1/layouts/parts/footer.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/footer.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/footer.php
diff --git a/src/themes/BaseV1/layouts/parts/gallery.php b/api/mapas/src/themes/BaseV1/layouts/parts/gallery.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/gallery.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/gallery.php
diff --git a/src/themes/BaseV1/layouts/parts/header-about-nav.php b/api/mapas/src/themes/BaseV1/layouts/parts/header-about-nav.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/header-about-nav.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/header-about-nav.php
diff --git a/src/themes/BaseV1/layouts/parts/header-logo.php b/api/mapas/src/themes/BaseV1/layouts/parts/header-logo.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/header-logo.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/header-logo.php
diff --git a/src/themes/BaseV1/layouts/parts/header-main-nav.php b/api/mapas/src/themes/BaseV1/layouts/parts/header-main-nav.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/header-main-nav.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/header-main-nav.php
diff --git a/src/themes/BaseV1/layouts/parts/header-profile-link.php b/api/mapas/src/themes/BaseV1/layouts/parts/header-profile-link.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/header-profile-link.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/header-profile-link.php
diff --git a/src/themes/BaseV1/layouts/parts/header.php b/api/mapas/src/themes/BaseV1/layouts/parts/header.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/header.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/header.php
diff --git a/src/themes/BaseV1/layouts/parts/history.php b/api/mapas/src/themes/BaseV1/layouts/parts/history.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/history.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/history.php
diff --git a/src/themes/BaseV1/layouts/parts/home-agents.php b/api/mapas/src/themes/BaseV1/layouts/parts/home-agents.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/home-agents.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/home-agents.php
diff --git a/src/themes/BaseV1/layouts/parts/home-developers.php b/api/mapas/src/themes/BaseV1/layouts/parts/home-developers.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/home-developers.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/home-developers.php
diff --git a/src/themes/BaseV1/layouts/parts/home-events.php b/api/mapas/src/themes/BaseV1/layouts/parts/home-events.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/home-events.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/home-events.php
diff --git a/src/themes/BaseV1/layouts/parts/home-nav.php b/api/mapas/src/themes/BaseV1/layouts/parts/home-nav.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/home-nav.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/home-nav.php
diff --git a/src/themes/BaseV1/layouts/parts/home-opportunities.php b/api/mapas/src/themes/BaseV1/layouts/parts/home-opportunities.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/home-opportunities.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/home-opportunities.php
diff --git a/src/themes/BaseV1/layouts/parts/home-projects.php b/api/mapas/src/themes/BaseV1/layouts/parts/home-projects.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/home-projects.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/home-projects.php
diff --git a/src/themes/BaseV1/layouts/parts/home-saas.php b/api/mapas/src/themes/BaseV1/layouts/parts/home-saas.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/home-saas.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/home-saas.php
diff --git a/src/themes/BaseV1/layouts/parts/home-seals.php b/api/mapas/src/themes/BaseV1/layouts/parts/home-seals.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/home-seals.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/home-seals.php
diff --git a/src/themes/BaseV1/layouts/parts/home-search.php b/api/mapas/src/themes/BaseV1/layouts/parts/home-search.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/home-search.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/home-search.php
diff --git a/src/themes/BaseV1/layouts/parts/home-spaces.php b/api/mapas/src/themes/BaseV1/layouts/parts/home-spaces.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/home-spaces.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/home-spaces.php
diff --git a/src/themes/BaseV1/layouts/parts/link-list.php b/api/mapas/src/themes/BaseV1/layouts/parts/link-list.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/link-list.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/link-list.php
diff --git a/src/themes/BaseV1/layouts/parts/metalist-form-template.php b/api/mapas/src/themes/BaseV1/layouts/parts/metalist-form-template.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/metalist-form-template.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/metalist-form-template.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/actions-event.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/actions-event.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/actions-event.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/actions-event.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/actions-opportunity.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/actions-opportunity.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/actions-opportunity.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/actions-opportunity.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/actions.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/actions.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/actions.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/actions.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/attached-modal.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/attached-modal.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/attached-modal.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/attached-modal.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/before-form.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/before-form.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/before-form.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/before-form.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/entity-dropdown.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/entity-dropdown.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/entity-dropdown.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/entity-dropdown.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/event-occurrence-form.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/event-occurrence-form.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/event-occurrence-form.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/event-occurrence-form.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/feedback-event.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/feedback-event.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/feedback-event.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/feedback-event.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/feedback.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/feedback.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/feedback.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/feedback.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/field--entity-type.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/field--entity-type.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/field--entity-type.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/field--entity-type.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/field--input-datetime.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/field--input-datetime.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/field--input-datetime.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/field--input-datetime.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/field--input-text.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/field--input-text.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/field--input-text.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/field--input-text.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/field--select.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/field--select.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/field--select.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/field--select.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/field--textarea.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/field--textarea.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/field--textarea.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/field--textarea.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/footer.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/footer.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/footer.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/footer.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/form-event.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/form-event.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/form-event.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/form-event.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/form-opportunity.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/form-opportunity.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/form-opportunity.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/form-opportunity.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/form.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/form.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/form.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/form.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/modal.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/modal.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/modal.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/modal.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/required-metadata.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/required-metadata.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/required-metadata.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/required-metadata.php
diff --git a/src/themes/BaseV1/layouts/parts/modal/title.php b/api/mapas/src/themes/BaseV1/layouts/parts/modal/title.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/modal/title.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/modal/title.php
diff --git a/src/themes/BaseV1/layouts/parts/nav-main-user.php b/api/mapas/src/themes/BaseV1/layouts/parts/nav-main-user.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/nav-main-user.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/nav-main-user.php
diff --git a/src/themes/BaseV1/layouts/parts/opportunity-phases/import-last-phase-button.php b/api/mapas/src/themes/BaseV1/layouts/parts/opportunity-phases/import-last-phase-button.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/opportunity-phases/import-last-phase-button.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/opportunity-phases/import-last-phase-button.php
diff --git a/src/themes/BaseV1/layouts/parts/opportunity-phases/next-phase-registration-link.php b/api/mapas/src/themes/BaseV1/layouts/parts/opportunity-phases/next-phase-registration-link.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/opportunity-phases/next-phase-registration-link.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/opportunity-phases/next-phase-registration-link.php
diff --git a/src/themes/BaseV1/layouts/parts/opportunity-phases/opportunity-phase-base-name.php b/api/mapas/src/themes/BaseV1/layouts/parts/opportunity-phases/opportunity-phase-base-name.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/opportunity-phases/opportunity-phase-base-name.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/opportunity-phases/opportunity-phase-base-name.php
diff --git a/src/themes/BaseV1/layouts/parts/opportunity-phases/opportunity-phase-status.php b/api/mapas/src/themes/BaseV1/layouts/parts/opportunity-phases/opportunity-phase-status.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/opportunity-phases/opportunity-phase-status.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/opportunity-phases/opportunity-phase-status.php
diff --git a/src/themes/BaseV1/layouts/parts/opportunity-phases/opportunity-phases-tabs.php b/api/mapas/src/themes/BaseV1/layouts/parts/opportunity-phases/opportunity-phases-tabs.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/opportunity-phases/opportunity-phases-tabs.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/opportunity-phases/opportunity-phases-tabs.php
diff --git a/src/themes/BaseV1/layouts/parts/opportunity-phases/widget-opportunity-phases.php b/api/mapas/src/themes/BaseV1/layouts/parts/opportunity-phases/widget-opportunity-phases.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/opportunity-phases/widget-opportunity-phases.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/opportunity-phases/widget-opportunity-phases.php
diff --git a/src/themes/BaseV1/layouts/parts/owner.php b/api/mapas/src/themes/BaseV1/layouts/parts/owner.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/owner.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/owner.php
diff --git a/src/themes/BaseV1/layouts/parts/panel-agent.php b/api/mapas/src/themes/BaseV1/layouts/parts/panel-agent.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/panel-agent.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/panel-agent.php
diff --git a/src/themes/BaseV1/layouts/parts/panel-app.php b/api/mapas/src/themes/BaseV1/layouts/parts/panel-app.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/panel-app.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/panel-app.php
diff --git a/src/themes/BaseV1/layouts/parts/panel-em-cartaz.php b/api/mapas/src/themes/BaseV1/layouts/parts/panel-em-cartaz.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/panel-em-cartaz.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/panel-em-cartaz.php
diff --git a/src/themes/BaseV1/layouts/parts/panel-evaluation.php b/api/mapas/src/themes/BaseV1/layouts/parts/panel-evaluation.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/panel-evaluation.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/panel-evaluation.php
diff --git a/src/themes/BaseV1/layouts/parts/panel-event.php b/api/mapas/src/themes/BaseV1/layouts/parts/panel-event.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/panel-event.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/panel-event.php
diff --git a/src/themes/BaseV1/layouts/parts/panel-nav.php b/api/mapas/src/themes/BaseV1/layouts/parts/panel-nav.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/panel-nav.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/panel-nav.php
diff --git a/src/themes/BaseV1/layouts/parts/panel-opportunity.php b/api/mapas/src/themes/BaseV1/layouts/parts/panel-opportunity.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/panel-opportunity.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/panel-opportunity.php
diff --git a/src/themes/BaseV1/layouts/parts/panel-project.php b/api/mapas/src/themes/BaseV1/layouts/parts/panel-project.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/panel-project.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/panel-project.php
diff --git a/src/themes/BaseV1/layouts/parts/panel-registration.php b/api/mapas/src/themes/BaseV1/layouts/parts/panel-registration.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/panel-registration.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/panel-registration.php
diff --git a/src/themes/BaseV1/layouts/parts/panel-seal.php b/api/mapas/src/themes/BaseV1/layouts/parts/panel-seal.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/panel-seal.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/panel-seal.php
diff --git a/src/themes/BaseV1/layouts/parts/panel-search.php b/api/mapas/src/themes/BaseV1/layouts/parts/panel-search.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/panel-search.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/panel-search.php
diff --git a/src/themes/BaseV1/layouts/parts/panel-settings-nav.php b/api/mapas/src/themes/BaseV1/layouts/parts/panel-settings-nav.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/panel-settings-nav.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/panel-settings-nav.php
diff --git a/src/themes/BaseV1/layouts/parts/panel-space.php b/api/mapas/src/themes/BaseV1/layouts/parts/panel-space.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/panel-space.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/panel-space.php
diff --git a/src/themes/BaseV1/layouts/parts/panel-subsite.php b/api/mapas/src/themes/BaseV1/layouts/parts/panel-subsite.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/panel-subsite.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/panel-subsite.php
diff --git a/src/themes/BaseV1/layouts/parts/panel/highlighted-message.php b/api/mapas/src/themes/BaseV1/layouts/parts/panel/highlighted-message.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/panel/highlighted-message.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/panel/highlighted-message.php
diff --git a/src/themes/BaseV1/layouts/parts/redes-sociais.php b/api/mapas/src/themes/BaseV1/layouts/parts/redes-sociais.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/redes-sociais.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/redes-sociais.php
diff --git a/src/themes/BaseV1/layouts/parts/related-admin-agents.php b/api/mapas/src/themes/BaseV1/layouts/parts/related-admin-agents.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/related-admin-agents.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/related-admin-agents.php
diff --git a/src/themes/BaseV1/layouts/parts/related-agents.php b/api/mapas/src/themes/BaseV1/layouts/parts/related-agents.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/related-agents.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/related-agents.php
diff --git a/src/themes/BaseV1/layouts/parts/related-profiles-agents.php b/api/mapas/src/themes/BaseV1/layouts/parts/related-profiles-agents.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/related-profiles-agents.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/related-profiles-agents.php
diff --git a/src/themes/BaseV1/layouts/parts/related-seals.php b/api/mapas/src/themes/BaseV1/layouts/parts/related-seals.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/related-seals.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/related-seals.php
diff --git a/src/themes/BaseV1/layouts/parts/search/advanced-filters-bar.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/advanced-filters-bar.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/advanced-filters-bar.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/advanced-filters-bar.php
diff --git a/src/themes/BaseV1/layouts/parts/search/advanced-filters.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/advanced-filters.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/advanced-filters.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/advanced-filters.php
diff --git a/src/themes/BaseV1/layouts/parts/search/filter-field.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/filter-field.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/filter-field.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/filter-field.php
diff --git a/src/themes/BaseV1/layouts/parts/search/filter.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/filter.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/filter.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/filter.php
diff --git a/src/themes/BaseV1/layouts/parts/search/infobox-agent.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/infobox-agent.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/infobox-agent.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/infobox-agent.php
diff --git a/src/themes/BaseV1/layouts/parts/search/infobox-event.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/infobox-event.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/infobox-event.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/infobox-event.php
diff --git a/src/themes/BaseV1/layouts/parts/search/infobox-space.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/infobox-space.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/infobox-space.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/infobox-space.php
diff --git a/src/themes/BaseV1/layouts/parts/search/list-agent-item.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/list-agent-item.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/list-agent-item.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/list-agent-item.php
diff --git a/src/themes/BaseV1/layouts/parts/search/list-agent.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/list-agent.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/list-agent.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/list-agent.php
diff --git a/src/themes/BaseV1/layouts/parts/search/list-event-item.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/list-event-item.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/list-event-item.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/list-event-item.php
diff --git a/src/themes/BaseV1/layouts/parts/search/list-event.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/list-event.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/list-event.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/list-event.php
diff --git a/src/themes/BaseV1/layouts/parts/search/list-opportunity-item.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/list-opportunity-item.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/list-opportunity-item.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/list-opportunity-item.php
diff --git a/src/themes/BaseV1/layouts/parts/search/list-opportunity.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/list-opportunity.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/list-opportunity.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/list-opportunity.php
diff --git a/src/themes/BaseV1/layouts/parts/search/list-project-item.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/list-project-item.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/list-project-item.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/list-project-item.php
diff --git a/src/themes/BaseV1/layouts/parts/search/list-project.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/list-project.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/list-project.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/list-project.php
diff --git a/src/themes/BaseV1/layouts/parts/search/list-space-item.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/list-space-item.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/list-space-item.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/list-space-item.php
diff --git a/src/themes/BaseV1/layouts/parts/search/list-space.php b/api/mapas/src/themes/BaseV1/layouts/parts/search/list-space.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/search/list-space.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/search/list-space.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/agent-form-1.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/agent-form-1.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/agent-form-1.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/agent-form-1.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/agent-form-2.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/agent-form-2.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/agent-form-2.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/agent-form-2.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/agent-form.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/agent-form.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/agent-form.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/agent-form.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/agent-header.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/agent-header.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/agent-header.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/agent-header.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/avatar-seal-relation.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/avatar-seal-relation.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/avatar-seal-relation.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/avatar-seal-relation.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/avatar.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/avatar.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/avatar.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/avatar.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/breadcrumb.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/breadcrumb.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/breadcrumb.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/breadcrumb.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/control--edit-buttons.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/control--edit-buttons.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/control--edit-buttons.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/control--edit-buttons.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/control--roles.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/control--roles.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/control--roles.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/control--roles.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/control--view-buttons.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/control--view-buttons.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/control--view-buttons.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/control--view-buttons.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/entity-status.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/entity-status.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/entity-status.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/entity-status.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/header-image.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/header-image.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/header-image.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/header-image.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/history_agent.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/history_agent.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/history_agent.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/history_agent.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/history_event.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/history_event.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/history_event.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/history_event.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/history_space.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/history_space.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/history_space.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/history_space.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/list-entities.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/list-entities.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/list-entities.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/list-entities.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/list-relations.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/list-relations.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/list-relations.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/list-relations.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/location.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/location.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/location.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/location.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/name.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/name.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/name.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/name.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-about--highlighted-message.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-about--highlighted-message.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-about--highlighted-message.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-about--highlighted-message.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-about--registration-dates.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-about--registration-dates.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-about--registration-dates.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-about--registration-dates.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-about.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-about.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-about.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-about.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--admin--buttons.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--admin--buttons.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--admin--buttons.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--admin--buttons.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--admin--table.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--admin--table.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--admin--table.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--admin--table.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--committee--buttons.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--committee--buttons.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--committee--buttons.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--committee--buttons.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--committee--table.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--committee--table.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--committee--table.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--committee--table.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--committee.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--committee.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--committee.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--committee.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--config.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--config.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--config.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations--config.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations-fields--config.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations-fields--config.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations-fields--config.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations-fields--config.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-evaluations.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-header--owner-entity.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-header--owner-entity.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-header--owner-entity.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-header--owner-entity.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-projects--tab-content.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-projects--tab-content.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-projects--tab-content.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-projects--tab-content.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-projects--tab.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-projects--tab.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-projects--tab.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-projects--tab.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-projects.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-projects.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-projects.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-projects.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--agent-relations.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--agent-relations.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--agent-relations.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--agent-relations.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--categories.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--categories.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--categories.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--categories.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--config.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--config.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--config.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--config.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--export.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--export.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--export.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--export.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--fields--field-require.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--fields--field-require.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--fields--field-require.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--fields--field-require.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--fields--project-name.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--fields--project-name.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--fields--project-name.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--fields--project-name.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--fields.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--fields.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--fields.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--fields.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--form.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--form.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--form.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--form.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--import.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--import.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--import.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--import.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--intro.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--intro.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--intro.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--intro.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--publish-button.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--publish-button.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--publish-button.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--publish-button.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--rules.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--rules.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--rules.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--rules.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--seals.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--seals.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--seals.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--seals.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--space-relations.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--space-relations.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--space-relations.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--space-relations.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--tables--manager.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--tables--manager.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--tables--manager.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--tables--manager.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--tables--published.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--tables--published.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--tables--published.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--tables--published.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--tables.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--tables.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--tables.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--tables.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--user-registrations.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--user-registrations.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--user-registrations.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations--user-registrations.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations-field--proponent.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations-field--proponent.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations-field--proponent.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations-field--proponent.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations-file--proponent.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations-file--proponent.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-registrations-file--proponent.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-registrations-file--proponent.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/opportunity-tabs.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-tabs.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/opportunity-tabs.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/opportunity-tabs.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/permissions.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/permissions.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/permissions.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/permissions.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/project--events.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/project--events.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/project--events.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/project--events.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/project-about--highlighted-message.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/project-about--highlighted-message.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/project-about--highlighted-message.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/project-about--highlighted-message.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/project-about--registration-dates.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/project-about--registration-dates.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/project-about--registration-dates.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/project-about--registration-dates.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/project-about.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/project-about.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/project-about.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/project-about.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/project-events.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/project-events.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/project-events.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/project-events.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/project-tabs.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/project-tabs.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/project-tabs.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/project-tabs.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration--header.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration--header.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration--header.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration--header.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration--sidebar--left.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration--sidebar--left.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration--sidebar--left.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration--sidebar--left.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration--sidebar--right.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration--sidebar--right.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration--sidebar--right.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration--sidebar--right.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration--valuers-list.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration--valuers-list.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration--valuers-list.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration--valuers-list.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-edit--agents.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--agents.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-edit--agents.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--agents.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-edit--categories.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--categories.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-edit--categories.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--categories.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-edit--fields.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--fields.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-edit--fields.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--fields.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-edit--header.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--header.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-edit--header.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--header.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-edit--proponent-types.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--proponent-types.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-edit--proponent-types.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--proponent-types.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-edit--range.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--range.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-edit--range.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--range.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-edit--seals.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--seals.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-edit--seals.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--seals.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-edit--send-button.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--send-button.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-edit--send-button.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--send-button.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-edit--spaces.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--spaces.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-edit--spaces.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-edit--spaces.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-field-edit.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-field-edit.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-field-edit.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-field-edit.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-field-view.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-field-view.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-field-view.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-field-view.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-single--agents.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-single--agents.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-single--agents.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-single--agents.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-single--categories.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-single--categories.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-single--categories.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-single--categories.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-single--fields.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-single--fields.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-single--fields.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-single--fields.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-single--header.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-single--header.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-single--header.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-single--header.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-single--seals.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-single--seals.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-single--seals.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-single--seals.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/registration-single--spaces.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-single--spaces.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/registration-single--spaces.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/registration-single--spaces.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/seal-locked-fields.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/seal-locked-fields.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/seal-locked-fields.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/seal-locked-fields.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/space-children.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/space-children.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/space-children.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/space-children.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/space-extra-info.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/space-extra-info.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/space-extra-info.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/space-extra-info.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/space-public.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/space-public.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/space-public.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/space-public.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/space-servico.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/space-servico.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/space-servico.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/space-servico.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/subsite--login-cidadao--content.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite--login-cidadao--content.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/subsite--login-cidadao--content.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite--login-cidadao--content.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/subsite--login-cidadao--tab.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite--login-cidadao--tab.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/subsite--login-cidadao--tab.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite--login-cidadao--tab.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/subsite-entities.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite-entities.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/subsite-entities.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite-entities.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/subsite-filters.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite-filters.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/subsite-filters.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite-filters.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/subsite-header--domains.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite-header--domains.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/subsite-header--domains.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite-header--domains.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/subsite-header.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite-header.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/subsite-header.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite-header.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/subsite-images.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite-images.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/subsite-images.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite-images.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/subsite-map.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite-map.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/subsite-map.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite-map.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/subsite-tabs.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite-tabs.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/subsite-tabs.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite-tabs.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/subsite-texts.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite-texts.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/subsite-texts.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/subsite-texts.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/type.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/type.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/type.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/type.php
diff --git a/src/themes/BaseV1/layouts/parts/singles/widget-projects.php b/api/mapas/src/themes/BaseV1/layouts/parts/singles/widget-projects.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/singles/widget-projects.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/singles/widget-projects.php
diff --git a/src/themes/BaseV1/layouts/parts/social-share.php b/api/mapas/src/themes/BaseV1/layouts/parts/social-share.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/social-share.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/social-share.php
diff --git a/src/themes/BaseV1/layouts/parts/tab.php b/api/mapas/src/themes/BaseV1/layouts/parts/tab.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/tab.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/tab.php
diff --git a/src/themes/BaseV1/layouts/parts/templates.php b/api/mapas/src/themes/BaseV1/layouts/parts/templates.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/templates.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/templates.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/info-admin.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/info-admin.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/info-admin.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/info-admin.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/info-user.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/info-user.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/info-user.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/info-user.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/search-list/list-agent-item.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-agent-item.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/search-list/list-agent-item.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-agent-item.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/search-list/list-agent.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-agent.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/search-list/list-agent.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-agent.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/search-list/list-event-item.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-event-item.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/search-list/list-event-item.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-event-item.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/search-list/list-event.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-event.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/search-list/list-event.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-event.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/search-list/list-opportunity-item.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-opportunity-item.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/search-list/list-opportunity-item.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-opportunity-item.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/search-list/list-opportunity.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-opportunity.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/search-list/list-opportunity.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-opportunity.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/search-list/list-project-item.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-project-item.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/search-list/list-project-item.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-project-item.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/search-list/list-project.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-project.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/search-list/list-project.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-project.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/search-list/list-space-item.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-space-item.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/search-list/list-space-item.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-space-item.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/search-list/list-space.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-space.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/search-list/list-space.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/search-list/list-space.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/user-info/info-agents.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/user-info/info-agents.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/user-info/info-agents.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/user-info/info-agents.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/user-info/info-events.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/user-info/info-events.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/user-info/info-events.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/user-info/info-events.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/user-info/info-opportunities.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/user-info/info-opportunities.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/user-info/info-opportunities.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/user-info/info-opportunities.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/user-info/info-projects.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/user-info/info-projects.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/user-info/info-projects.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/user-info/info-projects.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/user-info/info-registrations.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/user-info/info-registrations.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/user-info/info-registrations.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/user-info/info-registrations.php
diff --git a/src/themes/BaseV1/layouts/parts/user-management/user-info/info-spaces.php b/api/mapas/src/themes/BaseV1/layouts/parts/user-management/user-info/info-spaces.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/user-management/user-info/info-spaces.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/user-management/user-info/info-spaces.php
diff --git a/src/themes/BaseV1/layouts/parts/video-gallery.php b/api/mapas/src/themes/BaseV1/layouts/parts/video-gallery.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/video-gallery.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/video-gallery.php
diff --git a/src/themes/BaseV1/layouts/parts/widget-areas.php b/api/mapas/src/themes/BaseV1/layouts/parts/widget-areas.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/widget-areas.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/widget-areas.php
diff --git a/src/themes/BaseV1/layouts/parts/widget-functions.php b/api/mapas/src/themes/BaseV1/layouts/parts/widget-functions.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/widget-functions.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/widget-functions.php
diff --git a/src/themes/BaseV1/layouts/parts/widget-tags.php b/api/mapas/src/themes/BaseV1/layouts/parts/widget-tags.php
similarity index 100%
rename from src/themes/BaseV1/layouts/parts/widget-tags.php
rename to api/mapas/src/themes/BaseV1/layouts/parts/widget-tags.php
diff --git a/src/themes/BaseV1/layouts/search.php b/api/mapas/src/themes/BaseV1/layouts/search.php
similarity index 100%
rename from src/themes/BaseV1/layouts/search.php
rename to api/mapas/src/themes/BaseV1/layouts/search.php
diff --git a/src/themes/BaseV1/pages/_left.md b/api/mapas/src/themes/BaseV1/pages/_left.md
similarity index 100%
rename from src/themes/BaseV1/pages/_left.md
rename to api/mapas/src/themes/BaseV1/pages/_left.md
diff --git a/src/themes/BaseV1/pages/_right.md b/api/mapas/src/themes/BaseV1/pages/_right.md
similarity index 100%
rename from src/themes/BaseV1/pages/_right.md
rename to api/mapas/src/themes/BaseV1/pages/_right.md
diff --git a/src/themes/BaseV1/pages/como-usar.md b/api/mapas/src/themes/BaseV1/pages/como-usar.md
similarity index 100%
rename from src/themes/BaseV1/pages/como-usar.md
rename to api/mapas/src/themes/BaseV1/pages/como-usar.md
diff --git a/src/themes/BaseV1/pages/sobre.md b/api/mapas/src/themes/BaseV1/pages/sobre.md
similarity index 100%
rename from src/themes/BaseV1/pages/sobre.md
rename to api/mapas/src/themes/BaseV1/pages/sobre.md
diff --git a/src/themes/BaseV1/views/agent/edit-1.php b/api/mapas/src/themes/BaseV1/views/agent/edit-1.php
similarity index 100%
rename from src/themes/BaseV1/views/agent/edit-1.php
rename to api/mapas/src/themes/BaseV1/views/agent/edit-1.php
diff --git a/src/themes/BaseV1/views/agent/edit-2.php b/api/mapas/src/themes/BaseV1/views/agent/edit-2.php
similarity index 100%
rename from src/themes/BaseV1/views/agent/edit-2.php
rename to api/mapas/src/themes/BaseV1/views/agent/edit-2.php
diff --git a/src/themes/BaseV1/views/agent/edit.php b/api/mapas/src/themes/BaseV1/views/agent/edit.php
similarity index 100%
rename from src/themes/BaseV1/views/agent/edit.php
rename to api/mapas/src/themes/BaseV1/views/agent/edit.php
diff --git a/src/themes/BaseV1/views/agent/single-1.php b/api/mapas/src/themes/BaseV1/views/agent/single-1.php
similarity index 100%
rename from src/themes/BaseV1/views/agent/single-1.php
rename to api/mapas/src/themes/BaseV1/views/agent/single-1.php
diff --git a/src/themes/BaseV1/views/agent/single-2.php b/api/mapas/src/themes/BaseV1/views/agent/single-2.php
similarity index 100%
rename from src/themes/BaseV1/views/agent/single-2.php
rename to api/mapas/src/themes/BaseV1/views/agent/single-2.php
diff --git a/src/themes/BaseV1/views/agent/single.php b/api/mapas/src/themes/BaseV1/views/agent/single.php
similarity index 100%
rename from src/themes/BaseV1/views/agent/single.php
rename to api/mapas/src/themes/BaseV1/views/agent/single.php
diff --git a/src/themes/BaseV1/views/app/create.php b/api/mapas/src/themes/BaseV1/views/app/create.php
similarity index 100%
rename from src/themes/BaseV1/views/app/create.php
rename to api/mapas/src/themes/BaseV1/views/app/create.php
diff --git a/src/themes/BaseV1/views/app/edit.php b/api/mapas/src/themes/BaseV1/views/app/edit.php
similarity index 100%
rename from src/themes/BaseV1/views/app/edit.php
rename to api/mapas/src/themes/BaseV1/views/app/edit.php
diff --git a/src/themes/BaseV1/views/app/single.php b/api/mapas/src/themes/BaseV1/views/app/single.php
similarity index 100%
rename from src/themes/BaseV1/views/app/single.php
rename to api/mapas/src/themes/BaseV1/views/app/single.php
diff --git a/src/themes/BaseV1/views/auth/fake-authentication.php b/api/mapas/src/themes/BaseV1/views/auth/fake-authentication.php
similarity index 100%
rename from src/themes/BaseV1/views/auth/fake-authentication.php
rename to api/mapas/src/themes/BaseV1/views/auth/fake-authentication.php
diff --git a/src/themes/BaseV1/views/auth/procuration.php b/api/mapas/src/themes/BaseV1/views/auth/procuration.php
similarity index 100%
rename from src/themes/BaseV1/views/auth/procuration.php
rename to api/mapas/src/themes/BaseV1/views/auth/procuration.php
diff --git a/src/themes/BaseV1/views/entityrevision/history.php b/api/mapas/src/themes/BaseV1/views/entityrevision/history.php
similarity index 100%
rename from src/themes/BaseV1/views/entityrevision/history.php
rename to api/mapas/src/themes/BaseV1/views/entityrevision/history.php
diff --git a/src/themes/BaseV1/views/event/edit.php b/api/mapas/src/themes/BaseV1/views/event/edit.php
similarity index 100%
rename from src/themes/BaseV1/views/event/edit.php
rename to api/mapas/src/themes/BaseV1/views/event/edit.php
diff --git a/src/themes/BaseV1/views/event/single.php b/api/mapas/src/themes/BaseV1/views/event/single.php
similarity index 100%
rename from src/themes/BaseV1/views/event/single.php
rename to api/mapas/src/themes/BaseV1/views/event/single.php
diff --git a/src/themes/BaseV1/views/generic/edit.php b/api/mapas/src/themes/BaseV1/views/generic/edit.php
similarity index 100%
rename from src/themes/BaseV1/views/generic/edit.php
rename to api/mapas/src/themes/BaseV1/views/generic/edit.php
diff --git a/src/themes/BaseV1/views/generic/list.php b/api/mapas/src/themes/BaseV1/views/generic/list.php
similarity index 100%
rename from src/themes/BaseV1/views/generic/list.php
rename to api/mapas/src/themes/BaseV1/views/generic/list.php
diff --git a/src/themes/BaseV1/views/opportunity/edit.php b/api/mapas/src/themes/BaseV1/views/opportunity/edit.php
similarity index 100%
rename from src/themes/BaseV1/views/opportunity/edit.php
rename to api/mapas/src/themes/BaseV1/views/opportunity/edit.php
diff --git a/src/themes/BaseV1/views/opportunity/single.php b/api/mapas/src/themes/BaseV1/views/opportunity/single.php
similarity index 100%
rename from src/themes/BaseV1/views/opportunity/single.php
rename to api/mapas/src/themes/BaseV1/views/opportunity/single.php
diff --git a/src/themes/BaseV1/views/panel/agents.php b/api/mapas/src/themes/BaseV1/views/panel/agents.php
similarity index 100%
rename from src/themes/BaseV1/views/panel/agents.php
rename to api/mapas/src/themes/BaseV1/views/panel/agents.php
diff --git a/src/themes/BaseV1/views/panel/apps.php b/api/mapas/src/themes/BaseV1/views/panel/apps.php
similarity index 100%
rename from src/themes/BaseV1/views/panel/apps.php
rename to api/mapas/src/themes/BaseV1/views/panel/apps.php
diff --git a/src/themes/BaseV1/views/panel/em-cartaz.php b/api/mapas/src/themes/BaseV1/views/panel/em-cartaz.php
similarity index 100%
rename from src/themes/BaseV1/views/panel/em-cartaz.php
rename to api/mapas/src/themes/BaseV1/views/panel/em-cartaz.php
diff --git a/src/themes/BaseV1/views/panel/events.php b/api/mapas/src/themes/BaseV1/views/panel/events.php
similarity index 100%
rename from src/themes/BaseV1/views/panel/events.php
rename to api/mapas/src/themes/BaseV1/views/panel/events.php
diff --git a/src/themes/BaseV1/views/panel/generic.php b/api/mapas/src/themes/BaseV1/views/panel/generic.php
similarity index 100%
rename from src/themes/BaseV1/views/panel/generic.php
rename to api/mapas/src/themes/BaseV1/views/panel/generic.php
diff --git a/src/themes/BaseV1/views/panel/index.php b/api/mapas/src/themes/BaseV1/views/panel/index.php
similarity index 100%
rename from src/themes/BaseV1/views/panel/index.php
rename to api/mapas/src/themes/BaseV1/views/panel/index.php
diff --git a/src/themes/BaseV1/views/panel/opportunities.php b/api/mapas/src/themes/BaseV1/views/panel/opportunities.php
similarity index 100%
rename from src/themes/BaseV1/views/panel/opportunities.php
rename to api/mapas/src/themes/BaseV1/views/panel/opportunities.php
diff --git a/src/themes/BaseV1/views/panel/projects.php b/api/mapas/src/themes/BaseV1/views/panel/projects.php
similarity index 100%
rename from src/themes/BaseV1/views/panel/projects.php
rename to api/mapas/src/themes/BaseV1/views/panel/projects.php
diff --git a/src/themes/BaseV1/views/panel/registrations.php b/api/mapas/src/themes/BaseV1/views/panel/registrations.php
similarity index 100%
rename from src/themes/BaseV1/views/panel/registrations.php
rename to api/mapas/src/themes/BaseV1/views/panel/registrations.php
diff --git a/src/themes/BaseV1/views/panel/require-authentication.php b/api/mapas/src/themes/BaseV1/views/panel/require-authentication.php
similarity index 100%
rename from src/themes/BaseV1/views/panel/require-authentication.php
rename to api/mapas/src/themes/BaseV1/views/panel/require-authentication.php
diff --git a/src/themes/BaseV1/views/panel/seals.php b/api/mapas/src/themes/BaseV1/views/panel/seals.php
similarity index 100%
rename from src/themes/BaseV1/views/panel/seals.php
rename to api/mapas/src/themes/BaseV1/views/panel/seals.php
diff --git a/src/themes/BaseV1/views/panel/spaces.php b/api/mapas/src/themes/BaseV1/views/panel/spaces.php
similarity index 100%
rename from src/themes/BaseV1/views/panel/spaces.php
rename to api/mapas/src/themes/BaseV1/views/panel/spaces.php
diff --git a/src/themes/BaseV1/views/panel/subsite.php b/api/mapas/src/themes/BaseV1/views/panel/subsite.php
similarity index 100%
rename from src/themes/BaseV1/views/panel/subsite.php
rename to api/mapas/src/themes/BaseV1/views/panel/subsite.php
diff --git a/src/themes/BaseV1/views/panel/user-management.php b/api/mapas/src/themes/BaseV1/views/panel/user-management.php
similarity index 100%
rename from src/themes/BaseV1/views/panel/user-management.php
rename to api/mapas/src/themes/BaseV1/views/panel/user-management.php
diff --git a/src/themes/BaseV1/views/project/edit.php b/api/mapas/src/themes/BaseV1/views/project/edit.php
similarity index 100%
rename from src/themes/BaseV1/views/project/edit.php
rename to api/mapas/src/themes/BaseV1/views/project/edit.php
diff --git a/src/themes/BaseV1/views/project/single.php b/api/mapas/src/themes/BaseV1/views/project/single.php
similarity index 100%
rename from src/themes/BaseV1/views/project/single.php
rename to api/mapas/src/themes/BaseV1/views/project/single.php
diff --git a/src/themes/BaseV1/views/registration/edit.php b/api/mapas/src/themes/BaseV1/views/registration/edit.php
similarity index 100%
rename from src/themes/BaseV1/views/registration/edit.php
rename to api/mapas/src/themes/BaseV1/views/registration/edit.php
diff --git a/src/themes/BaseV1/views/registration/single.php b/api/mapas/src/themes/BaseV1/views/registration/single.php
similarity index 100%
rename from src/themes/BaseV1/views/registration/single.php
rename to api/mapas/src/themes/BaseV1/views/registration/single.php
diff --git a/src/themes/BaseV1/views/seal/create.php b/api/mapas/src/themes/BaseV1/views/seal/create.php
similarity index 100%
rename from src/themes/BaseV1/views/seal/create.php
rename to api/mapas/src/themes/BaseV1/views/seal/create.php
diff --git a/src/themes/BaseV1/views/seal/edit.php b/api/mapas/src/themes/BaseV1/views/seal/edit.php
similarity index 100%
rename from src/themes/BaseV1/views/seal/edit.php
rename to api/mapas/src/themes/BaseV1/views/seal/edit.php
diff --git a/src/themes/BaseV1/views/seal/printsealrelation.php b/api/mapas/src/themes/BaseV1/views/seal/printsealrelation.php
similarity index 100%
rename from src/themes/BaseV1/views/seal/printsealrelation.php
rename to api/mapas/src/themes/BaseV1/views/seal/printsealrelation.php
diff --git a/src/themes/BaseV1/views/seal/sealrelation.php b/api/mapas/src/themes/BaseV1/views/seal/sealrelation.php
similarity index 100%
rename from src/themes/BaseV1/views/seal/sealrelation.php
rename to api/mapas/src/themes/BaseV1/views/seal/sealrelation.php
diff --git a/src/themes/BaseV1/views/seal/single.php b/api/mapas/src/themes/BaseV1/views/seal/single.php
similarity index 100%
rename from src/themes/BaseV1/views/seal/single.php
rename to api/mapas/src/themes/BaseV1/views/seal/single.php
diff --git a/src/themes/BaseV1/views/site/error-403.php b/api/mapas/src/themes/BaseV1/views/site/error-403.php
similarity index 100%
rename from src/themes/BaseV1/views/site/error-403.php
rename to api/mapas/src/themes/BaseV1/views/site/error-403.php
diff --git a/src/themes/BaseV1/views/site/error-404.php b/api/mapas/src/themes/BaseV1/views/site/error-404.php
similarity index 100%
rename from src/themes/BaseV1/views/site/error-404.php
rename to api/mapas/src/themes/BaseV1/views/site/error-404.php
diff --git a/src/themes/BaseV1/views/site/error-500.php b/api/mapas/src/themes/BaseV1/views/site/error-500.php
similarity index 100%
rename from src/themes/BaseV1/views/site/error-500.php
rename to api/mapas/src/themes/BaseV1/views/site/error-500.php
diff --git a/src/themes/BaseV1/views/site/index.php b/api/mapas/src/themes/BaseV1/views/site/index.php
similarity index 100%
rename from src/themes/BaseV1/views/site/index.php
rename to api/mapas/src/themes/BaseV1/views/site/index.php
diff --git a/src/themes/BaseV1/views/site/page.php b/api/mapas/src/themes/BaseV1/views/site/page.php
similarity index 100%
rename from src/themes/BaseV1/views/site/page.php
rename to api/mapas/src/themes/BaseV1/views/site/page.php
diff --git a/src/themes/BaseV1/views/site/permission-denied.php b/api/mapas/src/themes/BaseV1/views/site/permission-denied.php
similarity index 100%
rename from src/themes/BaseV1/views/site/permission-denied.php
rename to api/mapas/src/themes/BaseV1/views/site/permission-denied.php
diff --git a/src/themes/BaseV1/views/site/search.php b/api/mapas/src/themes/BaseV1/views/site/search.php
similarity index 100%
rename from src/themes/BaseV1/views/site/search.php
rename to api/mapas/src/themes/BaseV1/views/site/search.php
diff --git a/src/themes/BaseV1/views/space/edit.php b/api/mapas/src/themes/BaseV1/views/space/edit.php
similarity index 100%
rename from src/themes/BaseV1/views/space/edit.php
rename to api/mapas/src/themes/BaseV1/views/space/edit.php
diff --git a/src/themes/BaseV1/views/space/single.php b/api/mapas/src/themes/BaseV1/views/space/single.php
similarity index 100%
rename from src/themes/BaseV1/views/space/single.php
rename to api/mapas/src/themes/BaseV1/views/space/single.php
diff --git a/src/themes/BaseV1/views/subsite/create.php b/api/mapas/src/themes/BaseV1/views/subsite/create.php
similarity index 100%
rename from src/themes/BaseV1/views/subsite/create.php
rename to api/mapas/src/themes/BaseV1/views/subsite/create.php
diff --git a/src/themes/BaseV1/views/subsite/edit.php b/api/mapas/src/themes/BaseV1/views/subsite/edit.php
similarity index 100%
rename from src/themes/BaseV1/views/subsite/edit.php
rename to api/mapas/src/themes/BaseV1/views/subsite/edit.php
diff --git a/src/themes/BaseV1/views/subsite/single.php b/api/mapas/src/themes/BaseV1/views/subsite/single.php
similarity index 100%
rename from src/themes/BaseV1/views/subsite/single.php
rename to api/mapas/src/themes/BaseV1/views/subsite/single.php
diff --git a/src/themes/BaseV2/.gitignore b/api/mapas/src/themes/BaseV2/.gitignore
similarity index 100%
rename from src/themes/BaseV2/.gitignore
rename to api/mapas/src/themes/BaseV2/.gitignore
diff --git a/src/themes/BaseV2/Theme.php b/api/mapas/src/themes/BaseV2/Theme.php
similarity index 100%
rename from src/themes/BaseV2/Theme.php
rename to api/mapas/src/themes/BaseV2/Theme.php
diff --git a/src/themes/BaseV2/assets-src/sass/0.settings/_atoms.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/0.settings/_atoms.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/0.settings/_atoms.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/0.settings/_atoms.scss
diff --git a/src/themes/BaseV2/assets-src/sass/0.settings/_global.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/0.settings/_global.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/0.settings/_global.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/0.settings/_global.scss
diff --git a/src/themes/BaseV2/assets-src/sass/0.settings/_mixins.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/0.settings/_mixins.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/0.settings/_mixins.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/0.settings/_mixins.scss
diff --git a/src/themes/BaseV2/assets-src/sass/0.settings/_typography.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/0.settings/_typography.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/0.settings/_typography.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/0.settings/_typography.scss
diff --git a/src/themes/BaseV2/assets-src/sass/0.settings/_variables.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/0.settings/_variables.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/0.settings/_variables.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/0.settings/_variables.scss
diff --git a/src/themes/BaseV2/assets-src/sass/1.objects/_load-more.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/1.objects/_load-more.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/1.objects/_load-more.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/1.objects/_load-more.scss
diff --git a/src/themes/BaseV2/assets-src/sass/1.objects/_mc-avatar.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/1.objects/_mc-avatar.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/1.objects/_mc-avatar.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/1.objects/_mc-avatar.scss
diff --git a/src/themes/BaseV2/assets-src/sass/1.objects/_mc-title.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/1.objects/_mc-title.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/1.objects/_mc-title.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/1.objects/_mc-title.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_affirmative-policies--geo-quota-configuration.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_affirmative-policies--geo-quota-configuration.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_affirmative-policies--geo-quota-configuration.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_affirmative-policies--geo-quota-configuration.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_affirmative-policies--quota-configuration.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_affirmative-policies--quota-configuration.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_affirmative-policies--quota-configuration.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_affirmative-policies--quota-configuration.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_affirmative-policy--bonus-config.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_affirmative-policy--bonus-config.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_affirmative-policy--bonus-config.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_affirmative-policy--bonus-config.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_agent-data.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_agent-data.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_agent-data.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_agent-data.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_app-card-content.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_app-card-content.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_app-card-content.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_app-card-content.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_apply-evaluations.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_apply-evaluations.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_apply-evaluations.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_apply-evaluations.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_button.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_button.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_button.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_button.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_claim-support.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_claim-support.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_claim-support.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_claim-support.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_complaint-suggestion.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_complaint-suggestion.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_complaint-suggestion.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_complaint-suggestion.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_container.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_container.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_container.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_container.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_create-app.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_create-app.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_create-app.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_create-app.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_create-entity-modal.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_create-entity-modal.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_create-entity-modal.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_create-entity-modal.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_create-modal.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_create-modal.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_create-modal.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_create-modal.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_create-occurrence.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_create-occurrence.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_create-occurrence.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_create-occurrence.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_data-table.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_data-table.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_data-table.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_data-table.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_datepicker.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_datepicker.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_datepicker.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_datepicker.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_debug.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_debug.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_debug.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_debug.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-actions.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-actions.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-actions.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-actions.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-activity-card.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-activity-card.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-activity-card.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-activity-card.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-card.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-card.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-card.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-card.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-cover.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-cover.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-cover.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-cover.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-data.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-data.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-data.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-data.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-file.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-file.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-file.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-file.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-header.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-header.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-header.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-header.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-link-project.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-link-project.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-link-project.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-link-project.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-links.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-links.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-links.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-links.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-list.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-list.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-list.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-list.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-location.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-location.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-location.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-location.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-log.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-log.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-log.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-log.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-occurrence-list.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-occurrence-list.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-occurrence-list.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-occurrence-list.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-owner.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-owner.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-owner.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-owner.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-parent-edit.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-parent-edit.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-parent-edit.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-parent-edit.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-profile.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-profile.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-profile.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-profile.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-related-agents.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-related-agents.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-related-agents.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-related-agents.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-request-ownership.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-request-ownership.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-request-ownership.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-request-ownership.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-seals.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-seals.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-seals.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-seals.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-social-media.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-social-media.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-social-media.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-social-media.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-status.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-status.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-status.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-status.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-table.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-table.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-table.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-table.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_entity-terms.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-terms.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_entity-terms.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_entity-terms.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_error-display.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_error-display.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_error-display.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_error-display.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_evaluation-card.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_evaluation-card.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_evaluation-card.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_evaluation-card.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_event-age-rating.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_event-age-rating.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_event-age-rating.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_event-age-rating.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_event-importer-files.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_event-importer-files.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_event-importer-files.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_event-importer-files.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_event-importer-upload.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_event-importer-upload.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_event-importer-upload.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_event-importer-upload.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_faq-accordion.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_faq-accordion.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_faq-accordion.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_faq-accordion.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_faq-info.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_faq-info.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_faq-info.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_faq-info.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_faq-search-results.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_faq-search-results.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_faq-search-results.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_faq-search-results.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_faq-search.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_faq-search.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_faq-search.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_faq-search.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_field.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_field.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_field.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_field.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_files-list.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_files-list.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_files-list.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_files-list.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_gallery.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_gallery.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_gallery.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_gallery.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_home-developers.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-developers.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_home-developers.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-developers.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_home-entities.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-entities.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_home-entities.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-entities.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_home-feature.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-feature.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_home-feature.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-feature.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_home-header-alt.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-header-alt.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_home-header-alt.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-header-alt.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_home-header.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-header.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_home-header.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-header.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_home-map.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-map.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_home-map.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-map.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_home-opportunities.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-opportunities.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_home-opportunities.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-opportunities.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_home-register.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-register.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_home-register.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-register.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_home-search.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-search.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_home-search.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_home-search.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_info-message.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_info-message.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_info-message.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_info-message.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_link-opportunity.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_link-opportunity.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_link-opportunity.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_link-opportunity.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_link-project.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_link-project.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_link-project.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_link-project.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-accordion.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-accordion.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-accordion.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-accordion.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-alert.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-alert.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-alert.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-alert.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-breadcrumb.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-breadcrumb.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-breadcrumb.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-breadcrumb.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-card.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-card.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-card.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-card.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-collapse.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-collapse.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-collapse.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-collapse.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-confirm-button.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-confirm-button.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-confirm-button.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-confirm-button.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-fake-user-create.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-fake-user-create.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-fake-user-create.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-fake-user-create.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-file.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-file.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-file.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-file.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-header-menu-user.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-header-menu-user.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-header-menu-user.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-header-menu-user.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-header-menu.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-header-menu.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-header-menu.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-header-menu.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-icon.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-icon.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-icon.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-icon.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-linked-entity.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-linked-entity.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-linked-entity.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-linked-entity.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-loading.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-loading.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-loading.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-loading.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-map-card.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-map-card.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-map-card.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-map-card.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-map.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-map.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-map.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-map.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-multiselect.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-multiselect.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-multiselect.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-multiselect.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-notification.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-notification.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-notification.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-notification.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-relation-card.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-relation-card.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-relation-card.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-relation-card.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-select.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-select.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-select.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-select.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-share-links.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-share-links.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-share-links.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-share-links.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-status.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-status.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-status.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-status.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-stepper-vertical.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-stepper-vertical.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-stepper-vertical.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-stepper-vertical.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-summary-agent-info.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-summary-agent-info.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-summary-agent-info.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-summary-agent-info.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-summary-agent.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-summary-agent.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-summary-agent.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-summary-agent.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_mc-tag-list.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-tag-list.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_mc-tag-list.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_mc-tag-list.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_messages.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_messages.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_messages.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_messages.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_navbar.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_navbar.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_navbar.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_navbar.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_notification-card.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_notification-card.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_notification-card.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_notification-card.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_notification-modal.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_notification-modal.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_notification-modal.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_notification-modal.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_occurrence-card.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_occurrence-card.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_occurrence-card.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_occurrence-card.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-basic-info.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-basic-info.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-basic-info.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-basic-info.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-category-list.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-category-list.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-category-list.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-category-list.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-category.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-category.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-category.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-category.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-evaluation-committee.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-evaluation-committee.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-evaluation-committee.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-evaluation-committee.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-evaluations-list.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-evaluations-list.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-evaluations-list.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-evaluations-list.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-evaluations.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-evaluations.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-evaluations.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-evaluations.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-header.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-header.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-header.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-header.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-list.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-list.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-list.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-list.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-config-data-collection.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-config-data-collection.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-config-data-collection.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-config-data-collection.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-evaluations.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-evaluations.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-evaluations.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-evaluations.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-header.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-header.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-header.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-header.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-list-evaluation.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-list-evaluation.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-list-evaluation.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-list-evaluation.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-list-registrations.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-list-registrations.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-list-registrations.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-list-registrations.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-publish-config-registration.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-publish-config-registration.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-publish-config-registration.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-publish-config-registration.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-publish-date-config.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-publish-date-config.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-publish-date-config.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-publish-date-config.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-status.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-status.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-status.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phase-status.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phases-timeline.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phases-timeline.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phases-timeline.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-phases-timeline.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-ranges-config.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-ranges-config.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-ranges-config.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-ranges-config.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-registration-table.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-registration-table.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-registration-table.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-registration-table.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-registrations.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-registrations.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-registrations.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-registrations.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-rules.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-rules.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-rules.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-rules.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-subscription-list.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-subscription-list.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-subscription-list.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-subscription-list.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-subscription.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-subscription.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_opportunity-subscription.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_opportunity-subscription.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_panel--carousel.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel--carousel.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_panel--carousel.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel--carousel.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_panel--entities-summary.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel--entities-summary.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_panel--entities-summary.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel--entities-summary.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_panel--entity-support.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel--entity-support.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_panel--entity-support.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel--entity-support.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_panel--last-edited.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel--last-edited.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_panel--last-edited.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel--last-edited.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_panel--last-registrations.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel--last-registrations.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_panel--last-registrations.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel--last-registrations.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_panel--open-opportunities.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel--open-opportunities.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_panel--open-opportunities.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel--open-opportunities.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_panel--pending-evaluations.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel--pending-evaluations.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_panel--pending-evaluations.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel--pending-evaluations.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_panel-home.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel-home.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_panel-home.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel-home.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_panel-sidebar.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel-sidebar.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_panel-sidebar.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel-sidebar.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_panel.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_panel.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_panel.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_permission-publish.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_permission-publish.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_permission-publish.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_permission-publish.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_popover-form.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_popover-form.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_popover-form.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_popover-form.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_popover.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_popover.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_popover.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_popover.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_registration-actions.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-actions.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_registration-actions.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-actions.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_registration-card.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-card.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_registration-card.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-card.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_registration-evaluation-actions.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-evaluation-actions.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_registration-evaluation-actions.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-evaluation-actions.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_registration-evaluation-info.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-evaluation-info.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_registration-evaluation-info.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-evaluation-info.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_registration-info.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-info.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_registration-info.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-info.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_registration-print.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-print.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_registration-print.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-print.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_registration-related-entity.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-related-entity.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_registration-related-entity.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-related-entity.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_registration-results.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-results.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_registration-results.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-results.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_registration-status.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-status.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_registration-status.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_registration-status.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_seal-content-share.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_seal-content-share.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_seal-content-share.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_seal-content-share.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_seal-locked-field.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_seal-locked-field.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_seal-locked-field.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_seal-locked-field.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_seal-relation-view.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_seal-relation-view.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_seal-relation-view.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_seal-relation-view.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_search-filter.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_search-filter.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_search-filter.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_search-filter.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_select-entity.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_select-entity.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_select-entity.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_select-entity.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_space-info.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_space-info.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_space-info.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_space-info.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_stack.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_stack.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_stack.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_stack.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_stepper.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_stepper.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_stepper.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_stepper.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_tabs.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_tabs.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_tabs.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_tabs.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_technical-assessment-section.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_technical-assessment-section.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_technical-assessment-section.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_technical-assessment-section.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_theme-logo.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_theme-logo.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_theme-logo.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_theme-logo.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_tiebreaker-criteria-configuration.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_tiebreaker-criteria-configuration.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_tiebreaker-criteria-configuration.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_tiebreaker-criteria-configuration.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_timeline.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_timeline.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_timeline.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_timeline.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_user-accepted-terms.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_user-accepted-terms.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_user-accepted-terms.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_user-accepted-terms.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_user-mail.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_user-mail.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_user-mail.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_user-mail.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/_user-management.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_user-management.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/_user-management.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/_user-management.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/event-info.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/event-info.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/event-info.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/event-info.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/mc-summary-evaluate.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/mc-summary-evaluate.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/mc-summary-evaluate.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/mc-summary-evaluate.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/opportunity-form-export.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/opportunity-form-export.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/opportunity-form-export.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/opportunity-form-export.scss
diff --git a/src/themes/BaseV2/assets-src/sass/2.components/opportunity-form-import.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/2.components/opportunity-form-import.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/2.components/opportunity-form-import.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/2.components/opportunity-form-import.scss
diff --git a/src/themes/BaseV2/assets-src/sass/README.md b/api/mapas/src/themes/BaseV2/assets-src/sass/README.md
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/README.md
rename to api/mapas/src/themes/BaseV2/assets-src/sass/README.md
diff --git a/src/themes/BaseV2/assets-src/sass/layouts/_entity-tabs.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/layouts/_entity-tabs.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/layouts/_entity-tabs.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/layouts/_entity-tabs.scss
diff --git a/src/themes/BaseV2/assets-src/sass/layouts/_entity.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/layouts/_entity.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/layouts/_entity.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/layouts/_entity.scss
diff --git a/src/themes/BaseV2/assets-src/sass/layouts/_main-footer.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/layouts/_main-footer.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/layouts/_main-footer.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/layouts/_main-footer.scss
diff --git a/src/themes/BaseV2/assets-src/sass/layouts/_main-header.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/layouts/_main-header.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/layouts/_main-header.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/layouts/_main-header.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_agents.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_agents.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_agents.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_agents.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_events.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_events.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_events.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_events.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_faq.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_faq.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_faq.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_faq.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_form-builder.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_form-builder.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_form-builder.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_form-builder.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_form-preview.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_form-preview.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_form-preview.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_form-preview.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_opportunity.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_opportunity.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_opportunity.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_opportunity.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_panel-evaluations.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_panel-evaluations.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_panel-evaluations.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_panel-evaluations.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_panel-registrations.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_panel-registrations.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_panel-registrations.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_panel-registrations.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_print-registration.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_print-registration.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_print-registration.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_print-registration.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_projects.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_projects.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_projects.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_projects.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_registrations.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_registrations.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_registrations.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_registrations.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_seals.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_seals.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_seals.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_seals.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_search.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_search.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_search.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_search.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_spaces.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_spaces.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_spaces.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_spaces.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_support.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_support.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_support.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_support.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_system-roles-modal.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_system-roles-modal.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_system-roles-modal.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_system-roles-modal.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_system-roles.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_system-roles.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_system-roles.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_system-roles.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_terms.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_terms.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_terms.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_terms.scss
diff --git a/src/themes/BaseV2/assets-src/sass/pages/_user-detail.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/pages/_user-detail.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/pages/_user-detail.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/pages/_user-detail.scss
diff --git a/src/themes/BaseV2/assets-src/sass/theme-BaseV2.scss b/api/mapas/src/themes/BaseV2/assets-src/sass/theme-BaseV2.scss
similarity index 100%
rename from src/themes/BaseV2/assets-src/sass/theme-BaseV2.scss
rename to api/mapas/src/themes/BaseV2/assets-src/sass/theme-BaseV2.scss
diff --git a/src/themes/BaseV2/assets/css/.gitkeep b/api/mapas/src/themes/BaseV2/assets/css/.gitkeep
similarity index 100%
rename from src/themes/BaseV2/assets/css/.gitkeep
rename to api/mapas/src/themes/BaseV2/assets/css/.gitkeep
diff --git a/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Bold-webfont.ttf b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Bold-webfont.ttf
new file mode 100644
index 0000000000..fd79d43bea
Binary files /dev/null and b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Bold-webfont.ttf differ
diff --git a/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Bold-webfont.woff b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Bold-webfont.woff
new file mode 100644
index 0000000000..1eb0cf1742
Binary files /dev/null and b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Bold-webfont.woff differ
diff --git a/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-BoldItalic-webfont.ttf b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-BoldItalic-webfont.ttf
new file mode 100644
index 0000000000..9bc800958a
Binary files /dev/null and b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-BoldItalic-webfont.ttf differ
diff --git a/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-BoldItalic-webfont.woff b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-BoldItalic-webfont.woff
new file mode 100644
index 0000000000..82e20ef4ef
Binary files /dev/null and b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-BoldItalic-webfont.woff differ
diff --git a/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Italic-webfont.ttf b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Italic-webfont.ttf
new file mode 100644
index 0000000000..c90da48ff3
Binary files /dev/null and b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Italic-webfont.ttf differ
diff --git a/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Italic-webfont.woff b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Italic-webfont.woff
new file mode 100644
index 0000000000..8117253064
Binary files /dev/null and b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Italic-webfont.woff differ
diff --git a/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Regular-webfont.ttf b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Regular-webfont.ttf
new file mode 100644
index 0000000000..db433349b7
Binary files /dev/null and b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Regular-webfont.ttf differ
diff --git a/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Regular-webfont.woff b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Regular-webfont.woff
new file mode 100644
index 0000000000..b9f6ccbee4
Binary files /dev/null and b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Regular-webfont.woff differ
diff --git a/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Semibold-webfont.ttf b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Semibold-webfont.ttf
new file mode 100644
index 0000000000..1a7679e394
Binary files /dev/null and b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Semibold-webfont.ttf differ
diff --git a/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Semibold-webfont.woff b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Semibold-webfont.woff
new file mode 100644
index 0000000000..0f369d83af
Binary files /dev/null and b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-Semibold-webfont.woff differ
diff --git a/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-SemiboldItalic-webfont.ttf b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-SemiboldItalic-webfont.ttf
new file mode 100644
index 0000000000..59b6d16b06
Binary files /dev/null and b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-SemiboldItalic-webfont.ttf differ
diff --git a/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-SemiboldItalic-webfont.woff b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-SemiboldItalic-webfont.woff
new file mode 100644
index 0000000000..486c2a1e5a
Binary files /dev/null and b/api/mapas/src/themes/BaseV2/assets/fonts/OpenSans-SemiboldItalic-webfont.woff differ
diff --git a/src/themes/BaseV2/assets/img/404.png b/api/mapas/src/themes/BaseV2/assets/img/404.png
similarity index 100%
rename from src/themes/BaseV2/assets/img/404.png
rename to api/mapas/src/themes/BaseV2/assets/img/404.png
diff --git a/src/themes/BaseV2/assets/img/error-500.png b/api/mapas/src/themes/BaseV2/assets/img/error-500.png
similarity index 100%
rename from src/themes/BaseV2/assets/img/error-500.png
rename to api/mapas/src/themes/BaseV2/assets/img/error-500.png
diff --git a/src/themes/BaseV2/assets/img/error403.png b/api/mapas/src/themes/BaseV2/assets/img/error403.png
similarity index 100%
rename from src/themes/BaseV2/assets/img/error403.png
rename to api/mapas/src/themes/BaseV2/assets/img/error403.png
diff --git a/src/themes/BaseV2/assets/img/faq.png b/api/mapas/src/themes/BaseV2/assets/img/faq.png
similarity index 100%
rename from src/themes/BaseV2/assets/img/faq.png
rename to api/mapas/src/themes/BaseV2/assets/img/faq.png
diff --git a/src/themes/BaseV2/assets/img/favicon-180x180.png b/api/mapas/src/themes/BaseV2/assets/img/favicon-180x180.png
similarity index 100%
rename from src/themes/BaseV2/assets/img/favicon-180x180.png
rename to api/mapas/src/themes/BaseV2/assets/img/favicon-180x180.png
diff --git a/src/themes/BaseV2/assets/img/favicon-192x192.png b/api/mapas/src/themes/BaseV2/assets/img/favicon-192x192.png
similarity index 100%
rename from src/themes/BaseV2/assets/img/favicon-192x192.png
rename to api/mapas/src/themes/BaseV2/assets/img/favicon-192x192.png
diff --git a/src/themes/BaseV2/assets/img/favicon-512x512.png b/api/mapas/src/themes/BaseV2/assets/img/favicon-512x512.png
similarity index 100%
rename from src/themes/BaseV2/assets/img/favicon-512x512.png
rename to api/mapas/src/themes/BaseV2/assets/img/favicon-512x512.png
diff --git a/src/themes/BaseV2/assets/img/favicon.ico b/api/mapas/src/themes/BaseV2/assets/img/favicon.ico
similarity index 100%
rename from src/themes/BaseV2/assets/img/favicon.ico
rename to api/mapas/src/themes/BaseV2/assets/img/favicon.ico
diff --git a/src/themes/BaseV2/assets/img/favicon.svg b/api/mapas/src/themes/BaseV2/assets/img/favicon.svg
similarity index 100%
rename from src/themes/BaseV2/assets/img/favicon.svg
rename to api/mapas/src/themes/BaseV2/assets/img/favicon.svg
diff --git a/src/themes/BaseV2/assets/img/logo-Mapa-CE.png b/api/mapas/src/themes/BaseV2/assets/img/logo-Mapa-CE.png
similarity index 100%
rename from src/themes/BaseV2/assets/img/logo-Mapa-CE.png
rename to api/mapas/src/themes/BaseV2/assets/img/logo-Mapa-CE.png
diff --git a/src/themes/BaseV2/assets/img/share.png b/api/mapas/src/themes/BaseV2/assets/img/share.png
similarity index 100%
rename from src/themes/BaseV2/assets/img/share.png
rename to api/mapas/src/themes/BaseV2/assets/img/share.png
diff --git a/src/themes/BaseV2/assets/img/unknown.png b/api/mapas/src/themes/BaseV2/assets/img/unknown.png
similarity index 100%
rename from src/themes/BaseV2/assets/img/unknown.png
rename to api/mapas/src/themes/BaseV2/assets/img/unknown.png
diff --git a/src/themes/BaseV2/conf-base.php b/api/mapas/src/themes/BaseV2/conf-base.php
similarity index 100%
rename from src/themes/BaseV2/conf-base.php
rename to api/mapas/src/themes/BaseV2/conf-base.php
diff --git a/src/themes/BaseV2/layouts/default.php b/api/mapas/src/themes/BaseV2/layouts/default.php
similarity index 100%
rename from src/themes/BaseV2/layouts/default.php
rename to api/mapas/src/themes/BaseV2/layouts/default.php
diff --git a/src/themes/BaseV2/layouts/parts/footer-support-message.php b/api/mapas/src/themes/BaseV2/layouts/parts/footer-support-message.php
similarity index 100%
rename from src/themes/BaseV2/layouts/parts/footer-support-message.php
rename to api/mapas/src/themes/BaseV2/layouts/parts/footer-support-message.php
diff --git a/src/themes/BaseV2/layouts/parts/footer.php b/api/mapas/src/themes/BaseV2/layouts/parts/footer.php
similarity index 100%
rename from src/themes/BaseV2/layouts/parts/footer.php
rename to api/mapas/src/themes/BaseV2/layouts/parts/footer.php
diff --git a/src/themes/BaseV2/layouts/parts/header.php b/api/mapas/src/themes/BaseV2/layouts/parts/header.php
similarity index 100%
rename from src/themes/BaseV2/layouts/parts/header.php
rename to api/mapas/src/themes/BaseV2/layouts/parts/header.php
diff --git a/src/themes/BaseV2/layouts/parts/main-footer.php b/api/mapas/src/themes/BaseV2/layouts/parts/main-footer.php
similarity index 100%
rename from src/themes/BaseV2/layouts/parts/main-footer.php
rename to api/mapas/src/themes/BaseV2/layouts/parts/main-footer.php
diff --git a/src/themes/BaseV2/layouts/parts/main-header.php b/api/mapas/src/themes/BaseV2/layouts/parts/main-header.php
similarity index 100%
rename from src/themes/BaseV2/layouts/parts/main-header.php
rename to api/mapas/src/themes/BaseV2/layouts/parts/main-header.php
diff --git a/src/themes/BaseV2/layouts/parts/navbar.php b/api/mapas/src/themes/BaseV2/layouts/parts/navbar.php
similarity index 100%
rename from src/themes/BaseV2/layouts/parts/navbar.php
rename to api/mapas/src/themes/BaseV2/layouts/parts/navbar.php
diff --git a/src/themes/BaseV2/layouts/parts/site-logo.php b/api/mapas/src/themes/BaseV2/layouts/parts/site-logo.php
similarity index 100%
rename from src/themes/BaseV2/layouts/parts/site-logo.php
rename to api/mapas/src/themes/BaseV2/layouts/parts/site-logo.php
diff --git a/src/themes/BaseV2/package.json b/api/mapas/src/themes/BaseV2/package.json
similarity index 100%
rename from src/themes/BaseV2/package.json
rename to api/mapas/src/themes/BaseV2/package.json
diff --git a/src/themes/BaseV2/views/site/error-403.php b/api/mapas/src/themes/BaseV2/views/site/error-403.php
similarity index 100%
rename from src/themes/BaseV2/views/site/error-403.php
rename to api/mapas/src/themes/BaseV2/views/site/error-403.php
diff --git a/src/themes/BaseV2/views/site/error-404.php b/api/mapas/src/themes/BaseV2/views/site/error-404.php
similarity index 100%
rename from src/themes/BaseV2/views/site/error-404.php
rename to api/mapas/src/themes/BaseV2/views/site/error-404.php
diff --git a/src/themes/BaseV2/views/site/error-500.php b/api/mapas/src/themes/BaseV2/views/site/error-500.php
similarity index 100%
rename from src/themes/BaseV2/views/site/error-500.php
rename to api/mapas/src/themes/BaseV2/views/site/error-500.php
diff --git a/src/themes/Subsite/Theme.php b/api/mapas/src/themes/Subsite/Theme.php
similarity index 100%
rename from src/themes/Subsite/Theme.php
rename to api/mapas/src/themes/Subsite/Theme.php
diff --git a/src/themes/Subsite/assets/css/sass/_overrides.scss b/api/mapas/src/themes/Subsite/assets/css/sass/_overrides.scss
similarity index 100%
rename from src/themes/Subsite/assets/css/sass/_overrides.scss
rename to api/mapas/src/themes/Subsite/assets/css/sass/_overrides.scss
diff --git a/src/themes/Subsite/assets/css/sass/_variables.scss b/api/mapas/src/themes/Subsite/assets/css/sass/_variables.scss
similarity index 100%
rename from src/themes/Subsite/assets/css/sass/_variables.scss
rename to api/mapas/src/themes/Subsite/assets/css/sass/_variables.scss
diff --git a/src/themes/Subsite/assets/css/sass/main.scss b/api/mapas/src/themes/Subsite/assets/css/sass/main.scss
similarity index 100%
rename from src/themes/Subsite/assets/css/sass/main.scss
rename to api/mapas/src/themes/Subsite/assets/css/sass/main.scss
diff --git a/src/themes/Subsite/assets/img/.gitignore b/api/mapas/src/themes/Subsite/assets/img/.gitignore
similarity index 100%
rename from src/themes/Subsite/assets/img/.gitignore
rename to api/mapas/src/themes/Subsite/assets/img/.gitignore
diff --git a/src/themes/Subsite/assets/img/fundo.png b/api/mapas/src/themes/Subsite/assets/img/fundo.png
similarity index 100%
rename from src/themes/Subsite/assets/img/fundo.png
rename to api/mapas/src/themes/Subsite/assets/img/fundo.png
diff --git a/src/themes/Subsite/assets/img/logo-instituicao.png b/api/mapas/src/themes/Subsite/assets/img/logo-instituicao.png
similarity index 100%
rename from src/themes/Subsite/assets/img/logo-instituicao.png
rename to api/mapas/src/themes/Subsite/assets/img/logo-instituicao.png
diff --git a/src/themes/Subsite/assets/img/logo-site.png b/api/mapas/src/themes/Subsite/assets/img/logo-site.png
similarity index 100%
rename from src/themes/Subsite/assets/img/logo-site.png
rename to api/mapas/src/themes/Subsite/assets/img/logo-site.png
diff --git a/src/themes/Subsite/assets/img/mapasculturais_fundo.svg b/api/mapas/src/themes/Subsite/assets/img/mapasculturais_fundo.svg
similarity index 100%
rename from src/themes/Subsite/assets/img/mapasculturais_fundo.svg
rename to api/mapas/src/themes/Subsite/assets/img/mapasculturais_fundo.svg
diff --git a/src/themes/Subsite/assets/img/mapasculturais_logo-instituicao.svg b/api/mapas/src/themes/Subsite/assets/img/mapasculturais_logo-instituicao.svg
similarity index 100%
rename from src/themes/Subsite/assets/img/mapasculturais_logo-instituicao.svg
rename to api/mapas/src/themes/Subsite/assets/img/mapasculturais_logo-instituicao.svg
diff --git a/src/themes/Subsite/assets/img/mapasculturais_logo-site.svg b/api/mapas/src/themes/Subsite/assets/img/mapasculturais_logo-site.svg
similarity index 100%
rename from src/themes/Subsite/assets/img/mapasculturais_logo-site.svg
rename to api/mapas/src/themes/Subsite/assets/img/mapasculturais_logo-site.svg
diff --git a/src/themes/Subsite/assets/img/pin-doble-example.svg b/api/mapas/src/themes/Subsite/assets/img/pin-doble-example.svg
similarity index 100%
rename from src/themes/Subsite/assets/img/pin-doble-example.svg
rename to api/mapas/src/themes/Subsite/assets/img/pin-doble-example.svg
diff --git a/src/themes/Subsite/assets/img/pin-single-example.svg b/api/mapas/src/themes/Subsite/assets/img/pin-single-example.svg
similarity index 100%
rename from src/themes/Subsite/assets/img/pin-single-example.svg
rename to api/mapas/src/themes/Subsite/assets/img/pin-single-example.svg
diff --git a/src/themes/Subsite/assets/img/pin-triple-example.svg b/api/mapas/src/themes/Subsite/assets/img/pin-triple-example.svg
similarity index 100%
rename from src/themes/Subsite/assets/img/pin-triple-example.svg
rename to api/mapas/src/themes/Subsite/assets/img/pin-triple-example.svg
diff --git a/src/themes/Subsite/assets/img/tour/tour01.png b/api/mapas/src/themes/Subsite/assets/img/tour/tour01.png
similarity index 100%
rename from src/themes/Subsite/assets/img/tour/tour01.png
rename to api/mapas/src/themes/Subsite/assets/img/tour/tour01.png
diff --git a/src/themes/Subsite/assets/img/tour/tour02.png b/api/mapas/src/themes/Subsite/assets/img/tour/tour02.png
similarity index 100%
rename from src/themes/Subsite/assets/img/tour/tour02.png
rename to api/mapas/src/themes/Subsite/assets/img/tour/tour02.png
diff --git a/src/themes/Subsite/assets/img/tour/tour03.png b/api/mapas/src/themes/Subsite/assets/img/tour/tour03.png
similarity index 100%
rename from src/themes/Subsite/assets/img/tour/tour03.png
rename to api/mapas/src/themes/Subsite/assets/img/tour/tour03.png
diff --git a/src/themes/Subsite/assets/img/tour/tour04.png b/api/mapas/src/themes/Subsite/assets/img/tour/tour04.png
similarity index 100%
rename from src/themes/Subsite/assets/img/tour/tour04.png
rename to api/mapas/src/themes/Subsite/assets/img/tour/tour04.png
diff --git a/src/themes/Subsite/assets/img/tour/tour05.png b/api/mapas/src/themes/Subsite/assets/img/tour/tour05.png
similarity index 100%
rename from src/themes/Subsite/assets/img/tour/tour05.png
rename to api/mapas/src/themes/Subsite/assets/img/tour/tour05.png
diff --git a/src/themes/Subsite/conf-base.php b/api/mapas/src/themes/Subsite/conf-base.php
similarity index 100%
rename from src/themes/Subsite/conf-base.php
rename to api/mapas/src/themes/Subsite/conf-base.php
diff --git a/src/themes/Subsite/db-updates.php b/api/mapas/src/themes/Subsite/db-updates.php
similarity index 100%
rename from src/themes/Subsite/db-updates.php
rename to api/mapas/src/themes/Subsite/db-updates.php
diff --git a/src/themes/Subsite/em-manutencao/index.html b/api/mapas/src/themes/Subsite/em-manutencao/index.html
similarity index 100%
rename from src/themes/Subsite/em-manutencao/index.html
rename to api/mapas/src/themes/Subsite/em-manutencao/index.html
diff --git a/src/themes/Subsite/layouts/parts/editable-entity-logo.php b/api/mapas/src/themes/Subsite/layouts/parts/editable-entity-logo.php
similarity index 100%
rename from src/themes/Subsite/layouts/parts/editable-entity-logo.php
rename to api/mapas/src/themes/Subsite/layouts/parts/editable-entity-logo.php
diff --git a/src/themes/Subsite/layouts/parts/header-about-nav.php b/api/mapas/src/themes/Subsite/layouts/parts/header-about-nav.php
similarity index 100%
rename from src/themes/Subsite/layouts/parts/header-about-nav.php
rename to api/mapas/src/themes/Subsite/layouts/parts/header-about-nav.php
diff --git a/src/themes/Subsite/layouts/parts/header-logo.php b/api/mapas/src/themes/Subsite/layouts/parts/header-logo.php
similarity index 100%
rename from src/themes/Subsite/layouts/parts/header-logo.php
rename to api/mapas/src/themes/Subsite/layouts/parts/header-logo.php
diff --git a/src/themes/Subsite/pages/_left.md b/api/mapas/src/themes/Subsite/pages/_left.md
similarity index 100%
rename from src/themes/Subsite/pages/_left.md
rename to api/mapas/src/themes/Subsite/pages/_left.md
diff --git a/src/themes/Subsite/pages/como-usar.md b/api/mapas/src/themes/Subsite/pages/como-usar.md
similarity index 100%
rename from src/themes/Subsite/pages/como-usar.md
rename to api/mapas/src/themes/Subsite/pages/como-usar.md
diff --git a/src/themes/Subsite/pages/sobre.md b/api/mapas/src/themes/Subsite/pages/sobre.md
similarity index 100%
rename from src/themes/Subsite/pages/sobre.md
rename to api/mapas/src/themes/Subsite/pages/sobre.md
diff --git a/src/tools/apply-multicore-db-update.php b/api/mapas/src/tools/apply-multicore-db-update.php
similarity index 100%
rename from src/tools/apply-multicore-db-update.php
rename to api/mapas/src/tools/apply-multicore-db-update.php
diff --git a/src/tools/apply-updates.php b/api/mapas/src/tools/apply-updates.php
similarity index 100%
rename from src/tools/apply-updates.php
rename to api/mapas/src/tools/apply-updates.php
diff --git a/src/tools/cli-config.php b/api/mapas/src/tools/cli-config.php
similarity index 100%
rename from src/tools/cli-config.php
rename to api/mapas/src/tools/cli-config.php
diff --git a/src/tools/doctrine b/api/mapas/src/tools/doctrine
similarity index 100%
rename from src/tools/doctrine
rename to api/mapas/src/tools/doctrine
diff --git a/src/tools/doctrine.php b/api/mapas/src/tools/doctrine.php
similarity index 100%
rename from src/tools/doctrine.php
rename to api/mapas/src/tools/doctrine.php
diff --git a/src/tools/execute-job.php b/api/mapas/src/tools/execute-job.php
similarity index 100%
rename from src/tools/execute-job.php
rename to api/mapas/src/tools/execute-job.php
diff --git a/src/tools/generate-config-documentation.php b/api/mapas/src/tools/generate-config-documentation.php
similarity index 100%
rename from src/tools/generate-config-documentation.php
rename to api/mapas/src/tools/generate-config-documentation.php
diff --git a/src/tools/get-theme-assets-path.php b/api/mapas/src/tools/get-theme-assets-path.php
similarity index 100%
rename from src/tools/get-theme-assets-path.php
rename to api/mapas/src/tools/get-theme-assets-path.php
diff --git a/src/tools/psysh.php b/api/mapas/src/tools/psysh.php
similarity index 100%
rename from src/tools/psysh.php
rename to api/mapas/src/tools/psysh.php
diff --git a/src/tools/recreate-pending-pcache.php b/api/mapas/src/tools/recreate-pending-pcache.php
similarity index 100%
rename from src/tools/recreate-pending-pcache.php
rename to api/mapas/src/tools/recreate-pending-pcache.php
diff --git a/src/tools/reverse-engineering.sh b/api/mapas/src/tools/reverse-engineering.sh
similarity index 100%
rename from src/tools/reverse-engineering.sh
rename to api/mapas/src/tools/reverse-engineering.sh
diff --git a/src/translations/empty.mo b/api/mapas/src/translations/empty.mo
similarity index 100%
rename from src/translations/empty.mo
rename to api/mapas/src/translations/empty.mo
diff --git a/src/translations/empty.po b/api/mapas/src/translations/empty.po
similarity index 100%
rename from src/translations/empty.po
rename to api/mapas/src/translations/empty.po
diff --git a/src/translations/es_AR.mo b/api/mapas/src/translations/es_AR.mo
similarity index 100%
rename from src/translations/es_AR.mo
rename to api/mapas/src/translations/es_AR.mo
diff --git a/src/translations/es_AR.po b/api/mapas/src/translations/es_AR.po
similarity index 100%
rename from src/translations/es_AR.po
rename to api/mapas/src/translations/es_AR.po
diff --git a/src/translations/es_ES.mo b/api/mapas/src/translations/es_ES.mo
similarity index 100%
rename from src/translations/es_ES.mo
rename to api/mapas/src/translations/es_ES.mo
diff --git a/src/translations/es_ES.po b/api/mapas/src/translations/es_ES.po
similarity index 100%
rename from src/translations/es_ES.po
rename to api/mapas/src/translations/es_ES.po
diff --git a/src/translations/es_v2.mo b/api/mapas/src/translations/es_v2.mo
similarity index 100%
rename from src/translations/es_v2.mo
rename to api/mapas/src/translations/es_v2.mo
diff --git a/src/translations/es_v2.po b/api/mapas/src/translations/es_v2.po
similarity index 100%
rename from src/translations/es_v2.po
rename to api/mapas/src/translations/es_v2.po
diff --git a/src/translations/pt-br.php b/api/mapas/src/translations/pt-br.php
similarity index 100%
rename from src/translations/pt-br.php
rename to api/mapas/src/translations/pt-br.php
diff --git a/src/translations/pt_BR.php b/api/mapas/src/translations/pt_BR.php
similarity index 100%
rename from src/translations/pt_BR.php
rename to api/mapas/src/translations/pt_BR.php
diff --git a/tests/db/dump.sql b/api/mapas/tests/db/dump.sql
similarity index 100%
rename from tests/db/dump.sql
rename to api/mapas/tests/db/dump.sql
diff --git a/tests/docker-compose.yml b/api/mapas/tests/docker-compose.yml
similarity index 100%
rename from tests/docker-compose.yml
rename to api/mapas/tests/docker-compose.yml
diff --git a/tests/docker/config.php b/api/mapas/tests/docker/config.php
similarity index 100%
rename from tests/docker/config.php
rename to api/mapas/tests/docker/config.php
diff --git a/tests/run.sh b/api/mapas/tests/run.sh
similarity index 100%
rename from tests/run.sh
rename to api/mapas/tests/run.sh
diff --git a/tests/src/APITest.php b/api/mapas/tests/src/APITest.php
similarity index 100%
rename from tests/src/APITest.php
rename to api/mapas/tests/src/APITest.php
diff --git a/tests/src/AgentTest.php b/api/mapas/tests/src/AgentTest.php
similarity index 100%
rename from tests/src/AgentTest.php
rename to api/mapas/tests/src/AgentTest.php
diff --git a/tests/src/AuthTest.php b/api/mapas/tests/src/AuthTest.php
similarity index 100%
rename from tests/src/AuthTest.php
rename to api/mapas/tests/src/AuthTest.php
diff --git a/tests/src/CreateEntitiesForDoctrineProxyTest.php b/api/mapas/tests/src/CreateEntitiesForDoctrineProxyTest.php
similarity index 100%
rename from tests/src/CreateEntitiesForDoctrineProxyTest.php
rename to api/mapas/tests/src/CreateEntitiesForDoctrineProxyTest.php
diff --git a/tests/src/DoctrineFunctionTest.php b/api/mapas/tests/src/DoctrineFunctionTest.php
similarity index 100%
rename from tests/src/DoctrineFunctionTest.php
rename to api/mapas/tests/src/DoctrineFunctionTest.php
diff --git a/tests/src/Entity.inc.TestEntities.php b/api/mapas/tests/src/Entity.inc.TestEntities.php
similarity index 100%
rename from tests/src/Entity.inc.TestEntities.php
rename to api/mapas/tests/src/Entity.inc.TestEntities.php
diff --git a/tests/src/EntityTest.php b/api/mapas/tests/src/EntityTest.php
similarity index 100%
rename from tests/src/EntityTest.php
rename to api/mapas/tests/src/EntityTest.php
diff --git a/tests/src/EventTest.php b/api/mapas/tests/src/EventTest.php
similarity index 100%
rename from tests/src/EventTest.php
rename to api/mapas/tests/src/EventTest.php
diff --git a/tests/src/FilesTest.php b/api/mapas/tests/src/FilesTest.php
similarity index 100%
rename from tests/src/FilesTest.php
rename to api/mapas/tests/src/FilesTest.php
diff --git a/tests/src/HooksTest.php b/api/mapas/tests/src/HooksTest.php
similarity index 100%
rename from tests/src/HooksTest.php
rename to api/mapas/tests/src/HooksTest.php
diff --git a/tests/src/MetadataTest.php b/api/mapas/tests/src/MetadataTest.php
similarity index 100%
rename from tests/src/MetadataTest.php
rename to api/mapas/tests/src/MetadataTest.php
diff --git a/tests/src/ModuleAgendaSingleTest.php b/api/mapas/tests/src/ModuleAgendaSingleTest.php
similarity index 100%
rename from tests/src/ModuleAgendaSingleTest.php
rename to api/mapas/tests/src/ModuleAgendaSingleTest.php
diff --git a/tests/src/PermissionsTest.php b/api/mapas/tests/src/PermissionsTest.php
similarity index 100%
rename from tests/src/PermissionsTest.php
rename to api/mapas/tests/src/PermissionsTest.php
diff --git a/tests/src/ProjectTest.php b/api/mapas/tests/src/ProjectTest.php
similarity index 100%
rename from tests/src/ProjectTest.php
rename to api/mapas/tests/src/ProjectTest.php
diff --git a/tests/src/RoutesTest.php b/api/mapas/tests/src/RoutesTest.php
similarity index 100%
rename from tests/src/RoutesTest.php
rename to api/mapas/tests/src/RoutesTest.php
diff --git a/tests/src/SealTest.php b/api/mapas/tests/src/SealTest.php
similarity index 100%
rename from tests/src/SealTest.php
rename to api/mapas/tests/src/SealTest.php
diff --git a/tests/src/TaxonomiesTest.php b/api/mapas/tests/src/TaxonomiesTest.php
similarity index 100%
rename from tests/src/TaxonomiesTest.php
rename to api/mapas/tests/src/TaxonomiesTest.php
diff --git a/tests/src/WorkflowTest.php b/api/mapas/tests/src/WorkflowTest.php
similarity index 100%
rename from tests/src/WorkflowTest.php
rename to api/mapas/tests/src/WorkflowTest.php
diff --git a/tests/src/api-queries.json b/api/mapas/tests/src/api-queries.json
similarity index 100%
rename from tests/src/api-queries.json
rename to api/mapas/tests/src/api-queries.json
diff --git a/tests/src/bootstrap.php b/api/mapas/tests/src/bootstrap.php
similarity index 100%
rename from tests/src/bootstrap.php
rename to api/mapas/tests/src/bootstrap.php
diff --git a/tests/src/classes/TestCase.php b/api/mapas/tests/src/classes/TestCase.php
similarity index 100%
rename from tests/src/classes/TestCase.php
rename to api/mapas/tests/src/classes/TestCase.php
diff --git a/tests/src/classes/TestFactory.php b/api/mapas/tests/src/classes/TestFactory.php
similarity index 100%
rename from tests/src/classes/TestFactory.php
rename to api/mapas/tests/src/classes/TestFactory.php
diff --git a/tests/src/files/.gitignore b/api/mapas/tests/src/files/.gitignore
similarity index 100%
rename from tests/src/files/.gitignore
rename to api/mapas/tests/src/files/.gitignore
diff --git a/version.txt b/api/mapas/version.txt
similarity index 100%
rename from version.txt
rename to api/mapas/version.txt
diff --git a/var/saas-files/.gitignore b/api/migrations/.gitignore
similarity index 100%
rename from var/saas-files/.gitignore
rename to api/migrations/.gitignore
diff --git a/api/migrations/Version20240307125735.php b/api/migrations/Version20240307125735.php
new file mode 100644
index 0000000000..bb7bce8f36
--- /dev/null
+++ b/api/migrations/Version20240307125735.php
@@ -0,0 +1,34 @@
+addSql('CREATE SEQUENCE greeting_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
+ $this->addSql('CREATE TABLE greeting (id INT NOT NULL, name VARCHAR(255) NOT NULL, PRIMARY KEY(id))');
+ }
+
+ public function down(Schema $schema): void
+ {
+ // this down() migration is auto-generated, please modify it to your needs
+ $this->addSql('CREATE SCHEMA public');
+ $this->addSql('DROP SEQUENCE greeting_id_seq CASCADE');
+ $this->addSql('DROP TABLE greeting');
+ }
+}
diff --git a/api/phpunit.xml.dist b/api/phpunit.xml.dist
new file mode 100644
index 0000000000..c76a655ac4
--- /dev/null
+++ b/api/phpunit.xml.dist
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ tests
+
+
+
+
+
+ src
+
+
+
+
+
+
+
+
+
+
diff --git a/api/public/apple-touch-icon.png b/api/public/apple-touch-icon.png
new file mode 100644
index 0000000000..ff0eafb361
Binary files /dev/null and b/api/public/apple-touch-icon.png differ
diff --git a/api/public/favicon.ico b/api/public/favicon.ico
new file mode 100644
index 0000000000..e5710b852a
Binary files /dev/null and b/api/public/favicon.ico differ
diff --git a/api/public/index.php b/api/public/index.php
new file mode 100644
index 0000000000..9982c218d6
--- /dev/null
+++ b/api/public/index.php
@@ -0,0 +1,9 @@
+id;
+ }
+}
diff --git a/api/src/Kernel.php b/api/src/Kernel.php
new file mode 100644
index 0000000000..779cd1f2b1
--- /dev/null
+++ b/api/src/Kernel.php
@@ -0,0 +1,11 @@
+
+
+
+
+ {% block title %}Welcome!{% endblock %}
+
+ {% block stylesheets %}
+ {% endblock %}
+
+ {% block javascripts %}
+ {% endblock %}
+
+
+ {% block body %}{% endblock %}
+
+
diff --git a/api/tests/Api/GreetingsTest.php b/api/tests/Api/GreetingsTest.php
new file mode 100644
index 0000000000..acff072198
--- /dev/null
+++ b/api/tests/Api/GreetingsTest.php
@@ -0,0 +1,27 @@
+request('POST', '/greetings', [
+ 'json' => [
+ 'name' => 'Kévin',
+ ],
+ 'headers' => [
+ 'Content-Type' => 'application/ld+json',
+ ],
+ ]);
+
+ $this->assertResponseStatusCodeSame(201);
+ $this->assertJsonContains([
+ '@context' => '/contexts/Greeting',
+ '@type' => 'Greeting',
+ 'name' => 'Kévin',
+ ]);
+ }
+}
diff --git a/api/tests/bootstrap.php b/api/tests/bootstrap.php
new file mode 100644
index 0000000000..47a58557dc
--- /dev/null
+++ b/api/tests/bootstrap.php
@@ -0,0 +1,13 @@
+bootEnv(dirname(__DIR__).'/.env');
+}
+
+if ($_SERVER['APP_DEBUG']) {
+ umask(0000);
+}
diff --git a/compose.override.yaml b/compose.override.yaml
new file mode 100644
index 0000000000..39e7701097
--- /dev/null
+++ b/compose.override.yaml
@@ -0,0 +1,45 @@
+# Development environment override
+services:
+ php:
+ build:
+ context: ./api
+ target: frankenphp_dev
+ volumes:
+ - ./api:/app
+ - /app/var
+ - ./api/frankenphp/Caddyfile:/etc/caddy/Caddyfile:ro
+ - ./api/frankenphp/conf.d/app.dev.ini:/usr/local/etc/php/conf.d/app.dev.ini:ro
+ # If you develop on Mac or Windows you can remove the vendor/ directory
+ # from the bind-mount for better performance by enabling the next line:
+ #- /app/vendor
+ environment:
+ MERCURE_EXTRA_DIRECTIVES: demo
+ # See https://xdebug.org/docs/all_settings#mode
+ XDEBUG_MODE: "${XDEBUG_MODE:-off}"
+ extra_hosts:
+ # Ensure that host.docker.internal is correctly defined on Linux
+ - host.docker.internal:host-gateway
+ tty: true
+
+ pwa:
+ build:
+ context: ./pwa
+ target: dev
+ volumes:
+ - ./pwa:/srv/app
+ environment:
+ API_PLATFORM_CREATE_CLIENT_ENTRYPOINT: http://php
+ API_PLATFORM_CREATE_CLIENT_OUTPUT: .
+ # On Linux, you may want to comment the following line for improved performance
+ WATCHPACK_POLLING: "true"
+
+###> doctrine/doctrine-bundle ###
+ database:
+ ports:
+ - target: 5432
+ published: 5432
+ protocol: tcp
+###< doctrine/doctrine-bundle ###
+
+###> symfony/mercure-bundle ###
+###< symfony/mercure-bundle ###
diff --git a/compose.prod.yaml b/compose.prod.yaml
new file mode 100644
index 0000000000..86c9c41de4
--- /dev/null
+++ b/compose.prod.yaml
@@ -0,0 +1,19 @@
+# Production environment override
+services:
+ php:
+ build:
+ context: ./api
+ target: frankenphp_prod
+ environment:
+ APP_SECRET: ${APP_SECRET}
+ MERCURE_PUBLISHER_JWT_KEY: ${CADDY_MERCURE_JWT_SECRET}
+ MERCURE_SUBSCRIBER_JWT_KEY: ${CADDY_MERCURE_JWT_SECRET}
+
+ pwa:
+ build:
+ context: ./pwa
+ target: prod
+
+ database:
+ environment:
+ POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
diff --git a/compose.yaml b/compose.yaml
new file mode 100644
index 0000000000..ad75758baf
--- /dev/null
+++ b/compose.yaml
@@ -0,0 +1,79 @@
+services:
+ php:
+ image: ${IMAGES_PREFIX:-}app-php
+ env_file:
+ - api/.env
+ depends_on:
+ - database
+ restart: unless-stopped
+ environment:
+ PWA_UPSTREAM: pwa:3000
+ SERVER_NAME: ${SERVER_NAME:-localhost}, php:80
+ MERCURE_PUBLISHER_JWT_KEY: ${CADDY_MERCURE_JWT_SECRET:-!ChangeThisMercureHubJWTSecretKey!}
+ MERCURE_SUBSCRIBER_JWT_KEY: ${CADDY_MERCURE_JWT_SECRET:-!ChangeThisMercureHubJWTSecretKey!}
+ TRUSTED_PROXIES: ${TRUSTED_PROXIES:-127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16}
+ TRUSTED_HOSTS: ${TRUSTED_HOSTS:-^${SERVER_NAME:-example\.com|localhost}|php$$}
+ DATABASE_URL: postgresql://${POSTGRES_USER:-app}:${POSTGRES_PASSWORD:-!ChangeMe!}@database:5432/${POSTGRES_DB:-app}?serverVersion=${POSTGRES_VERSION:-16}&charset=${POSTGRES_CHARSET:-utf8}
+ MERCURE_URL: ${CADDY_MERCURE_URL:-http://php/.well-known/mercure}
+ MERCURE_PUBLIC_URL: ${CADDY_MERCURE_PUBLIC_URL:-https://${SERVER_NAME:-localhost}/.well-known/mercure}
+ MERCURE_JWT_SECRET: ${CADDY_MERCURE_JWT_SECRET:-!ChangeThisMercureHubJWTSecretKey!}
+ BUILD_ASSETS: 0
+ PENDING_PCACHE_RECREATION_INTERVAL: 5
+ JOBS_INTERVAL: 5
+ REDIS_CACHE: redis
+ MAILER_TRANSPORT: smtp://mailhog:1025
+ MAILER_DSN: smtp://mailhog:1025
+ MAILER_FROM: sysadmin@localhost
+ NUM_PROCESSES: 2
+ MC_UPDATES_PROCESSES: 4
+ volumes:
+ - caddy_data:/data
+ - caddy_config:/config
+ ports:
+ # HTTP
+ - target: 80
+ published: ${HTTP_PORT:-80}
+ protocol: tcp
+ # HTTPS
+ - target: 443
+ published: ${HTTPS_PORT:-443}
+ protocol: tcp
+ # HTTP/3
+ - target: 443
+ published: ${HTTP3_PORT:-443}
+ protocol: udp
+
+ pwa:
+ image: ${IMAGES_PREFIX:-}app-pwa
+ environment:
+ NEXT_PUBLIC_ENTRYPOINT: http://php
+
+ ###> doctrine/doctrine-bundle ###
+ database:
+ image: kartoza/postgis:${POSTGRES_VERSION:-14}
+ environment:
+ - POSTGRES_DB=${POSTGRES_DB:-app}
+ # You should definitely change the password in production
+ - POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-!ChangeMe!}
+ - POSTGRES_USER=${POSTGRES_USER:-app}
+ volumes:
+ - db_data:/var/lib/postgresql/data
+ - ./api/mapas/dev/db:/docker-entrypoint-initdb.d
+ # you may use a bind-mounted host directory instead, so that it is harder to accidentally remove the volume and lose all your data!
+ # - ./api/docker/db/data:/var/lib/postgresql/data
+ healthcheck:
+ test: "PGPASSWORD=${POSTGRES_PASSWORD} pg_isready -h 127.0.0.1 -U ${POSTGRES_USER} -d mapas"
+###< doctrine/doctrine-bundle ###
+
+# Mercure is installed as a Caddy module, prevent the Flex recipe from installing another service
+###> symfony/mercure-bundle ###
+###< symfony/mercure-bundle ###
+
+volumes:
+ caddy_data:
+ caddy_config:
+ ###> doctrine/doctrine-bundle ###
+ db_data:
+###< doctrine/doctrine-bundle ###
+###> symfony/mercure-bundle ###
+###< symfony/mercure-bundle ###
diff --git a/composer.json b/composer.json
deleted file mode 100644
index ae8b4b21ef..0000000000
--- a/composer.json
+++ /dev/null
@@ -1,66 +0,0 @@
-{
- "require": {
- "acelaya/doctrine-enum-type": "^2.3",
- "akrabat/ip-address-middleware": "^2.1",
- "doctrine/annotations": "^2.0",
- "doctrine/dbal": "^3.6",
- "doctrine/orm": "2.16.*",
- "firebase/php-jwt": "^6.4",
- "michelf/php-markdown": "1.*",
- "monolog/monolog": "^3.4",
- "mustache/mustache": "^2.11",
- "opauth/openid": "*",
- "opauth/logincidadao" : "*",
- "opauth/authentik" : "*",
- "pomo/pomo": "^1.5",
- "psy/psysh": "^0.11.12",
- "respect/validation": "^2.2",
- "sinergi/browser-detector": "^6.1",
- "slim/psr7": "^1.6",
- "slim/slim": "4.*",
- "smottt/wideimage": "*",
- "symfony/amazon-mailer": "^6.3",
- "symfony/cache": "^6.2",
- "symfony/mailchimp-mailer": "^6.3",
- "symfony/mailer": "^6.3",
- "symfony/mailgun-mailer": "^6.3",
- "symfony/mime": "^6.3",
- "symfony/sendgrid-mailer": "^6.3",
- "league/csv": "^9.6.2",
- "symfony/http-foundation": "^7.0",
- "symfony/routing": "^7.0",
- "symfony/console": "^6.4.6",
- "symfony/serializer": "^7.0",
- "symfony/property-access": "^7.0",
- "symfony/validator": "^7.0"
- },
- "autoload": {
- "psr-4": {
- "App\\": "app/src",
- "App\\Tests\\": "app/tests",
- "MapasCulturais\\": "src/core",
- "MapasCulturais\\Modules\\": "src/modules",
- "MapasCulturais\\Themes\\": "src/themes"
- }
- },
- "repositories": [
- {
- "type": "git",
- "url": "https://github.com/hacklabr/opauth-logincidadao.git"
- },
- {
- "type": "git",
- "url": "https://github.com/mapasculturais/opauth-authentik.git"
- },
- {
- "type": "git",
- "url": "https://github.com/mapasculturais/opauth.git"
- }
- ],
- "require-dev": {
- "friendsofphp/php-cs-fixer": "^3.51",
- "phpunit/phpunit": "^10",
- "symfony/http-client": "^7",
- "doctrine/data-fixtures": "^1.7"
- }
-}
diff --git a/documentation/ApiHook-doc/template/vendor/bootstrap.min.css b/documentation/ApiHook-doc/template/vendor/bootstrap.min.css
deleted file mode 100644
index ed3905e0e0..0000000000
--- a/documentation/ApiHook-doc/template/vendor/bootstrap.min.css
+++ /dev/null
@@ -1,6 +0,0 @@
-/*!
- * Bootstrap v3.3.7 (http://getbootstrap.com)
- * Copyright 2011-2016 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
-/*# sourceMappingURL=bootstrap.min.css.map */
\ No newline at end of file
diff --git a/documentation/ApiHook-doc/template/vendor/bootstrap.min.js b/documentation/ApiHook-doc/template/vendor/bootstrap.min.js
deleted file mode 100644
index 9bcd2fccae..0000000000
--- a/documentation/ApiHook-doc/template/vendor/bootstrap.min.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/*!
- * Bootstrap v3.3.7 (http://getbootstrap.com)
- * Copyright 2011-2016 Twitter, Inc.
- * Licensed under the MIT license
- */
-if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){if(a(b.target).is(this))return b.handleObj.handler.apply(this,arguments)}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.7",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a("#"===f?[]:f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.7",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c).prop(c,!0)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c).prop(c,!1))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target).closest(".btn");b.call(d,"toggle"),a(c.target).is('input[type="radio"], input[type="checkbox"]')||(c.preventDefault(),d.is("input,button")?d.trigger("focus"):d.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.7",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(a>this.$items.length-1||a<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){if(!this.sliding)return this.slide("next")},c.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.7",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.7",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&jdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);if(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),!c.isInStateTrue())return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null,a.$element=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;!e&&/destroy|hide/.test(b)||(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.7",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'
'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.7",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.7",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return e=a-d&&"bottom"},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
\ No newline at end of file
diff --git a/documentation/ApiHook-doc/template/vendor/diff_match_patch.min.js b/documentation/ApiHook-doc/template/vendor/diff_match_patch.min.js
deleted file mode 100644
index c41b51327d..0000000000
--- a/documentation/ApiHook-doc/template/vendor/diff_match_patch.min.js
+++ /dev/null
@@ -1,49 +0,0 @@
-(function(){function diff_match_patch(){this.Diff_Timeout=1;this.Diff_EditCost=4;this.Match_Threshold=0.5;this.Match_Distance=1E3;this.Patch_DeleteThreshold=0.5;this.Patch_Margin=4;this.Match_MaxBits=32}
-diff_match_patch.prototype.diff_main=function(a,b,c,d){"undefined"==typeof d&&(d=0>=this.Diff_Timeout?Number.MAX_VALUE:(new Date).getTime()+1E3*this.Diff_Timeout);if(null==a||null==b)throw Error("Null input. (diff_main)");if(a==b)return a?[[0,a]]:[];"undefined"==typeof c&&(c=!0);var e=c,f=this.diff_commonPrefix(a,b);c=a.substring(0,f);a=a.substring(f);b=b.substring(f);var f=this.diff_commonSuffix(a,b),g=a.substring(a.length-f);a=a.substring(0,a.length-f);b=b.substring(0,b.length-f);a=this.diff_compute_(a,
-b,e,d);c&&a.unshift([0,c]);g&&a.push([0,g]);this.diff_cleanupMerge(a);return a};
-diff_match_patch.prototype.diff_compute_=function(a,b,c,d){if(!a)return[[1,b]];if(!b)return[[-1,a]];var e=a.length>b.length?a:b,f=a.length>b.length?b:a,g=e.indexOf(f);return-1!=g?(c=[[1,e.substring(0,g)],[0,f],[1,e.substring(g+f.length)]],a.length>b.length&&(c[0][0]=c[2][0]=-1),c):1==f.length?[[-1,a],[1,b]]:(e=this.diff_halfMatch_(a,b))?(f=e[0],a=e[1],g=e[2],b=e[3],e=e[4],f=this.diff_main(f,g,c,d),c=this.diff_main(a,b,c,d),f.concat([[0,e]],c)):c&&100c);v++){for(var n=-v+r;n<=v-t;n+=2){var l=g+n,m;m=n==-v||n!=v&&j[l-1]d)t+=2;else if(s>e)r+=2;else if(q&&(l=g+k-n,0<=l&&l=
-u)return this.diff_bisectSplit_(a,b,m,s,c)}}for(n=-v+p;n<=v-w;n+=2){l=g+n;u=n==-v||n!=v&&i[l-1]d)w+=2;else if(m>e)p+=2;else if(!q&&(l=g+k-n,0<=l&&(l=u)))return this.diff_bisectSplit_(a,b,m,s,c)}}return[[-1,a],[1,b]]};
-diff_match_patch.prototype.diff_bisectSplit_=function(a,b,c,d,e){var f=a.substring(0,c),g=b.substring(0,d);a=a.substring(c);b=b.substring(d);f=this.diff_main(f,g,!1,e);e=this.diff_main(a,b,!1,e);return f.concat(e)};
-diff_match_patch.prototype.diff_linesToChars_=function(a,b){function c(a){for(var b="",c=0,f=-1,g=d.length;fd?a=a.substring(c-d):c=a.length?[h,j,n,l,g]:null}if(0>=this.Diff_Timeout)return null;
-var d=a.length>b.length?a:b,e=a.length>b.length?b:a;if(4>d.length||2*e.lengthd[4].length?g:d:d:g;var j;a.length>b.length?(g=h[0],d=h[1],e=h[2],j=h[3]):(e=h[0],j=h[1],g=h[2],d=h[3]);h=h[4];return[g,d,e,j,h]};
-diff_match_patch.prototype.diff_cleanupSemantic=function(a){for(var b=!1,c=[],d=0,e=null,f=0,g=0,h=0,j=0,i=0;f=e){if(d>=b.length/2||d>=c.length/2)a.splice(f,0,[0,c.substring(0,d)]),a[f-1][1]=b.substring(0,b.length-d),a[f+1][1]=c.substring(d),f++}else if(e>=b.length/2||e>=c.length/2)a.splice(f,0,[0,b.substring(0,e)]),a[f-1][0]=1,a[f-1][1]=c.substring(0,c.length-e),a[f+1][0]=-1,a[f+1][1]=b.substring(e),f++;f++}f++}};
-diff_match_patch.prototype.diff_cleanupSemanticLossless=function(a){function b(a,b){if(!a||!b)return 6;var c=a.charAt(a.length-1),d=b.charAt(0),e=c.match(diff_match_patch.nonAlphaNumericRegex_),f=d.match(diff_match_patch.nonAlphaNumericRegex_),g=e&&c.match(diff_match_patch.whitespaceRegex_),h=f&&d.match(diff_match_patch.whitespaceRegex_),c=g&&c.match(diff_match_patch.linebreakRegex_),d=h&&d.match(diff_match_patch.linebreakRegex_),i=c&&a.match(diff_match_patch.blanklineEndRegex_),j=d&&b.match(diff_match_patch.blanklineStartRegex_);
-return i||j?5:c||d?4:e&&!g&&h?3:g||h?2:e||f?1:0}for(var c=1;c=i&&(i=k,g=d,h=e,j=f)}a[c-1][1]!=g&&(g?a[c-1][1]=g:(a.splice(c-1,1),c--),a[c][1]=
-h,j?a[c+1][1]=j:(a.splice(c+1,1),c--))}c++}};diff_match_patch.nonAlphaNumericRegex_=/[^a-zA-Z0-9]/;diff_match_patch.whitespaceRegex_=/\s/;diff_match_patch.linebreakRegex_=/[\r\n]/;diff_match_patch.blanklineEndRegex_=/\n\r?\n$/;diff_match_patch.blanklineStartRegex_=/^\r?\n\r?\n/;
-diff_match_patch.prototype.diff_cleanupEfficiency=function(a){for(var b=!1,c=[],d=0,e=null,f=0,g=!1,h=!1,j=!1,i=!1;fb)break;e=c;f=d}return a.length!=g&&-1===a[g][0]?f:f+(b-e)};
-diff_match_patch.prototype.diff_prettyHtml=function(a){for(var b=[],c=/&/g,d=//g,f=/\n/g,g=0;g");switch(h){case 1:b[g]=''+j+"";break;case -1:b[g]=''+j+"";break;case 0:b[g]=""+j+""}}return b.join("")};
-diff_match_patch.prototype.diff_text1=function(a){for(var b=[],c=0;ci)throw Error("Invalid number in diff_fromDelta: "+h);h=a.substring(e,e+=i);"="==f[g].charAt(0)?c[d++]=[0,h]:c[d++]=[-1,h];break;default:if(f[g])throw Error("Invalid diff operation in diff_fromDelta: "+
-f[g]);}}if(e!=a.length)throw Error("Delta length ("+e+") does not equal source text length ("+a.length+").");return c};diff_match_patch.prototype.match_main=function(a,b,c){if(null==a||null==b||null==c)throw Error("Null input. (match_main)");c=Math.max(0,Math.min(c,a.length));return a==b?0:a.length?a.substring(c,c+b.length)==b?c:this.match_bitap_(a,b,c):-1};
-diff_match_patch.prototype.match_bitap_=function(a,b,c){function d(a,d){var e=a/b.length,g=Math.abs(c-d);return!f.Match_Distance?g?1:e:e+g/f.Match_Distance}if(b.length>this.Match_MaxBits)throw Error("Pattern too long for this browser.");var e=this.match_alphabet_(b),f=this,g=this.Match_Threshold,h=a.indexOf(b,c);-1!=h&&(g=Math.min(d(0,h),g),h=a.lastIndexOf(b,c+b.length),-1!=h&&(g=Math.min(d(0,h),g)));for(var j=1<=i;p--){var w=e[a.charAt(p-1)];k[p]=0===t?(k[p+1]<<1|1)&w:(k[p+1]<<1|1)&w|((r[p+1]|r[p])<<1|1)|r[p+1];if(k[p]&j&&(w=d(t,p-1),w<=g))if(g=w,h=p-1,h>c)i=Math.max(1,2*c-h);else break}if(d(t+1,c)>g)break;r=k}return h};
-diff_match_patch.prototype.match_alphabet_=function(a){for(var b={},c=0;c=2*this.Patch_Margin&&
-e&&(this.patch_addContext_(a,h),c.push(a),a=new diff_match_patch.patch_obj,e=0,h=d,f=g)}1!==i&&(f+=k.length);-1!==i&&(g+=k.length)}e&&(this.patch_addContext_(a,h),c.push(a));return c};diff_match_patch.prototype.patch_deepCopy=function(a){for(var b=[],c=0;cthis.Match_MaxBits){if(j=this.match_main(b,h.substring(0,this.Match_MaxBits),g),-1!=j&&(i=this.match_main(b,h.substring(h.length-this.Match_MaxBits),g+h.length-this.Match_MaxBits),-1==i||j>=i))j=-1}else j=this.match_main(b,h,g);
-if(-1==j)e[f]=!1,d-=a[f].length2-a[f].length1;else if(e[f]=!0,d=j-g,g=-1==i?b.substring(j,j+h.length):b.substring(j,i+this.Match_MaxBits),h==g)b=b.substring(0,j)+this.diff_text2(a[f].diffs)+b.substring(j+h.length);else if(g=this.diff_main(h,g,!1),h.length>this.Match_MaxBits&&this.diff_levenshtein(g)/h.length>this.Patch_DeleteThreshold)e[f]=!1;else{this.diff_cleanupSemanticLossless(g);for(var h=0,k,i=0;ie[0][1].length){var f=b-e[0][1].length;e[0][1]=c.substring(e[0][1].length)+e[0][1];d.start1-=f;d.start2-=f;d.length1+=f;d.length2+=f}d=a[a.length-1];e=d.diffs;0==e.length||0!=e[e.length-1][0]?(e.push([0,
-c]),d.length1+=b,d.length2+=b):b>e[e.length-1][1].length&&(f=b-e[e.length-1][1].length,e[e.length-1][1]+=c.substring(0,f),d.length1+=f,d.length2+=f);return c};
-diff_match_patch.prototype.patch_splitMax=function(a){for(var b=this.Match_MaxBits,c=0;c2*b?(h.length1+=i.length,e+=i.length,j=!1,h.diffs.push([g,i]),d.diffs.shift()):(i=i.substring(0,b-h.length1-this.Patch_Margin),h.length1+=i.length,e+=i.length,0===g?(h.length2+=i.length,f+=i.length):j=!1,h.diffs.push([g,i]),i==d.diffs[0][1]?d.diffs.shift():d.diffs[0][1]=d.diffs[0][1].substring(i.length))}g=this.diff_text2(h.diffs);g=g.substring(g.length-this.Patch_Margin);i=this.diff_text1(d.diffs).substring(0,this.Patch_Margin);""!==i&&
-(h.length1+=i.length,h.length2+=i.length,0!==h.diffs.length&&0===h.diffs[h.diffs.length-1][0]?h.diffs[h.diffs.length-1][1]+=i:h.diffs.push([0,i]));j||a.splice(++c,0,h)}}};diff_match_patch.prototype.patch_toText=function(a){for(var b=[],c=0;c= 2.0.0-beta.1",7:">= 4.0.0"};b.REVISION_CHANGES=o;var p="[object Object]";d.prototype={constructor:d,logger:l["default"],log:l["default"].log,registerHelper:function(a,b){if(f.toString.call(a)===p){if(b)throw new h["default"]("Arg not supported with multiple helpers");f.extend(this.helpers,a)}else this.helpers[a]=b},unregisterHelper:function(a){delete this.helpers[a]},registerPartial:function(a,b){if(f.toString.call(a)===p)f.extend(this.partials,a);else{if("undefined"==typeof b)throw new h["default"]('Attempting to register a partial called "'+a+'" as undefined');this.partials[a]=b}},unregisterPartial:function(a){delete this.partials[a]},registerDecorator:function(a,b){if(f.toString.call(a)===p){if(b)throw new h["default"]("Arg not supported with multiple decorators");f.extend(this.decorators,a)}else this.decorators[a]=b},unregisterDecorator:function(a){delete this.decorators[a]}};var q=l["default"].log;b.log=q,b.createFrame=f.createFrame,b.logger=l["default"]},function(a,b){"use strict";function c(a){return k[a]}function d(a){for(var b=1;bc;c++)if(a[c]===b)return c;return-1}function f(a){if("string"!=typeof a){if(a&&a.toHTML)return a.toHTML();if(null==a)return"";if(!a)return a+"";a=""+a}return m.test(a)?a.replace(l,c):a}function g(a){return a||0===a?p(a)&&0===a.length?!0:!1:!0}function h(a){var b=d({},a);return b._parent=a,b}function i(a,b){return a.path=b,a}function j(a,b){return(a?a+".":"")+b}b.__esModule=!0,b.extend=d,b.indexOf=e,b.escapeExpression=f,b.isEmpty=g,b.createFrame=h,b.blockParams=i,b.appendContextPath=j;var k={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`","=":"="},l=/[&<>"'`=]/g,m=/[&<>"'`=]/,n=Object.prototype.toString;b.toString=n;var o=function(a){return"function"==typeof a};o(/x/)&&(b.isFunction=o=function(a){return"function"==typeof a&&"[object Function]"===n.call(a)}),b.isFunction=o;var p=Array.isArray||function(a){return a&&"object"==typeof a?"[object Array]"===n.call(a):!1};b.isArray=p},function(a,b){"use strict";function c(a,b){var e=b&&b.loc,f=void 0,g=void 0;e&&(f=e.start.line,g=e.start.column,a+=" - "+f+":"+g);for(var h=Error.prototype.constructor.call(this,a),i=0;i0?(c.ids&&(c.ids=[c.name]),a.helpers.each(b,c)):e(this);if(c.data&&c.ids){var g=d.createFrame(c.data);g.contextPath=d.appendContextPath(c.data.contextPath,c.name),c={data:g}}return f(b,c)})},a.exports=b["default"]},function(a,b,c){"use strict";var d=c(1)["default"];b.__esModule=!0;var e=c(5),f=c(6),g=d(f);b["default"]=function(a){a.registerHelper("each",function(a,b){function c(b,c,f){j&&(j.key=b,j.index=c,j.first=0===c,j.last=!!f,k&&(j.contextPath=k+b)),i+=d(a[b],{data:j,blockParams:e.blockParams([a[b],b],[k+b,null])})}if(!b)throw new g["default"]("Must pass iterator to #each");var d=b.fn,f=b.inverse,h=0,i="",j=void 0,k=void 0;if(b.data&&b.ids&&(k=e.appendContextPath(b.data.contextPath,b.ids[0])+"."),e.isFunction(a)&&(a=a.call(this)),b.data&&(j=e.createFrame(b.data)),a&&"object"==typeof a)if(e.isArray(a))for(var l=a.length;l>h;h++)h in a&&c(h,h,h===a.length-1);else{var m=void 0;for(var n in a)a.hasOwnProperty(n)&&(void 0!==m&&c(m,h-1),m=n,h++);void 0!==m&&c(m,h-1,!0)}return 0===h&&(i=f(this)),i})},a.exports=b["default"]},function(a,b,c){"use strict";var d=c(1)["default"];b.__esModule=!0;var e=c(6),f=d(e);b["default"]=function(a){a.registerHelper("helperMissing",function(){if(1!==arguments.length)throw new f["default"]('Missing helper: "'+arguments[arguments.length-1].name+'"')})},a.exports=b["default"]},function(a,b,c){"use strict";b.__esModule=!0;var d=c(5);b["default"]=function(a){a.registerHelper("if",function(a,b){return d.isFunction(a)&&(a=a.call(this)),!b.hash.includeZero&&!a||d.isEmpty(a)?b.inverse(this):b.fn(this)}),a.registerHelper("unless",function(b,c){return a.helpers["if"].call(this,b,{fn:c.inverse,inverse:c.fn,hash:c.hash})})},a.exports=b["default"]},function(a,b){"use strict";b.__esModule=!0,b["default"]=function(a){a.registerHelper("log",function(){for(var b=[void 0],c=arguments[arguments.length-1],d=0;d=0?b:parseInt(a,10)}return a},log:function(a){if(a=e.lookupLevel(a),"undefined"!=typeof console&&e.lookupLevel(e.level)<=a){var b=e.methodMap[a];console[b]||(b="log");for(var c=arguments.length,d=Array(c>1?c-1:0),f=1;c>f;f++)d[f-1]=arguments[f];console[b].apply(console,d)}}};b["default"]=e,a.exports=b["default"]},function(a,b){"use strict";function c(a){this.string=a}b.__esModule=!0,c.prototype.toString=c.prototype.toHTML=function(){return""+this.string},b["default"]=c,a.exports=b["default"]},function(a,b,c){"use strict";function d(a){var b=a&&a[0]||1,c=r.COMPILER_REVISION;if(b!==c){if(c>b){var d=r.REVISION_CHANGES[c],e=r.REVISION_CHANGES[b];throw new q["default"]("Template was precompiled with an older version of Handlebars than the current runtime. Please update your precompiler to a newer version ("+d+") or downgrade your runtime to an older version ("+e+").")}throw new q["default"]("Template was precompiled with a newer version of Handlebars than the current runtime. Please update your runtime to a newer version ("+a[1]+").")}}function e(a,b){function c(c,d,e){e.hash&&(d=o.extend({},d,e.hash),e.ids&&(e.ids[0]=!0)),c=b.VM.resolvePartial.call(this,c,d,e);var f=b.VM.invokePartial.call(this,c,d,e);if(null==f&&b.compile&&(e.partials[e.name]=b.compile(c,a.compilerOptions,b),f=e.partials[e.name](d,e)),null!=f){if(e.indent){for(var g=f.split("\n"),h=0,i=g.length;i>h&&(g[h]||h+1!==i);h++)g[h]=e.indent+g[h];f=g.join("\n")}return f}throw new q["default"]("The partial "+e.name+" could not be compiled when running in runtime-only mode")}function d(b){function c(b){return""+a.main(e,b,e.helpers,e.partials,g,i,h)}var f=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],g=f.data;d._setup(f),!f.partial&&a.useData&&(g=j(b,g));var h=void 0,i=a.useBlockParams?[]:void 0;return a.useDepths&&(h=f.depths?b!==f.depths[0]?[b].concat(f.depths):f.depths:[b]),(c=k(a.main,c,e,f.depths||[],g,i))(b,f)}if(!b)throw new q["default"]("No environment passed to template");if(!a||!a.main)throw new q["default"]("Unknown template object: "+typeof a);a.main.decorator=a.main_d,b.VM.checkRevision(a.compiler);var e={strict:function(a,b){if(!(b in a))throw new q["default"]('"'+b+'" not defined in '+a);return a[b]},lookup:function(a,b){for(var c=a.length,d=0;c>d;d++)if(a[d]&&null!=a[d][b])return a[d][b]},lambda:function(a,b){return"function"==typeof a?a.call(b):a},escapeExpression:o.escapeExpression,invokePartial:c,fn:function(b){var c=a[b];return c.decorator=a[b+"_d"],c},programs:[],program:function(a,b,c,d,e){var g=this.programs[a],h=this.fn(a);return b||e||d||c?g=f(this,a,h,b,c,d,e):g||(g=this.programs[a]=f(this,a,h)),g},data:function(a,b){for(;a&&b--;)a=a._parent;return a},merge:function(a,b){var c=a||b;return a&&b&&a!==b&&(c=o.extend({},b,a)),c},noop:b.VM.noop,compilerInfo:a.compiler};return d.isTop=!0,d._setup=function(c){c.partial?(e.helpers=c.helpers,e.partials=c.partials,e.decorators=c.decorators):(e.helpers=e.merge(c.helpers,b.helpers),a.usePartial&&(e.partials=e.merge(c.partials,b.partials)),(a.usePartial||a.useDecorators)&&(e.decorators=e.merge(c.decorators,b.decorators)))},d._child=function(b,c,d,g){if(a.useBlockParams&&!d)throw new q["default"]("must pass block params");if(a.useDepths&&!g)throw new q["default"]("must pass parent depths");return f(e,b,a[b],c,0,d,g)},d}function f(a,b,c,d,e,f,g){function h(b){var e=arguments.length<=1||void 0===arguments[1]?{}:arguments[1],h=g;return g&&b!==g[0]&&(h=[b].concat(g)),c(a,b,a.helpers,a.partials,e.data||d,f&&[e.blockParams].concat(f),h)}return h=k(c,h,a,g,d,f),h.program=b,h.depth=g?g.length:0,h.blockParams=e||0,h}function g(a,b,c){return a?a.call||c.name||(c.name=a,a=c.partials[a]):a="@partial-block"===c.name?c.data["partial-block"]:c.partials[c.name],a}function h(a,b,c){c.partial=!0,c.ids&&(c.data.contextPath=c.ids[0]||c.data.contextPath);var d=void 0;if(c.fn&&c.fn!==i&&(c.data=r.createFrame(c.data),d=c.data["partial-block"]=c.fn,d.partials&&(c.partials=o.extend({},c.partials,d.partials))),void 0===a&&d&&(a=d),void 0===a)throw new q["default"]("The partial "+c.name+" could not be found");return a instanceof Function?a(b,c):void 0}function i(){return""}function j(a,b){return b&&"root"in b||(b=b?r.createFrame(b):{},b.root=a),b}function k(a,b,c,d,e,f){if(a.decorator){var g={};b=a.decorator(b,g,c,d&&d[0],e,f,d),o.extend(b,g)}return b}var l=c(3)["default"],m=c(1)["default"];b.__esModule=!0,b.checkRevision=d,b.template=e,b.wrapProgram=f,b.resolvePartial=g,b.invokePartial=h,b.noop=i;var n=c(5),o=l(n),p=c(6),q=m(p),r=c(4)},function(a,b){(function(c){"use strict";b.__esModule=!0,b["default"]=function(a){var b="undefined"!=typeof c?c:window,d=b.Handlebars;a.noConflict=function(){return b.Handlebars===a&&(b.Handlebars=d),a}},a.exports=b["default"]}).call(b,function(){return this}())},function(a,b){"use strict";b.__esModule=!0;var c={helpers:{helperExpression:function(a){return"SubExpression"===a.type||("MustacheStatement"===a.type||"BlockStatement"===a.type)&&!!(a.params&&a.params.length||a.hash)},scopedId:function(a){return/^\.|this\b/.test(a.original)},simpleId:function(a){return 1===a.parts.length&&!c.helpers.scopedId(a)&&!a.depth}}};b["default"]=c,a.exports=b["default"]},function(a,b,c){"use strict";function d(a,b){if("Program"===a.type)return a;h["default"].yy=n,n.locInfo=function(a){return new n.SourceLocation(b&&b.srcName,a)};var c=new j["default"](b);return c.accept(h["default"].parse(a))}var e=c(1)["default"],f=c(3)["default"];b.__esModule=!0,b.parse=d;var g=c(23),h=e(g),i=c(24),j=e(i),k=c(26),l=f(k),m=c(5);b.parser=h["default"];var n={};m.extend(n,l)},function(a,b){"use strict";var c=function(){function a(){this.yy={}}var b={trace:function(){},yy:{},symbols_:{error:2,root:3,program:4,EOF:5,program_repetition0:6,statement:7,mustache:8,block:9,rawBlock:10,partial:11,partialBlock:12,content:13,COMMENT:14,CONTENT:15,openRawBlock:16,rawBlock_repetition_plus0:17,END_RAW_BLOCK:18,OPEN_RAW_BLOCK:19,helperName:20,openRawBlock_repetition0:21,openRawBlock_option0:22,CLOSE_RAW_BLOCK:23,openBlock:24,block_option0:25,closeBlock:26,openInverse:27,block_option1:28,OPEN_BLOCK:29,openBlock_repetition0:30,openBlock_option0:31,openBlock_option1:32,CLOSE:33,OPEN_INVERSE:34,openInverse_repetition0:35,openInverse_option0:36,openInverse_option1:37,openInverseChain:38,OPEN_INVERSE_CHAIN:39,openInverseChain_repetition0:40,openInverseChain_option0:41,openInverseChain_option1:42,inverseAndProgram:43,INVERSE:44,inverseChain:45,inverseChain_option0:46,OPEN_ENDBLOCK:47,OPEN:48,mustache_repetition0:49,mustache_option0:50,OPEN_UNESCAPED:51,mustache_repetition1:52,mustache_option1:53,CLOSE_UNESCAPED:54,OPEN_PARTIAL:55,partialName:56,partial_repetition0:57,partial_option0:58,openPartialBlock:59,OPEN_PARTIAL_BLOCK:60,openPartialBlock_repetition0:61,openPartialBlock_option0:62,param:63,sexpr:64,OPEN_SEXPR:65,sexpr_repetition0:66,sexpr_option0:67,CLOSE_SEXPR:68,hash:69,hash_repetition_plus0:70,hashSegment:71,ID:72,EQUALS:73,blockParams:74,OPEN_BLOCK_PARAMS:75,blockParams_repetition_plus0:76,CLOSE_BLOCK_PARAMS:77,path:78,dataName:79,STRING:80,NUMBER:81,BOOLEAN:82,UNDEFINED:83,NULL:84,DATA:85,pathSegments:86,SEP:87,$accept:0,$end:1},terminals_:{2:"error",5:"EOF",14:"COMMENT",15:"CONTENT",18:"END_RAW_BLOCK",19:"OPEN_RAW_BLOCK",23:"CLOSE_RAW_BLOCK",29:"OPEN_BLOCK",33:"CLOSE",34:"OPEN_INVERSE",39:"OPEN_INVERSE_CHAIN",44:"INVERSE",47:"OPEN_ENDBLOCK",48:"OPEN",51:"OPEN_UNESCAPED",54:"CLOSE_UNESCAPED",55:"OPEN_PARTIAL",60:"OPEN_PARTIAL_BLOCK",65:"OPEN_SEXPR",68:"CLOSE_SEXPR",72:"ID",73:"EQUALS",75:"OPEN_BLOCK_PARAMS",77:"CLOSE_BLOCK_PARAMS",80:"STRING",81:"NUMBER",82:"BOOLEAN",83:"UNDEFINED",84:"NULL",85:"DATA",87:"SEP"},productions_:[0,[3,2],[4,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[7,1],[13,1],[10,3],[16,5],[9,4],[9,4],[24,6],[27,6],[38,6],[43,2],[45,3],[45,1],[26,3],[8,5],[8,5],[11,5],[12,3],[59,5],[63,1],[63,1],[64,5],[69,1],[71,3],[74,3],[20,1],[20,1],[20,1],[20,1],[20,1],[20,1],[20,1],[56,1],[56,1],[79,2],[78,1],[86,3],[86,1],[6,0],[6,2],[17,1],[17,2],[21,0],[21,2],[22,0],[22,1],[25,0],[25,1],[28,0],[28,1],[30,0],[30,2],[31,0],[31,1],[32,0],[32,1],[35,0],[35,2],[36,0],[36,1],[37,0],[37,1],[40,0],[40,2],[41,0],[41,1],[42,0],[42,1],[46,0],[46,1],[49,0],[49,2],[50,0],[50,1],[52,0],[52,2],[53,0],[53,1],[57,0],[57,2],[58,0],[58,1],[61,0],[61,2],[62,0],[62,1],[66,0],[66,2],[67,0],[67,1],[70,1],[70,2],[76,1],[76,2]],performAction:function(a,b,c,d,e,f,g){var h=f.length-1;switch(e){case 1:return f[h-1];case 2:this.$=d.prepareProgram(f[h]);break;case 3:this.$=f[h];break;case 4:this.$=f[h];break;case 5:this.$=f[h];break;case 6:this.$=f[h];break;case 7:this.$=f[h];break;case 8:this.$=f[h];break;case 9:this.$={type:"CommentStatement",value:d.stripComment(f[h]),strip:d.stripFlags(f[h],f[h]),loc:d.locInfo(this._$)};break;case 10:this.$={type:"ContentStatement",original:f[h],value:f[h],loc:d.locInfo(this._$)};break;case 11:this.$=d.prepareRawBlock(f[h-2],f[h-1],f[h],this._$);break;case 12:this.$={path:f[h-3],params:f[h-2],hash:f[h-1]};break;case 13:this.$=d.prepareBlock(f[h-3],f[h-2],f[h-1],f[h],!1,this._$);break;case 14:this.$=d.prepareBlock(f[h-3],f[h-2],f[h-1],f[h],!0,this._$);break;case 15:this.$={open:f[h-5],path:f[h-4],params:f[h-3],hash:f[h-2],blockParams:f[h-1],strip:d.stripFlags(f[h-5],f[h])};break;case 16:this.$={path:f[h-4],params:f[h-3],hash:f[h-2],blockParams:f[h-1],strip:d.stripFlags(f[h-5],f[h])};break;case 17:this.$={path:f[h-4],params:f[h-3],hash:f[h-2],blockParams:f[h-1],strip:d.stripFlags(f[h-5],f[h])};break;case 18:this.$={strip:d.stripFlags(f[h-1],f[h-1]),program:f[h]};break;case 19:var i=d.prepareBlock(f[h-2],f[h-1],f[h],f[h],!1,this._$),j=d.prepareProgram([i],f[h-1].loc);j.chained=!0,this.$={strip:f[h-2].strip,program:j,chain:!0};break;case 20:this.$=f[h];break;case 21:this.$={path:f[h-1],strip:d.stripFlags(f[h-2],f[h])};break;case 22:this.$=d.prepareMustache(f[h-3],f[h-2],f[h-1],f[h-4],d.stripFlags(f[h-4],f[h]),this._$);break;case 23:this.$=d.prepareMustache(f[h-3],f[h-2],f[h-1],f[h-4],d.stripFlags(f[h-4],f[h]),this._$);break;case 24:this.$={type:"PartialStatement",name:f[h-3],params:f[h-2],hash:f[h-1],indent:"",strip:d.stripFlags(f[h-4],f[h]),loc:d.locInfo(this._$)};break;case 25:this.$=d.preparePartialBlock(f[h-2],f[h-1],f[h],this._$);break;case 26:this.$={path:f[h-3],params:f[h-2],hash:f[h-1],strip:d.stripFlags(f[h-4],f[h])};break;case 27:this.$=f[h];break;case 28:this.$=f[h];break;case 29:this.$={type:"SubExpression",path:f[h-3],params:f[h-2],hash:f[h-1],loc:d.locInfo(this._$)};break;case 30:this.$={type:"Hash",pairs:f[h],loc:d.locInfo(this._$)};break;case 31:this.$={type:"HashPair",key:d.id(f[h-2]),value:f[h],loc:d.locInfo(this._$)};break;case 32:this.$=d.id(f[h-1]);break;case 33:this.$=f[h];break;case 34:this.$=f[h];break;case 35:this.$={type:"StringLiteral",value:f[h],original:f[h],loc:d.locInfo(this._$)};break;case 36:this.$={type:"NumberLiteral",value:Number(f[h]),original:Number(f[h]),loc:d.locInfo(this._$)};break;case 37:this.$={type:"BooleanLiteral",value:"true"===f[h],original:"true"===f[h],loc:d.locInfo(this._$)};break;case 38:this.$={type:"UndefinedLiteral",original:void 0,value:void 0,loc:d.locInfo(this._$)};break;case 39:this.$={type:"NullLiteral",original:null,value:null,loc:d.locInfo(this._$)};break;case 40:this.$=f[h];break;case 41:this.$=f[h];break;case 42:this.$=d.preparePath(!0,f[h],this._$);break;case 43:this.$=d.preparePath(!1,f[h],this._$);break;case 44:f[h-2].push({part:d.id(f[h]),original:f[h],separator:f[h-1]}),this.$=f[h-2];break;case 45:this.$=[{part:d.id(f[h]),original:f[h]}];break;case 46:this.$=[];break;case 47:f[h-1].push(f[h]);break;case 48:this.$=[f[h]];break;case 49:f[h-1].push(f[h]);break;case 50:this.$=[];break;case 51:f[h-1].push(f[h]);break;case 58:this.$=[];break;case 59:f[h-1].push(f[h]);break;case 64:this.$=[];break;case 65:f[h-1].push(f[h]);break;case 70:this.$=[];break;case 71:f[h-1].push(f[h]);break;case 78:this.$=[];break;case 79:f[h-1].push(f[h]);break;case 82:this.$=[];break;case 83:f[h-1].push(f[h]);break;case 86:this.$=[];break;case 87:f[h-1].push(f[h]);break;case 90:this.$=[];break;case 91:f[h-1].push(f[h]);break;case 94:this.$=[];break;case 95:f[h-1].push(f[h]);break;case 98:this.$=[f[h]];break;case 99:f[h-1].push(f[h]);break;case 100:this.$=[f[h]];break;case 101:f[h-1].push(f[h])}},table:[{3:1,4:2,5:[2,46],6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{1:[3]},{5:[1,4]},{5:[2,2],7:5,8:6,9:7,10:8,11:9,12:10,13:11,14:[1,12],15:[1,20],16:17,19:[1,23],24:15,27:16,29:[1,21],34:[1,22],39:[2,2],44:[2,2],47:[2,2],48:[1,13],51:[1,14],55:[1,18],59:19,60:[1,24]},{1:[2,1]},{5:[2,47],14:[2,47],15:[2,47],19:[2,47],29:[2,47],34:[2,47],39:[2,47],44:[2,47],47:[2,47],48:[2,47],51:[2,47],55:[2,47],60:[2,47]},{5:[2,3],14:[2,3],15:[2,3],19:[2,3],29:[2,3],34:[2,3],39:[2,3],44:[2,3],47:[2,3],48:[2,3],51:[2,3],55:[2,3],60:[2,3]},{5:[2,4],14:[2,4],15:[2,4],19:[2,4],29:[2,4],34:[2,4],39:[2,4],44:[2,4],47:[2,4],48:[2,4],51:[2,4],55:[2,4],60:[2,4]},{5:[2,5],14:[2,5],15:[2,5],19:[2,5],29:[2,5],34:[2,5],39:[2,5],44:[2,5],47:[2,5],48:[2,5],51:[2,5],55:[2,5],60:[2,5]},{5:[2,6],14:[2,6],15:[2,6],19:[2,6],29:[2,6],34:[2,6],39:[2,6],44:[2,6],47:[2,6],48:[2,6],51:[2,6],55:[2,6],60:[2,6]},{5:[2,7],14:[2,7],15:[2,7],19:[2,7],29:[2,7],34:[2,7],39:[2,7],44:[2,7],47:[2,7],48:[2,7],51:[2,7],55:[2,7],60:[2,7]},{5:[2,8],14:[2,8],15:[2,8],19:[2,8],29:[2,8],34:[2,8],39:[2,8],44:[2,8],47:[2,8],48:[2,8],51:[2,8],55:[2,8],60:[2,8]},{5:[2,9],14:[2,9],15:[2,9],19:[2,9],29:[2,9],34:[2,9],39:[2,9],44:[2,9],47:[2,9],48:[2,9],51:[2,9],55:[2,9],60:[2,9]},{20:25,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:36,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{4:37,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],39:[2,46],44:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{4:38,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],44:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{13:40,15:[1,20],17:39},{20:42,56:41,64:43,65:[1,44],72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{4:45,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{5:[2,10],14:[2,10],15:[2,10],18:[2,10],19:[2,10],29:[2,10],34:[2,10],39:[2,10],44:[2,10],47:[2,10],48:[2,10],51:[2,10],55:[2,10],60:[2,10]},{20:46,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:47,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:48,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:42,56:49,64:43,65:[1,44],72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{33:[2,78],49:50,65:[2,78],72:[2,78],80:[2,78],81:[2,78],82:[2,78],83:[2,78],84:[2,78],85:[2,78]},{23:[2,33],33:[2,33],54:[2,33],65:[2,33],68:[2,33],72:[2,33],75:[2,33],80:[2,33],81:[2,33],82:[2,33],83:[2,33],84:[2,33],85:[2,33]},{23:[2,34],33:[2,34],54:[2,34],65:[2,34],68:[2,34],72:[2,34],75:[2,34],80:[2,34],81:[2,34],82:[2,34],83:[2,34],84:[2,34],85:[2,34]},{23:[2,35],33:[2,35],54:[2,35],65:[2,35],68:[2,35],72:[2,35],75:[2,35],80:[2,35],81:[2,35],82:[2,35],83:[2,35],84:[2,35],85:[2,35]},{23:[2,36],33:[2,36],54:[2,36],65:[2,36],68:[2,36],72:[2,36],75:[2,36],80:[2,36],81:[2,36],82:[2,36],83:[2,36],84:[2,36],85:[2,36]},{23:[2,37],33:[2,37],54:[2,37],65:[2,37],68:[2,37],72:[2,37],75:[2,37],80:[2,37],81:[2,37],82:[2,37],83:[2,37],84:[2,37],85:[2,37]},{23:[2,38],33:[2,38],54:[2,38],65:[2,38],68:[2,38],72:[2,38],75:[2,38],80:[2,38],81:[2,38],82:[2,38],83:[2,38],84:[2,38],85:[2,38]},{23:[2,39],33:[2,39],54:[2,39],65:[2,39],68:[2,39],72:[2,39],75:[2,39],80:[2,39],81:[2,39],82:[2,39],83:[2,39],84:[2,39],85:[2,39]},{23:[2,43],33:[2,43],54:[2,43],65:[2,43],68:[2,43],72:[2,43],75:[2,43],80:[2,43],81:[2,43],82:[2,43],83:[2,43],84:[2,43],85:[2,43],87:[1,51]},{72:[1,35],86:52},{23:[2,45],33:[2,45],54:[2,45],65:[2,45],68:[2,45],72:[2,45],75:[2,45],80:[2,45],81:[2,45],82:[2,45],83:[2,45],84:[2,45],85:[2,45],87:[2,45]},{52:53,54:[2,82],65:[2,82],72:[2,82],80:[2,82],81:[2,82],82:[2,82],83:[2,82],84:[2,82],85:[2,82]},{25:54,38:56,39:[1,58],43:57,44:[1,59],45:55,47:[2,54]},{28:60,43:61,44:[1,59],47:[2,56]},{13:63,15:[1,20],18:[1,62]},{15:[2,48],18:[2,48]},{33:[2,86],57:64,65:[2,86],72:[2,86],80:[2,86],81:[2,86],82:[2,86],83:[2,86],84:[2,86],85:[2,86]},{33:[2,40],65:[2,40],72:[2,40],80:[2,40],81:[2,40],82:[2,40],83:[2,40],84:[2,40],85:[2,40]},{33:[2,41],65:[2,41],72:[2,41],80:[2,41],81:[2,41],82:[2,41],83:[2,41],84:[2,41],85:[2,41]},{20:65,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{26:66,47:[1,67]},{30:68,33:[2,58],65:[2,58],72:[2,58],75:[2,58],80:[2,58],81:[2,58],82:[2,58],83:[2,58],84:[2,58],85:[2,58]},{33:[2,64],35:69,65:[2,64],72:[2,64],75:[2,64],80:[2,64],81:[2,64],82:[2,64],83:[2,64],84:[2,64],85:[2,64]},{21:70,23:[2,50],65:[2,50],72:[2,50],80:[2,50],81:[2,50],82:[2,50],83:[2,50],84:[2,50],85:[2,50]},{33:[2,90],61:71,65:[2,90],72:[2,90],80:[2,90],81:[2,90],82:[2,90],83:[2,90],84:[2,90],85:[2,90]},{20:75,33:[2,80],50:72,63:73,64:76,65:[1,44],69:74,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{72:[1,80]},{23:[2,42],33:[2,42],54:[2,42],65:[2,42],68:[2,42],72:[2,42],75:[2,42],80:[2,42],81:[2,42],82:[2,42],83:[2,42],84:[2,42],85:[2,42],87:[1,51]},{20:75,53:81,54:[2,84],63:82,64:76,65:[1,44],69:83,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{26:84,47:[1,67]},{47:[2,55]},{4:85,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],39:[2,46],44:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{47:[2,20]},{20:86,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{4:87,6:3,14:[2,46],15:[2,46],19:[2,46],29:[2,46],34:[2,46],47:[2,46],48:[2,46],51:[2,46],55:[2,46],60:[2,46]},{26:88,47:[1,67]},{47:[2,57]},{5:[2,11],14:[2,11],15:[2,11],19:[2,11],29:[2,11],34:[2,11],39:[2,11],44:[2,11],47:[2,11],48:[2,11],51:[2,11],55:[2,11],60:[2,11]},{15:[2,49],18:[2,49]},{20:75,33:[2,88],58:89,63:90,64:76,65:[1,44],69:91,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{65:[2,94],66:92,68:[2,94],72:[2,94],80:[2,94],81:[2,94],82:[2,94],83:[2,94],84:[2,94],85:[2,94]},{5:[2,25],14:[2,25],15:[2,25],19:[2,25],29:[2,25],34:[2,25],39:[2,25],44:[2,25],47:[2,25],48:[2,25],51:[2,25],55:[2,25],60:[2,25]},{20:93,72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:75,31:94,33:[2,60],63:95,64:76,65:[1,44],69:96,70:77,71:78,72:[1,79],75:[2,60],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:75,33:[2,66],36:97,63:98,64:76,65:[1,44],69:99,70:77,71:78,72:[1,79],75:[2,66],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:75,22:100,23:[2,52],63:101,64:76,65:[1,44],69:102,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{20:75,33:[2,92],62:103,63:104,64:76,65:[1,44],69:105,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{33:[1,106]},{33:[2,79],65:[2,79],72:[2,79],80:[2,79],81:[2,79],82:[2,79],83:[2,79],84:[2,79],85:[2,79]},{33:[2,81]},{23:[2,27],33:[2,27],54:[2,27],65:[2,27],68:[2,27],72:[2,27],75:[2,27],80:[2,27],81:[2,27],82:[2,27],83:[2,27],84:[2,27],85:[2,27]},{23:[2,28],33:[2,28],54:[2,28],65:[2,28],68:[2,28],72:[2,28],75:[2,28],80:[2,28],81:[2,28],82:[2,28],83:[2,28],84:[2,28],85:[2,28]},{23:[2,30],33:[2,30],54:[2,30],68:[2,30],71:107,72:[1,108],75:[2,30]},{23:[2,98],33:[2,98],54:[2,98],68:[2,98],72:[2,98],75:[2,98]},{23:[2,45],33:[2,45],54:[2,45],65:[2,45],68:[2,45],72:[2,45],73:[1,109],75:[2,45],80:[2,45],81:[2,45],82:[2,45],83:[2,45],84:[2,45],85:[2,45],87:[2,45]},{23:[2,44],33:[2,44],54:[2,44],65:[2,44],68:[2,44],72:[2,44],75:[2,44],80:[2,44],81:[2,44],82:[2,44],83:[2,44],84:[2,44],85:[2,44],87:[2,44]},{54:[1,110]},{54:[2,83],65:[2,83],72:[2,83],80:[2,83],81:[2,83],82:[2,83],83:[2,83],84:[2,83],85:[2,83]},{54:[2,85]},{5:[2,13],14:[2,13],15:[2,13],19:[2,13],29:[2,13],34:[2,13],39:[2,13],44:[2,13],47:[2,13],48:[2,13],51:[2,13],55:[2,13],60:[2,13]},{38:56,39:[1,58],43:57,44:[1,59],45:112,46:111,47:[2,76]},{33:[2,70],40:113,65:[2,70],72:[2,70],75:[2,70],80:[2,70],81:[2,70],82:[2,70],83:[2,70],84:[2,70],85:[2,70]},{47:[2,18]},{5:[2,14],14:[2,14],15:[2,14],19:[2,14],29:[2,14],34:[2,14],39:[2,14],44:[2,14],47:[2,14],48:[2,14],51:[2,14],55:[2,14],60:[2,14]},{33:[1,114]},{33:[2,87],65:[2,87],72:[2,87],80:[2,87],81:[2,87],82:[2,87],83:[2,87],84:[2,87],85:[2,87]},{33:[2,89]},{20:75,63:116,64:76,65:[1,44],67:115,68:[2,96],69:117,70:77,71:78,72:[1,79],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{33:[1,118]},{32:119,33:[2,62],74:120,75:[1,121]},{33:[2,59],65:[2,59],72:[2,59],75:[2,59],80:[2,59],81:[2,59],82:[2,59],83:[2,59],84:[2,59],85:[2,59]},{33:[2,61],75:[2,61]},{33:[2,68],37:122,74:123,75:[1,121]},{33:[2,65],65:[2,65],72:[2,65],75:[2,65],80:[2,65],81:[2,65],82:[2,65],83:[2,65],84:[2,65],85:[2,65]},{33:[2,67],75:[2,67]},{23:[1,124]},{23:[2,51],65:[2,51],72:[2,51],80:[2,51],81:[2,51],82:[2,51],83:[2,51],84:[2,51],85:[2,51]},{23:[2,53]},{33:[1,125]},{33:[2,91],65:[2,91],72:[2,91],80:[2,91],81:[2,91],82:[2,91],83:[2,91],84:[2,91],85:[2,91]},{33:[2,93]},{5:[2,22],14:[2,22],15:[2,22],19:[2,22],29:[2,22],34:[2,22],39:[2,22],44:[2,22],47:[2,22],48:[2,22],51:[2,22],55:[2,22],60:[2,22]},{23:[2,99],33:[2,99],54:[2,99],68:[2,99],72:[2,99],75:[2,99]},{73:[1,109]},{20:75,63:126,64:76,65:[1,44],72:[1,35],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{5:[2,23],14:[2,23],15:[2,23],19:[2,23],29:[2,23],34:[2,23],39:[2,23],44:[2,23],47:[2,23],48:[2,23],51:[2,23],55:[2,23],60:[2,23]},{47:[2,19]},{47:[2,77]},{20:75,33:[2,72],41:127,63:128,64:76,65:[1,44],69:129,70:77,71:78,72:[1,79],75:[2,72],78:26,79:27,80:[1,28],81:[1,29],82:[1,30],83:[1,31],84:[1,32],85:[1,34],86:33},{5:[2,24],14:[2,24],15:[2,24],19:[2,24],29:[2,24],34:[2,24],39:[2,24],44:[2,24],47:[2,24],48:[2,24],51:[2,24],55:[2,24],60:[2,24]},{68:[1,130]},{65:[2,95],68:[2,95],72:[2,95],80:[2,95],81:[2,95],82:[2,95],83:[2,95],84:[2,95],85:[2,95]},{68:[2,97]},{5:[2,21],14:[2,21],15:[2,21],19:[2,21],29:[2,21],34:[2,21],39:[2,21],44:[2,21],47:[2,21],48:[2,21],51:[2,21],55:[2,21],60:[2,21]},{33:[1,131]},{33:[2,63]},{72:[1,133],76:132},{33:[1,134]},{33:[2,69]},{15:[2,12]},{14:[2,26],15:[2,26],19:[2,26],29:[2,26],34:[2,26],47:[2,26],48:[2,26],51:[2,26],55:[2,26],60:[2,26]},{23:[2,31],33:[2,31],54:[2,31],68:[2,31],72:[2,31],75:[2,31]},{33:[2,74],42:135,74:136,75:[1,121]},{33:[2,71],65:[2,71],72:[2,71],75:[2,71],80:[2,71],81:[2,71],82:[2,71],83:[2,71],84:[2,71],85:[2,71]},{33:[2,73],75:[2,73]},{23:[2,29],33:[2,29],54:[2,29],65:[2,29],68:[2,29],72:[2,29],75:[2,29],80:[2,29],81:[2,29],82:[2,29],83:[2,29],84:[2,29],85:[2,29]},{14:[2,15],15:[2,15],19:[2,15],29:[2,15],34:[2,15],39:[2,15],44:[2,15],47:[2,15],48:[2,15],51:[2,15],55:[2,15],60:[2,15]},{72:[1,138],77:[1,137]},{72:[2,100],77:[2,100]},{14:[2,16],15:[2,16],19:[2,16],29:[2,16],34:[2,16],44:[2,16],47:[2,16],
-48:[2,16],51:[2,16],55:[2,16],60:[2,16]},{33:[1,139]},{33:[2,75]},{33:[2,32]},{72:[2,101],77:[2,101]},{14:[2,17],15:[2,17],19:[2,17],29:[2,17],34:[2,17],39:[2,17],44:[2,17],47:[2,17],48:[2,17],51:[2,17],55:[2,17],60:[2,17]}],defaultActions:{4:[2,1],55:[2,55],57:[2,20],61:[2,57],74:[2,81],83:[2,85],87:[2,18],91:[2,89],102:[2,53],105:[2,93],111:[2,19],112:[2,77],117:[2,97],120:[2,63],123:[2,69],124:[2,12],136:[2,75],137:[2,32]},parseError:function(a,b){throw new Error(a)},parse:function(a){function b(){var a;return a=c.lexer.lex()||1,"number"!=typeof a&&(a=c.symbols_[a]||a),a}var c=this,d=[0],e=[null],f=[],g=this.table,h="",i=0,j=0,k=0;this.lexer.setInput(a),this.lexer.yy=this.yy,this.yy.lexer=this.lexer,this.yy.parser=this,"undefined"==typeof this.lexer.yylloc&&(this.lexer.yylloc={});var l=this.lexer.yylloc;f.push(l);var m=this.lexer.options&&this.lexer.options.ranges;"function"==typeof this.yy.parseError&&(this.parseError=this.yy.parseError);for(var n,o,p,q,r,s,t,u,v,w={};;){if(p=d[d.length-1],this.defaultActions[p]?q=this.defaultActions[p]:((null===n||"undefined"==typeof n)&&(n=b()),q=g[p]&&g[p][n]),"undefined"==typeof q||!q.length||!q[0]){var x="";if(!k){v=[];for(s in g[p])this.terminals_[s]&&s>2&&v.push("'"+this.terminals_[s]+"'");x=this.lexer.showPosition?"Parse error on line "+(i+1)+":\n"+this.lexer.showPosition()+"\nExpecting "+v.join(", ")+", got '"+(this.terminals_[n]||n)+"'":"Parse error on line "+(i+1)+": Unexpected "+(1==n?"end of input":"'"+(this.terminals_[n]||n)+"'"),this.parseError(x,{text:this.lexer.match,token:this.terminals_[n]||n,line:this.lexer.yylineno,loc:l,expected:v})}}if(q[0]instanceof Array&&q.length>1)throw new Error("Parse Error: multiple actions possible at state: "+p+", token: "+n);switch(q[0]){case 1:d.push(n),e.push(this.lexer.yytext),f.push(this.lexer.yylloc),d.push(q[1]),n=null,o?(n=o,o=null):(j=this.lexer.yyleng,h=this.lexer.yytext,i=this.lexer.yylineno,l=this.lexer.yylloc,k>0&&k--);break;case 2:if(t=this.productions_[q[1]][1],w.$=e[e.length-t],w._$={first_line:f[f.length-(t||1)].first_line,last_line:f[f.length-1].last_line,first_column:f[f.length-(t||1)].first_column,last_column:f[f.length-1].last_column},m&&(w._$.range=[f[f.length-(t||1)].range[0],f[f.length-1].range[1]]),r=this.performAction.call(w,h,j,i,this.yy,q[1],e,f),"undefined"!=typeof r)return r;t&&(d=d.slice(0,-1*t*2),e=e.slice(0,-1*t),f=f.slice(0,-1*t)),d.push(this.productions_[q[1]][0]),e.push(w.$),f.push(w._$),u=g[d[d.length-2]][d[d.length-1]],d.push(u);break;case 3:return!0}}return!0}},c=function(){var a={EOF:1,parseError:function(a,b){if(!this.yy.parser)throw new Error(a);this.yy.parser.parseError(a,b)},setInput:function(a){return this._input=a,this._more=this._less=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var a=this._input[0];this.yytext+=a,this.yyleng++,this.offset++,this.match+=a,this.matched+=a;var b=a.match(/(?:\r\n?|\n).*/g);return b?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),a},unput:function(a){var b=a.length,c=a.split(/(?:\r\n?|\n)/g);this._input=a+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-b-1),this.offset-=b;var d=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),c.length-1&&(this.yylineno-=c.length-1);var e=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:c?(c.length===d.length?this.yylloc.first_column:0)+d[d.length-c.length].length-c[0].length:this.yylloc.first_column-b},this.options.ranges&&(this.yylloc.range=[e[0],e[0]+this.yyleng-b]),this},more:function(){return this._more=!0,this},less:function(a){this.unput(this.match.slice(a))},pastInput:function(){var a=this.matched.substr(0,this.matched.length-this.match.length);return(a.length>20?"...":"")+a.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var a=this.match;return a.length<20&&(a+=this._input.substr(0,20-a.length)),(a.substr(0,20)+(a.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var a=this.pastInput(),b=new Array(a.length+1).join("-");return a+this.upcomingInput()+"\n"+b+"^"},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var a,b,c,d,e;this._more||(this.yytext="",this.match="");for(var f=this._currentRules(),g=0;gb[0].length)||(b=c,d=g,this.options.flex));g++);return b?(e=b[0].match(/(?:\r\n?|\n).*/g),e&&(this.yylineno+=e.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:e?e[e.length-1].length-e[e.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+b[0].length},this.yytext+=b[0],this.match+=b[0],this.matches=b,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._input=this._input.slice(b[0].length),this.matched+=b[0],a=this.performAction.call(this,this.yy,this,f[d],this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),a?a:void 0):""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var a=this.next();return"undefined"!=typeof a?a:this.lex()},begin:function(a){this.conditionStack.push(a)},popState:function(){return this.conditionStack.pop()},_currentRules:function(){return this.conditions[this.conditionStack[this.conditionStack.length-1]].rules},topState:function(){return this.conditionStack[this.conditionStack.length-2]},pushState:function(a){this.begin(a)}};return a.options={},a.performAction=function(a,b,c,d){function e(a,c){return b.yytext=b.yytext.substr(a,b.yyleng-c)}switch(c){case 0:if("\\\\"===b.yytext.slice(-2)?(e(0,1),this.begin("mu")):"\\"===b.yytext.slice(-1)?(e(0,1),this.begin("emu")):this.begin("mu"),b.yytext)return 15;break;case 1:return 15;case 2:return this.popState(),15;case 3:return this.begin("raw"),15;case 4:return this.popState(),"raw"===this.conditionStack[this.conditionStack.length-1]?15:(b.yytext=b.yytext.substr(5,b.yyleng-9),"END_RAW_BLOCK");case 5:return 15;case 6:return this.popState(),14;case 7:return 65;case 8:return 68;case 9:return 19;case 10:return this.popState(),this.begin("raw"),23;case 11:return 55;case 12:return 60;case 13:return 29;case 14:return 47;case 15:return this.popState(),44;case 16:return this.popState(),44;case 17:return 34;case 18:return 39;case 19:return 51;case 20:return 48;case 21:this.unput(b.yytext),this.popState(),this.begin("com");break;case 22:return this.popState(),14;case 23:return 48;case 24:return 73;case 25:return 72;case 26:return 72;case 27:return 87;case 28:break;case 29:return this.popState(),54;case 30:return this.popState(),33;case 31:return b.yytext=e(1,2).replace(/\\"/g,'"'),80;case 32:return b.yytext=e(1,2).replace(/\\'/g,"'"),80;case 33:return 85;case 34:return 82;case 35:return 82;case 36:return 83;case 37:return 84;case 38:return 81;case 39:return 75;case 40:return 77;case 41:return 72;case 42:return b.yytext=b.yytext.replace(/\\([\\\]])/g,"$1"),72;case 43:return"INVALID";case 44:return 5}},a.rules=[/^(?:[^\x00]*?(?=(\{\{)))/,/^(?:[^\x00]+)/,/^(?:[^\x00]{2,}?(?=(\{\{|\\\{\{|\\\\\{\{|$)))/,/^(?:\{\{\{\{(?=[^\/]))/,/^(?:\{\{\{\{\/[^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=[=}\s\/.])\}\}\}\})/,/^(?:[^\x00]*?(?=(\{\{\{\{)))/,/^(?:[\s\S]*?--(~)?\}\})/,/^(?:\()/,/^(?:\))/,/^(?:\{\{\{\{)/,/^(?:\}\}\}\})/,/^(?:\{\{(~)?>)/,/^(?:\{\{(~)?#>)/,/^(?:\{\{(~)?#\*?)/,/^(?:\{\{(~)?\/)/,/^(?:\{\{(~)?\^\s*(~)?\}\})/,/^(?:\{\{(~)?\s*else\s*(~)?\}\})/,/^(?:\{\{(~)?\^)/,/^(?:\{\{(~)?\s*else\b)/,/^(?:\{\{(~)?\{)/,/^(?:\{\{(~)?&)/,/^(?:\{\{(~)?!--)/,/^(?:\{\{(~)?![\s\S]*?\}\})/,/^(?:\{\{(~)?\*?)/,/^(?:=)/,/^(?:\.\.)/,/^(?:\.(?=([=~}\s\/.)|])))/,/^(?:[\/.])/,/^(?:\s+)/,/^(?:\}(~)?\}\})/,/^(?:(~)?\}\})/,/^(?:"(\\["]|[^"])*")/,/^(?:'(\\[']|[^'])*')/,/^(?:@)/,/^(?:true(?=([~}\s)])))/,/^(?:false(?=([~}\s)])))/,/^(?:undefined(?=([~}\s)])))/,/^(?:null(?=([~}\s)])))/,/^(?:-?[0-9]+(?:\.[0-9]+)?(?=([~}\s)])))/,/^(?:as\s+\|)/,/^(?:\|)/,/^(?:([^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=([=~}\s\/.)|]))))/,/^(?:\[(\\\]|[^\]])*\])/,/^(?:.)/,/^(?:$)/],a.conditions={mu:{rules:[7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],inclusive:!1},emu:{rules:[2],inclusive:!1},com:{rules:[6],inclusive:!1},raw:{rules:[3,4,5],inclusive:!1},INITIAL:{rules:[0,1,44],inclusive:!0}},a}();return b.lexer=c,a.prototype=b,b.Parser=a,new a}();b.__esModule=!0,b["default"]=c},function(a,b,c){"use strict";function d(){var a=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];this.options=a}function e(a,b,c){void 0===b&&(b=a.length);var d=a[b-1],e=a[b-2];return d?"ContentStatement"===d.type?(e||!c?/\r?\n\s*?$/:/(^|\r?\n)\s*?$/).test(d.original):void 0:c}function f(a,b,c){void 0===b&&(b=-1);var d=a[b+1],e=a[b+2];return d?"ContentStatement"===d.type?(e||!c?/^\s*?\r?\n/:/^\s*?(\r?\n|$)/).test(d.original):void 0:c}function g(a,b,c){var d=a[null==b?0:b+1];if(d&&"ContentStatement"===d.type&&(c||!d.rightStripped)){var e=d.value;d.value=d.value.replace(c?/^\s+/:/^[ \t]*\r?\n?/,""),d.rightStripped=d.value!==e}}function h(a,b,c){var d=a[null==b?a.length-1:b-1];if(d&&"ContentStatement"===d.type&&(c||!d.leftStripped)){var e=d.value;return d.value=d.value.replace(c?/\s+$/:/[ \t]+$/,""),d.leftStripped=d.value!==e,d.leftStripped}}var i=c(1)["default"];b.__esModule=!0;var j=c(25),k=i(j);d.prototype=new k["default"],d.prototype.Program=function(a){var b=!this.options.ignoreStandalone,c=!this.isRootSeen;this.isRootSeen=!0;for(var d=a.body,i=0,j=d.length;j>i;i++){var k=d[i],l=this.accept(k);if(l){var m=e(d,i,c),n=f(d,i,c),o=l.openStandalone&&m,p=l.closeStandalone&&n,q=l.inlineStandalone&&m&&n;l.close&&g(d,i,!0),l.open&&h(d,i,!0),b&&q&&(g(d,i),h(d,i)&&"PartialStatement"===k.type&&(k.indent=/([ \t]+$)/.exec(d[i-1].original)[1])),b&&o&&(g((k.program||k.inverse).body),h(d,i)),b&&p&&(g(d,i),h((k.inverse||k.program).body))}}return a},d.prototype.BlockStatement=d.prototype.DecoratorBlock=d.prototype.PartialBlockStatement=function(a){this.accept(a.program),this.accept(a.inverse);var b=a.program||a.inverse,c=a.program&&a.inverse,d=c,i=c;if(c&&c.chained)for(d=c.body[0].program;i.chained;)i=i.body[i.body.length-1].program;var j={open:a.openStrip.open,close:a.closeStrip.close,openStandalone:f(b.body),closeStandalone:e((d||b).body)};if(a.openStrip.close&&g(b.body,null,!0),c){var k=a.inverseStrip;k.open&&h(b.body,null,!0),k.close&&g(d.body,null,!0),a.closeStrip.open&&h(i.body,null,!0),!this.options.ignoreStandalone&&e(b.body)&&f(d.body)&&(h(b.body),g(d.body))}else a.closeStrip.open&&h(b.body,null,!0);return j},d.prototype.Decorator=d.prototype.MustacheStatement=function(a){return a.strip},d.prototype.PartialStatement=d.prototype.CommentStatement=function(a){var b=a.strip||{};return{inlineStandalone:!0,open:b.open,close:b.close}},b["default"]=d,a.exports=b["default"]},function(a,b,c){"use strict";function d(){this.parents=[]}function e(a){this.acceptRequired(a,"path"),this.acceptArray(a.params),this.acceptKey(a,"hash")}function f(a){e.call(this,a),this.acceptKey(a,"program"),this.acceptKey(a,"inverse")}function g(a){this.acceptRequired(a,"name"),this.acceptArray(a.params),this.acceptKey(a,"hash")}var h=c(1)["default"];b.__esModule=!0;var i=c(6),j=h(i);d.prototype={constructor:d,mutating:!1,acceptKey:function(a,b){var c=this.accept(a[b]);if(this.mutating){if(c&&!d.prototype[c.type])throw new j["default"]('Unexpected node type "'+c.type+'" found when accepting '+b+" on "+a.type);a[b]=c}},acceptRequired:function(a,b){if(this.acceptKey(a,b),!a[b])throw new j["default"](a.type+" requires "+b)},acceptArray:function(a){for(var b=0,c=a.length;c>b;b++)this.acceptKey(a,b),a[b]||(a.splice(b,1),b--,c--)},accept:function(a){if(a){if(!this[a.type])throw new j["default"]("Unknown type: "+a.type,a);this.current&&this.parents.unshift(this.current),this.current=a;var b=this[a.type](a);return this.current=this.parents.shift(),!this.mutating||b?b:b!==!1?a:void 0}},Program:function(a){this.acceptArray(a.body)},MustacheStatement:e,Decorator:e,BlockStatement:f,DecoratorBlock:f,PartialStatement:g,PartialBlockStatement:function(a){g.call(this,a),this.acceptKey(a,"program")},ContentStatement:function(){},CommentStatement:function(){},SubExpression:e,PathExpression:function(){},StringLiteral:function(){},NumberLiteral:function(){},BooleanLiteral:function(){},UndefinedLiteral:function(){},NullLiteral:function(){},Hash:function(a){this.acceptArray(a.pairs)},HashPair:function(a){this.acceptRequired(a,"value")}},b["default"]=d,a.exports=b["default"]},function(a,b,c){"use strict";function d(a,b){if(b=b.path?b.path.original:b,a.path.original!==b){var c={loc:a.path.loc};throw new q["default"](a.path.original+" doesn't match "+b,c)}}function e(a,b){this.source=a,this.start={line:b.first_line,column:b.first_column},this.end={line:b.last_line,column:b.last_column}}function f(a){return/^\[.*\]$/.test(a)?a.substr(1,a.length-2):a}function g(a,b){return{open:"~"===a.charAt(2),close:"~"===b.charAt(b.length-3)}}function h(a){return a.replace(/^\{\{~?\!-?-?/,"").replace(/-?-?~?\}\}$/,"")}function i(a,b,c){c=this.locInfo(c);for(var d=a?"@":"",e=[],f=0,g="",h=0,i=b.length;i>h;h++){var j=b[h].part,k=b[h].original!==j;if(d+=(b[h].separator||"")+j,k||".."!==j&&"."!==j&&"this"!==j)e.push(j);else{if(e.length>0)throw new q["default"]("Invalid path: "+d,{loc:c});".."===j&&(f++,g+="../")}}return{type:"PathExpression",data:a,depth:f,parts:e,original:d,loc:c}}function j(a,b,c,d,e,f){var g=d.charAt(3)||d.charAt(2),h="{"!==g&&"&"!==g,i=/\*/.test(d);return{type:i?"Decorator":"MustacheStatement",path:a,params:b,hash:c,escaped:h,strip:e,loc:this.locInfo(f)}}function k(a,b,c,e){d(a,c),e=this.locInfo(e);var f={type:"Program",body:b,strip:{},loc:e};return{type:"BlockStatement",path:a.path,params:a.params,hash:a.hash,program:f,openStrip:{},inverseStrip:{},closeStrip:{},loc:e}}function l(a,b,c,e,f,g){e&&e.path&&d(a,e);var h=/\*/.test(a.open);b.blockParams=a.blockParams;var i=void 0,j=void 0;if(c){if(h)throw new q["default"]("Unexpected inverse block on decorator",c);c.chain&&(c.program.body[0].closeStrip=e.strip),j=c.strip,i=c.program}return f&&(f=i,i=b,b=f),{type:h?"DecoratorBlock":"BlockStatement",path:a.path,params:a.params,hash:a.hash,program:b,inverse:i,openStrip:a.strip,inverseStrip:j,closeStrip:e&&e.strip,loc:this.locInfo(g)}}function m(a,b){if(!b&&a.length){var c=a[0].loc,d=a[a.length-1].loc;c&&d&&(b={source:c.source,start:{line:c.start.line,column:c.start.column},end:{line:d.end.line,column:d.end.column}})}return{type:"Program",body:a,strip:{},loc:b}}function n(a,b,c,e){return d(a,c),{type:"PartialBlockStatement",name:a.path,params:a.params,hash:a.hash,program:b,openStrip:a.strip,closeStrip:c&&c.strip,loc:this.locInfo(e)}}var o=c(1)["default"];b.__esModule=!0,b.SourceLocation=e,b.id=f,b.stripFlags=g,b.stripComment=h,b.preparePath=i,b.prepareMustache=j,b.prepareRawBlock=k,b.prepareBlock=l,b.prepareProgram=m,b.preparePartialBlock=n;var p=c(6),q=o(p)},function(a,b,c){"use strict";function d(){}function e(a,b,c){if(null==a||"string"!=typeof a&&"Program"!==a.type)throw new k["default"]("You must pass a string or Handlebars AST to Handlebars.precompile. You passed "+a);b=b||{},"data"in b||(b.data=!0),b.compat&&(b.useDepths=!0);var d=c.parse(a,b),e=(new c.Compiler).compile(d,b);return(new c.JavaScriptCompiler).compile(e,b)}function f(a,b,c){function d(){var d=c.parse(a,b),e=(new c.Compiler).compile(d,b),f=(new c.JavaScriptCompiler).compile(e,b,void 0,!0);return c.template(f)}function e(a,b){return f||(f=d()),f.call(this,a,b)}if(void 0===b&&(b={}),null==a||"string"!=typeof a&&"Program"!==a.type)throw new k["default"]("You must pass a string or Handlebars AST to Handlebars.compile. You passed "+a);"data"in b||(b.data=!0),b.compat&&(b.useDepths=!0);var f=void 0;return e._setup=function(a){return f||(f=d()),f._setup(a)},e._child=function(a,b,c,e){return f||(f=d()),f._child(a,b,c,e)},e}function g(a,b){if(a===b)return!0;if(l.isArray(a)&&l.isArray(b)&&a.length===b.length){for(var c=0;cc;c++){var d=this.opcodes[c],e=a.opcodes[c];if(d.opcode!==e.opcode||!g(d.args,e.args))return!1}b=this.children.length;for(var c=0;b>c;c++)if(!this.children[c].equals(a.children[c]))return!1;return!0},guid:0,compile:function(a,b){this.sourceNode=[],this.opcodes=[],this.children=[],this.options=b,this.stringParams=b.stringParams,this.trackIds=b.trackIds,b.blockParams=b.blockParams||[];var c=b.knownHelpers;if(b.knownHelpers={helperMissing:!0,blockHelperMissing:!0,each:!0,"if":!0,unless:!0,"with":!0,log:!0,lookup:!0},c)for(var d in c)d in c&&(b.knownHelpers[d]=c[d]);return this.accept(a)},compileProgram:function(a){var b=new this.compiler,c=b.compile(a,this.options),d=this.guid++;return this.usePartial=this.usePartial||c.usePartial,this.children[d]=c,this.useDepths=this.useDepths||c.useDepths,d},accept:function(a){if(!this[a.type])throw new k["default"]("Unknown type: "+a.type,a);this.sourceNode.unshift(a);var b=this[a.type](a);return this.sourceNode.shift(),b},Program:function(a){this.options.blockParams.unshift(a.blockParams);for(var b=a.body,c=b.length,d=0;c>d;d++)this.accept(b[d]);return this.options.blockParams.shift(),this.isSimple=1===c,this.blockParams=a.blockParams?a.blockParams.length:0,this},BlockStatement:function(a){h(a);var b=a.program,c=a.inverse;b=b&&this.compileProgram(b),c=c&&this.compileProgram(c);var d=this.classifySexpr(a);"helper"===d?this.helperSexpr(a,b,c):"simple"===d?(this.simpleSexpr(a),this.opcode("pushProgram",b),this.opcode("pushProgram",c),this.opcode("emptyHash"),this.opcode("blockValue",a.path.original)):(this.ambiguousSexpr(a,b,c),this.opcode("pushProgram",b),this.opcode("pushProgram",c),this.opcode("emptyHash"),this.opcode("ambiguousBlockValue")),this.opcode("append")},DecoratorBlock:function(a){var b=a.program&&this.compileProgram(a.program),c=this.setupFullMustacheParams(a,b,void 0),d=a.path;this.useDecorators=!0,this.opcode("registerDecorator",c.length,d.original)},PartialStatement:function(a){this.usePartial=!0;var b=a.program;b&&(b=this.compileProgram(a.program));var c=a.params;if(c.length>1)throw new k["default"]("Unsupported number of partial arguments: "+c.length,a);c.length||(this.options.explicitPartialContext?this.opcode("pushLiteral","undefined"):c.push({type:"PathExpression",parts:[],depth:0}));var d=a.name.original,e="SubExpression"===a.name.type;e&&this.accept(a.name),this.setupFullMustacheParams(a,b,void 0,!0);var f=a.indent||"";this.options.preventIndent&&f&&(this.opcode("appendContent",f),f=""),this.opcode("invokePartial",e,d,f),this.opcode("append")},PartialBlockStatement:function(a){this.PartialStatement(a)},MustacheStatement:function(a){this.SubExpression(a),a.escaped&&!this.options.noEscape?this.opcode("appendEscaped"):this.opcode("append")},Decorator:function(a){this.DecoratorBlock(a)},ContentStatement:function(a){a.value&&this.opcode("appendContent",a.value)},CommentStatement:function(){},SubExpression:function(a){h(a);var b=this.classifySexpr(a);"simple"===b?this.simpleSexpr(a):"helper"===b?this.helperSexpr(a):this.ambiguousSexpr(a)},ambiguousSexpr:function(a,b,c){var d=a.path,e=d.parts[0],f=null!=b||null!=c;this.opcode("getContext",d.depth),this.opcode("pushProgram",b),this.opcode("pushProgram",c),d.strict=!0,this.accept(d),this.opcode("invokeAmbiguous",e,f)},simpleSexpr:function(a){var b=a.path;b.strict=!0,this.accept(b),this.opcode("resolvePossibleLambda")},helperSexpr:function(a,b,c){var d=this.setupFullMustacheParams(a,b,c),e=a.path,f=e.parts[0];if(this.options.knownHelpers[f])this.opcode("invokeKnownHelper",d.length,f);else{if(this.options.knownHelpersOnly)throw new k["default"]("You specified knownHelpersOnly, but used the unknown helper "+f,a);e.strict=!0,e.falsy=!0,this.accept(e),this.opcode("invokeHelper",d.length,e.original,n["default"].helpers.simpleId(e))}},PathExpression:function(a){this.addDepth(a.depth),this.opcode("getContext",a.depth);var b=a.parts[0],c=n["default"].helpers.scopedId(a),d=!a.depth&&!c&&this.blockParamIndex(b);d?this.opcode("lookupBlockParam",d,a.parts):b?a.data?(this.options.data=!0,this.opcode("lookupData",a.depth,a.parts,a.strict)):this.opcode("lookupOnContext",a.parts,a.falsy,a.strict,c):this.opcode("pushContext")},StringLiteral:function(a){this.opcode("pushString",a.value)},NumberLiteral:function(a){this.opcode("pushLiteral",a.value)},BooleanLiteral:function(a){this.opcode("pushLiteral",a.value)},UndefinedLiteral:function(){this.opcode("pushLiteral","undefined")},NullLiteral:function(){this.opcode("pushLiteral","null")},Hash:function(a){var b=a.pairs,c=0,d=b.length;for(this.opcode("pushHash");d>c;c++)this.pushParam(b[c].value);for(;c--;)this.opcode("assignToHash",b[c].key);this.opcode("popHash")},opcode:function(a){this.opcodes.push({opcode:a,args:o.call(arguments,1),loc:this.sourceNode[0].loc})},addDepth:function(a){a&&(this.useDepths=!0)},classifySexpr:function(a){var b=n["default"].helpers.simpleId(a.path),c=b&&!!this.blockParamIndex(a.path.parts[0]),d=!c&&n["default"].helpers.helperExpression(a),e=!c&&(d||b);if(e&&!d){var f=a.path.parts[0],g=this.options;g.knownHelpers[f]?d=!0:g.knownHelpersOnly&&(e=!1)}return d?"helper":e?"ambiguous":"simple"},pushParams:function(a){for(var b=0,c=a.length;c>b;b++)this.pushParam(a[b])},pushParam:function(a){var b=null!=a.value?a.value:a.original||"";if(this.stringParams)b.replace&&(b=b.replace(/^(\.?\.\/)*/g,"").replace(/\//g,".")),a.depth&&this.addDepth(a.depth),this.opcode("getContext",a.depth||0),this.opcode("pushStringParam",b,a.type),"SubExpression"===a.type&&this.accept(a);else{if(this.trackIds){var c=void 0;if(!a.parts||n["default"].helpers.scopedId(a)||a.depth||(c=this.blockParamIndex(a.parts[0])),c){var d=a.parts.slice(1).join(".");this.opcode("pushId","BlockParam",c,d)}else b=a.original||b,b.replace&&(b=b.replace(/^this(?:\.|$)/,"").replace(/^\.\//,"").replace(/^\.$/,"")),this.opcode("pushId",a.type,b)}this.accept(a)}},setupFullMustacheParams:function(a,b,c,d){var e=a.params;return this.pushParams(e),this.opcode("pushProgram",b),this.opcode("pushProgram",c),a.hash?this.accept(a.hash):this.opcode("emptyHash",d),e},blockParamIndex:function(a){for(var b=0,c=this.options.blockParams.length;c>b;b++){var d=this.options.blockParams[b],e=d&&l.indexOf(d,a);if(d&&e>=0)return[b,e]}}}},function(a,b,c){"use strict";function d(a){this.value=a}function e(){}function f(a,b,c,d){var e=b.popStack(),f=0,g=c.length;for(a&&g--;g>f;f++)e=b.nameLookup(e,c[f],d);return a?[b.aliasable("container.strict"),"(",e,", ",b.quotedString(c[f]),")"]:e}var g=c(1)["default"];b.__esModule=!0;var h=c(4),i=c(6),j=g(i),k=c(5),l=c(29),m=g(l);e.prototype={nameLookup:function(a,b){return e.isValidJavaScriptVariableName(b)?[a,".",b]:[a,"[",JSON.stringify(b),"]"]},depthedLookup:function(a){return[this.aliasable("container.lookup"),'(depths, "',a,'")']},compilerInfo:function(){var a=h.COMPILER_REVISION,b=h.REVISION_CHANGES[a];return[a,b]},appendToBuffer:function(a,b,c){return k.isArray(a)||(a=[a]),a=this.source.wrap(a,b),this.environment.isSimple?["return ",a,";"]:c?["buffer += ",a,";"]:(a.appendToBuffer=!0,a)},initializeBuffer:function(){return this.quotedString("")},compile:function(a,b,c,d){this.environment=a,this.options=b,this.stringParams=this.options.stringParams,this.trackIds=this.options.trackIds,this.precompile=!d,this.name=this.environment.name,this.isChild=!!c,this.context=c||{decorators:[],programs:[],environments:[]},this.preamble(),this.stackSlot=0,this.stackVars=[],this.aliases={},this.registers={list:[]},this.hashes=[],this.compileStack=[],this.inlineStack=[],this.blockParams=[],this.compileChildren(a,b),this.useDepths=this.useDepths||a.useDepths||a.useDecorators||this.options.compat,this.useBlockParams=this.useBlockParams||a.useBlockParams;var e=a.opcodes,f=void 0,g=void 0,h=void 0,i=void 0;for(h=0,i=e.length;i>h;h++)f=e[h],this.source.currentLocation=f.loc,g=g||f.loc,this[f.opcode].apply(this,f.args);if(this.source.currentLocation=g,this.pushSource(""),this.stackSlot||this.inlineStack.length||this.compileStack.length)throw new j["default"]("Compile completed with content left on stack");this.decorators.isEmpty()?this.decorators=void 0:(this.useDecorators=!0,this.decorators.prepend("var decorators = container.decorators;\n"),this.decorators.push("return fn;"),d?this.decorators=Function.apply(this,["fn","props","container","depth0","data","blockParams","depths",this.decorators.merge()]):(this.decorators.prepend("function(fn, props, container, depth0, data, blockParams, depths) {\n"),this.decorators.push("}\n"),this.decorators=this.decorators.merge()));var k=this.createFunctionContext(d);if(this.isChild)return k;var l={compiler:this.compilerInfo(),main:k};this.decorators&&(l.main_d=this.decorators,l.useDecorators=!0);var m=this.context,n=m.programs,o=m.decorators;for(h=0,i=n.length;i>h;h++)n[h]&&(l[h]=n[h],o[h]&&(l[h+"_d"]=o[h],l.useDecorators=!0));return this.environment.usePartial&&(l.usePartial=!0),this.options.data&&(l.useData=!0),this.useDepths&&(l.useDepths=!0),this.useBlockParams&&(l.useBlockParams=!0),this.options.compat&&(l.compat=!0),d?l.compilerOptions=this.options:(l.compiler=JSON.stringify(l.compiler),this.source.currentLocation={start:{line:1,column:0}},l=this.objectLiteral(l),b.srcName?(l=l.toStringWithSourceMap({file:b.destName}),l.map=l.map&&l.map.toString()):l=l.toString()),l},preamble:function(){this.lastContext=0,this.source=new m["default"](this.options.srcName),this.decorators=new m["default"](this.options.srcName)},createFunctionContext:function(a){var b="",c=this.stackVars.concat(this.registers.list);c.length>0&&(b+=", "+c.join(", "));var d=0;for(var e in this.aliases){var f=this.aliases[e];this.aliases.hasOwnProperty(e)&&f.children&&f.referenceCount>1&&(b+=", alias"+ ++d+"="+e,f.children[0]="alias"+d)}var g=["container","depth0","helpers","partials","data"];(this.useBlockParams||this.useDepths)&&g.push("blockParams"),this.useDepths&&g.push("depths");var h=this.mergeSource(b);return a?(g.push(h),Function.apply(this,g)):this.source.wrap(["function(",g.join(","),") {\n ",h,"}"])},mergeSource:function(a){var b=this.environment.isSimple,c=!this.forceBuffer,d=void 0,e=void 0,f=void 0,g=void 0;return this.source.each(function(a){a.appendToBuffer?(f?a.prepend(" + "):f=a,g=a):(f&&(e?f.prepend("buffer += "):d=!0,g.add(";"),f=g=void 0),e=!0,b||(c=!1))}),c?f?(f.prepend("return "),g.add(";")):e||this.source.push('return "";'):(a+=", buffer = "+(d?"":this.initializeBuffer()),f?(f.prepend("return buffer + "),g.add(";")):this.source.push("return buffer;")),a&&this.source.prepend("var "+a.substring(2)+(d?"":";\n")),this.source.merge()},blockValue:function(a){var b=this.aliasable("helpers.blockHelperMissing"),c=[this.contextName(0)];this.setupHelperArgs(a,0,c);var d=this.popStack();c.splice(1,0,d),this.push(this.source.functionCall(b,"call",c))},ambiguousBlockValue:function(){var a=this.aliasable("helpers.blockHelperMissing"),b=[this.contextName(0)];this.setupHelperArgs("",0,b,!0),this.flushInline();var c=this.topStack();b.splice(1,0,c),this.pushSource(["if (!",this.lastHelper,") { ",c," = ",this.source.functionCall(a,"call",b),"}"])},appendContent:function(a){this.pendingContent?a=this.pendingContent+a:this.pendingLocation=this.source.currentLocation,this.pendingContent=a},append:function(){if(this.isInline())this.replaceStack(function(a){return[" != null ? ",a,' : ""']}),this.pushSource(this.appendToBuffer(this.popStack()));else{var a=this.popStack();this.pushSource(["if (",a," != null) { ",this.appendToBuffer(a,void 0,!0)," }"]),this.environment.isSimple&&this.pushSource(["else { ",this.appendToBuffer("''",void 0,!0)," }"])}},appendEscaped:function(){this.pushSource(this.appendToBuffer([this.aliasable("container.escapeExpression"),"(",this.popStack(),")"]))},getContext:function(a){this.lastContext=a},pushContext:function(){this.pushStackLiteral(this.contextName(this.lastContext))},lookupOnContext:function(a,b,c,d){var e=0;d||!this.options.compat||this.lastContext?this.pushContext():this.push(this.depthedLookup(a[e++])),this.resolvePath("context",a,e,b,c)},lookupBlockParam:function(a,b){this.useBlockParams=!0,this.push(["blockParams[",a[0],"][",a[1],"]"]),this.resolvePath("context",b,1)},lookupData:function(a,b,c){a?this.pushStackLiteral("container.data(data, "+a+")"):this.pushStackLiteral("data"),this.resolvePath("data",b,0,!0,c)},resolvePath:function(a,b,c,d,e){var g=this;if(this.options.strict||this.options.assumeObjects)return void this.push(f(this.options.strict&&e,this,b,a));for(var h=b.length;h>c;c++)this.replaceStack(function(e){var f=g.nameLookup(e,b[c],a);return d?[" && ",f]:[" != null ? ",f," : ",e]})},resolvePossibleLambda:function(){this.push([this.aliasable("container.lambda"),"(",this.popStack(),", ",this.contextName(0),")"])},pushStringParam:function(a,b){this.pushContext(),this.pushString(b),"SubExpression"!==b&&("string"==typeof a?this.pushString(a):this.pushStackLiteral(a))},emptyHash:function(a){this.trackIds&&this.push("{}"),this.stringParams&&(this.push("{}"),this.push("{}")),this.pushStackLiteral(a?"undefined":"{}")},pushHash:function(){this.hash&&this.hashes.push(this.hash),this.hash={values:[],types:[],contexts:[],ids:[]}},popHash:function(){var a=this.hash;this.hash=this.hashes.pop(),this.trackIds&&this.push(this.objectLiteral(a.ids)),this.stringParams&&(this.push(this.objectLiteral(a.contexts)),this.push(this.objectLiteral(a.types))),this.push(this.objectLiteral(a.values))},pushString:function(a){this.pushStackLiteral(this.quotedString(a))},pushLiteral:function(a){this.pushStackLiteral(a)},pushProgram:function(a){null!=a?this.pushStackLiteral(this.programExpression(a)):this.pushStackLiteral(null)},registerDecorator:function(a,b){var c=this.nameLookup("decorators",b,"decorator"),d=this.setupHelperArgs(b,a);this.decorators.push(["fn = ",this.decorators.functionCall(c,"",["fn","props","container",d])," || fn;"])},invokeHelper:function(a,b,c){var d=this.popStack(),e=this.setupHelper(a,b),f=c?[e.name," || "]:"",g=["("].concat(f,d);this.options.strict||g.push(" || ",this.aliasable("helpers.helperMissing")),g.push(")"),this.push(this.source.functionCall(g,"call",e.callParams))},invokeKnownHelper:function(a,b){var c=this.setupHelper(a,b);this.push(this.source.functionCall(c.name,"call",c.callParams))},invokeAmbiguous:function(a,b){this.useRegister("helper");var c=this.popStack();this.emptyHash();var d=this.setupHelper(0,a,b),e=this.lastHelper=this.nameLookup("helpers",a,"helper"),f=["(","(helper = ",e," || ",c,")"];this.options.strict||(f[0]="(helper = ",f.push(" != null ? helper : ",this.aliasable("helpers.helperMissing"))),this.push(["(",f,d.paramsInit?["),(",d.paramsInit]:[],"),","(typeof helper === ",this.aliasable('"function"')," ? ",this.source.functionCall("helper","call",d.callParams)," : helper))"])},invokePartial:function(a,b,c){var d=[],e=this.setupParams(b,1,d);a&&(b=this.popStack(),delete e.name),c&&(e.indent=JSON.stringify(c)),e.helpers="helpers",e.partials="partials",e.decorators="container.decorators",a?d.unshift(b):d.unshift(this.nameLookup("partials",b,"partial")),this.options.compat&&(e.depths="depths"),e=this.objectLiteral(e),
-d.push(e),this.push(this.source.functionCall("container.invokePartial","",d))},assignToHash:function(a){var b=this.popStack(),c=void 0,d=void 0,e=void 0;this.trackIds&&(e=this.popStack()),this.stringParams&&(d=this.popStack(),c=this.popStack());var f=this.hash;c&&(f.contexts[a]=c),d&&(f.types[a]=d),e&&(f.ids[a]=e),f.values[a]=b},pushId:function(a,b,c){"BlockParam"===a?this.pushStackLiteral("blockParams["+b[0]+"].path["+b[1]+"]"+(c?" + "+JSON.stringify("."+c):"")):"PathExpression"===a?this.pushString(b):"SubExpression"===a?this.pushStackLiteral("true"):this.pushStackLiteral("null")},compiler:e,compileChildren:function(a,b){for(var c=a.children,d=void 0,e=void 0,f=0,g=c.length;g>f;f++){d=c[f],e=new this.compiler;var h=this.matchExistingProgram(d);null==h?(this.context.programs.push(""),h=this.context.programs.length,d.index=h,d.name="program"+h,this.context.programs[h]=e.compile(d,b,this.context,!this.precompile),this.context.decorators[h]=e.decorators,this.context.environments[h]=d,this.useDepths=this.useDepths||e.useDepths,this.useBlockParams=this.useBlockParams||e.useBlockParams):(d.index=h,d.name="program"+h,this.useDepths=this.useDepths||d.useDepths,this.useBlockParams=this.useBlockParams||d.useBlockParams)}},matchExistingProgram:function(a){for(var b=0,c=this.context.environments.length;c>b;b++){var d=this.context.environments[b];if(d&&d.equals(a))return b}},programExpression:function(a){var b=this.environment.children[a],c=[b.index,"data",b.blockParams];return(this.useBlockParams||this.useDepths)&&c.push("blockParams"),this.useDepths&&c.push("depths"),"container.program("+c.join(", ")+")"},useRegister:function(a){this.registers[a]||(this.registers[a]=!0,this.registers.list.push(a))},push:function(a){return a instanceof d||(a=this.source.wrap(a)),this.inlineStack.push(a),a},pushStackLiteral:function(a){this.push(new d(a))},pushSource:function(a){this.pendingContent&&(this.source.push(this.appendToBuffer(this.source.quotedString(this.pendingContent),this.pendingLocation)),this.pendingContent=void 0),a&&this.source.push(a)},replaceStack:function(a){var b=["("],c=void 0,e=void 0,f=void 0;if(!this.isInline())throw new j["default"]("replaceStack on non-inline");var g=this.popStack(!0);if(g instanceof d)c=[g.value],b=["(",c],f=!0;else{e=!0;var h=this.incrStack();b=["((",this.push(h)," = ",g,")"],c=this.topStack()}var i=a.call(this,c);f||this.popStack(),e&&this.stackSlot--,this.push(b.concat(i,")"))},incrStack:function(){return this.stackSlot++,this.stackSlot>this.stackVars.length&&this.stackVars.push("stack"+this.stackSlot),this.topStackName()},topStackName:function(){return"stack"+this.stackSlot},flushInline:function(){var a=this.inlineStack;this.inlineStack=[];for(var b=0,c=a.length;c>b;b++){var e=a[b];if(e instanceof d)this.compileStack.push(e);else{var f=this.incrStack();this.pushSource([f," = ",e,";"]),this.compileStack.push(f)}}},isInline:function(){return this.inlineStack.length},popStack:function(a){var b=this.isInline(),c=(b?this.inlineStack:this.compileStack).pop();if(!a&&c instanceof d)return c.value;if(!b){if(!this.stackSlot)throw new j["default"]("Invalid stack pop");this.stackSlot--}return c},topStack:function(){var a=this.isInline()?this.inlineStack:this.compileStack,b=a[a.length-1];return b instanceof d?b.value:b},contextName:function(a){return this.useDepths&&a?"depths["+a+"]":"depth"+a},quotedString:function(a){return this.source.quotedString(a)},objectLiteral:function(a){return this.source.objectLiteral(a)},aliasable:function(a){var b=this.aliases[a];return b?(b.referenceCount++,b):(b=this.aliases[a]=this.source.wrap(a),b.aliasable=!0,b.referenceCount=1,b)},setupHelper:function(a,b,c){var d=[],e=this.setupHelperArgs(b,a,d,c),f=this.nameLookup("helpers",b,"helper"),g=this.aliasable(this.contextName(0)+" != null ? "+this.contextName(0)+" : {}");return{params:d,paramsInit:e,name:f,callParams:[g].concat(d)}},setupParams:function(a,b,c){var d={},e=[],f=[],g=[],h=!c,i=void 0;h&&(c=[]),d.name=this.quotedString(a),d.hash=this.popStack(),this.trackIds&&(d.hashIds=this.popStack()),this.stringParams&&(d.hashTypes=this.popStack(),d.hashContexts=this.popStack());var j=this.popStack(),k=this.popStack();(k||j)&&(d.fn=k||"container.noop",d.inverse=j||"container.noop");for(var l=b;l--;)i=this.popStack(),c[l]=i,this.trackIds&&(g[l]=this.popStack()),this.stringParams&&(f[l]=this.popStack(),e[l]=this.popStack());return h&&(d.args=this.source.generateArray(c)),this.trackIds&&(d.ids=this.source.generateArray(g)),this.stringParams&&(d.types=this.source.generateArray(f),d.contexts=this.source.generateArray(e)),this.options.data&&(d.data="data"),this.useBlockParams&&(d.blockParams="blockParams"),d},setupHelperArgs:function(a,b,c,d){var e=this.setupParams(a,b,c);return e=this.objectLiteral(e),d?(this.useRegister("options"),c.push("options"),["options=",e]):c?(c.push(e),""):e}},function(){for(var a="break else new var case finally return void catch for switch while continue function this with default if throw delete in try do instanceof typeof abstract enum int short boolean export interface static byte extends long super char final native synchronized class float package throws const goto private transient debugger implements protected volatile double import public let yield await null true false".split(" "),b=e.RESERVED_WORDS={},c=0,d=a.length;d>c;c++)b[a[c]]=!0}(),e.isValidJavaScriptVariableName=function(a){return!e.RESERVED_WORDS[a]&&/^[a-zA-Z_$][0-9a-zA-Z_$]*$/.test(a)},b["default"]=e,a.exports=b["default"]},function(a,b,c){"use strict";function d(a,b,c){if(f.isArray(a)){for(var d=[],e=0,g=a.length;g>e;e++)d.push(b.wrap(a[e],c));return d}return"boolean"==typeof a||"number"==typeof a?a+"":a}function e(a){this.srcFile=a,this.source=[]}b.__esModule=!0;var f=c(5),g=void 0;try{}catch(h){}g||(g=function(a,b,c,d){this.src="",d&&this.add(d)},g.prototype={add:function(a){f.isArray(a)&&(a=a.join("")),this.src+=a},prepend:function(a){f.isArray(a)&&(a=a.join("")),this.src=a+this.src},toStringWithSourceMap:function(){return{code:this.toString()}},toString:function(){return this.src}}),e.prototype={isEmpty:function(){return!this.source.length},prepend:function(a,b){this.source.unshift(this.wrap(a,b))},push:function(a,b){this.source.push(this.wrap(a,b))},merge:function(){var a=this.empty();return this.each(function(b){a.add([" ",b,"\n"])}),a},each:function(a){for(var b=0,c=this.source.length;c>b;b++)a(this.source[b])},empty:function(){var a=this.currentLocation||{start:{}};return new g(a.start.line,a.start.column,this.srcFile)},wrap:function(a){var b=arguments.length<=1||void 0===arguments[1]?this.currentLocation||{start:{}}:arguments[1];return a instanceof g?a:(a=d(a,this,b),new g(b.start.line,b.start.column,this.srcFile,a))},functionCall:function(a,b,c){return c=this.generateList(c),this.wrap([a,b?"."+b+"(":"(",c,")"])},quotedString:function(a){return'"'+(a+"").replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")+'"'},objectLiteral:function(a){var b=[];for(var c in a)if(a.hasOwnProperty(c)){var e=d(a[c],this);"undefined"!==e&&b.push([this.quotedString(c),":",e])}var f=this.generateList(b);return f.prepend("{"),f.add("}"),f},generateList:function(a){for(var b=this.empty(),c=0,e=a.length;e>c;c++)c&&b.add(","),b.add(d(a[c],this));return b},generateArray:function(a){var b=this.generateList(a);return b.prepend("["),b.add("]"),b}},b["default"]=e,a.exports=b["default"]}])});
\ No newline at end of file
diff --git a/documentation/ApiHook-doc/template/vendor/jquery.min.js b/documentation/ApiHook-doc/template/vendor/jquery.min.js
deleted file mode 100644
index 349030de99..0000000000
--- a/documentation/ApiHook-doc/template/vendor/jquery.min.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/*! jQuery v2.2.1 | (c) jQuery Foundation | jquery.org/license */
-!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="2.2.1",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){var b=a&&a.toString();return!n.isArray(a)&&b-parseFloat(b)+1>=0},isPlainObject:function(a){return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!k.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=d.createElement("script"),b.text=a,d.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;c>d;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:h.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,g=0,h=[];if(s(a))for(d=a.length;d>g;g++)e=b(a[g],g,c),null!=e&&h.push(e);else for(g in a)e=b(a[g],g,c),null!=e&&h.push(e);return f.apply([],h)},guid:1,proxy:function(a,b){var c,d,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(d=e.call(arguments,2),f=function(){return a.apply(b||this,d.concat(e.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:l}),"function"==typeof Symbol&&(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b){i["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=!!a&&"length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+M+"))|)"+L+"*\\]",O=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+N+")*)|.*)\\)|)",P=new RegExp(L+"+","g"),Q=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),R=new RegExp("^"+L+"*,"+L+"*"),S=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(ea){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fa(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==x&&(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+qa(r[h]);s=r.join(","),w=_.test(a)&&oa(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function ga(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ha(a){return a[u]=!0,a}function ia(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ja(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ka(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function la(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function na(a){return ha(function(b){return b=+b,ha(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function oa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=fa.support={},f=fa.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fa.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ia(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ia(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ia(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return"undefined"!=typeof b.getElementsByClassName&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ia(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ia(function(a){var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ia(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ka(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ka(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},fa.matches=function(a,b){return fa(a,null,null,b)},fa.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fa(b,n,null,[a]).length>0},fa.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fa.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fa.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fa.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fa.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fa.selectors={cacheLength:50,createPseudo:ha,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fa.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fa.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fa.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(P," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fa.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ha(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ha(function(a){var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ha(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ha(function(a){return function(b){return fa(a,b).length>0}}),contains:ha(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ha(function(a){return V.test(a||"")||fa.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:na(function(){return[0]}),last:na(function(a,b){return[b-1]}),eq:na(function(a,b,c){return[0>c?c+b:c]}),even:na(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:na(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:na(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:na(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function ra(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j,k=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(j=b[u]||(b[u]={}),i=j[b.uniqueID]||(j[b.uniqueID]={}),(h=i[d])&&h[0]===w&&h[1]===f)return k[2]=h[2];if(i[d]=k,k[2]=a(b,c,g))return!0}}}function sa(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ta(a,b,c){for(var d=0,e=b.length;e>d;d++)fa(a,b[d],c);return c}function ua(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function va(a,b,c,d,e,f){return d&&!d[u]&&(d=va(d)),e&&!e[u]&&(e=va(e,f)),ha(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ta(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ua(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ua(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ua(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function wa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ra(function(a){return a===b},h,!0),l=ra(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[ra(sa(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return va(i>1&&sa(m),i>1&&qa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,e>i&&wa(a.slice(i,e)),f>e&&wa(a=a.slice(e)),f>e&&qa(a))}m.push(c)}return sa(m)}function xa(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ua(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&fa.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ha(f):f}return h=fa.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xa(e,d)),f.selector=a}return f},i=fa.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&oa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qa(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&oa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ia(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ia(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ja("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ia(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ja("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ia(function(a){return null==a.getAttribute("disabled")})||ja(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fa}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return h.call(b,a)>-1!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:B.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&f.parentNode&&(this.length=1,this[0]=f),this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?void 0!==c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};C.prototype=n.fn,A=n(d);var D=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=w.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?h.call(n(a),this[0]):h.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function F(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return u(a,"parentNode")},parentsUntil:function(a,b,c){return u(a,"parentNode",c)},next:function(a){return F(a,"nextSibling")},prev:function(a){return F(a,"previousSibling")},nextAll:function(a){return u(a,"nextSibling")},prevAll:function(a){return u(a,"previousSibling")},nextUntil:function(a,b,c){return u(a,"nextSibling",c)},prevUntil:function(a,b,c){return u(a,"previousSibling",c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(E[a]||n.uniqueSort(e),D.test(a)&&e.reverse()),this.pushStack(e)}});var G=/\S+/g;function H(a){var b={};return n.each(a.match(G)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?H(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),h>=c&&h--}),this},has:function(a){return a?n.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);d>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().progress(h(b,j,i)).done(h(b,k,c)).fail(g.reject):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function J(){d.removeEventListener("DOMContentLoaded",J),a.removeEventListener("load",J),n.ready()}n.ready.promise=function(b){return I||(I=n.Deferred(),"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(n.ready):(d.addEventListener("DOMContentLoaded",J),a.addEventListener("load",J))),I.promise(b)},n.ready.promise();var K=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)K(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},L=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function M(){this.expando=n.expando+M.uid++}M.uid=1,M.prototype={register:function(a,b){var c=b||{};return a.nodeType?a[this.expando]=c:Object.defineProperty(a,this.expando,{value:c,writable:!0,configurable:!0}),a[this.expando]},cache:function(a){if(!L(a))return{};var b=a[this.expando];return b||(b={},L(a)&&(a.nodeType?a[this.expando]=b:Object.defineProperty(a,this.expando,{value:b,configurable:!0}))),b},set:function(a,b,c){var d,e=this.cache(a);if("string"==typeof b)e[b]=c;else for(d in b)e[d]=b[d];return e},get:function(a,b){return void 0===b?this.cache(a):a[this.expando]&&a[this.expando][b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=a[this.expando];if(void 0!==f){if(void 0===b)this.register(a);else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in f?d=[b,e]:(d=e,d=d in f?[d]:d.match(G)||[])),c=d.length;while(c--)delete f[d[c]]}(void 0===b||n.isEmptyObject(f))&&(a.nodeType?a[this.expando]=void 0:delete a[this.expando])}},hasData:function(a){var b=a[this.expando];return void 0!==b&&!n.isEmptyObject(b)}};var N=new M,O=new M,P=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Q=/[A-Z]/g;function R(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(Q,"-$&").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:P.test(c)?n.parseJSON(c):c}catch(e){}O.set(a,b,c);
-}else c=void 0;return c}n.extend({hasData:function(a){return O.hasData(a)||N.hasData(a)},data:function(a,b,c){return O.access(a,b,c)},removeData:function(a,b){O.remove(a,b)},_data:function(a,b,c){return N.access(a,b,c)},_removeData:function(a,b){N.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=O.get(f),1===f.nodeType&&!N.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),R(f,d,e[d])));N.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){O.set(this,a)}):K(this,function(b){var c,d;if(f&&void 0===b){if(c=O.get(f,a)||O.get(f,a.replace(Q,"-$&").toLowerCase()),void 0!==c)return c;if(d=n.camelCase(a),c=O.get(f,d),void 0!==c)return c;if(c=R(f,d,void 0),void 0!==c)return c}else d=n.camelCase(a),this.each(function(){var c=O.get(this,d);O.set(this,d,b),a.indexOf("-")>-1&&void 0!==c&&O.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){O.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=N.get(a,b),c&&(!d||n.isArray(c)?d=N.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return N.get(a,c)||N.access(a,c,{empty:n.Callbacks("once memory").add(function(){N.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length",""],thead:[1,"